blob: e43b01e438b15311cbbff2782256cf9efe7935d6 [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 Mason788f20e2008-04-28 15:29:42 -040023#include <linux/random.h>
Chris Masonb765ead2009-04-03 10:27:10 -040024#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000025#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020026#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020027#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050028#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020029#include <linux/semaphore.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 Jaina4553fe2015-09-25 14:43:01 +08001490 btrfs_std_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 Jaina4553fe2015-09-25 14:43:01 +08001498 btrfs_std_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
Anand Jainf1fa7f22016-02-13 10:01:33 +08001736 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001737 seq = read_seqbegin(&fs_info->profiles_lock);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001738
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 Jain6b526ed2016-02-13 10:01:39 +08001759int btrfs_rm_device(struct btrfs_root *root, char *device_path, u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001760{
1761 struct btrfs_device *device;
1762 struct btrfs_device *next_device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001763 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001764 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001765 int ret = 0;
1766 bool clear_super = false;
Anand Jain42b67422016-02-13 10:01:38 +08001767 char *dev_name = NULL;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001768
1769 mutex_lock(&uuid_mutex);
1770
David Sterba3cc31a02016-02-15 16:00:26 +01001771 num_devices = root->fs_info->fs_devices->num_devices;
1772 btrfs_dev_replace_lock(&root->fs_info->dev_replace, 0);
1773 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1774 WARN_ON(num_devices < 1);
1775 num_devices--;
1776 }
1777 btrfs_dev_replace_unlock(&root->fs_info->dev_replace, 0);
1778
1779 ret = btrfs_check_raid_min_devices(root->fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001780 if (ret)
1781 goto out;
1782
David Sterba5c5c0df2016-02-15 16:39:55 +01001783 ret = btrfs_find_device_by_devspec(root, devid, device_path,
Anand Jain24fc5722016-02-13 10:01:36 +08001784 &device);
1785 if (ret)
1786 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001787
Stefan Behrens63a212a2012-11-05 18:29:28 +01001788 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001789 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001790 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001791 }
1792
Yan Zheng2b820322008-11-17 21:11:30 -05001793 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001794 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001795 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001796 }
1797
1798 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001799 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001800 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001801 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001802 unlock_chunks(root);
Anand Jain42b67422016-02-13 10:01:38 +08001803 dev_name = kstrdup(device->name->str, GFP_KERNEL);
1804 if (!dev_name) {
1805 ret = -ENOMEM;
1806 goto error_undo;
1807 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001808 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001809 }
Chris Masona061fc82008-05-07 11:43:44 -04001810
Carey Underwoodd7901552013-03-04 16:37:06 -06001811 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001812 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001813 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001814 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001815 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001816
Stefan Behrens63a212a2012-11-05 18:29:28 +01001817 /*
1818 * TODO: the superblock still includes this device in its num_devices
1819 * counter although write_all_supers() is not locked out. This
1820 * could give a filesystem state which requires a degraded mount.
1821 */
Chris Masona061fc82008-05-07 11:43:44 -04001822 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1823 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001824 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001825
Yan Zheng2b820322008-11-17 21:11:30 -05001826 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001827 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001828
1829 /*
1830 * the device list mutex makes sure that we don't change
1831 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001832 * the device supers. Whoever is writing all supers, should
1833 * lock the device list mutex before getting the number of
1834 * devices in the super block (super_copy). Conversely,
1835 * whoever updates the number of devices in the super block
1836 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001837 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001838
1839 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001840 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001841 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001842
Yan Zhenge4404d62008-12-12 10:03:26 -05001843 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001844 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001845
Chris Masoncd02dca2010-12-13 14:56:23 -05001846 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001847 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001848
Yan Zheng2b820322008-11-17 21:11:30 -05001849 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1850 struct btrfs_device, dev_list);
1851 if (device->bdev == root->fs_info->sb->s_bdev)
1852 root->fs_info->sb->s_bdev = next_device->bdev;
1853 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1854 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1855
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001856 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001857 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001858 /* remove sysfs entry */
Anand Jain32576042015-08-14 18:32:49 +08001859 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001860 }
Anand Jain99994cd2014-06-03 11:36:00 +08001861
Xiao Guangrong1f781602011-04-20 10:09:16 +00001862 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001863
David Sterba6c417612011-04-13 15:41:04 +02001864 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1865 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001866 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001867
Xiao Guangrong1f781602011-04-20 10:09:16 +00001868 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001869 struct btrfs_fs_devices *fs_devices;
1870 fs_devices = root->fs_info->fs_devices;
1871 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001872 if (fs_devices->seed == cur_devices) {
1873 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001874 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001875 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001876 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001877 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001878 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001879 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001880 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001881 }
1882
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001883 root->fs_info->num_tolerated_disk_barrier_failures =
1884 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1885
Yan Zheng2b820322008-11-17 21:11:30 -05001886 /*
1887 * at this point, the device is zero sized. We want to
1888 * remove it from the devices list and zero out the old super
1889 */
Anand Jain24fc5722016-02-13 10:01:36 +08001890 if (clear_super) {
Anand Jain42b67422016-02-13 10:01:38 +08001891 struct block_device *bdev;
Anand Jain4d90d282014-04-06 12:59:07 +08001892
Anand Jain42b67422016-02-13 10:01:38 +08001893 bdev = blkdev_get_by_path(dev_name, FMODE_READ | FMODE_EXCL,
1894 root->fs_info->bdev_holder);
1895 if (!IS_ERR(bdev)) {
1896 btrfs_scratch_superblocks(bdev, dev_name);
Anand Jain24fc5722016-02-13 10:01:36 +08001897 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Anand Jain4d90d282014-04-06 12:59:07 +08001898 }
Chris Masondfe25022008-05-13 13:46:40 -04001899 }
Chris Masona061fc82008-05-07 11:43:44 -04001900
Chris Masona061fc82008-05-07 11:43:44 -04001901out:
Anand Jain42b67422016-02-13 10:01:38 +08001902 kfree(dev_name);
1903
Chris Masona061fc82008-05-07 11:43:44 -04001904 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001905 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001906
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001907error_undo:
1908 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001909 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001910 list_add(&device->dev_alloc_list,
1911 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001912 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001913 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001914 }
Anand Jain24fc5722016-02-13 10:01:36 +08001915 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001916}
1917
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001918void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1919 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001920{
Anand Jaind51908c2014-08-13 14:24:19 +08001921 struct btrfs_fs_devices *fs_devices;
1922
Stefan Behrense93c89c2012-11-05 17:33:06 +01001923 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001924
Anand Jain25e8e912014-08-20 10:56:56 +08001925 /*
1926 * in case of fs with no seed, srcdev->fs_devices will point
1927 * to fs_devices of fs_info. However when the dev being replaced is
1928 * a seed dev it will point to the seed's local fs_devices. In short
1929 * srcdev will have its correct fs_devices in both the cases.
1930 */
1931 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001932
Stefan Behrense93c89c2012-11-05 17:33:06 +01001933 list_del_rcu(&srcdev->dev_list);
1934 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001935 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001936 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001937 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001938
Miao Xie82372bc2014-09-03 21:35:44 +08001939 if (srcdev->writeable) {
1940 fs_devices->rw_devices--;
1941 /* zero out the old super if it is writable */
David Sterba31388ab2015-11-19 11:35:17 +01001942 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
Ilya Dryomov13572722013-10-02 20:41:01 +03001943 }
1944
Miao Xie82372bc2014-09-03 21:35:44 +08001945 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08001946 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001947}
1948
1949void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1950 struct btrfs_device *srcdev)
1951{
1952 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001953
Stefan Behrense93c89c2012-11-05 17:33:06 +01001954 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001955
1956 /*
1957 * unless fs_devices is seed fs, num_devices shouldn't go
1958 * zero
1959 */
1960 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1961
1962 /* if this is no devs we rather delete the fs_devices */
1963 if (!fs_devices->num_devices) {
1964 struct btrfs_fs_devices *tmp_fs_devices;
1965
1966 tmp_fs_devices = fs_info->fs_devices;
1967 while (tmp_fs_devices) {
1968 if (tmp_fs_devices->seed == fs_devices) {
1969 tmp_fs_devices->seed = fs_devices->seed;
1970 break;
1971 }
1972 tmp_fs_devices = tmp_fs_devices->seed;
1973 }
1974 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08001975 __btrfs_close_devices(fs_devices);
1976 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001977 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01001978}
1979
1980void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1981 struct btrfs_device *tgtdev)
1982{
1983 struct btrfs_device *next_device;
1984
Miao Xie67a2c452014-09-03 21:35:43 +08001985 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01001986 WARN_ON(!tgtdev);
1987 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08001988
Anand Jain32576042015-08-14 18:32:49 +08001989 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08001990
Stefan Behrense93c89c2012-11-05 17:33:06 +01001991 if (tgtdev->bdev) {
David Sterba31388ab2015-11-19 11:35:17 +01001992 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Stefan Behrense93c89c2012-11-05 17:33:06 +01001993 fs_info->fs_devices->open_devices--;
1994 }
1995 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001996
1997 next_device = list_entry(fs_info->fs_devices->devices.next,
1998 struct btrfs_device, dev_list);
1999 if (tgtdev->bdev == fs_info->sb->s_bdev)
2000 fs_info->sb->s_bdev = next_device->bdev;
2001 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
2002 fs_info->fs_devices->latest_bdev = next_device->bdev;
2003 list_del_rcu(&tgtdev->dev_list);
2004
2005 call_rcu(&tgtdev->rcu, free_device);
2006
2007 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002008 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002009}
2010
Eric Sandeen48a3b632013-04-25 20:41:01 +00002011static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
2012 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002013{
2014 int ret = 0;
2015 struct btrfs_super_block *disk_super;
2016 u64 devid;
2017 u8 *dev_uuid;
2018 struct block_device *bdev;
2019 struct buffer_head *bh;
2020
2021 *device = NULL;
2022 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2023 root->fs_info->bdev_holder, 0, &bdev, &bh);
2024 if (ret)
2025 return ret;
2026 disk_super = (struct btrfs_super_block *)bh->b_data;
2027 devid = btrfs_stack_device_id(&disk_super->dev_item);
2028 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002029 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002030 disk_super->fsid);
2031 brelse(bh);
2032 if (!*device)
2033 ret = -ENOENT;
2034 blkdev_put(bdev, FMODE_READ);
2035 return ret;
2036}
2037
2038int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2039 char *device_path,
2040 struct btrfs_device **device)
2041{
2042 *device = NULL;
2043 if (strcmp(device_path, "missing") == 0) {
2044 struct list_head *devices;
2045 struct btrfs_device *tmp;
2046
2047 devices = &root->fs_info->fs_devices->devices;
2048 /*
2049 * It is safe to read the devices since the volume_mutex
2050 * is held by the caller.
2051 */
2052 list_for_each_entry(tmp, devices, dev_list) {
2053 if (tmp->in_fs_metadata && !tmp->bdev) {
2054 *device = tmp;
2055 break;
2056 }
2057 }
2058
Anand Jaind74a6252015-08-14 18:32:56 +08002059 if (!*device)
2060 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002061
2062 return 0;
2063 } else {
2064 return btrfs_find_device_by_path(root, device_path, device);
2065 }
2066}
2067
David Sterba5c5c0df2016-02-15 16:39:55 +01002068/*
2069 * Lookup a device given by device id, or the path if the id is 0.
2070 */
2071int btrfs_find_device_by_devspec(struct btrfs_root *root, u64 devid,
2072 char *devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002073 struct btrfs_device **device)
2074{
2075 int ret;
2076
David Sterba5c5c0df2016-02-15 16:39:55 +01002077 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002078 ret = 0;
David Sterba5c5c0df2016-02-15 16:39:55 +01002079 *device = btrfs_find_device(root->fs_info, devid, NULL,
Anand Jain24e04742016-02-13 10:01:35 +08002080 NULL);
2081 if (!*device)
2082 ret = -ENOENT;
2083 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002084 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002085 return -EINVAL;
2086
David Sterba5c5c0df2016-02-15 16:39:55 +01002087 ret = btrfs_find_device_missing_or_by_path(root, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002088 device);
2089 }
2090 return ret;
2091}
2092
Yan Zheng2b820322008-11-17 21:11:30 -05002093/*
2094 * does all the dirty work required for changing file system's UUID.
2095 */
Li Zefan125ccb02011-12-08 15:07:24 +08002096static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05002097{
2098 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2099 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002100 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02002101 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002102 struct btrfs_device *device;
2103 u64 super_flags;
2104
2105 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002106 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002107 return -EINVAL;
2108
Ilya Dryomov2208a372013-08-12 14:33:03 +03002109 seed_devices = __alloc_fs_devices();
2110 if (IS_ERR(seed_devices))
2111 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002112
Yan Zhenge4404d62008-12-12 10:03:26 -05002113 old_devices = clone_fs_devices(fs_devices);
2114 if (IS_ERR(old_devices)) {
2115 kfree(seed_devices);
2116 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002117 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002118
Yan Zheng2b820322008-11-17 21:11:30 -05002119 list_add(&old_devices->list, &fs_uuids);
2120
Yan Zhenge4404d62008-12-12 10:03:26 -05002121 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2122 seed_devices->opened = 1;
2123 INIT_LIST_HEAD(&seed_devices->devices);
2124 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002125 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002126
2127 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002128 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2129 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002130 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002131 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002132
2133 lock_chunks(root);
2134 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2135 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05002136
Yan Zheng2b820322008-11-17 21:11:30 -05002137 fs_devices->seeding = 0;
2138 fs_devices->num_devices = 0;
2139 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002140 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002141 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002142 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002143
2144 generate_random_uuid(fs_devices->fsid);
2145 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2146 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002147 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2148
Yan Zheng2b820322008-11-17 21:11:30 -05002149 super_flags = btrfs_super_flags(disk_super) &
2150 ~BTRFS_SUPER_FLAG_SEEDING;
2151 btrfs_set_super_flags(disk_super, super_flags);
2152
2153 return 0;
2154}
2155
2156/*
2157 * strore the expected generation for seed devices in device items.
2158 */
2159static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2160 struct btrfs_root *root)
2161{
2162 struct btrfs_path *path;
2163 struct extent_buffer *leaf;
2164 struct btrfs_dev_item *dev_item;
2165 struct btrfs_device *device;
2166 struct btrfs_key key;
2167 u8 fs_uuid[BTRFS_UUID_SIZE];
2168 u8 dev_uuid[BTRFS_UUID_SIZE];
2169 u64 devid;
2170 int ret;
2171
2172 path = btrfs_alloc_path();
2173 if (!path)
2174 return -ENOMEM;
2175
2176 root = root->fs_info->chunk_root;
2177 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2178 key.offset = 0;
2179 key.type = BTRFS_DEV_ITEM_KEY;
2180
2181 while (1) {
2182 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2183 if (ret < 0)
2184 goto error;
2185
2186 leaf = path->nodes[0];
2187next_slot:
2188 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2189 ret = btrfs_next_leaf(root, path);
2190 if (ret > 0)
2191 break;
2192 if (ret < 0)
2193 goto error;
2194 leaf = path->nodes[0];
2195 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002196 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002197 continue;
2198 }
2199
2200 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2201 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2202 key.type != BTRFS_DEV_ITEM_KEY)
2203 break;
2204
2205 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2206 struct btrfs_dev_item);
2207 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002208 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002209 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002210 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002211 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002212 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2213 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002214 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002215
2216 if (device->fs_devices->seeding) {
2217 btrfs_set_device_generation(leaf, dev_item,
2218 device->generation);
2219 btrfs_mark_buffer_dirty(leaf);
2220 }
2221
2222 path->slots[0]++;
2223 goto next_slot;
2224 }
2225 ret = 0;
2226error:
2227 btrfs_free_path(path);
2228 return ret;
2229}
2230
Chris Mason788f20e2008-04-28 15:29:42 -04002231int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2232{
Josef Bacikd5e20032011-08-04 14:52:27 +00002233 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002234 struct btrfs_trans_handle *trans;
2235 struct btrfs_device *device;
2236 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002237 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002238 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002239 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002240 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002241 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002242 int ret = 0;
2243
Yan Zheng2b820322008-11-17 21:11:30 -05002244 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002245 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002246
Li Zefana5d16332011-12-07 20:08:40 -05002247 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002248 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002249 if (IS_ERR(bdev))
2250 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002251
Yan Zheng2b820322008-11-17 21:11:30 -05002252 if (root->fs_info->fs_devices->seeding) {
2253 seeding_dev = 1;
2254 down_write(&sb->s_umount);
2255 mutex_lock(&uuid_mutex);
2256 }
2257
Chris Mason8c8bee12008-09-29 11:19:10 -04002258 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002259
Chris Mason788f20e2008-04-28 15:29:42 -04002260 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002261
2262 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002263 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002264 if (device->bdev == bdev) {
2265 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002266 mutex_unlock(
2267 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002268 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002269 }
2270 }
Liu Bod25628b2012-11-14 14:35:30 +00002271 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002272
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002273 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2274 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002275 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002276 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002277 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002278 }
2279
David Sterba78f2c9e2016-02-11 14:25:38 +01002280 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002281 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002282 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002283 ret = -ENOMEM;
2284 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002285 }
Josef Bacik606686e2012-06-04 14:03:51 -04002286 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002287
Yan, Zhenga22285a2010-05-16 10:48:46 -04002288 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002289 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002290 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002291 kfree(device);
2292 ret = PTR_ERR(trans);
2293 goto error;
2294 }
2295
Josef Bacikd5e20032011-08-04 14:52:27 +00002296 q = bdev_get_queue(bdev);
2297 if (blk_queue_discard(q))
2298 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002299 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002300 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002301 device->io_width = root->sectorsize;
2302 device->io_align = root->sectorsize;
2303 device->sector_size = root->sectorsize;
2304 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002305 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002306 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002307 device->dev_root = root->fs_info->dev_root;
2308 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002309 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002310 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002311 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002312 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002313 set_blocksize(device->bdev, 4096);
2314
Yan Zheng2b820322008-11-17 21:11:30 -05002315 if (seeding_dev) {
2316 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002317 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002318 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002319 }
2320
2321 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002322
Chris Masone5e9a522009-06-10 15:17:02 -04002323 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002324 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002325 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002326 list_add(&device->dev_alloc_list,
2327 &root->fs_info->fs_devices->alloc_list);
2328 root->fs_info->fs_devices->num_devices++;
2329 root->fs_info->fs_devices->open_devices++;
2330 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002331 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002332 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2333
Josef Bacik2bf64752011-09-26 17:12:22 -04002334 spin_lock(&root->fs_info->free_chunk_lock);
2335 root->fs_info->free_chunk_space += device->total_bytes;
2336 spin_unlock(&root->fs_info->free_chunk_lock);
2337
Chris Masonc2898112009-06-10 09:51:32 -04002338 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2339 root->fs_info->fs_devices->rotating = 1;
2340
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002341 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002342 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002343 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002344
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002345 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002346 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002347 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002348
2349 /* add sysfs device entry */
Anand Jaine3bd6972015-08-14 18:32:48 +08002350 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002351
Miao Xie2196d6e2014-09-03 21:35:41 +08002352 /*
2353 * we've got more storage, clear any full flags on the space
2354 * infos
2355 */
2356 btrfs_clear_space_info_full(root->fs_info);
2357
2358 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002359 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002360
Yan Zheng2b820322008-11-17 21:11:30 -05002361 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002362 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002363 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002364 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002365 if (ret) {
2366 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002367 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002368 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002369 }
2370
2371 ret = btrfs_add_device(trans, root, device);
2372 if (ret) {
2373 btrfs_abort_transaction(trans, root, ret);
2374 goto error_trans;
2375 }
2376
2377 if (seeding_dev) {
2378 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2379
Yan Zheng2b820322008-11-17 21:11:30 -05002380 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002381 if (ret) {
2382 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002383 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002384 }
Anand Jainb2373f22014-06-03 11:36:03 +08002385
2386 /* Sprouting would change fsid of the mounted root,
2387 * so rename the fsid on the sysfs
2388 */
2389 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2390 root->fs_info->fsid);
Anand Jainc1b7e472015-08-14 18:32:50 +08002391 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
Anand Jain2e7910d2015-03-10 06:38:29 +08002392 fsid_buf))
David Sterbaf14d1042015-10-08 11:37:06 +02002393 btrfs_warn(root->fs_info,
2394 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002395 }
2396
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002397 root->fs_info->num_tolerated_disk_barrier_failures =
2398 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002399 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002400
2401 if (seeding_dev) {
2402 mutex_unlock(&uuid_mutex);
2403 up_write(&sb->s_umount);
2404
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002405 if (ret) /* transaction commit */
2406 return ret;
2407
Yan Zheng2b820322008-11-17 21:11:30 -05002408 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002409 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002410 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002411 "Failed to relocate sys chunks after "
2412 "device initialization. This can be fixed "
2413 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002414 trans = btrfs_attach_transaction(root);
2415 if (IS_ERR(trans)) {
2416 if (PTR_ERR(trans) == -ENOENT)
2417 return 0;
2418 return PTR_ERR(trans);
2419 }
2420 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002421 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002422
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002423 /* Update ctime/mtime for libblkid */
2424 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002425 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002426
2427error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002428 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002429 rcu_string_free(device->name);
Anand Jain32576042015-08-14 18:32:49 +08002430 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002431 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002432error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002433 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002434 if (seeding_dev) {
2435 mutex_unlock(&uuid_mutex);
2436 up_write(&sb->s_umount);
2437 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002438 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002439}
2440
Stefan Behrense93c89c2012-11-05 17:33:06 +01002441int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002442 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002443 struct btrfs_device **device_out)
2444{
2445 struct request_queue *q;
2446 struct btrfs_device *device;
2447 struct block_device *bdev;
2448 struct btrfs_fs_info *fs_info = root->fs_info;
2449 struct list_head *devices;
2450 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002451 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002452 int ret = 0;
2453
2454 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002455 if (fs_info->fs_devices->seeding) {
2456 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002457 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002458 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002459
2460 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2461 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002462 if (IS_ERR(bdev)) {
2463 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002464 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002465 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002466
2467 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2468
2469 devices = &fs_info->fs_devices->devices;
2470 list_for_each_entry(device, devices, dev_list) {
2471 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002472 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002473 ret = -EEXIST;
2474 goto error;
2475 }
2476 }
2477
Miao Xie1c433662014-09-03 21:35:32 +08002478
Miao Xie7cc8e582014-09-03 21:35:38 +08002479 if (i_size_read(bdev->bd_inode) <
2480 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002481 btrfs_err(fs_info, "target device is smaller than source device!");
2482 ret = -EINVAL;
2483 goto error;
2484 }
2485
2486
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002487 device = btrfs_alloc_device(NULL, &devid, NULL);
2488 if (IS_ERR(device)) {
2489 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002490 goto error;
2491 }
2492
2493 name = rcu_string_strdup(device_path, GFP_NOFS);
2494 if (!name) {
2495 kfree(device);
2496 ret = -ENOMEM;
2497 goto error;
2498 }
2499 rcu_assign_pointer(device->name, name);
2500
2501 q = bdev_get_queue(bdev);
2502 if (blk_queue_discard(q))
2503 device->can_discard = 1;
2504 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2505 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002506 device->generation = 0;
2507 device->io_width = root->sectorsize;
2508 device->io_align = root->sectorsize;
2509 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002510 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2511 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2512 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002513 ASSERT(list_empty(&srcdev->resized_list));
2514 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002515 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002516 device->dev_root = fs_info->dev_root;
2517 device->bdev = bdev;
2518 device->in_fs_metadata = 1;
2519 device->is_tgtdev_for_dev_replace = 1;
2520 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002521 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002522 set_blocksize(device->bdev, 4096);
2523 device->fs_devices = fs_info->fs_devices;
2524 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2525 fs_info->fs_devices->num_devices++;
2526 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002527 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2528
2529 *device_out = device;
2530 return ret;
2531
2532error:
2533 blkdev_put(bdev, FMODE_EXCL);
2534 return ret;
2535}
2536
2537void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2538 struct btrfs_device *tgtdev)
2539{
2540 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2541 tgtdev->io_width = fs_info->dev_root->sectorsize;
2542 tgtdev->io_align = fs_info->dev_root->sectorsize;
2543 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2544 tgtdev->dev_root = fs_info->dev_root;
2545 tgtdev->in_fs_metadata = 1;
2546}
2547
Chris Masond3977122009-01-05 21:25:51 -05002548static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2549 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002550{
2551 int ret;
2552 struct btrfs_path *path;
2553 struct btrfs_root *root;
2554 struct btrfs_dev_item *dev_item;
2555 struct extent_buffer *leaf;
2556 struct btrfs_key key;
2557
2558 root = device->dev_root->fs_info->chunk_root;
2559
2560 path = btrfs_alloc_path();
2561 if (!path)
2562 return -ENOMEM;
2563
2564 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2565 key.type = BTRFS_DEV_ITEM_KEY;
2566 key.offset = device->devid;
2567
2568 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2569 if (ret < 0)
2570 goto out;
2571
2572 if (ret > 0) {
2573 ret = -ENOENT;
2574 goto out;
2575 }
2576
2577 leaf = path->nodes[0];
2578 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2579
2580 btrfs_set_device_id(leaf, dev_item, device->devid);
2581 btrfs_set_device_type(leaf, dev_item, device->type);
2582 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2583 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2584 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002585 btrfs_set_device_total_bytes(leaf, dev_item,
2586 btrfs_device_get_disk_total_bytes(device));
2587 btrfs_set_device_bytes_used(leaf, dev_item,
2588 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002589 btrfs_mark_buffer_dirty(leaf);
2590
2591out:
2592 btrfs_free_path(path);
2593 return ret;
2594}
2595
Miao Xie2196d6e2014-09-03 21:35:41 +08002596int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002597 struct btrfs_device *device, u64 new_size)
2598{
2599 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002600 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002601 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002602 u64 old_total;
2603 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002604
Yan Zheng2b820322008-11-17 21:11:30 -05002605 if (!device->writeable)
2606 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002607
2608 lock_chunks(device->dev_root);
2609 old_total = btrfs_super_total_bytes(super_copy);
2610 diff = new_size - device->total_bytes;
2611
Stefan Behrens63a212a2012-11-05 18:29:28 +01002612 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002613 device->is_tgtdev_for_dev_replace) {
2614 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002615 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002616 }
Yan Zheng2b820322008-11-17 21:11:30 -05002617
Miao Xie935e5cc2014-09-03 21:35:33 +08002618 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002619
2620 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002621 device->fs_devices->total_rw_bytes += diff;
2622
Miao Xie7cc8e582014-09-03 21:35:38 +08002623 btrfs_device_set_total_bytes(device, new_size);
2624 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002625 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002626 if (list_empty(&device->resized_list))
2627 list_add_tail(&device->resized_list,
2628 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002629 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002630
Chris Mason8f18cf12008-04-25 16:53:30 -04002631 return btrfs_update_device(trans, device);
2632}
2633
2634static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Zhao Leia688a042015-02-09 20:31:44 +08002635 struct btrfs_root *root, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002636 u64 chunk_offset)
2637{
2638 int ret;
2639 struct btrfs_path *path;
2640 struct btrfs_key key;
2641
2642 root = root->fs_info->chunk_root;
2643 path = btrfs_alloc_path();
2644 if (!path)
2645 return -ENOMEM;
2646
2647 key.objectid = chunk_objectid;
2648 key.offset = chunk_offset;
2649 key.type = BTRFS_CHUNK_ITEM_KEY;
2650
2651 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002652 if (ret < 0)
2653 goto out;
2654 else if (ret > 0) { /* Logic error or corruption */
Anand Jaina4553fe2015-09-25 14:43:01 +08002655 btrfs_std_error(root->fs_info, -ENOENT,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002656 "Failed lookup while freeing chunk.");
2657 ret = -ENOENT;
2658 goto out;
2659 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002660
2661 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002662 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002663 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002664 "Failed to delete chunk item.");
2665out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002666 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002667 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002668}
2669
Christoph Hellwigb2950862008-12-02 09:54:17 -05002670static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002671 chunk_offset)
2672{
David Sterba6c417612011-04-13 15:41:04 +02002673 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002674 struct btrfs_disk_key *disk_key;
2675 struct btrfs_chunk *chunk;
2676 u8 *ptr;
2677 int ret = 0;
2678 u32 num_stripes;
2679 u32 array_size;
2680 u32 len = 0;
2681 u32 cur;
2682 struct btrfs_key key;
2683
Miao Xie2196d6e2014-09-03 21:35:41 +08002684 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002685 array_size = btrfs_super_sys_array_size(super_copy);
2686
2687 ptr = super_copy->sys_chunk_array;
2688 cur = 0;
2689
2690 while (cur < array_size) {
2691 disk_key = (struct btrfs_disk_key *)ptr;
2692 btrfs_disk_key_to_cpu(&key, disk_key);
2693
2694 len = sizeof(*disk_key);
2695
2696 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2697 chunk = (struct btrfs_chunk *)(ptr + len);
2698 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2699 len += btrfs_chunk_item_size(num_stripes);
2700 } else {
2701 ret = -EIO;
2702 break;
2703 }
2704 if (key.objectid == chunk_objectid &&
2705 key.offset == chunk_offset) {
2706 memmove(ptr, ptr + len, array_size - (cur + len));
2707 array_size -= len;
2708 btrfs_set_super_sys_array_size(super_copy, array_size);
2709 } else {
2710 ptr += len;
2711 cur += len;
2712 }
2713 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002714 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002715 return ret;
2716}
2717
Josef Bacik47ab2a62014-09-18 11:20:02 -04002718int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2719 struct btrfs_root *root, u64 chunk_offset)
2720{
2721 struct extent_map_tree *em_tree;
2722 struct extent_map *em;
2723 struct btrfs_root *extent_root = root->fs_info->extent_root;
2724 struct map_lookup *map;
2725 u64 dev_extent_len = 0;
2726 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002727 int i, ret = 0;
2728
2729 /* Just in case */
2730 root = root->fs_info->chunk_root;
2731 em_tree = &root->fs_info->mapping_tree.map_tree;
2732
2733 read_lock(&em_tree->lock);
2734 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2735 read_unlock(&em_tree->lock);
2736
2737 if (!em || em->start > chunk_offset ||
2738 em->start + em->len < chunk_offset) {
2739 /*
2740 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002741 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002742 * do anything we still error out.
2743 */
2744 ASSERT(0);
2745 if (em)
2746 free_extent_map(em);
2747 return -EINVAL;
2748 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002749 map = em->map_lookup;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002750 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01002751 check_system_chunk(trans, extent_root, map->type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002752 unlock_chunks(root->fs_info->chunk_root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002753
2754 for (i = 0; i < map->num_stripes; i++) {
2755 struct btrfs_device *device = map->stripes[i].dev;
2756 ret = btrfs_free_dev_extent(trans, device,
2757 map->stripes[i].physical,
2758 &dev_extent_len);
2759 if (ret) {
2760 btrfs_abort_transaction(trans, root, ret);
2761 goto out;
2762 }
2763
2764 if (device->bytes_used > 0) {
2765 lock_chunks(root);
2766 btrfs_device_set_bytes_used(device,
2767 device->bytes_used - dev_extent_len);
2768 spin_lock(&root->fs_info->free_chunk_lock);
2769 root->fs_info->free_chunk_space += dev_extent_len;
2770 spin_unlock(&root->fs_info->free_chunk_lock);
2771 btrfs_clear_space_info_full(root->fs_info);
2772 unlock_chunks(root);
2773 }
2774
2775 if (map->stripes[i].dev) {
2776 ret = btrfs_update_device(trans, map->stripes[i].dev);
2777 if (ret) {
2778 btrfs_abort_transaction(trans, root, ret);
2779 goto out;
2780 }
2781 }
2782 }
Zhao Leia688a042015-02-09 20:31:44 +08002783 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002784 if (ret) {
2785 btrfs_abort_transaction(trans, root, ret);
2786 goto out;
2787 }
2788
2789 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2790
2791 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2792 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2793 if (ret) {
2794 btrfs_abort_transaction(trans, root, ret);
2795 goto out;
2796 }
2797 }
2798
Filipe Manana04216822014-11-27 21:14:15 +00002799 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002800 if (ret) {
2801 btrfs_abort_transaction(trans, extent_root, ret);
2802 goto out;
2803 }
2804
Josef Bacik47ab2a62014-09-18 11:20:02 -04002805out:
2806 /* once for us */
2807 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002808 return ret;
2809}
2810
Zhaoleidc2ee4e2015-08-05 18:00:04 +08002811static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002812{
Chris Mason8f18cf12008-04-25 16:53:30 -04002813 struct btrfs_root *extent_root;
2814 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002815 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002816
2817 root = root->fs_info->chunk_root;
2818 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002819
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002820 /*
2821 * Prevent races with automatic removal of unused block groups.
2822 * After we relocate and before we remove the chunk with offset
2823 * chunk_offset, automatic removal of the block group can kick in,
2824 * resulting in a failure when calling btrfs_remove_chunk() below.
2825 *
2826 * Make sure to acquire this mutex before doing a tree search (dev
2827 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2828 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2829 * we release the path used to search the chunk/dev tree and before
2830 * the current task acquires this mutex and calls us.
2831 */
2832 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2833
Josef Bacikba1bf482009-09-11 16:11:19 -04002834 ret = btrfs_can_relocate(extent_root, chunk_offset);
2835 if (ret)
2836 return -ENOSPC;
2837
Chris Mason8f18cf12008-04-25 16:53:30 -04002838 /* step one, relocate all the extents inside this chunk */
Zhaolei55e3a602015-08-05 16:43:30 +08002839 btrfs_scrub_pause(root);
Zheng Yan1a40e232008-09-26 10:09:34 -04002840 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Zhaolei55e3a602015-08-05 16:43:30 +08002841 btrfs_scrub_continue(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002842 if (ret)
2843 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002844
Filipe Manana7fd01182015-11-13 23:57:17 +00002845 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2846 chunk_offset);
Liu Bo0f788c52013-03-04 16:25:40 +00002847 if (IS_ERR(trans)) {
2848 ret = PTR_ERR(trans);
Anand Jaina4553fe2015-09-25 14:43:01 +08002849 btrfs_std_error(root->fs_info, ret, NULL);
Liu Bo0f788c52013-03-04 16:25:40 +00002850 return ret;
2851 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002852
2853 /*
2854 * step two, delete the device extents and the
2855 * chunk tree entries
2856 */
Josef Bacik47ab2a62014-09-18 11:20:02 -04002857 ret = btrfs_remove_chunk(trans, root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002858 btrfs_end_transaction(trans, root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002859 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002860}
2861
Yan Zheng2b820322008-11-17 21:11:30 -05002862static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2863{
2864 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2865 struct btrfs_path *path;
2866 struct extent_buffer *leaf;
2867 struct btrfs_chunk *chunk;
2868 struct btrfs_key key;
2869 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002870 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002871 bool retried = false;
2872 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002873 int ret;
2874
2875 path = btrfs_alloc_path();
2876 if (!path)
2877 return -ENOMEM;
2878
Josef Bacikba1bf482009-09-11 16:11:19 -04002879again:
Yan Zheng2b820322008-11-17 21:11:30 -05002880 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2881 key.offset = (u64)-1;
2882 key.type = BTRFS_CHUNK_ITEM_KEY;
2883
2884 while (1) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002885 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002886 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002887 if (ret < 0) {
2888 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002889 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002890 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002891 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002892
2893 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2894 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002895 if (ret)
2896 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002897 if (ret < 0)
2898 goto error;
2899 if (ret > 0)
2900 break;
2901
2902 leaf = path->nodes[0];
2903 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2904
2905 chunk = btrfs_item_ptr(leaf, path->slots[0],
2906 struct btrfs_chunk);
2907 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002908 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002909
2910 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Zhao Leia688a042015-02-09 20:31:44 +08002911 ret = btrfs_relocate_chunk(chunk_root,
Yan Zheng2b820322008-11-17 21:11:30 -05002912 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002913 if (ret == -ENOSPC)
2914 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302915 else
2916 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002917 }
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002918 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002919
2920 if (found_key.offset == 0)
2921 break;
2922 key.offset = found_key.offset - 1;
2923 }
2924 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002925 if (failed && !retried) {
2926 failed = 0;
2927 retried = true;
2928 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302929 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002930 ret = -ENOSPC;
2931 }
Yan Zheng2b820322008-11-17 21:11:30 -05002932error:
2933 btrfs_free_path(path);
2934 return ret;
2935}
2936
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002937static int insert_balance_item(struct btrfs_root *root,
2938 struct btrfs_balance_control *bctl)
2939{
2940 struct btrfs_trans_handle *trans;
2941 struct btrfs_balance_item *item;
2942 struct btrfs_disk_balance_args disk_bargs;
2943 struct btrfs_path *path;
2944 struct extent_buffer *leaf;
2945 struct btrfs_key key;
2946 int ret, err;
2947
2948 path = btrfs_alloc_path();
2949 if (!path)
2950 return -ENOMEM;
2951
2952 trans = btrfs_start_transaction(root, 0);
2953 if (IS_ERR(trans)) {
2954 btrfs_free_path(path);
2955 return PTR_ERR(trans);
2956 }
2957
2958 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01002959 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002960 key.offset = 0;
2961
2962 ret = btrfs_insert_empty_item(trans, root, path, &key,
2963 sizeof(*item));
2964 if (ret)
2965 goto out;
2966
2967 leaf = path->nodes[0];
2968 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2969
2970 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2971
2972 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2973 btrfs_set_balance_data(leaf, item, &disk_bargs);
2974 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2975 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2976 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2977 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2978
2979 btrfs_set_balance_flags(leaf, item, bctl->flags);
2980
2981 btrfs_mark_buffer_dirty(leaf);
2982out:
2983 btrfs_free_path(path);
2984 err = btrfs_commit_transaction(trans, root);
2985 if (err && !ret)
2986 ret = err;
2987 return ret;
2988}
2989
2990static int del_balance_item(struct btrfs_root *root)
2991{
2992 struct btrfs_trans_handle *trans;
2993 struct btrfs_path *path;
2994 struct btrfs_key key;
2995 int ret, err;
2996
2997 path = btrfs_alloc_path();
2998 if (!path)
2999 return -ENOMEM;
3000
3001 trans = btrfs_start_transaction(root, 0);
3002 if (IS_ERR(trans)) {
3003 btrfs_free_path(path);
3004 return PTR_ERR(trans);
3005 }
3006
3007 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003008 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003009 key.offset = 0;
3010
3011 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3012 if (ret < 0)
3013 goto out;
3014 if (ret > 0) {
3015 ret = -ENOENT;
3016 goto out;
3017 }
3018
3019 ret = btrfs_del_item(trans, root, path);
3020out:
3021 btrfs_free_path(path);
3022 err = btrfs_commit_transaction(trans, root);
3023 if (err && !ret)
3024 ret = err;
3025 return ret;
3026}
3027
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003028/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003029 * This is a heuristic used to reduce the number of chunks balanced on
3030 * resume after balance was interrupted.
3031 */
3032static void update_balance_args(struct btrfs_balance_control *bctl)
3033{
3034 /*
3035 * Turn on soft mode for chunk types that were being converted.
3036 */
3037 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3038 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3039 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3040 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3041 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3042 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3043
3044 /*
3045 * Turn on usage filter if is not already used. The idea is
3046 * that chunks that we have already balanced should be
3047 * reasonably full. Don't do it for chunks that are being
3048 * converted - that will keep us from relocating unconverted
3049 * (albeit full) chunks.
3050 */
3051 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003052 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003053 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3054 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3055 bctl->data.usage = 90;
3056 }
3057 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003058 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003059 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3060 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3061 bctl->sys.usage = 90;
3062 }
3063 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003064 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003065 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3066 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3067 bctl->meta.usage = 90;
3068 }
3069}
3070
3071/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003072 * Should be called with both balance and volume mutexes held to
3073 * serialize other volume operations (add_dev/rm_dev/resize) with
3074 * restriper. Same goes for unset_balance_control.
3075 */
3076static void set_balance_control(struct btrfs_balance_control *bctl)
3077{
3078 struct btrfs_fs_info *fs_info = bctl->fs_info;
3079
3080 BUG_ON(fs_info->balance_ctl);
3081
3082 spin_lock(&fs_info->balance_lock);
3083 fs_info->balance_ctl = bctl;
3084 spin_unlock(&fs_info->balance_lock);
3085}
3086
3087static void unset_balance_control(struct btrfs_fs_info *fs_info)
3088{
3089 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3090
3091 BUG_ON(!fs_info->balance_ctl);
3092
3093 spin_lock(&fs_info->balance_lock);
3094 fs_info->balance_ctl = NULL;
3095 spin_unlock(&fs_info->balance_lock);
3096
3097 kfree(bctl);
3098}
3099
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003100/*
3101 * Balance filters. Return 1 if chunk should be filtered out
3102 * (should not be balanced).
3103 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003104static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003105 struct btrfs_balance_args *bargs)
3106{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003107 chunk_type = chunk_to_extended(chunk_type) &
3108 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003109
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003110 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003111 return 0;
3112
3113 return 1;
3114}
3115
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003116static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003117 struct btrfs_balance_args *bargs)
3118{
3119 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003120 u64 chunk_used;
3121 u64 user_thresh_min;
3122 u64 user_thresh_max;
3123 int ret = 1;
3124
3125 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3126 chunk_used = btrfs_block_group_used(&cache->item);
3127
3128 if (bargs->usage_min == 0)
3129 user_thresh_min = 0;
3130 else
3131 user_thresh_min = div_factor_fine(cache->key.offset,
3132 bargs->usage_min);
3133
3134 if (bargs->usage_max == 0)
3135 user_thresh_max = 1;
3136 else if (bargs->usage_max > 100)
3137 user_thresh_max = cache->key.offset;
3138 else
3139 user_thresh_max = div_factor_fine(cache->key.offset,
3140 bargs->usage_max);
3141
3142 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3143 ret = 0;
3144
3145 btrfs_put_block_group(cache);
3146 return ret;
3147}
3148
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003149static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003150 u64 chunk_offset, struct btrfs_balance_args *bargs)
3151{
3152 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003153 u64 chunk_used, user_thresh;
3154 int ret = 1;
3155
3156 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3157 chunk_used = btrfs_block_group_used(&cache->item);
3158
David Sterbabc309462015-10-20 18:22:13 +02003159 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003160 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003161 else if (bargs->usage > 100)
3162 user_thresh = cache->key.offset;
3163 else
3164 user_thresh = div_factor_fine(cache->key.offset,
3165 bargs->usage);
3166
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003167 if (chunk_used < user_thresh)
3168 ret = 0;
3169
3170 btrfs_put_block_group(cache);
3171 return ret;
3172}
3173
Ilya Dryomov409d4042012-01-16 22:04:47 +02003174static int chunk_devid_filter(struct extent_buffer *leaf,
3175 struct btrfs_chunk *chunk,
3176 struct btrfs_balance_args *bargs)
3177{
3178 struct btrfs_stripe *stripe;
3179 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3180 int i;
3181
3182 for (i = 0; i < num_stripes; i++) {
3183 stripe = btrfs_stripe_nr(chunk, i);
3184 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3185 return 0;
3186 }
3187
3188 return 1;
3189}
3190
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003191/* [pstart, pend) */
3192static int chunk_drange_filter(struct extent_buffer *leaf,
3193 struct btrfs_chunk *chunk,
3194 u64 chunk_offset,
3195 struct btrfs_balance_args *bargs)
3196{
3197 struct btrfs_stripe *stripe;
3198 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3199 u64 stripe_offset;
3200 u64 stripe_length;
3201 int factor;
3202 int i;
3203
3204 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3205 return 0;
3206
3207 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003208 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3209 factor = num_stripes / 2;
3210 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3211 factor = num_stripes - 1;
3212 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3213 factor = num_stripes - 2;
3214 } else {
3215 factor = num_stripes;
3216 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003217
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 continue;
3222
3223 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3224 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003225 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003226
3227 if (stripe_offset < bargs->pend &&
3228 stripe_offset + stripe_length > bargs->pstart)
3229 return 0;
3230 }
3231
3232 return 1;
3233}
3234
Ilya Dryomovea671762012-01-16 22:04:48 +02003235/* [vstart, vend) */
3236static int chunk_vrange_filter(struct extent_buffer *leaf,
3237 struct btrfs_chunk *chunk,
3238 u64 chunk_offset,
3239 struct btrfs_balance_args *bargs)
3240{
3241 if (chunk_offset < bargs->vend &&
3242 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3243 /* at least part of the chunk is inside this vrange */
3244 return 0;
3245
3246 return 1;
3247}
3248
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003249static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3250 struct btrfs_chunk *chunk,
3251 struct btrfs_balance_args *bargs)
3252{
3253 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3254
3255 if (bargs->stripes_min <= num_stripes
3256 && num_stripes <= bargs->stripes_max)
3257 return 0;
3258
3259 return 1;
3260}
3261
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003262static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003263 struct btrfs_balance_args *bargs)
3264{
3265 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3266 return 0;
3267
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003268 chunk_type = chunk_to_extended(chunk_type) &
3269 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003270
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003271 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003272 return 1;
3273
3274 return 0;
3275}
3276
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003277static int should_balance_chunk(struct btrfs_root *root,
3278 struct extent_buffer *leaf,
3279 struct btrfs_chunk *chunk, u64 chunk_offset)
3280{
3281 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3282 struct btrfs_balance_args *bargs = NULL;
3283 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3284
3285 /* type filter */
3286 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3287 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3288 return 0;
3289 }
3290
3291 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3292 bargs = &bctl->data;
3293 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3294 bargs = &bctl->sys;
3295 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3296 bargs = &bctl->meta;
3297
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003298 /* profiles filter */
3299 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3300 chunk_profiles_filter(chunk_type, bargs)) {
3301 return 0;
3302 }
3303
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003304 /* usage filter */
3305 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3306 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3307 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003308 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
3309 chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) {
3310 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003311 }
3312
Ilya Dryomov409d4042012-01-16 22:04:47 +02003313 /* devid filter */
3314 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3315 chunk_devid_filter(leaf, chunk, bargs)) {
3316 return 0;
3317 }
3318
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003319 /* drange filter, makes sense only with devid filter */
3320 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3321 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3322 return 0;
3323 }
3324
Ilya Dryomovea671762012-01-16 22:04:48 +02003325 /* vrange filter */
3326 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3327 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3328 return 0;
3329 }
3330
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003331 /* stripes filter */
3332 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3333 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3334 return 0;
3335 }
3336
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003337 /* soft profile changing mode */
3338 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3339 chunk_soft_convert_filter(chunk_type, bargs)) {
3340 return 0;
3341 }
3342
David Sterba7d824b62014-05-07 17:37:51 +02003343 /*
3344 * limited by count, must be the last filter
3345 */
3346 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3347 if (bargs->limit == 0)
3348 return 0;
3349 else
3350 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003351 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3352 /*
3353 * Same logic as the 'limit' filter; the minimum cannot be
3354 * determined here because we do not have the global informatoin
3355 * about the count of all chunks that satisfy the filters.
3356 */
3357 if (bargs->limit_max == 0)
3358 return 0;
3359 else
3360 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003361 }
3362
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003363 return 1;
3364}
3365
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003366static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003367{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003368 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003369 struct btrfs_root *chunk_root = fs_info->chunk_root;
3370 struct btrfs_root *dev_root = fs_info->dev_root;
3371 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003372 struct btrfs_device *device;
3373 u64 old_size;
3374 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003375 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003376 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003377 struct btrfs_path *path;
3378 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003379 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003380 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003381 struct extent_buffer *leaf;
3382 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003383 int ret;
3384 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003385 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003386 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003387 u64 limit_data = bctl->data.limit;
3388 u64 limit_meta = bctl->meta.limit;
3389 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003390 u32 count_data = 0;
3391 u32 count_meta = 0;
3392 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003393 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003394
Chris Masonec44a352008-04-28 15:29:52 -04003395 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003396 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003397 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003398 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003399 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003400 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003401 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003402 btrfs_device_get_total_bytes(device) -
3403 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003404 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003405 continue;
3406
3407 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003408 if (ret == -ENOSPC)
3409 break;
Chris Masonec44a352008-04-28 15:29:52 -04003410 BUG_ON(ret);
3411
Yan, Zhenga22285a2010-05-16 10:48:46 -04003412 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003413 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003414
3415 ret = btrfs_grow_device(trans, device, old_size);
3416 BUG_ON(ret);
3417
3418 btrfs_end_transaction(trans, dev_root);
3419 }
3420
3421 /* step two, relocate all the chunks */
3422 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003423 if (!path) {
3424 ret = -ENOMEM;
3425 goto error;
3426 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003427
3428 /* zero out stat counters */
3429 spin_lock(&fs_info->balance_lock);
3430 memset(&bctl->stat, 0, sizeof(bctl->stat));
3431 spin_unlock(&fs_info->balance_lock);
3432again:
David Sterba7d824b62014-05-07 17:37:51 +02003433 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003434 /*
3435 * The single value limit and min/max limits use the same bytes
3436 * in the
3437 */
David Sterba7d824b62014-05-07 17:37:51 +02003438 bctl->data.limit = limit_data;
3439 bctl->meta.limit = limit_meta;
3440 bctl->sys.limit = limit_sys;
3441 }
Chris Masonec44a352008-04-28 15:29:52 -04003442 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3443 key.offset = (u64)-1;
3444 key.type = BTRFS_CHUNK_ITEM_KEY;
3445
Chris Masond3977122009-01-05 21:25:51 -05003446 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003447 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003448 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003449 ret = -ECANCELED;
3450 goto error;
3451 }
3452
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003453 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003454 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003455 if (ret < 0) {
3456 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003457 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003458 }
Chris Masonec44a352008-04-28 15:29:52 -04003459
3460 /*
3461 * this shouldn't happen, it means the last relocate
3462 * failed
3463 */
3464 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003465 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003466
3467 ret = btrfs_previous_item(chunk_root, path, 0,
3468 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003469 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003470 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003471 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003472 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003473 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003474
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003475 leaf = path->nodes[0];
3476 slot = path->slots[0];
3477 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3478
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003479 if (found_key.objectid != key.objectid) {
3480 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003481 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003482 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003483
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003484 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003485 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003486
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003487 if (!counting) {
3488 spin_lock(&fs_info->balance_lock);
3489 bctl->stat.considered++;
3490 spin_unlock(&fs_info->balance_lock);
3491 }
3492
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003493 ret = should_balance_chunk(chunk_root, leaf, chunk,
3494 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003495
David Sterbab3b4aa72011-04-21 01:20:15 +02003496 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003497 if (!ret) {
3498 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003499 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003500 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003501
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003502 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003503 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003504 spin_lock(&fs_info->balance_lock);
3505 bctl->stat.expected++;
3506 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003507
3508 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3509 count_data++;
3510 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3511 count_sys++;
3512 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3513 count_meta++;
3514
3515 goto loop;
3516 }
3517
3518 /*
3519 * Apply limit_min filter, no need to check if the LIMITS
3520 * filter is used, limit_min is 0 by default
3521 */
3522 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3523 count_data < bctl->data.limit_min)
3524 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3525 count_meta < bctl->meta.limit_min)
3526 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3527 count_sys < bctl->sys.limit_min)) {
3528 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003529 goto loop;
3530 }
3531
Zhao Lei2c9fe832015-11-09 11:51:32 +08003532 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && !chunk_reserved) {
3533 trans = btrfs_start_transaction(chunk_root, 0);
3534 if (IS_ERR(trans)) {
3535 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3536 ret = PTR_ERR(trans);
3537 goto error;
3538 }
3539
3540 ret = btrfs_force_chunk_alloc(trans, chunk_root,
3541 BTRFS_BLOCK_GROUP_DATA);
Filipe Manana8a7d6562015-12-10 11:08:59 +00003542 btrfs_end_transaction(trans, chunk_root);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003543 if (ret < 0) {
3544 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3545 goto error;
3546 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003547 chunk_reserved = 1;
3548 }
3549
Chris Masonec44a352008-04-28 15:29:52 -04003550 ret = btrfs_relocate_chunk(chunk_root,
Chris Masonec44a352008-04-28 15:29:52 -04003551 found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003552 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003553 if (ret && ret != -ENOSPC)
3554 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003555 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003556 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003557 } else {
3558 spin_lock(&fs_info->balance_lock);
3559 bctl->stat.completed++;
3560 spin_unlock(&fs_info->balance_lock);
3561 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003562loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003563 if (found_key.offset == 0)
3564 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003565 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003566 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003567
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003568 if (counting) {
3569 btrfs_release_path(path);
3570 counting = false;
3571 goto again;
3572 }
Chris Masonec44a352008-04-28 15:29:52 -04003573error:
3574 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003575 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003576 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003577 enospc_errors);
3578 if (!ret)
3579 ret = -ENOSPC;
3580 }
3581
Chris Masonec44a352008-04-28 15:29:52 -04003582 return ret;
3583}
3584
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003585/**
3586 * alloc_profile_is_valid - see if a given profile is valid and reduced
3587 * @flags: profile to validate
3588 * @extended: if true @flags is treated as an extended profile
3589 */
3590static int alloc_profile_is_valid(u64 flags, int extended)
3591{
3592 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3593 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3594
3595 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3596
3597 /* 1) check that all other bits are zeroed */
3598 if (flags & ~mask)
3599 return 0;
3600
3601 /* 2) see if profile is reduced */
3602 if (flags == 0)
3603 return !extended; /* "0" is valid for usual profiles */
3604
3605 /* true if exactly one bit set */
3606 return (flags & (flags - 1)) == 0;
3607}
3608
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003609static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3610{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003611 /* cancel requested || normal exit path */
3612 return atomic_read(&fs_info->balance_cancel_req) ||
3613 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3614 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003615}
3616
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003617static void __cancel_balance(struct btrfs_fs_info *fs_info)
3618{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003619 int ret;
3620
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003621 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003622 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003623 if (ret)
Anand Jaina4553fe2015-09-25 14:43:01 +08003624 btrfs_std_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003625
3626 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003627}
3628
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003629/* Non-zero return value signifies invalidity */
3630static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3631 u64 allowed)
3632{
3633 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3634 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3635 (bctl_arg->target & ~allowed)));
3636}
3637
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003638/*
3639 * Should be called with both balance and volume mutexes held
3640 */
3641int btrfs_balance(struct btrfs_balance_control *bctl,
3642 struct btrfs_ioctl_balance_args *bargs)
3643{
3644 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003645 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003646 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003647 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003648 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003649 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003650
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003651 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003652 atomic_read(&fs_info->balance_pause_req) ||
3653 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003654 ret = -EINVAL;
3655 goto out;
3656 }
3657
Ilya Dryomove4837f82012-03-27 17:09:17 +03003658 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3659 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3660 mixed = 1;
3661
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003662 /*
3663 * In case of mixed groups both data and meta should be picked,
3664 * and identical options should be given for both of them.
3665 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003666 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3667 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003668 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3669 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3670 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003671 btrfs_err(fs_info, "with mixed groups data and "
3672 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003673 ret = -EINVAL;
3674 goto out;
3675 }
3676 }
3677
Stefan Behrens8dabb742012-11-06 13:15:27 +01003678 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003679 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003680 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3681 BUG_ON(num_devices < 1);
3682 num_devices--;
3683 }
Liu Bo73beece2015-07-17 16:49:19 +08003684 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003685 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003686 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003687 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003688 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003689 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003690 if (num_devices > 2)
3691 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3692 if (num_devices > 3)
3693 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3694 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003695 if (validate_convert_profile(&bctl->data, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003696 btrfs_err(fs_info, "unable to start balance with target "
3697 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003698 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003699 ret = -EINVAL;
3700 goto out;
3701 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003702 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003703 btrfs_err(fs_info,
3704 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003705 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003706 ret = -EINVAL;
3707 goto out;
3708 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003709 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003710 btrfs_err(fs_info,
3711 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003712 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003713 ret = -EINVAL;
3714 goto out;
3715 }
3716
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003717 /* allow to reduce meta or sys integrity only if force set */
3718 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003719 BTRFS_BLOCK_GROUP_RAID10 |
3720 BTRFS_BLOCK_GROUP_RAID5 |
3721 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003722 do {
3723 seq = read_seqbegin(&fs_info->profiles_lock);
3724
3725 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3726 (fs_info->avail_system_alloc_bits & allowed) &&
3727 !(bctl->sys.target & allowed)) ||
3728 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3729 (fs_info->avail_metadata_alloc_bits & allowed) &&
3730 !(bctl->meta.target & allowed))) {
3731 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003732 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003733 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003734 btrfs_err(fs_info, "balance will reduce metadata "
3735 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003736 ret = -EINVAL;
3737 goto out;
3738 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003739 }
Miao Xiede98ced2013-01-29 10:13:12 +00003740 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003741
Sam Tygieree592d02016-01-06 08:46:12 +00003742 if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
3743 btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
3744 btrfs_warn(fs_info,
Filipe Mananafedc0042016-01-15 10:56:15 +00003745 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Sam Tygieree592d02016-01-06 08:46:12 +00003746 bctl->meta.target, bctl->data.target);
3747 }
3748
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003749 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003750 fs_info->num_tolerated_disk_barrier_failures = min(
3751 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3752 btrfs_get_num_tolerated_disk_barrier_failures(
3753 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003754 }
3755
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003756 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003757 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003758 goto out;
3759
Ilya Dryomov59641012012-01-16 22:04:48 +02003760 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3761 BUG_ON(ret == -EEXIST);
3762 set_balance_control(bctl);
3763 } else {
3764 BUG_ON(ret != -EEXIST);
3765 spin_lock(&fs_info->balance_lock);
3766 update_balance_args(bctl);
3767 spin_unlock(&fs_info->balance_lock);
3768 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003769
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003770 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003771 mutex_unlock(&fs_info->balance_mutex);
3772
3773 ret = __btrfs_balance(fs_info);
3774
3775 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003776 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003777
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003778 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3779 fs_info->num_tolerated_disk_barrier_failures =
3780 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3781 }
3782
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003783 if (bargs) {
3784 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003785 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003786 }
3787
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003788 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3789 balance_need_close(fs_info)) {
3790 __cancel_balance(fs_info);
3791 }
3792
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003793 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003794
3795 return ret;
3796out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003797 if (bctl->flags & BTRFS_BALANCE_RESUME)
3798 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003799 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003800 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003801 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3802 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003803 return ret;
3804}
3805
3806static int balance_kthread(void *data)
3807{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003808 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003809 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003810
3811 mutex_lock(&fs_info->volume_mutex);
3812 mutex_lock(&fs_info->balance_mutex);
3813
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003814 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003815 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003816 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003817 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003818
3819 mutex_unlock(&fs_info->balance_mutex);
3820 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003821
Ilya Dryomov59641012012-01-16 22:04:48 +02003822 return ret;
3823}
3824
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003825int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3826{
3827 struct task_struct *tsk;
3828
3829 spin_lock(&fs_info->balance_lock);
3830 if (!fs_info->balance_ctl) {
3831 spin_unlock(&fs_info->balance_lock);
3832 return 0;
3833 }
3834 spin_unlock(&fs_info->balance_lock);
3835
3836 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003837 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003838 return 0;
3839 }
3840
3841 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303842 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003843}
3844
Ilya Dryomov68310a52012-06-22 12:24:12 -06003845int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003846{
Ilya Dryomov59641012012-01-16 22:04:48 +02003847 struct btrfs_balance_control *bctl;
3848 struct btrfs_balance_item *item;
3849 struct btrfs_disk_balance_args disk_bargs;
3850 struct btrfs_path *path;
3851 struct extent_buffer *leaf;
3852 struct btrfs_key key;
3853 int ret;
3854
3855 path = btrfs_alloc_path();
3856 if (!path)
3857 return -ENOMEM;
3858
Ilya Dryomov68310a52012-06-22 12:24:12 -06003859 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003860 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003861 key.offset = 0;
3862
3863 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3864 if (ret < 0)
3865 goto out;
3866 if (ret > 0) { /* ret = -ENOENT; */
3867 ret = 0;
3868 goto out;
3869 }
3870
Ilya Dryomov59641012012-01-16 22:04:48 +02003871 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3872 if (!bctl) {
3873 ret = -ENOMEM;
3874 goto out;
3875 }
3876
Ilya Dryomov59641012012-01-16 22:04:48 +02003877 leaf = path->nodes[0];
3878 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3879
Ilya Dryomov68310a52012-06-22 12:24:12 -06003880 bctl->fs_info = fs_info;
3881 bctl->flags = btrfs_balance_flags(leaf, item);
3882 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003883
3884 btrfs_balance_data(leaf, item, &disk_bargs);
3885 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3886 btrfs_balance_meta(leaf, item, &disk_bargs);
3887 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3888 btrfs_balance_sys(leaf, item, &disk_bargs);
3889 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3890
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003891 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3892
Ilya Dryomov68310a52012-06-22 12:24:12 -06003893 mutex_lock(&fs_info->volume_mutex);
3894 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003895
Ilya Dryomov68310a52012-06-22 12:24:12 -06003896 set_balance_control(bctl);
3897
3898 mutex_unlock(&fs_info->balance_mutex);
3899 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003900out:
3901 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003902 return ret;
3903}
3904
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003905int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3906{
3907 int ret = 0;
3908
3909 mutex_lock(&fs_info->balance_mutex);
3910 if (!fs_info->balance_ctl) {
3911 mutex_unlock(&fs_info->balance_mutex);
3912 return -ENOTCONN;
3913 }
3914
3915 if (atomic_read(&fs_info->balance_running)) {
3916 atomic_inc(&fs_info->balance_pause_req);
3917 mutex_unlock(&fs_info->balance_mutex);
3918
3919 wait_event(fs_info->balance_wait_q,
3920 atomic_read(&fs_info->balance_running) == 0);
3921
3922 mutex_lock(&fs_info->balance_mutex);
3923 /* we are good with balance_ctl ripped off from under us */
3924 BUG_ON(atomic_read(&fs_info->balance_running));
3925 atomic_dec(&fs_info->balance_pause_req);
3926 } else {
3927 ret = -ENOTCONN;
3928 }
3929
3930 mutex_unlock(&fs_info->balance_mutex);
3931 return ret;
3932}
3933
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003934int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3935{
Ilya Dryomove649e582013-10-10 20:40:21 +03003936 if (fs_info->sb->s_flags & MS_RDONLY)
3937 return -EROFS;
3938
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003939 mutex_lock(&fs_info->balance_mutex);
3940 if (!fs_info->balance_ctl) {
3941 mutex_unlock(&fs_info->balance_mutex);
3942 return -ENOTCONN;
3943 }
3944
3945 atomic_inc(&fs_info->balance_cancel_req);
3946 /*
3947 * if we are running just wait and return, balance item is
3948 * deleted in btrfs_balance in this case
3949 */
3950 if (atomic_read(&fs_info->balance_running)) {
3951 mutex_unlock(&fs_info->balance_mutex);
3952 wait_event(fs_info->balance_wait_q,
3953 atomic_read(&fs_info->balance_running) == 0);
3954 mutex_lock(&fs_info->balance_mutex);
3955 } else {
3956 /* __cancel_balance needs volume_mutex */
3957 mutex_unlock(&fs_info->balance_mutex);
3958 mutex_lock(&fs_info->volume_mutex);
3959 mutex_lock(&fs_info->balance_mutex);
3960
3961 if (fs_info->balance_ctl)
3962 __cancel_balance(fs_info);
3963
3964 mutex_unlock(&fs_info->volume_mutex);
3965 }
3966
3967 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3968 atomic_dec(&fs_info->balance_cancel_req);
3969 mutex_unlock(&fs_info->balance_mutex);
3970 return 0;
3971}
3972
Stefan Behrens803b2f52013-08-15 17:11:21 +02003973static int btrfs_uuid_scan_kthread(void *data)
3974{
3975 struct btrfs_fs_info *fs_info = data;
3976 struct btrfs_root *root = fs_info->tree_root;
3977 struct btrfs_key key;
3978 struct btrfs_key max_key;
3979 struct btrfs_path *path = NULL;
3980 int ret = 0;
3981 struct extent_buffer *eb;
3982 int slot;
3983 struct btrfs_root_item root_item;
3984 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003985 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003986
3987 path = btrfs_alloc_path();
3988 if (!path) {
3989 ret = -ENOMEM;
3990 goto out;
3991 }
3992
3993 key.objectid = 0;
3994 key.type = BTRFS_ROOT_ITEM_KEY;
3995 key.offset = 0;
3996
3997 max_key.objectid = (u64)-1;
3998 max_key.type = BTRFS_ROOT_ITEM_KEY;
3999 max_key.offset = (u64)-1;
4000
Stefan Behrens803b2f52013-08-15 17:11:21 +02004001 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004002 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004003 if (ret) {
4004 if (ret > 0)
4005 ret = 0;
4006 break;
4007 }
4008
4009 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4010 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4011 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4012 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4013 goto skip;
4014
4015 eb = path->nodes[0];
4016 slot = path->slots[0];
4017 item_size = btrfs_item_size_nr(eb, slot);
4018 if (item_size < sizeof(root_item))
4019 goto skip;
4020
Stefan Behrens803b2f52013-08-15 17:11:21 +02004021 read_extent_buffer(eb, &root_item,
4022 btrfs_item_ptr_offset(eb, slot),
4023 (int)sizeof(root_item));
4024 if (btrfs_root_refs(&root_item) == 0)
4025 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004026
4027 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4028 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4029 if (trans)
4030 goto update_tree;
4031
4032 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004033 /*
4034 * 1 - subvol uuid item
4035 * 1 - received_subvol uuid item
4036 */
4037 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4038 if (IS_ERR(trans)) {
4039 ret = PTR_ERR(trans);
4040 break;
4041 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004042 continue;
4043 } else {
4044 goto skip;
4045 }
4046update_tree:
4047 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004048 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4049 root_item.uuid,
4050 BTRFS_UUID_KEY_SUBVOL,
4051 key.objectid);
4052 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004053 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004054 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004055 break;
4056 }
4057 }
4058
4059 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004060 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4061 root_item.received_uuid,
4062 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4063 key.objectid);
4064 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004065 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004066 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004067 break;
4068 }
4069 }
4070
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004071skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004072 if (trans) {
4073 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004074 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004075 if (ret)
4076 break;
4077 }
4078
Stefan Behrens803b2f52013-08-15 17:11:21 +02004079 btrfs_release_path(path);
4080 if (key.offset < (u64)-1) {
4081 key.offset++;
4082 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4083 key.offset = 0;
4084 key.type = BTRFS_ROOT_ITEM_KEY;
4085 } else if (key.objectid < (u64)-1) {
4086 key.offset = 0;
4087 key.type = BTRFS_ROOT_ITEM_KEY;
4088 key.objectid++;
4089 } else {
4090 break;
4091 }
4092 cond_resched();
4093 }
4094
4095out:
4096 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004097 if (trans && !IS_ERR(trans))
4098 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004099 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004100 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004101 else
4102 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004103 up(&fs_info->uuid_tree_rescan_sem);
4104 return 0;
4105}
4106
Stefan Behrens70f80172013-08-15 17:11:23 +02004107/*
4108 * Callback for btrfs_uuid_tree_iterate().
4109 * returns:
4110 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004111 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004112 * > 0 if the check failed, which means the caller shall remove the entry.
4113 */
4114static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4115 u8 *uuid, u8 type, u64 subid)
4116{
4117 struct btrfs_key key;
4118 int ret = 0;
4119 struct btrfs_root *subvol_root;
4120
4121 if (type != BTRFS_UUID_KEY_SUBVOL &&
4122 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4123 goto out;
4124
4125 key.objectid = subid;
4126 key.type = BTRFS_ROOT_ITEM_KEY;
4127 key.offset = (u64)-1;
4128 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4129 if (IS_ERR(subvol_root)) {
4130 ret = PTR_ERR(subvol_root);
4131 if (ret == -ENOENT)
4132 ret = 1;
4133 goto out;
4134 }
4135
4136 switch (type) {
4137 case BTRFS_UUID_KEY_SUBVOL:
4138 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4139 ret = 1;
4140 break;
4141 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4142 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4143 BTRFS_UUID_SIZE))
4144 ret = 1;
4145 break;
4146 }
4147
4148out:
4149 return ret;
4150}
4151
4152static int btrfs_uuid_rescan_kthread(void *data)
4153{
4154 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4155 int ret;
4156
4157 /*
4158 * 1st step is to iterate through the existing UUID tree and
4159 * to delete all entries that contain outdated data.
4160 * 2nd step is to add all missing entries to the UUID tree.
4161 */
4162 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4163 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004164 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004165 up(&fs_info->uuid_tree_rescan_sem);
4166 return ret;
4167 }
4168 return btrfs_uuid_scan_kthread(data);
4169}
4170
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004171int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4172{
4173 struct btrfs_trans_handle *trans;
4174 struct btrfs_root *tree_root = fs_info->tree_root;
4175 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004176 struct task_struct *task;
4177 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004178
4179 /*
4180 * 1 - root node
4181 * 1 - root item
4182 */
4183 trans = btrfs_start_transaction(tree_root, 2);
4184 if (IS_ERR(trans))
4185 return PTR_ERR(trans);
4186
4187 uuid_root = btrfs_create_tree(trans, fs_info,
4188 BTRFS_UUID_TREE_OBJECTID);
4189 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004190 ret = PTR_ERR(uuid_root);
4191 btrfs_abort_transaction(trans, tree_root, ret);
4192 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004193 }
4194
4195 fs_info->uuid_root = uuid_root;
4196
Stefan Behrens803b2f52013-08-15 17:11:21 +02004197 ret = btrfs_commit_transaction(trans, tree_root);
4198 if (ret)
4199 return ret;
4200
4201 down(&fs_info->uuid_tree_rescan_sem);
4202 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4203 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004204 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004205 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004206 up(&fs_info->uuid_tree_rescan_sem);
4207 return PTR_ERR(task);
4208 }
4209
4210 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004211}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004212
Stefan Behrens70f80172013-08-15 17:11:23 +02004213int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4214{
4215 struct task_struct *task;
4216
4217 down(&fs_info->uuid_tree_rescan_sem);
4218 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4219 if (IS_ERR(task)) {
4220 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004221 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004222 up(&fs_info->uuid_tree_rescan_sem);
4223 return PTR_ERR(task);
4224 }
4225
4226 return 0;
4227}
4228
Chris Mason8f18cf12008-04-25 16:53:30 -04004229/*
4230 * shrinking a device means finding all of the device extents past
4231 * the new size, and then following the back refs to the chunks.
4232 * The chunk relocation code actually frees the device extent
4233 */
4234int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4235{
4236 struct btrfs_trans_handle *trans;
4237 struct btrfs_root *root = device->dev_root;
4238 struct btrfs_dev_extent *dev_extent = NULL;
4239 struct btrfs_path *path;
4240 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004241 u64 chunk_offset;
4242 int ret;
4243 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004244 int failed = 0;
4245 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004246 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004247 struct extent_buffer *l;
4248 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02004249 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004250 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004251 u64 old_size = btrfs_device_get_total_bytes(device);
4252 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004253
Stefan Behrens63a212a2012-11-05 18:29:28 +01004254 if (device->is_tgtdev_for_dev_replace)
4255 return -EINVAL;
4256
Chris Mason8f18cf12008-04-25 16:53:30 -04004257 path = btrfs_alloc_path();
4258 if (!path)
4259 return -ENOMEM;
4260
David Sterbae4058b52015-11-27 16:31:35 +01004261 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004262
Chris Mason7d9eb122008-07-08 14:19:17 -04004263 lock_chunks(root);
4264
Miao Xie7cc8e582014-09-03 21:35:38 +08004265 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004266 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004267 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004268 spin_lock(&root->fs_info->free_chunk_lock);
4269 root->fs_info->free_chunk_space -= diff;
4270 spin_unlock(&root->fs_info->free_chunk_lock);
4271 }
Chris Mason7d9eb122008-07-08 14:19:17 -04004272 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004273
Josef Bacikba1bf482009-09-11 16:11:19 -04004274again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004275 key.objectid = device->devid;
4276 key.offset = (u64)-1;
4277 key.type = BTRFS_DEV_EXTENT_KEY;
4278
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004279 do {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004280 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004281 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004282 if (ret < 0) {
4283 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004284 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004285 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004286
4287 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004288 if (ret)
4289 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004290 if (ret < 0)
4291 goto done;
4292 if (ret) {
4293 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004294 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004295 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004296 }
4297
4298 l = path->nodes[0];
4299 slot = path->slots[0];
4300 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4301
Josef Bacikba1bf482009-09-11 16:11:19 -04004302 if (key.objectid != device->devid) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004303 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004304 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004305 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004306 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004307
4308 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4309 length = btrfs_dev_extent_length(l, dev_extent);
4310
Josef Bacikba1bf482009-09-11 16:11:19 -04004311 if (key.offset + length <= new_size) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004312 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004313 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004314 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004315 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004316
Chris Mason8f18cf12008-04-25 16:53:30 -04004317 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004318 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004319
Zhaoleidc2ee4e2015-08-05 18:00:04 +08004320 ret = btrfs_relocate_chunk(root, chunk_offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004321 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004322 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004323 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004324 if (ret == -ENOSPC)
4325 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004326 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004327
4328 if (failed && !retried) {
4329 failed = 0;
4330 retried = true;
4331 goto again;
4332 } else if (failed && retried) {
4333 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004334 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004335 }
4336
Chris Balld6397ba2009-04-27 07:29:03 -04004337 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004338 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004339 if (IS_ERR(trans)) {
4340 ret = PTR_ERR(trans);
4341 goto done;
4342 }
4343
Chris Balld6397ba2009-04-27 07:29:03 -04004344 lock_chunks(root);
Filipe Manana53e489b2015-06-02 14:43:21 +01004345
4346 /*
4347 * We checked in the above loop all device extents that were already in
4348 * the device tree. However before we have updated the device's
4349 * total_bytes to the new size, we might have had chunk allocations that
4350 * have not complete yet (new block groups attached to transaction
4351 * handles), and therefore their device extents were not yet in the
4352 * device tree and we missed them in the loop above. So if we have any
4353 * pending chunk using a device extent that overlaps the device range
4354 * that we can not use anymore, commit the current transaction and
4355 * repeat the search on the device tree - this way we guarantee we will
4356 * not have chunks using device extents that end beyond 'new_size'.
4357 */
4358 if (!checked_pending_chunks) {
4359 u64 start = new_size;
4360 u64 len = old_size - new_size;
4361
Jeff Mahoney499f3772015-06-15 09:41:17 -04004362 if (contains_pending_extent(trans->transaction, device,
4363 &start, len)) {
Filipe Manana53e489b2015-06-02 14:43:21 +01004364 unlock_chunks(root);
4365 checked_pending_chunks = true;
4366 failed = 0;
4367 retried = false;
4368 ret = btrfs_commit_transaction(trans, root);
4369 if (ret)
4370 goto done;
4371 goto again;
4372 }
4373 }
4374
Miao Xie7cc8e582014-09-03 21:35:38 +08004375 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004376 if (list_empty(&device->resized_list))
4377 list_add_tail(&device->resized_list,
4378 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004379
Chris Balld6397ba2009-04-27 07:29:03 -04004380 WARN_ON(diff > old_total);
4381 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4382 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004383
4384 /* Now btrfs_update_device() will change the on-disk size. */
4385 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004386 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004387done:
4388 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004389 if (ret) {
4390 lock_chunks(root);
4391 btrfs_device_set_total_bytes(device, old_size);
4392 if (device->writeable)
4393 device->fs_devices->total_rw_bytes += diff;
4394 spin_lock(&root->fs_info->free_chunk_lock);
4395 root->fs_info->free_chunk_space += diff;
4396 spin_unlock(&root->fs_info->free_chunk_lock);
4397 unlock_chunks(root);
4398 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004399 return ret;
4400}
4401
Li Zefan125ccb02011-12-08 15:07:24 +08004402static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004403 struct btrfs_key *key,
4404 struct btrfs_chunk *chunk, int item_size)
4405{
David Sterba6c417612011-04-13 15:41:04 +02004406 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004407 struct btrfs_disk_key disk_key;
4408 u32 array_size;
4409 u8 *ptr;
4410
Miao Xiefe48a5c2014-09-03 21:35:39 +08004411 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004412 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004413 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004414 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4415 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004416 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004417 }
Chris Mason0b86a832008-03-24 15:01:56 -04004418
4419 ptr = super_copy->sys_chunk_array + array_size;
4420 btrfs_cpu_key_to_disk(&disk_key, key);
4421 memcpy(ptr, &disk_key, sizeof(disk_key));
4422 ptr += sizeof(disk_key);
4423 memcpy(ptr, chunk, item_size);
4424 item_size += sizeof(disk_key);
4425 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004426 unlock_chunks(root);
4427
Chris Mason0b86a832008-03-24 15:01:56 -04004428 return 0;
4429}
4430
Miao Xieb2117a32011-01-05 10:07:28 +00004431/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004432 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004433 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004434static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004435{
Arne Jansen73c5de02011-04-12 12:07:57 +02004436 const struct btrfs_device_info *di_a = a;
4437 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004438
Arne Jansen73c5de02011-04-12 12:07:57 +02004439 if (di_a->max_avail > di_b->max_avail)
4440 return -1;
4441 if (di_a->max_avail < di_b->max_avail)
4442 return 1;
4443 if (di_a->total_avail > di_b->total_avail)
4444 return -1;
4445 if (di_a->total_avail < di_b->total_avail)
4446 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004447 return 0;
4448}
4449
David Woodhouse53b381b2013-01-29 18:40:14 -05004450static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4451{
4452 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004453 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004454}
4455
4456static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4457{
Zhao Leiffe2d202015-01-20 15:11:44 +08004458 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004459 return;
4460
Miao Xieceda0862013-04-11 10:30:16 +00004461 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004462}
4463
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004464#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4465 - sizeof(struct btrfs_item) \
4466 - sizeof(struct btrfs_chunk)) \
4467 / sizeof(struct btrfs_stripe) + 1)
4468
4469#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4470 - 2 * sizeof(struct btrfs_disk_key) \
4471 - 2 * sizeof(struct btrfs_chunk)) \
4472 / sizeof(struct btrfs_stripe) + 1)
4473
Miao Xieb2117a32011-01-05 10:07:28 +00004474static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004475 struct btrfs_root *extent_root, u64 start,
4476 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004477{
4478 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004479 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4480 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004481 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004482 struct extent_map_tree *em_tree;
4483 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004484 struct btrfs_device_info *devices_info = NULL;
4485 u64 total_avail;
4486 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004487 int data_stripes; /* number of stripes that count for
4488 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004489 int sub_stripes; /* sub_stripes info for map */
4490 int dev_stripes; /* stripes per dev */
4491 int devs_max; /* max devs to use */
4492 int devs_min; /* min devs needed */
4493 int devs_increment; /* ndevs has to be a multiple of this */
4494 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004495 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004496 u64 max_stripe_size;
4497 u64 max_chunk_size;
4498 u64 stripe_size;
4499 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004500 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004501 int ndevs;
4502 int i;
4503 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004504 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004505
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004506 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004507
Miao Xieb2117a32011-01-05 10:07:28 +00004508 if (list_empty(&fs_devices->alloc_list))
4509 return -ENOSPC;
4510
Liu Bo31e50222012-11-21 14:18:10 +00004511 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004512
Liu Bo31e50222012-11-21 14:18:10 +00004513 sub_stripes = btrfs_raid_array[index].sub_stripes;
4514 dev_stripes = btrfs_raid_array[index].dev_stripes;
4515 devs_max = btrfs_raid_array[index].devs_max;
4516 devs_min = btrfs_raid_array[index].devs_min;
4517 devs_increment = btrfs_raid_array[index].devs_increment;
4518 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004519
4520 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004521 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004522 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004523 if (!devs_max)
4524 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004525 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004526 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004527 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4528 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004529 else
Byongho Leeee221842015-12-15 01:42:10 +09004530 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004531 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004532 if (!devs_max)
4533 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004534 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004535 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004536 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004537 if (!devs_max)
4538 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004539 } else {
David Sterba351fd352014-05-15 16:48:20 +02004540 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004541 type);
4542 BUG_ON(1);
4543 }
4544
4545 /* we don't want a chunk larger than 10% of writeable space */
4546 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4547 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004548
David Sterba31e818f2015-02-20 18:00:26 +01004549 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004550 GFP_NOFS);
4551 if (!devices_info)
4552 return -ENOMEM;
4553
Arne Jansen73c5de02011-04-12 12:07:57 +02004554 cur = fs_devices->alloc_list.next;
4555
4556 /*
4557 * in the first pass through the devices list, we gather information
4558 * about the available holes on each device.
4559 */
4560 ndevs = 0;
4561 while (cur != &fs_devices->alloc_list) {
4562 struct btrfs_device *device;
4563 u64 max_avail;
4564 u64 dev_offset;
4565
4566 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4567
4568 cur = cur->next;
4569
4570 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004571 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004572 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004573 continue;
4574 }
4575
Stefan Behrens63a212a2012-11-05 18:29:28 +01004576 if (!device->in_fs_metadata ||
4577 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004578 continue;
4579
4580 if (device->total_bytes > device->bytes_used)
4581 total_avail = device->total_bytes - device->bytes_used;
4582 else
4583 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004584
4585 /* If there is no space on this device, skip it. */
4586 if (total_avail == 0)
4587 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004588
Josef Bacik6df9a952013-06-27 13:22:46 -04004589 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004590 max_stripe_size * dev_stripes,
4591 &dev_offset, &max_avail);
4592 if (ret && ret != -ENOSPC)
4593 goto error;
4594
4595 if (ret == 0)
4596 max_avail = max_stripe_size * dev_stripes;
4597
4598 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4599 continue;
4600
Eric Sandeen063d0062013-01-31 00:55:01 +00004601 if (ndevs == fs_devices->rw_devices) {
4602 WARN(1, "%s: found more than %llu devices\n",
4603 __func__, fs_devices->rw_devices);
4604 break;
4605 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004606 devices_info[ndevs].dev_offset = dev_offset;
4607 devices_info[ndevs].max_avail = max_avail;
4608 devices_info[ndevs].total_avail = total_avail;
4609 devices_info[ndevs].dev = device;
4610 ++ndevs;
4611 }
4612
4613 /*
4614 * now sort the devices by hole size / available space
4615 */
4616 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4617 btrfs_cmp_device_info, NULL);
4618
4619 /* round down to number of usable stripes */
4620 ndevs -= ndevs % devs_increment;
4621
4622 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4623 ret = -ENOSPC;
4624 goto error;
4625 }
4626
4627 if (devs_max && ndevs > devs_max)
4628 ndevs = devs_max;
4629 /*
4630 * the primary goal is to maximize the number of stripes, so use as many
4631 * devices as possible, even if the stripes are not maximum sized.
4632 */
4633 stripe_size = devices_info[ndevs-1].max_avail;
4634 num_stripes = ndevs * dev_stripes;
4635
David Woodhouse53b381b2013-01-29 18:40:14 -05004636 /*
4637 * this will have to be fixed for RAID1 and RAID10 over
4638 * more drives
4639 */
4640 data_stripes = num_stripes / ncopies;
4641
David Woodhouse53b381b2013-01-29 18:40:14 -05004642 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4643 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4644 btrfs_super_stripesize(info->super_copy));
4645 data_stripes = num_stripes - 1;
4646 }
4647 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4648 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4649 btrfs_super_stripesize(info->super_copy));
4650 data_stripes = num_stripes - 2;
4651 }
Chris Mason86db2572013-02-20 16:23:40 -05004652
4653 /*
4654 * Use the number of data stripes to figure out how big this chunk
4655 * is really going to be in terms of logical address space,
4656 * and compare that answer with the max chunk size
4657 */
4658 if (stripe_size * data_stripes > max_chunk_size) {
4659 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004660
4661 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004662
4663 /* bump the answer up to a 16MB boundary */
4664 stripe_size = (stripe_size + mask) & ~mask;
4665
4666 /* but don't go higher than the limits we found
4667 * while searching for free extents
4668 */
4669 if (stripe_size > devices_info[ndevs-1].max_avail)
4670 stripe_size = devices_info[ndevs-1].max_avail;
4671 }
4672
David Sterbab8b93ad2015-01-16 17:26:13 +01004673 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004674
4675 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004676 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004677 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004678
Miao Xieb2117a32011-01-05 10:07:28 +00004679 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4680 if (!map) {
4681 ret = -ENOMEM;
4682 goto error;
4683 }
4684 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004685
Arne Jansen73c5de02011-04-12 12:07:57 +02004686 for (i = 0; i < ndevs; ++i) {
4687 for (j = 0; j < dev_stripes; ++j) {
4688 int s = i * dev_stripes + j;
4689 map->stripes[s].dev = devices_info[i].dev;
4690 map->stripes[s].physical = devices_info[i].dev_offset +
4691 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004692 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004693 }
Chris Mason593060d2008-03-25 16:50:33 -04004694 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004695 map->stripe_len = raid_stripe_len;
4696 map->io_align = raid_stripe_len;
4697 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004698 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004699 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004700
David Woodhouse53b381b2013-01-29 18:40:14 -05004701 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004702
Arne Jansen73c5de02011-04-12 12:07:57 +02004703 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004704
David Sterba172ddd62011-04-21 00:48:27 +02004705 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004706 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004707 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004708 ret = -ENOMEM;
4709 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004710 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004711 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004712 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004713 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004714 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004715 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004716 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004717 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004718
Chris Mason0b86a832008-03-24 15:01:56 -04004719 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004720 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004721 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004722 if (!ret) {
4723 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4724 atomic_inc(&em->refs);
4725 }
Chris Mason890871b2009-09-02 16:24:52 -04004726 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004727 if (ret) {
4728 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004729 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004730 }
Yan Zheng2b820322008-11-17 21:11:30 -05004731
Josef Bacik04487482013-01-29 15:03:37 -05004732 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4733 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4734 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004735 if (ret)
4736 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004737
Miao Xie7cc8e582014-09-03 21:35:38 +08004738 for (i = 0; i < map->num_stripes; i++) {
4739 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4740 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4741 }
Miao Xie43530c42014-09-03 21:35:36 +08004742
Miao Xie1c116182014-09-03 21:35:37 +08004743 spin_lock(&extent_root->fs_info->free_chunk_lock);
4744 extent_root->fs_info->free_chunk_space -= (stripe_size *
4745 map->num_stripes);
4746 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4747
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004748 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004749 check_raid56_incompat_flag(extent_root->fs_info, type);
4750
Miao Xieb2117a32011-01-05 10:07:28 +00004751 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004752 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004753
Josef Bacik6df9a952013-06-27 13:22:46 -04004754error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004755 write_lock(&em_tree->lock);
4756 remove_extent_mapping(em_tree, em);
4757 write_unlock(&em_tree->lock);
4758
4759 /* One for our allocation */
4760 free_extent_map(em);
4761 /* One for the tree reference */
4762 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004763 /* One for the pending_chunks list reference */
4764 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004765error:
Miao Xieb2117a32011-01-05 10:07:28 +00004766 kfree(devices_info);
4767 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004768}
4769
Josef Bacik6df9a952013-06-27 13:22:46 -04004770int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004771 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004772 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004773{
Yan Zheng2b820322008-11-17 21:11:30 -05004774 struct btrfs_key key;
4775 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4776 struct btrfs_device *device;
4777 struct btrfs_chunk *chunk;
4778 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004779 struct extent_map_tree *em_tree;
4780 struct extent_map *em;
4781 struct map_lookup *map;
4782 size_t item_size;
4783 u64 dev_offset;
4784 u64 stripe_size;
4785 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004786 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004787
Josef Bacik6df9a952013-06-27 13:22:46 -04004788 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4789 read_lock(&em_tree->lock);
4790 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4791 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004792
Josef Bacik6df9a952013-06-27 13:22:46 -04004793 if (!em) {
4794 btrfs_crit(extent_root->fs_info, "unable to find logical "
4795 "%Lu len %Lu", chunk_offset, chunk_size);
4796 return -EINVAL;
4797 }
4798
4799 if (em->start != chunk_offset || em->len != chunk_size) {
4800 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004801 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004802 chunk_size, em->start, em->len);
4803 free_extent_map(em);
4804 return -EINVAL;
4805 }
4806
Jeff Mahoney95617d62015-06-03 10:55:48 -04004807 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004808 item_size = btrfs_chunk_item_size(map->num_stripes);
4809 stripe_size = em->orig_block_len;
4810
4811 chunk = kzalloc(item_size, GFP_NOFS);
4812 if (!chunk) {
4813 ret = -ENOMEM;
4814 goto out;
4815 }
4816
Filipe Manana50460e32015-11-20 10:42:47 +00004817 /*
4818 * Take the device list mutex to prevent races with the final phase of
4819 * a device replace operation that replaces the device object associated
4820 * with the map's stripes, because the device object's id can change
4821 * at any time during that final phase of the device replace operation
4822 * (dev-replace.c:btrfs_dev_replace_finishing()).
4823 */
4824 mutex_lock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004825 for (i = 0; i < map->num_stripes; i++) {
4826 device = map->stripes[i].dev;
4827 dev_offset = map->stripes[i].physical;
4828
Yan Zheng2b820322008-11-17 21:11:30 -05004829 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004830 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004831 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004832 ret = btrfs_alloc_dev_extent(trans, device,
4833 chunk_root->root_key.objectid,
4834 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4835 chunk_offset, dev_offset,
4836 stripe_size);
4837 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004838 break;
4839 }
4840 if (ret) {
4841 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
4842 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004843 }
4844
Yan Zheng2b820322008-11-17 21:11:30 -05004845 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004846 for (i = 0; i < map->num_stripes; i++) {
4847 device = map->stripes[i].dev;
4848 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004849
4850 btrfs_set_stack_stripe_devid(stripe, device->devid);
4851 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4852 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4853 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004854 }
Filipe Manana50460e32015-11-20 10:42:47 +00004855 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004856
4857 btrfs_set_stack_chunk_length(chunk, chunk_size);
4858 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4859 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4860 btrfs_set_stack_chunk_type(chunk, map->type);
4861 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4862 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4863 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4864 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4865 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4866
4867 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4868 key.type = BTRFS_CHUNK_ITEM_KEY;
4869 key.offset = chunk_offset;
4870
4871 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004872 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4873 /*
4874 * TODO: Cleanup of inserted chunk root in case of
4875 * failure.
4876 */
Li Zefan125ccb02011-12-08 15:07:24 +08004877 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004878 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004879 }
liubo1abe9b82011-03-24 11:18:59 +00004880
Josef Bacik6df9a952013-06-27 13:22:46 -04004881out:
Yan Zheng2b820322008-11-17 21:11:30 -05004882 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004883 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004884 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004885}
4886
4887/*
4888 * Chunk allocation falls into two parts. The first part does works
4889 * that make the new allocated chunk useable, but not do any operation
4890 * that modifies the chunk tree. The second part does the works that
4891 * require modifying the chunk tree. This division is important for the
4892 * bootstrap process of adding storage to a seed btrfs.
4893 */
4894int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4895 struct btrfs_root *extent_root, u64 type)
4896{
4897 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004898
Filipe Mananaa9629592015-05-18 19:11:40 +01004899 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
Josef Bacik6df9a952013-06-27 13:22:46 -04004900 chunk_offset = find_next_chunk(extent_root->fs_info);
4901 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004902}
4903
Chris Masond3977122009-01-05 21:25:51 -05004904static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004905 struct btrfs_root *root,
4906 struct btrfs_device *device)
4907{
4908 u64 chunk_offset;
4909 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004910 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004911 struct btrfs_fs_info *fs_info = root->fs_info;
4912 struct btrfs_root *extent_root = fs_info->extent_root;
4913 int ret;
4914
Josef Bacik6df9a952013-06-27 13:22:46 -04004915 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004916 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004917 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4918 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004919 if (ret)
4920 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004921
Josef Bacik6df9a952013-06-27 13:22:46 -04004922 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004923 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004924 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4925 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004926 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004927}
4928
Miao Xied20983b2014-07-03 18:22:13 +08004929static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4930{
4931 int max_errors;
4932
4933 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4934 BTRFS_BLOCK_GROUP_RAID10 |
4935 BTRFS_BLOCK_GROUP_RAID5 |
4936 BTRFS_BLOCK_GROUP_DUP)) {
4937 max_errors = 1;
4938 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4939 max_errors = 2;
4940 } else {
4941 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004942 }
4943
Miao Xied20983b2014-07-03 18:22:13 +08004944 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004945}
4946
4947int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4948{
4949 struct extent_map *em;
4950 struct map_lookup *map;
4951 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4952 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004953 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004954 int i;
4955
Chris Mason890871b2009-09-02 16:24:52 -04004956 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004957 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004958 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004959 if (!em)
4960 return 1;
4961
Jeff Mahoney95617d62015-06-03 10:55:48 -04004962 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05004963 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08004964 if (map->stripes[i].dev->missing) {
4965 miss_ndevs++;
4966 continue;
4967 }
4968
Yan Zheng2b820322008-11-17 21:11:30 -05004969 if (!map->stripes[i].dev->writeable) {
4970 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08004971 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05004972 }
4973 }
Miao Xied20983b2014-07-03 18:22:13 +08004974
4975 /*
4976 * If the number of missing devices is larger than max errors,
4977 * we can not write the data into that chunk successfully, so
4978 * set it readonly.
4979 */
4980 if (miss_ndevs > btrfs_chunk_max_errors(map))
4981 readonly = 1;
4982end:
Yan Zheng2b820322008-11-17 21:11:30 -05004983 free_extent_map(em);
4984 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004985}
4986
4987void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4988{
David Sterbaa8067e02011-04-21 00:34:43 +02004989 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004990}
4991
4992void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4993{
4994 struct extent_map *em;
4995
Chris Masond3977122009-01-05 21:25:51 -05004996 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004997 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004998 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4999 if (em)
5000 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005001 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005002 if (!em)
5003 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005004 /* once for us */
5005 free_extent_map(em);
5006 /* once for the tree */
5007 free_extent_map(em);
5008 }
5009}
5010
Stefan Behrens5d964052012-11-05 14:59:07 +01005011int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005012{
Stefan Behrens5d964052012-11-05 14:59:07 +01005013 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04005014 struct extent_map *em;
5015 struct map_lookup *map;
5016 struct extent_map_tree *em_tree = &map_tree->map_tree;
5017 int ret;
5018
Chris Mason890871b2009-09-02 16:24:52 -04005019 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005020 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005021 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005022
Josef Bacikfb7669b2013-04-23 10:53:18 -04005023 /*
5024 * We could return errors for these cases, but that could get ugly and
5025 * we'd probably do the same thing which is just not do anything else
5026 * and exit, so return 1 so the callers don't try to use other copies.
5027 */
5028 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005029 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005030 logical+len);
5031 return 1;
5032 }
5033
5034 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02005035 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02005036 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005037 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005038 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005039 return 1;
5040 }
5041
Jeff Mahoney95617d62015-06-03 10:55:48 -04005042 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005043 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5044 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005045 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5046 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005047 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5048 ret = 2;
5049 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5050 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005051 else
5052 ret = 1;
5053 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005054
Liu Bo73beece2015-07-17 16:49:19 +08005055 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005056 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5057 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005058 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005059
Chris Masonf1885912008-04-09 16:28:12 -04005060 return ret;
5061}
5062
David Woodhouse53b381b2013-01-29 18:40:14 -05005063unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5064 struct btrfs_mapping_tree *map_tree,
5065 u64 logical)
5066{
5067 struct extent_map *em;
5068 struct map_lookup *map;
5069 struct extent_map_tree *em_tree = &map_tree->map_tree;
5070 unsigned long len = root->sectorsize;
5071
5072 read_lock(&em_tree->lock);
5073 em = lookup_extent_mapping(em_tree, logical, len);
5074 read_unlock(&em_tree->lock);
5075 BUG_ON(!em);
5076
5077 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005078 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005079 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005080 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005081 free_extent_map(em);
5082 return len;
5083}
5084
5085int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5086 u64 logical, u64 len, int mirror_num)
5087{
5088 struct extent_map *em;
5089 struct map_lookup *map;
5090 struct extent_map_tree *em_tree = &map_tree->map_tree;
5091 int ret = 0;
5092
5093 read_lock(&em_tree->lock);
5094 em = lookup_extent_mapping(em_tree, logical, len);
5095 read_unlock(&em_tree->lock);
5096 BUG_ON(!em);
5097
5098 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005099 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005100 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005101 ret = 1;
5102 free_extent_map(em);
5103 return ret;
5104}
5105
Stefan Behrens30d98612012-11-06 14:52:18 +01005106static int find_live_mirror(struct btrfs_fs_info *fs_info,
5107 struct map_lookup *map, int first, int num,
5108 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005109{
5110 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005111 int tolerance;
5112 struct btrfs_device *srcdev;
5113
5114 if (dev_replace_is_ongoing &&
5115 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5116 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5117 srcdev = fs_info->dev_replace.srcdev;
5118 else
5119 srcdev = NULL;
5120
5121 /*
5122 * try to avoid the drive that is the source drive for a
5123 * dev-replace procedure, only choose it if no other non-missing
5124 * mirror is available
5125 */
5126 for (tolerance = 0; tolerance < 2; tolerance++) {
5127 if (map->stripes[optimal].dev->bdev &&
5128 (tolerance || map->stripes[optimal].dev != srcdev))
5129 return optimal;
5130 for (i = first; i < first + num; i++) {
5131 if (map->stripes[i].dev->bdev &&
5132 (tolerance || map->stripes[i].dev != srcdev))
5133 return i;
5134 }
Chris Masondfe25022008-05-13 13:46:40 -04005135 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005136
Chris Masondfe25022008-05-13 13:46:40 -04005137 /* we couldn't find one that doesn't fail. Just return something
5138 * and the io error handling code will clean up eventually
5139 */
5140 return optimal;
5141}
5142
David Woodhouse53b381b2013-01-29 18:40:14 -05005143static inline int parity_smaller(u64 a, u64 b)
5144{
5145 return a > b;
5146}
5147
5148/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005149static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005150{
5151 struct btrfs_bio_stripe s;
5152 int i;
5153 u64 l;
5154 int again = 1;
5155
5156 while (again) {
5157 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005158 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005159 if (parity_smaller(bbio->raid_map[i],
5160 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005161 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005162 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005163 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005164 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005165 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005166 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005167
David Woodhouse53b381b2013-01-29 18:40:14 -05005168 again = 1;
5169 }
5170 }
5171 }
5172}
5173
Zhao Lei6e9606d2015-01-20 15:11:34 +08005174static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5175{
5176 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005177 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005178 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005179 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005180 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005181 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005182 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005183 /*
5184 * plus the raid_map, which includes both the tgt dev
5185 * and the stripes
5186 */
5187 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005188 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005189
5190 atomic_set(&bbio->error, 0);
5191 atomic_set(&bbio->refs, 1);
5192
5193 return bbio;
5194}
5195
5196void btrfs_get_bbio(struct btrfs_bio *bbio)
5197{
5198 WARN_ON(!atomic_read(&bbio->refs));
5199 atomic_inc(&bbio->refs);
5200}
5201
5202void btrfs_put_bbio(struct btrfs_bio *bbio)
5203{
5204 if (!bbio)
5205 return;
5206 if (atomic_dec_and_test(&bbio->refs))
5207 kfree(bbio);
5208}
5209
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005210static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005211 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005212 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005213 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005214{
5215 struct extent_map *em;
5216 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005217 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005218 struct extent_map_tree *em_tree = &map_tree->map_tree;
5219 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005220 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005221 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005222 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005223 u64 stripe_nr_orig;
5224 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005225 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005226 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005227 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005228 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005229 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005230 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005231 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005232 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005233 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5234 int dev_replace_is_ongoing = 0;
5235 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005236 int patch_the_first_stripe_for_dev_replace = 0;
5237 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005238 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005239
Chris Mason890871b2009-09-02 16:24:52 -04005240 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005241 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005242 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005243
Chris Mason3b951512008-04-17 11:29:12 -04005244 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005245 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005246 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005247 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005248 }
Chris Mason0b86a832008-03-24 15:01:56 -04005249
Josef Bacik9bb91872013-04-19 23:45:33 -04005250 if (em->start > logical || em->start + em->len < logical) {
5251 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02005252 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04005253 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005254 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005255 return -EINVAL;
5256 }
5257
Jeff Mahoney95617d62015-06-03 10:55:48 -04005258 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005259 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005260
David Woodhouse53b381b2013-01-29 18:40:14 -05005261 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005262 stripe_nr = offset;
5263 /*
5264 * stripe_nr counts the total number of stripes we have to stride
5265 * to get to this block
5266 */
David Sterba47c57132015-02-20 18:43:47 +01005267 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005268
David Woodhouse53b381b2013-01-29 18:40:14 -05005269 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005270 BUG_ON(offset < stripe_offset);
5271
5272 /* stripe_offset is the offset of this block in its stripe*/
5273 stripe_offset = offset - stripe_offset;
5274
David Woodhouse53b381b2013-01-29 18:40:14 -05005275 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005276 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005277 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5278 raid56_full_stripe_start = offset;
5279
5280 /* allow a write of a full stripe, but make sure we don't
5281 * allow straddling of stripes
5282 */
David Sterba47c57132015-02-20 18:43:47 +01005283 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5284 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005285 raid56_full_stripe_start *= full_stripe_len;
5286 }
5287
5288 if (rw & REQ_DISCARD) {
5289 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005290 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005291 ret = -EOPNOTSUPP;
5292 goto out;
5293 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005294 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005295 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5296 u64 max_len;
5297 /* For writes to RAID[56], allow a full stripeset across all disks.
5298 For other RAID types and for RAID[56] reads, just allow a single
5299 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005300 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
David Woodhouse53b381b2013-01-29 18:40:14 -05005301 (rw & REQ_WRITE)) {
5302 max_len = stripe_len * nr_data_stripes(map) -
5303 (offset - raid56_full_stripe_start);
5304 } else {
5305 /* we limit the length of each bio to what fits in a stripe */
5306 max_len = stripe_len - stripe_offset;
5307 }
5308 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005309 } else {
5310 *length = em->len - offset;
5311 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005312
David Woodhouse53b381b2013-01-29 18:40:14 -05005313 /* This is for when we're called from btrfs_merge_bio_hook() and all
5314 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005315 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005316 goto out;
5317
Liu Bo73beece2015-07-17 16:49:19 +08005318 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005319 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5320 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005321 btrfs_dev_replace_unlock(dev_replace, 0);
5322 else
5323 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005324
Stefan Behrensad6d6202012-11-06 15:06:47 +01005325 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5326 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5327 dev_replace->tgtdev != NULL) {
5328 /*
5329 * in dev-replace case, for repair case (that's the only
5330 * case where the mirror is selected explicitly when
5331 * calling btrfs_map_block), blocks left of the left cursor
5332 * can also be read from the target drive.
5333 * For REQ_GET_READ_MIRRORS, the target drive is added as
5334 * the last one to the array of stripes. For READ, it also
5335 * needs to be supported using the same mirror number.
5336 * If the requested block is not left of the left cursor,
5337 * EIO is returned. This can happen because btrfs_num_copies()
5338 * returns one more in the dev-replace case.
5339 */
5340 u64 tmp_length = *length;
5341 struct btrfs_bio *tmp_bbio = NULL;
5342 int tmp_num_stripes;
5343 u64 srcdev_devid = dev_replace->srcdev->devid;
5344 int index_srcdev = 0;
5345 int found = 0;
5346 u64 physical_of_found = 0;
5347
5348 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005349 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005350 if (ret) {
5351 WARN_ON(tmp_bbio != NULL);
5352 goto out;
5353 }
5354
5355 tmp_num_stripes = tmp_bbio->num_stripes;
5356 if (mirror_num > tmp_num_stripes) {
5357 /*
5358 * REQ_GET_READ_MIRRORS does not contain this
5359 * mirror, that means that the requested area
5360 * is not left of the left cursor
5361 */
5362 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005363 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005364 goto out;
5365 }
5366
5367 /*
5368 * process the rest of the function using the mirror_num
5369 * of the source drive. Therefore look it up first.
5370 * At the end, patch the device pointer to the one of the
5371 * target drive.
5372 */
5373 for (i = 0; i < tmp_num_stripes; i++) {
Zhao Lei94a97df2015-12-09 21:03:49 +08005374 if (tmp_bbio->stripes[i].dev->devid != srcdev_devid)
5375 continue;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005376
Zhao Lei94a97df2015-12-09 21:03:49 +08005377 /*
5378 * In case of DUP, in order to keep it simple, only add
5379 * the mirror with the lowest physical address
5380 */
5381 if (found &&
5382 physical_of_found <= tmp_bbio->stripes[i].physical)
5383 continue;
5384
5385 index_srcdev = i;
5386 found = 1;
5387 physical_of_found = tmp_bbio->stripes[i].physical;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005388 }
5389
Zhao Lei6e9606d2015-01-20 15:11:34 +08005390 btrfs_put_bbio(tmp_bbio);
Zhao Lei94a97df2015-12-09 21:03:49 +08005391
5392 if (!found) {
5393 WARN_ON(1);
5394 ret = -EIO;
5395 goto out;
5396 }
5397
5398 mirror_num = index_srcdev + 1;
5399 patch_the_first_stripe_for_dev_replace = 1;
5400 physical_to_patch_in_first_stripe = physical_of_found;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005401 } else if (mirror_num > map->num_stripes) {
5402 mirror_num = 0;
5403 }
5404
Chris Masonf2d8d742008-04-21 10:03:05 -04005405 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005406 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005407 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005408 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005409 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005410 stripe_end_offset = stripe_nr_end * map->stripe_len -
5411 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005412
Li Dongyangfce3bb92011-03-24 10:24:26 +00005413 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5414 if (rw & REQ_DISCARD)
5415 num_stripes = min_t(u64, map->num_stripes,
5416 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005417 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5418 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005419 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5420 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005421 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005422 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005423 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005424 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005425 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005426 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005427 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005428 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005429 current->pid % map->num_stripes,
5430 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005431 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005432 }
Chris Mason2fff7342008-04-29 14:12:09 -04005433
Chris Mason611f0e02008-04-03 16:29:03 -04005434 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005435 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005436 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005437 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005438 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005439 } else {
5440 mirror_num = 1;
5441 }
Chris Mason2fff7342008-04-29 14:12:09 -04005442
Chris Mason321aecc2008-04-16 10:49:51 -04005443 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005444 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005445
David Sterba47c57132015-02-20 18:43:47 +01005446 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005447 stripe_index *= map->sub_stripes;
5448
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005449 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005450 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005451 else if (rw & REQ_DISCARD)
5452 num_stripes = min_t(u64, map->sub_stripes *
5453 (stripe_nr_end - stripe_nr_orig),
5454 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005455 else if (mirror_num)
5456 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005457 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005458 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005459 stripe_index = find_live_mirror(fs_info, map,
5460 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005461 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005462 current->pid % map->sub_stripes,
5463 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005464 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005465 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005466
Zhao Leiffe2d202015-01-20 15:11:44 +08005467 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005468 if (need_raid_map &&
Miao Xieaf8e2d12014-10-23 14:42:50 +08005469 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5470 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005471 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005472 stripe_nr = div_u64(raid56_full_stripe_start,
5473 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005474
5475 /* RAID[56] write or recovery. Return all stripes */
5476 num_stripes = map->num_stripes;
5477 max_errors = nr_parity_stripes(map);
5478
David Woodhouse53b381b2013-01-29 18:40:14 -05005479 *length = map->stripe_len;
5480 stripe_index = 0;
5481 stripe_offset = 0;
5482 } else {
5483 /*
5484 * Mirror #0 or #1 means the original data block.
5485 * Mirror #2 is RAID5 parity block.
5486 * Mirror #3 is RAID6 Q block.
5487 */
David Sterba47c57132015-02-20 18:43:47 +01005488 stripe_nr = div_u64_rem(stripe_nr,
5489 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005490 if (mirror_num > 1)
5491 stripe_index = nr_data_stripes(map) +
5492 mirror_num - 2;
5493
5494 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005495 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5496 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005497 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5498 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5499 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005500 }
Chris Mason8790d502008-04-03 16:29:03 -04005501 } else {
5502 /*
David Sterba47c57132015-02-20 18:43:47 +01005503 * after this, stripe_nr is the number of stripes on this
5504 * device we have to walk to find the data, and stripe_index is
5505 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005506 */
David Sterba47c57132015-02-20 18:43:47 +01005507 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5508 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005509 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005510 }
Chris Mason593060d2008-03-25 16:50:33 -04005511 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04005512
Stefan Behrens472262f2012-11-06 14:43:46 +01005513 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005514 if (dev_replace_is_ongoing) {
5515 if (rw & (REQ_WRITE | REQ_DISCARD))
5516 num_alloc_stripes <<= 1;
5517 if (rw & REQ_GET_READ_MIRRORS)
5518 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005519 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005520 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005521
Zhao Lei6e9606d2015-01-20 15:11:34 +08005522 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005523 if (!bbio) {
5524 ret = -ENOMEM;
5525 goto out;
5526 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005527 if (dev_replace_is_ongoing)
5528 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005529
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005530 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005531 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005532 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5533 mirror_num > 1)) {
5534 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005535 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005536
5537 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5538 sizeof(struct btrfs_bio_stripe) *
5539 num_alloc_stripes +
5540 sizeof(int) * tgtdev_indexes);
5541
5542 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005543 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005544
5545 /* Fill in the logical address of each stripe */
5546 tmp = stripe_nr * nr_data_stripes(map);
5547 for (i = 0; i < nr_data_stripes(map); i++)
5548 bbio->raid_map[(i+rot) % num_stripes] =
5549 em->start + (tmp + i) * map->stripe_len;
5550
5551 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5552 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5553 bbio->raid_map[(i+rot+1) % num_stripes] =
5554 RAID6_Q_STRIPE;
5555 }
5556
Li Dongyangfce3bb92011-03-24 10:24:26 +00005557 if (rw & REQ_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005558 u32 factor = 0;
5559 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005560 u64 stripes_per_dev = 0;
5561 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005562 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005563
5564 if (map->type &
5565 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5566 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5567 sub_stripes = 1;
5568 else
5569 sub_stripes = map->sub_stripes;
5570
5571 factor = map->num_stripes / sub_stripes;
5572 stripes_per_dev = div_u64_rem(stripe_nr_end -
5573 stripe_nr_orig,
5574 factor,
5575 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005576 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5577 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005578 }
5579
Li Dongyangfce3bb92011-03-24 10:24:26 +00005580 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005581 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005582 map->stripes[stripe_index].physical +
5583 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005584 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005585
Li Zefanec9ef7a2011-12-01 14:06:42 +08005586 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5587 BTRFS_BLOCK_GROUP_RAID10)) {
5588 bbio->stripes[i].length = stripes_per_dev *
5589 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005590
Li Zefanec9ef7a2011-12-01 14:06:42 +08005591 if (i / sub_stripes < remaining_stripes)
5592 bbio->stripes[i].length +=
5593 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005594
5595 /*
5596 * Special for the first stripe and
5597 * the last stripe:
5598 *
5599 * |-------|...|-------|
5600 * |----------|
5601 * off end_off
5602 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005603 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005604 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005605 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005606
5607 if (stripe_index >= last_stripe &&
5608 stripe_index <= (last_stripe +
5609 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005610 bbio->stripes[i].length -=
5611 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005612
Li Zefanec9ef7a2011-12-01 14:06:42 +08005613 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005614 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005615 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005616 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005617
5618 stripe_index++;
5619 if (stripe_index == map->num_stripes) {
5620 /* This could only happen for RAID0/10 */
5621 stripe_index = 0;
5622 stripe_nr++;
5623 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005624 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005625 } else {
5626 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005627 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005628 map->stripes[stripe_index].physical +
5629 stripe_offset +
5630 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005631 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005632 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005633 stripe_index++;
5634 }
Chris Mason593060d2008-03-25 16:50:33 -04005635 }
Li Zefande11cc12011-12-01 12:55:47 +08005636
Miao Xied20983b2014-07-03 18:22:13 +08005637 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5638 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005639
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005640 if (bbio->raid_map)
5641 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005642
Miao Xie2c8cdd62014-11-14 16:06:25 +08005643 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005644 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5645 dev_replace->tgtdev != NULL) {
5646 int index_where_to_add;
5647 u64 srcdev_devid = dev_replace->srcdev->devid;
5648
5649 /*
5650 * duplicate the write operations while the dev replace
5651 * procedure is running. Since the copying of the old disk
5652 * to the new disk takes place at run time while the
5653 * filesystem is mounted writable, the regular write
5654 * operations to the old disk have to be duplicated to go
5655 * to the new disk as well.
5656 * Note that device->missing is handled by the caller, and
5657 * that the write to the old disk is already set up in the
5658 * stripes array.
5659 */
5660 index_where_to_add = num_stripes;
5661 for (i = 0; i < num_stripes; i++) {
5662 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5663 /* write to new disk, too */
5664 struct btrfs_bio_stripe *new =
5665 bbio->stripes + index_where_to_add;
5666 struct btrfs_bio_stripe *old =
5667 bbio->stripes + i;
5668
5669 new->physical = old->physical;
5670 new->length = old->length;
5671 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005672 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005673 index_where_to_add++;
5674 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005675 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005676 }
5677 }
5678 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005679 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5680 dev_replace->tgtdev != NULL) {
5681 u64 srcdev_devid = dev_replace->srcdev->devid;
5682 int index_srcdev = 0;
5683 int found = 0;
5684 u64 physical_of_found = 0;
5685
5686 /*
5687 * During the dev-replace procedure, the target drive can
5688 * also be used to read data in case it is needed to repair
5689 * a corrupt block elsewhere. This is possible if the
5690 * requested area is left of the left cursor. In this area,
5691 * the target drive is a full copy of the source drive.
5692 */
5693 for (i = 0; i < num_stripes; i++) {
5694 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5695 /*
5696 * In case of DUP, in order to keep it
5697 * simple, only add the mirror with the
5698 * lowest physical address
5699 */
5700 if (found &&
5701 physical_of_found <=
5702 bbio->stripes[i].physical)
5703 continue;
5704 index_srcdev = i;
5705 found = 1;
5706 physical_of_found = bbio->stripes[i].physical;
5707 }
5708 }
5709 if (found) {
David Sterba258ece02015-02-24 19:45:15 +01005710 if (physical_of_found + map->stripe_len <=
Stefan Behrensad6d6202012-11-06 15:06:47 +01005711 dev_replace->cursor_left) {
5712 struct btrfs_bio_stripe *tgtdev_stripe =
5713 bbio->stripes + num_stripes;
5714
5715 tgtdev_stripe->physical = physical_of_found;
5716 tgtdev_stripe->length =
5717 bbio->stripes[index_srcdev].length;
5718 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005719 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005720
Miao Xie2c8cdd62014-11-14 16:06:25 +08005721 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005722 num_stripes++;
5723 }
5724 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005725 }
5726
Li Zefande11cc12011-12-01 12:55:47 +08005727 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005728 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005729 bbio->num_stripes = num_stripes;
5730 bbio->max_errors = max_errors;
5731 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005732 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005733
5734 /*
5735 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5736 * mirror_num == num_stripes + 1 && dev_replace target drive is
5737 * available as a mirror
5738 */
5739 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5740 WARN_ON(num_stripes > 1);
5741 bbio->stripes[0].dev = dev_replace->tgtdev;
5742 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5743 bbio->mirror_num = map->num_stripes + 1;
5744 }
Chris Masoncea9e442008-04-09 16:28:12 -04005745out:
Liu Bo73beece2015-07-17 16:49:19 +08005746 if (dev_replace_is_ongoing) {
5747 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5748 btrfs_dev_replace_unlock(dev_replace, 0);
5749 }
Chris Mason0b86a832008-03-24 15:01:56 -04005750 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005751 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005752}
5753
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005754int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005755 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005756 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005757{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005758 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005759 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005760}
5761
Miao Xieaf8e2d12014-10-23 14:42:50 +08005762/* For Scrub/replace */
5763int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5764 u64 logical, u64 *length,
5765 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005766 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005767{
5768 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005769 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005770}
5771
Yan Zhenga512bbf2008-12-08 16:46:26 -05005772int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5773 u64 chunk_start, u64 physical, u64 devid,
5774 u64 **logical, int *naddrs, int *stripe_len)
5775{
5776 struct extent_map_tree *em_tree = &map_tree->map_tree;
5777 struct extent_map *em;
5778 struct map_lookup *map;
5779 u64 *buf;
5780 u64 bytenr;
5781 u64 length;
5782 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005783 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005784 int i, j, nr = 0;
5785
Chris Mason890871b2009-09-02 16:24:52 -04005786 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005787 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005788 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005789
Josef Bacik835d9742013-03-19 12:13:25 -04005790 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005791 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005792 chunk_start);
5793 return -EIO;
5794 }
5795
5796 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005797 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005798 em->start, chunk_start);
5799 free_extent_map(em);
5800 return -EIO;
5801 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04005802 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005803
5804 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005805 rmap_len = map->stripe_len;
5806
Yan Zhenga512bbf2008-12-08 16:46:26 -05005807 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005808 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005809 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005810 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005811 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005812 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005813 rmap_len = map->stripe_len * nr_data_stripes(map);
5814 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005815
David Sterba31e818f2015-02-20 18:00:26 +01005816 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005817 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005818
5819 for (i = 0; i < map->num_stripes; i++) {
5820 if (devid && map->stripes[i].dev->devid != devid)
5821 continue;
5822 if (map->stripes[i].physical > physical ||
5823 map->stripes[i].physical + length <= physical)
5824 continue;
5825
5826 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005827 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005828
5829 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5830 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005831 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005832 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5833 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005834 } /* else if RAID[56], multiply by nr_data_stripes().
5835 * Alternatively, just use rmap_len below instead of
5836 * map->stripe_len */
5837
5838 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005839 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005840 for (j = 0; j < nr; j++) {
5841 if (buf[j] == bytenr)
5842 break;
5843 }
Chris Mason934d3752008-12-08 16:43:10 -05005844 if (j == nr) {
5845 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005846 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005847 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005848 }
5849
Yan Zhenga512bbf2008-12-08 16:46:26 -05005850 *logical = buf;
5851 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005852 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005853
5854 free_extent_map(em);
5855 return 0;
5856}
5857
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005858static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005859{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005860 bio->bi_private = bbio->private;
5861 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005862 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005863
Zhao Lei6e9606d2015-01-20 15:11:34 +08005864 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005865}
5866
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005867static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005868{
Chris Mason9be33952013-05-17 18:30:14 -04005869 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005870 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005871
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005872 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005873 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005874 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005875 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005876 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005877 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005878
5879 BUG_ON(stripe_index >= bbio->num_stripes);
5880 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005881 if (dev->bdev) {
5882 if (bio->bi_rw & WRITE)
5883 btrfs_dev_stat_inc(dev,
5884 BTRFS_DEV_STAT_WRITE_ERRS);
5885 else
5886 btrfs_dev_stat_inc(dev,
5887 BTRFS_DEV_STAT_READ_ERRS);
5888 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5889 btrfs_dev_stat_inc(dev,
5890 BTRFS_DEV_STAT_FLUSH_ERRS);
5891 btrfs_dev_stat_print_on_error(dev);
5892 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005893 }
5894 }
Chris Mason8790d502008-04-03 16:29:03 -04005895
Jan Schmidta1d3c472011-08-04 17:15:33 +02005896 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005897 is_orig_bio = 1;
5898
Miao Xiec404e0d2014-01-30 16:46:55 +08005899 btrfs_bio_counter_dec(bbio->fs_info);
5900
Jan Schmidta1d3c472011-08-04 17:15:33 +02005901 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005902 if (!is_orig_bio) {
5903 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005904 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005905 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005906
Chris Mason9be33952013-05-17 18:30:14 -04005907 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005908 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005909 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005910 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005911 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005912 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005913 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005914 /*
5915 * this bio is actually up to date, we didn't
5916 * go over the max number of errors
5917 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005918 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005919 }
Miao Xiec55f1392014-06-19 10:42:54 +08005920
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005921 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005922 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005923 bio_put(bio);
5924 }
Chris Mason8790d502008-04-03 16:29:03 -04005925}
5926
Chris Mason8b712842008-06-11 16:50:36 -04005927/*
5928 * see run_scheduled_bios for a description of why bios are collected for
5929 * async submit.
5930 *
5931 * This will add one bio to the pending list for a device and make sure
5932 * the work struct is scheduled.
5933 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005934static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5935 struct btrfs_device *device,
5936 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005937{
5938 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005939 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005940
David Woodhouse53b381b2013-01-29 18:40:14 -05005941 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005942 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05005943 return;
5944 }
5945
Chris Mason8b712842008-06-11 16:50:36 -04005946 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005947 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005948 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005949 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005950 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005951 return;
Chris Mason8b712842008-06-11 16:50:36 -04005952 }
5953
5954 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005955 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005956 * higher layers. Otherwise, the async bio makes it appear we have
5957 * made progress against dirty pages when we've really just put it
5958 * on a queue for later
5959 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005960 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005961 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005962 bio->bi_next = NULL;
5963 bio->bi_rw |= rw;
5964
5965 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005966 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005967 pending_bios = &device->pending_sync_bios;
5968 else
5969 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005970
Chris Masonffbd5172009-04-20 15:50:09 -04005971 if (pending_bios->tail)
5972 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005973
Chris Masonffbd5172009-04-20 15:50:09 -04005974 pending_bios->tail = bio;
5975 if (!pending_bios->head)
5976 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005977 if (device->running_pending)
5978 should_queue = 0;
5979
5980 spin_unlock(&device->io_lock);
5981
5982 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08005983 btrfs_queue_work(root->fs_info->submit_workers,
5984 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005985}
5986
Josef Bacikde1ee922012-10-19 16:50:56 -04005987static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5988 struct bio *bio, u64 physical, int dev_nr,
5989 int rw, int async)
5990{
5991 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5992
5993 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005994 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005995 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005996 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04005997#ifdef DEBUG
5998 {
5999 struct rcu_string *name;
6000
6001 rcu_read_lock();
6002 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00006003 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04006004 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02006005 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
6006 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006007 rcu_read_unlock();
6008 }
6009#endif
6010 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006011
6012 btrfs_bio_counter_inc_noblocked(root->fs_info);
6013
Josef Bacikde1ee922012-10-19 16:50:56 -04006014 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05006015 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006016 else
6017 btrfsic_submit_bio(rw, bio);
6018}
6019
Josef Bacikde1ee922012-10-19 16:50:56 -04006020static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6021{
6022 atomic_inc(&bbio->error);
6023 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Miao Xie8408c712014-06-19 10:42:55 +08006024 /* Shoud be the original bio. */
6025 WARN_ON(bio != bbio->orig_bio);
6026
Chris Mason9be33952013-05-17 18:30:14 -04006027 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006028 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006029 bio->bi_error = -EIO;
6030 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006031 }
6032}
6033
Chris Masonf1885912008-04-09 16:28:12 -04006034int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006035 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006036{
Chris Mason0b86a832008-03-24 15:01:56 -04006037 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006038 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006039 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006040 u64 length = 0;
6041 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006042 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006043 int dev_nr;
6044 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006045 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006046
Kent Overstreet4f024f32013-10-11 15:44:27 -07006047 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006048 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006049
Miao Xiec404e0d2014-01-30 16:46:55 +08006050 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05006051 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006052 mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006053 if (ret) {
6054 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006055 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006056 }
Chris Masoncea9e442008-04-09 16:28:12 -04006057
Jan Schmidta1d3c472011-08-04 17:15:33 +02006058 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006059 bbio->orig_bio = first_bio;
6060 bbio->private = first_bio->bi_private;
6061 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08006062 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006063 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6064
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006065 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
6066 ((rw & WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006067 /* In this case, map_length has been set to the length of
6068 a single stripe; not the whole write */
6069 if (rw & WRITE) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006070 ret = raid56_parity_write(root, bio, bbio, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006071 } else {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006072 ret = raid56_parity_recover(root, bio, bbio, map_length,
Miao Xie42452152014-11-25 16:39:28 +08006073 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006074 }
Miao Xie42452152014-11-25 16:39:28 +08006075
Miao Xiec404e0d2014-01-30 16:46:55 +08006076 btrfs_bio_counter_dec(root->fs_info);
6077 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006078 }
6079
Chris Masoncea9e442008-04-09 16:28:12 -04006080 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006081 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006082 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006083 BUG();
6084 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006085
Zhao Lei08da7572015-02-12 15:42:16 +08006086 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006087 dev = bbio->stripes[dev_nr].dev;
6088 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6089 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006090 continue;
6091 }
6092
Jan Schmidta1d3c472011-08-04 17:15:33 +02006093 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006094 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006095 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006096 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006097 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006098
Josef Bacikde1ee922012-10-19 16:50:56 -04006099 submit_stripe_bio(root, bbio, bio,
6100 bbio->stripes[dev_nr].physical, dev_nr, rw,
6101 async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006102 }
Miao Xiec404e0d2014-01-30 16:46:55 +08006103 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006104 return 0;
6105}
6106
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006107struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006108 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006109{
Yan Zheng2b820322008-11-17 21:11:30 -05006110 struct btrfs_device *device;
6111 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006112
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006113 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006114 while (cur_devices) {
6115 if (!fsid ||
6116 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6117 device = __find_device(&cur_devices->devices,
6118 devid, uuid);
6119 if (device)
6120 return device;
6121 }
6122 cur_devices = cur_devices->seed;
6123 }
6124 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006125}
6126
Chris Masondfe25022008-05-13 13:46:40 -04006127static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08006128 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006129 u64 devid, u8 *dev_uuid)
6130{
6131 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006132
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006133 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6134 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006135 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006136
6137 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006138 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006139 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006140
6141 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006142 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006143
Chris Masondfe25022008-05-13 13:46:40 -04006144 return device;
6145}
6146
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006147/**
6148 * btrfs_alloc_device - allocate struct btrfs_device
6149 * @fs_info: used only for generating a new devid, can be NULL if
6150 * devid is provided (i.e. @devid != NULL).
6151 * @devid: a pointer to devid for this device. If NULL a new devid
6152 * is generated.
6153 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6154 * is generated.
6155 *
6156 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6157 * on error. Returned struct is not linked onto any lists and can be
6158 * destroyed with kfree() right away.
6159 */
6160struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6161 const u64 *devid,
6162 const u8 *uuid)
6163{
6164 struct btrfs_device *dev;
6165 u64 tmp;
6166
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306167 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006168 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006169
6170 dev = __alloc_device();
6171 if (IS_ERR(dev))
6172 return dev;
6173
6174 if (devid)
6175 tmp = *devid;
6176 else {
6177 int ret;
6178
6179 ret = find_next_devid(fs_info, &tmp);
6180 if (ret) {
6181 kfree(dev);
6182 return ERR_PTR(ret);
6183 }
6184 }
6185 dev->devid = tmp;
6186
6187 if (uuid)
6188 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6189 else
6190 generate_random_uuid(dev->uuid);
6191
Liu Bo9e0af232014-08-15 23:36:53 +08006192 btrfs_init_work(&dev->work, btrfs_submit_helper,
6193 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006194
6195 return dev;
6196}
6197
Chris Mason0b86a832008-03-24 15:01:56 -04006198static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6199 struct extent_buffer *leaf,
6200 struct btrfs_chunk *chunk)
6201{
6202 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6203 struct map_lookup *map;
6204 struct extent_map *em;
6205 u64 logical;
6206 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006207 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006208 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006209 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006210 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006211 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006212 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006213
Chris Masone17cade2008-04-15 15:41:47 -04006214 logical = key->offset;
6215 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006216 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6217 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6218 /* Validation check */
6219 if (!num_stripes) {
6220 btrfs_err(root->fs_info, "invalid chunk num_stripes: %u",
6221 num_stripes);
6222 return -EIO;
6223 }
6224 if (!IS_ALIGNED(logical, root->sectorsize)) {
6225 btrfs_err(root->fs_info,
6226 "invalid chunk logical %llu", logical);
6227 return -EIO;
6228 }
6229 if (!length || !IS_ALIGNED(length, root->sectorsize)) {
6230 btrfs_err(root->fs_info,
6231 "invalid chunk length %llu", length);
6232 return -EIO;
6233 }
6234 if (!is_power_of_2(stripe_len)) {
6235 btrfs_err(root->fs_info, "invalid chunk stripe length: %llu",
6236 stripe_len);
6237 return -EIO;
6238 }
6239 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6240 btrfs_chunk_type(leaf, chunk)) {
6241 btrfs_err(root->fs_info, "unrecognized chunk type: %llu",
6242 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6243 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6244 btrfs_chunk_type(leaf, chunk));
6245 return -EIO;
6246 }
Chris Masona061fc82008-05-07 11:43:44 -04006247
Chris Mason890871b2009-09-02 16:24:52 -04006248 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006249 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006250 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006251
6252 /* already mapped? */
6253 if (em && em->start <= logical && em->start + em->len > logical) {
6254 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006255 return 0;
6256 } else if (em) {
6257 free_extent_map(em);
6258 }
Chris Mason0b86a832008-03-24 15:01:56 -04006259
David Sterba172ddd62011-04-21 00:48:27 +02006260 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006261 if (!em)
6262 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006263 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006264 if (!map) {
6265 free_extent_map(em);
6266 return -ENOMEM;
6267 }
6268
Wang Shilong298a8f92014-06-19 10:42:52 +08006269 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006270 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006271 em->start = logical;
6272 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006273 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006274 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006275 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006276
Chris Mason593060d2008-03-25 16:50:33 -04006277 map->num_stripes = num_stripes;
6278 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6279 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6280 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6281 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6282 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006283 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006284 for (i = 0; i < num_stripes; i++) {
6285 map->stripes[i].physical =
6286 btrfs_stripe_offset_nr(leaf, chunk, i);
6287 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006288 read_extent_buffer(leaf, uuid, (unsigned long)
6289 btrfs_stripe_dev_uuid_nr(chunk, i),
6290 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006291 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6292 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006293 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006294 free_extent_map(em);
6295 return -EIO;
6296 }
Chris Masondfe25022008-05-13 13:46:40 -04006297 if (!map->stripes[i].dev) {
6298 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006299 add_missing_dev(root, root->fs_info->fs_devices,
6300 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006301 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006302 free_extent_map(em);
6303 return -EIO;
6304 }
Anand Jain816fceb2015-04-27 12:46:18 +08006305 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6306 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006307 }
6308 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006309 }
6310
Chris Mason890871b2009-09-02 16:24:52 -04006311 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006312 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006313 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006314 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006315 free_extent_map(em);
6316
6317 return 0;
6318}
6319
Jeff Mahoney143bede2012-03-01 14:56:26 +01006320static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006321 struct btrfs_dev_item *dev_item,
6322 struct btrfs_device *device)
6323{
6324 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006325
6326 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006327 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6328 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006329 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006330 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006331 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006332 device->type = btrfs_device_type(leaf, dev_item);
6333 device->io_align = btrfs_device_io_align(leaf, dev_item);
6334 device->io_width = btrfs_device_io_width(leaf, dev_item);
6335 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006336 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006337 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006338
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006339 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006340 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006341}
6342
Miao Xie5f375832014-09-03 21:35:46 +08006343static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6344 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006345{
6346 struct btrfs_fs_devices *fs_devices;
6347 int ret;
6348
Li Zefanb367e472011-12-07 11:38:24 +08006349 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006350
6351 fs_devices = root->fs_info->fs_devices->seed;
6352 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006353 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6354 return fs_devices;
6355
Yan Zheng2b820322008-11-17 21:11:30 -05006356 fs_devices = fs_devices->seed;
6357 }
6358
6359 fs_devices = find_fsid(fsid);
6360 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006361 if (!btrfs_test_opt(root, DEGRADED))
6362 return ERR_PTR(-ENOENT);
6363
6364 fs_devices = alloc_fs_devices(fsid);
6365 if (IS_ERR(fs_devices))
6366 return fs_devices;
6367
6368 fs_devices->seeding = 1;
6369 fs_devices->opened = 1;
6370 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006371 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006372
6373 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006374 if (IS_ERR(fs_devices))
6375 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006376
Christoph Hellwig97288f22008-12-02 06:36:09 -05006377 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006378 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006379 if (ret) {
6380 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006381 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006382 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006383 }
Yan Zheng2b820322008-11-17 21:11:30 -05006384
6385 if (!fs_devices->seeding) {
6386 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006387 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006388 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006389 goto out;
6390 }
6391
6392 fs_devices->seed = root->fs_info->fs_devices->seed;
6393 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006394out:
Miao Xie5f375832014-09-03 21:35:46 +08006395 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006396}
6397
Chris Mason0d81ba52008-03-24 15:02:07 -04006398static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006399 struct extent_buffer *leaf,
6400 struct btrfs_dev_item *dev_item)
6401{
Miao Xie5f375832014-09-03 21:35:46 +08006402 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006403 struct btrfs_device *device;
6404 u64 devid;
6405 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006406 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006407 u8 dev_uuid[BTRFS_UUID_SIZE];
6408
Chris Mason0b86a832008-03-24 15:01:56 -04006409 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006410 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006411 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006412 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006413 BTRFS_UUID_SIZE);
6414
6415 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006416 fs_devices = open_seed_devices(root, fs_uuid);
6417 if (IS_ERR(fs_devices))
6418 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006419 }
6420
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006421 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006422 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006423 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006424 return -EIO;
6425
Miao Xie5f375832014-09-03 21:35:46 +08006426 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6427 if (!device)
6428 return -ENOMEM;
Anand Jain33b97e42015-05-08 04:34:35 +08006429 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6430 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006431 } else {
6432 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6433 return -EIO;
6434
6435 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006436 /*
6437 * this happens when a device that was properly setup
6438 * in the device info lists suddenly goes bad.
6439 * device->bdev is NULL, and so we have to set
6440 * device->missing to one here
6441 */
Miao Xie5f375832014-09-03 21:35:46 +08006442 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006443 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006444 }
Miao Xie5f375832014-09-03 21:35:46 +08006445
6446 /* Move the device to its own fs_devices */
6447 if (device->fs_devices != fs_devices) {
6448 ASSERT(device->missing);
6449
6450 list_move(&device->dev_list, &fs_devices->devices);
6451 device->fs_devices->num_devices--;
6452 fs_devices->num_devices++;
6453
6454 device->fs_devices->missing_devices--;
6455 fs_devices->missing_devices++;
6456
6457 device->fs_devices = fs_devices;
6458 }
Yan Zheng2b820322008-11-17 21:11:30 -05006459 }
6460
6461 if (device->fs_devices != root->fs_info->fs_devices) {
6462 BUG_ON(device->writeable);
6463 if (device->generation !=
6464 btrfs_device_generation(leaf, dev_item))
6465 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006466 }
Chris Mason0b86a832008-03-24 15:01:56 -04006467
6468 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006469 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006470 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006471 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006472 spin_lock(&root->fs_info->free_chunk_lock);
6473 root->fs_info->free_chunk_space += device->total_bytes -
6474 device->bytes_used;
6475 spin_unlock(&root->fs_info->free_chunk_lock);
6476 }
Chris Mason0b86a832008-03-24 15:01:56 -04006477 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006478 return ret;
6479}
6480
Yan Zhenge4404d62008-12-12 10:03:26 -05006481int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006482{
David Sterba6c417612011-04-13 15:41:04 +02006483 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006484 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006485 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006486 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006487 u8 *array_ptr;
6488 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006489 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006490 u32 num_stripes;
6491 u32 array_size;
6492 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006493 u32 cur_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006494 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006495
David Sterbaa83fffb2014-06-15 02:39:54 +02006496 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6497 /*
6498 * This will create extent buffer of nodesize, superblock size is
6499 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6500 * overallocate but we can keep it as-is, only the first page is used.
6501 */
6502 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
Chris Masona061fc82008-05-07 11:43:44 -04006503 if (!sb)
6504 return -ENOMEM;
David Sterba4db8c522015-12-03 13:06:46 +01006505 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006506 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006507 /*
6508 * The sb extent buffer is artifical and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006509 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006510 * pages up-to-date when the page is larger: extent does not cover the
6511 * whole page and consequently check_page_uptodate does not find all
6512 * the page's extents up-to-date (the hole beyond sb),
6513 * write_extent_buffer then triggers a WARN_ON.
6514 *
6515 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6516 * but sb spans only this function. Add an explicit SetPageUptodate call
6517 * to silence the warning eg. on PowerPC 64.
6518 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006519 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006520 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006521
Chris Masona061fc82008-05-07 11:43:44 -04006522 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006523 array_size = btrfs_super_sys_array_size(super_copy);
6524
David Sterba1ffb22c2014-10-31 19:02:42 +01006525 array_ptr = super_copy->sys_chunk_array;
6526 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6527 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006528
David Sterba1ffb22c2014-10-31 19:02:42 +01006529 while (cur_offset < array_size) {
6530 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006531 len = sizeof(*disk_key);
6532 if (cur_offset + len > array_size)
6533 goto out_short_read;
6534
Chris Mason0b86a832008-03-24 15:01:56 -04006535 btrfs_disk_key_to_cpu(&key, disk_key);
6536
David Sterba1ffb22c2014-10-31 19:02:42 +01006537 array_ptr += len;
6538 sb_array_offset += len;
6539 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006540
Chris Mason0d81ba52008-03-24 15:02:07 -04006541 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006542 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006543 /*
6544 * At least one btrfs_chunk with one stripe must be
6545 * present, exact stripe count check comes afterwards
6546 */
6547 len = btrfs_chunk_item_size(1);
6548 if (cur_offset + len > array_size)
6549 goto out_short_read;
6550
6551 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006552 if (!num_stripes) {
6553 printk(KERN_ERR
6554 "BTRFS: invalid number of stripes %u in sys_array at offset %u\n",
6555 num_stripes, cur_offset);
6556 ret = -EIO;
6557 break;
6558 }
6559
David Sterbae3540ea2014-11-05 15:24:51 +01006560 len = btrfs_chunk_item_size(num_stripes);
6561 if (cur_offset + len > array_size)
6562 goto out_short_read;
6563
Chris Mason0d81ba52008-03-24 15:02:07 -04006564 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006565 if (ret)
6566 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006567 } else {
David Sterba93a3d462015-11-30 17:27:09 +01006568 printk(KERN_ERR
6569 "BTRFS: unexpected item type %u in sys_array at offset %u\n",
6570 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006571 ret = -EIO;
6572 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006573 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006574 array_ptr += len;
6575 sb_array_offset += len;
6576 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006577 }
Chris Masona061fc82008-05-07 11:43:44 -04006578 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006579 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006580
6581out_short_read:
6582 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6583 len, cur_offset);
6584 free_extent_buffer(sb);
6585 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006586}
6587
6588int btrfs_read_chunk_tree(struct btrfs_root *root)
6589{
6590 struct btrfs_path *path;
6591 struct extent_buffer *leaf;
6592 struct btrfs_key key;
6593 struct btrfs_key found_key;
6594 int ret;
6595 int slot;
6596
6597 root = root->fs_info->chunk_root;
6598
6599 path = btrfs_alloc_path();
6600 if (!path)
6601 return -ENOMEM;
6602
Li Zefanb367e472011-12-07 11:38:24 +08006603 mutex_lock(&uuid_mutex);
6604 lock_chunks(root);
6605
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006606 /*
6607 * Read all device items, and then all the chunk items. All
6608 * device items are found before any chunk item (their object id
6609 * is smaller than the lowest possible object id for a chunk
6610 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006611 */
6612 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6613 key.offset = 0;
6614 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006615 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006616 if (ret < 0)
6617 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006618 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006619 leaf = path->nodes[0];
6620 slot = path->slots[0];
6621 if (slot >= btrfs_header_nritems(leaf)) {
6622 ret = btrfs_next_leaf(root, path);
6623 if (ret == 0)
6624 continue;
6625 if (ret < 0)
6626 goto error;
6627 break;
6628 }
6629 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006630 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6631 struct btrfs_dev_item *dev_item;
6632 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006633 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006634 ret = read_one_dev(root, leaf, dev_item);
6635 if (ret)
6636 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006637 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6638 struct btrfs_chunk *chunk;
6639 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6640 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006641 if (ret)
6642 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006643 }
6644 path->slots[0]++;
6645 }
Chris Mason0b86a832008-03-24 15:01:56 -04006646 ret = 0;
6647error:
Li Zefanb367e472011-12-07 11:38:24 +08006648 unlock_chunks(root);
6649 mutex_unlock(&uuid_mutex);
6650
Yan Zheng2b820322008-11-17 21:11:30 -05006651 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006652 return ret;
6653}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006654
Miao Xiecb517ea2013-05-15 07:48:19 +00006655void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6656{
6657 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6658 struct btrfs_device *device;
6659
Liu Bo29cc83f2014-05-11 23:14:59 +08006660 while (fs_devices) {
6661 mutex_lock(&fs_devices->device_list_mutex);
6662 list_for_each_entry(device, &fs_devices->devices, dev_list)
6663 device->dev_root = fs_info->dev_root;
6664 mutex_unlock(&fs_devices->device_list_mutex);
6665
6666 fs_devices = fs_devices->seed;
6667 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006668}
6669
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006670static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6671{
6672 int i;
6673
6674 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6675 btrfs_dev_stat_reset(dev, i);
6676}
6677
6678int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6679{
6680 struct btrfs_key key;
6681 struct btrfs_key found_key;
6682 struct btrfs_root *dev_root = fs_info->dev_root;
6683 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6684 struct extent_buffer *eb;
6685 int slot;
6686 int ret = 0;
6687 struct btrfs_device *device;
6688 struct btrfs_path *path = NULL;
6689 int i;
6690
6691 path = btrfs_alloc_path();
6692 if (!path) {
6693 ret = -ENOMEM;
6694 goto out;
6695 }
6696
6697 mutex_lock(&fs_devices->device_list_mutex);
6698 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6699 int item_size;
6700 struct btrfs_dev_stats_item *ptr;
6701
David Sterba242e2952016-01-25 17:51:31 +01006702 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6703 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006704 key.offset = device->devid;
6705 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6706 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006707 __btrfs_reset_dev_stats(device);
6708 device->dev_stats_valid = 1;
6709 btrfs_release_path(path);
6710 continue;
6711 }
6712 slot = path->slots[0];
6713 eb = path->nodes[0];
6714 btrfs_item_key_to_cpu(eb, &found_key, slot);
6715 item_size = btrfs_item_size_nr(eb, slot);
6716
6717 ptr = btrfs_item_ptr(eb, slot,
6718 struct btrfs_dev_stats_item);
6719
6720 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6721 if (item_size >= (1 + i) * sizeof(__le64))
6722 btrfs_dev_stat_set(device, i,
6723 btrfs_dev_stats_value(eb, ptr, i));
6724 else
6725 btrfs_dev_stat_reset(device, i);
6726 }
6727
6728 device->dev_stats_valid = 1;
6729 btrfs_dev_stat_print_on_load(device);
6730 btrfs_release_path(path);
6731 }
6732 mutex_unlock(&fs_devices->device_list_mutex);
6733
6734out:
6735 btrfs_free_path(path);
6736 return ret < 0 ? ret : 0;
6737}
6738
6739static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6740 struct btrfs_root *dev_root,
6741 struct btrfs_device *device)
6742{
6743 struct btrfs_path *path;
6744 struct btrfs_key key;
6745 struct extent_buffer *eb;
6746 struct btrfs_dev_stats_item *ptr;
6747 int ret;
6748 int i;
6749
David Sterba242e2952016-01-25 17:51:31 +01006750 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6751 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006752 key.offset = device->devid;
6753
6754 path = btrfs_alloc_path();
6755 BUG_ON(!path);
6756 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6757 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006758 btrfs_warn_in_rcu(dev_root->fs_info,
6759 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006760 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006761 goto out;
6762 }
6763
6764 if (ret == 0 &&
6765 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6766 /* need to delete old one and insert a new one */
6767 ret = btrfs_del_item(trans, dev_root, path);
6768 if (ret != 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006769 btrfs_warn_in_rcu(dev_root->fs_info,
6770 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006771 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006772 goto out;
6773 }
6774 ret = 1;
6775 }
6776
6777 if (ret == 1) {
6778 /* need to insert a new item */
6779 btrfs_release_path(path);
6780 ret = btrfs_insert_empty_item(trans, dev_root, path,
6781 &key, sizeof(*ptr));
6782 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006783 btrfs_warn_in_rcu(dev_root->fs_info,
6784 "insert dev_stats item for device %s failed %d",
6785 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006786 goto out;
6787 }
6788 }
6789
6790 eb = path->nodes[0];
6791 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6792 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6793 btrfs_set_dev_stats_value(eb, ptr, i,
6794 btrfs_dev_stat_read(device, i));
6795 btrfs_mark_buffer_dirty(eb);
6796
6797out:
6798 btrfs_free_path(path);
6799 return ret;
6800}
6801
6802/*
6803 * called from commit_transaction. Writes all changed device stats to disk.
6804 */
6805int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6806 struct btrfs_fs_info *fs_info)
6807{
6808 struct btrfs_root *dev_root = fs_info->dev_root;
6809 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6810 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006811 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006812 int ret = 0;
6813
6814 mutex_lock(&fs_devices->device_list_mutex);
6815 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006816 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006817 continue;
6818
Miao Xieaddc3fa2014-07-24 11:37:11 +08006819 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006820 ret = update_dev_stat_item(trans, dev_root, device);
6821 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006822 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006823 }
6824 mutex_unlock(&fs_devices->device_list_mutex);
6825
6826 return ret;
6827}
6828
Stefan Behrens442a4f62012-05-25 16:06:08 +02006829void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6830{
6831 btrfs_dev_stat_inc(dev, index);
6832 btrfs_dev_stat_print_on_error(dev);
6833}
6834
Eric Sandeen48a3b632013-04-25 20:41:01 +00006835static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006836{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006837 if (!dev->dev_stats_valid)
6838 return;
David Sterbab14af3b2015-10-08 10:43:10 +02006839 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6840 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006841 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006842 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6843 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6844 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006845 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6846 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006847}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006848
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006849static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6850{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006851 int i;
6852
6853 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6854 if (btrfs_dev_stat_read(dev, i) != 0)
6855 break;
6856 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6857 return; /* all values == 0, suppress message */
6858
David Sterbaecaeb142015-10-08 09:01:03 +02006859 btrfs_info_in_rcu(dev->dev_root->fs_info,
6860 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006861 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006862 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6863 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6864 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6865 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6866 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6867}
6868
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006869int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006870 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006871{
6872 struct btrfs_device *dev;
6873 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6874 int i;
6875
6876 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006877 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006878 mutex_unlock(&fs_devices->device_list_mutex);
6879
6880 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006881 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006882 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006883 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006884 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006885 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006886 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006887 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6888 if (stats->nr_items > i)
6889 stats->values[i] =
6890 btrfs_dev_stat_read_and_reset(dev, i);
6891 else
6892 btrfs_dev_stat_reset(dev, i);
6893 }
6894 } else {
6895 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6896 if (stats->nr_items > i)
6897 stats->values[i] = btrfs_dev_stat_read(dev, i);
6898 }
6899 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6900 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6901 return 0;
6902}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006903
Anand Jain12b1c262015-08-14 18:32:59 +08006904void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006905{
6906 struct buffer_head *bh;
6907 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08006908 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006909
Anand Jain12b1c262015-08-14 18:32:59 +08006910 if (!bdev)
6911 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006912
Anand Jain12b1c262015-08-14 18:32:59 +08006913 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6914 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006915
Anand Jain12b1c262015-08-14 18:32:59 +08006916 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6917 continue;
6918
6919 disk_super = (struct btrfs_super_block *)bh->b_data;
6920
6921 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6922 set_buffer_dirty(bh);
6923 sync_dirty_buffer(bh);
6924 brelse(bh);
6925 }
6926
6927 /* Notify udev that device has changed */
6928 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6929
6930 /* Update ctime/mtime for device path for libblkid */
6931 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006932}
Miao Xie935e5cc2014-09-03 21:35:33 +08006933
6934/*
6935 * Update the size of all devices, which is used for writing out the
6936 * super blocks.
6937 */
6938void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6939{
6940 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6941 struct btrfs_device *curr, *next;
6942
6943 if (list_empty(&fs_devices->resized_devices))
6944 return;
6945
6946 mutex_lock(&fs_devices->device_list_mutex);
6947 lock_chunks(fs_info->dev_root);
6948 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6949 resized_list) {
6950 list_del_init(&curr->resized_list);
6951 curr->commit_total_bytes = curr->disk_total_bytes;
6952 }
6953 unlock_chunks(fs_info->dev_root);
6954 mutex_unlock(&fs_devices->device_list_mutex);
6955}
Miao Xiece7213c2014-09-03 21:35:34 +08006956
6957/* Must be invoked during the transaction commit */
6958void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6959 struct btrfs_transaction *transaction)
6960{
6961 struct extent_map *em;
6962 struct map_lookup *map;
6963 struct btrfs_device *dev;
6964 int i;
6965
6966 if (list_empty(&transaction->pending_chunks))
6967 return;
6968
6969 /* In order to kick the device replace finish process */
6970 lock_chunks(root);
6971 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04006972 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08006973
6974 for (i = 0; i < map->num_stripes; i++) {
6975 dev = map->stripes[i].dev;
6976 dev->commit_bytes_used = dev->bytes_used;
6977 }
6978 }
6979 unlock_chunks(root);
6980}
Anand Jain5a13f432015-03-10 06:38:31 +08006981
6982void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
6983{
6984 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6985 while (fs_devices) {
6986 fs_devices->fs_info = fs_info;
6987 fs_devices = fs_devices->seed;
6988 }
6989}
6990
6991void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
6992{
6993 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6994 while (fs_devices) {
6995 fs_devices->fs_info = NULL;
6996 fs_devices = fs_devices->seed;
6997 }
6998}
Anand Jainf190aa42015-08-14 18:33:05 +08006999
David Sterba87ad58c2015-11-27 18:49:39 +01007000static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf190aa42015-08-14 18:33:05 +08007001{
7002 struct btrfs_fs_devices *fs_devices = device->fs_devices;
7003 struct btrfs_device *new_device;
7004 struct rcu_string *name;
7005
7006 if (device->bdev)
7007 fs_devices->open_devices--;
7008
7009 if (device->writeable &&
7010 device->devid != BTRFS_DEV_REPLACE_DEVID) {
7011 list_del_init(&device->dev_alloc_list);
7012 fs_devices->rw_devices--;
7013 }
7014
7015 if (device->missing)
7016 fs_devices->missing_devices--;
7017
7018 new_device = btrfs_alloc_device(NULL, &device->devid,
7019 device->uuid);
7020 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
7021
7022 /* Safe because we are under uuid_mutex */
7023 if (device->name) {
7024 name = rcu_string_strdup(device->name->str, GFP_NOFS);
7025 BUG_ON(!name); /* -ENOMEM */
7026 rcu_assign_pointer(new_device->name, name);
7027 }
7028
7029 list_replace_rcu(&device->dev_list, &new_device->dev_list);
7030 new_device->fs_devices = device->fs_devices;
7031
7032 call_rcu(&device->rcu, free_device);
7033}