blob: 1421d711629fa572edd782e5688e72ee24198c63 [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
Yan Zheng2b820322008-11-17 21:11:30 -0500121static int init_first_rw_device(struct btrfs_trans_handle *trans,
122 struct btrfs_root *root,
123 struct btrfs_device *device);
124static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200125static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000126static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200127static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
David Sterba87ad58c2015-11-27 18:49:39 +0100128static void btrfs_close_one_device(struct btrfs_device *device);
Yan Zheng2b820322008-11-17 21:11:30 -0500129
Miao Xie67a2c452014-09-03 21:35:43 +0800130DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400131static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800132struct list_head *btrfs_get_fs_uuids(void)
133{
134 return &fs_uuids;
135}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400136
Ilya Dryomov2208a372013-08-12 14:33:03 +0300137static struct btrfs_fs_devices *__alloc_fs_devices(void)
138{
139 struct btrfs_fs_devices *fs_devs;
140
David Sterba78f2c9e2016-02-11 14:25:38 +0100141 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300142 if (!fs_devs)
143 return ERR_PTR(-ENOMEM);
144
145 mutex_init(&fs_devs->device_list_mutex);
146
147 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800148 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300149 INIT_LIST_HEAD(&fs_devs->alloc_list);
150 INIT_LIST_HEAD(&fs_devs->list);
151
152 return fs_devs;
153}
154
155/**
156 * alloc_fs_devices - allocate struct btrfs_fs_devices
157 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
158 * generated.
159 *
160 * Return: a pointer to a new &struct btrfs_fs_devices on success;
161 * ERR_PTR() on error. Returned struct is not linked onto any lists and
162 * can be destroyed with kfree() right away.
163 */
164static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
165{
166 struct btrfs_fs_devices *fs_devs;
167
168 fs_devs = __alloc_fs_devices();
169 if (IS_ERR(fs_devs))
170 return fs_devs;
171
172 if (fsid)
173 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
174 else
175 generate_random_uuid(fs_devs->fsid);
176
177 return fs_devs;
178}
179
Yan Zhenge4404d62008-12-12 10:03:26 -0500180static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
181{
182 struct btrfs_device *device;
183 WARN_ON(fs_devices->opened);
184 while (!list_empty(&fs_devices->devices)) {
185 device = list_entry(fs_devices->devices.next,
186 struct btrfs_device, dev_list);
187 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400188 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500189 kfree(device);
190 }
191 kfree(fs_devices);
192}
193
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000194static void btrfs_kobject_uevent(struct block_device *bdev,
195 enum kobject_action action)
196{
197 int ret;
198
199 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
200 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500201 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000202 action,
203 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
204 &disk_to_dev(bdev->bd_disk)->kobj);
205}
206
Jeff Mahoney143bede2012-03-01 14:56:26 +0100207void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400208{
209 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400210
Yan Zheng2b820322008-11-17 21:11:30 -0500211 while (!list_empty(&fs_uuids)) {
212 fs_devices = list_entry(fs_uuids.next,
213 struct btrfs_fs_devices, list);
214 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500215 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400216 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400217}
218
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300219static struct btrfs_device *__alloc_device(void)
220{
221 struct btrfs_device *dev;
222
David Sterba78f2c9e2016-02-11 14:25:38 +0100223 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300224 if (!dev)
225 return ERR_PTR(-ENOMEM);
226
227 INIT_LIST_HEAD(&dev->dev_list);
228 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800229 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300230
231 spin_lock_init(&dev->io_lock);
232
233 spin_lock_init(&dev->reada_lock);
234 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800235 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100236 btrfs_device_data_ordered_init(dev);
Mel Gormand0164ad2015-11-06 16:28:21 -0800237 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
238 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300239
240 return dev;
241}
242
Chris Masona1b32a52008-09-05 16:09:51 -0400243static noinline struct btrfs_device *__find_device(struct list_head *head,
244 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400245{
246 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400247
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500248 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400249 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400250 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400251 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400252 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400253 }
254 return NULL;
255}
256
Chris Masona1b32a52008-09-05 16:09:51 -0400257static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400258{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400259 struct btrfs_fs_devices *fs_devices;
260
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500261 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400262 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
263 return fs_devices;
264 }
265 return NULL;
266}
267
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100268static int
269btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
270 int flush, struct block_device **bdev,
271 struct buffer_head **bh)
272{
273 int ret;
274
275 *bdev = blkdev_get_by_path(device_path, flags, holder);
276
277 if (IS_ERR(*bdev)) {
278 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100279 goto error;
280 }
281
282 if (flush)
283 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
284 ret = set_blocksize(*bdev, 4096);
285 if (ret) {
286 blkdev_put(*bdev, flags);
287 goto error;
288 }
289 invalidate_bdev(*bdev);
290 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800291 if (IS_ERR(*bh)) {
292 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100293 blkdev_put(*bdev, flags);
294 goto error;
295 }
296
297 return 0;
298
299error:
300 *bdev = NULL;
301 *bh = NULL;
302 return ret;
303}
304
Chris Masonffbd5172009-04-20 15:50:09 -0400305static void requeue_list(struct btrfs_pending_bios *pending_bios,
306 struct bio *head, struct bio *tail)
307{
308
309 struct bio *old_head;
310
311 old_head = pending_bios->head;
312 pending_bios->head = head;
313 if (pending_bios->tail)
314 tail->bi_next = old_head;
315 else
316 pending_bios->tail = tail;
317}
318
Chris Mason8b712842008-06-11 16:50:36 -0400319/*
320 * we try to collect pending bios for a device so we don't get a large
321 * number of procs sending bios down to the same device. This greatly
322 * improves the schedulers ability to collect and merge the bios.
323 *
324 * But, it also turns into a long list of bios to process and that is sure
325 * to eventually make the worker thread block. The solution here is to
326 * make some progress and then put this work struct back at the end of
327 * the list if the block device is congested. This way, multiple devices
328 * can make progress from a single worker thread.
329 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100330static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400331{
332 struct bio *pending;
333 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400334 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400335 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400336 struct bio *tail;
337 struct bio *cur;
338 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400339 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400340 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400341 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400342 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400343 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000344 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400345 struct blk_plug plug;
346
347 /*
348 * this function runs all the bios we've collected for
349 * a particular device. We don't want to wander off to
350 * another device without first sending all of these down.
351 * So, setup a plug here and finish it off before we return
352 */
353 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400354
Chris Masonbedf7622009-04-03 10:32:58 -0400355 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400356 fs_info = device->dev_root->fs_info;
357 limit = btrfs_async_submit_limit(fs_info);
358 limit = limit * 2 / 3;
359
Chris Mason8b712842008-06-11 16:50:36 -0400360loop:
361 spin_lock(&device->io_lock);
362
Chris Masona6837052009-02-04 09:19:41 -0500363loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400364 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400365
Chris Mason8b712842008-06-11 16:50:36 -0400366 /* take all the bios off the list at once and process them
367 * later on (without the lock held). But, remember the
368 * tail and other pointers so the bios can be properly reinserted
369 * into the list if we hit congestion
370 */
Chris Masond84275c2009-06-09 15:39:08 -0400371 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400372 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400373 force_reg = 1;
374 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400375 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400376 force_reg = 0;
377 }
Chris Masonffbd5172009-04-20 15:50:09 -0400378
379 pending = pending_bios->head;
380 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400381 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400382
383 /*
384 * if pending was null this time around, no bios need processing
385 * at all and we can stop. Otherwise it'll loop back up again
386 * and do an additional check so no bios are missed.
387 *
388 * device->running_pending is used to synchronize with the
389 * schedule_bio code.
390 */
Chris Masonffbd5172009-04-20 15:50:09 -0400391 if (device->pending_sync_bios.head == NULL &&
392 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400393 again = 0;
394 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400395 } else {
396 again = 1;
397 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400398 }
Chris Masonffbd5172009-04-20 15:50:09 -0400399
400 pending_bios->head = NULL;
401 pending_bios->tail = NULL;
402
Chris Mason8b712842008-06-11 16:50:36 -0400403 spin_unlock(&device->io_lock);
404
Chris Masond3977122009-01-05 21:25:51 -0500405 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400406
407 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400408 /* we want to work on both lists, but do more bios on the
409 * sync list than the regular list
410 */
411 if ((num_run > 32 &&
412 pending_bios != &device->pending_sync_bios &&
413 device->pending_sync_bios.head) ||
414 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
415 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400416 spin_lock(&device->io_lock);
417 requeue_list(pending_bios, pending, tail);
418 goto loop_lock;
419 }
420
Chris Mason8b712842008-06-11 16:50:36 -0400421 cur = pending;
422 pending = pending->bi_next;
423 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400424
David Sterbaee863952015-02-16 19:41:40 +0100425 /*
426 * atomic_dec_return implies a barrier for waitqueue_active
427 */
Josef Bacik66657b32012-08-01 15:36:24 -0400428 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400429 waitqueue_active(&fs_info->async_submit_wait))
430 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400431
Jens Axboedac56212015-04-17 16:23:59 -0600432 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400433
Chris Mason2ab1ba62011-08-04 14:28:36 -0400434 /*
435 * if we're doing the sync list, record that our
436 * plug has some sync requests on it
437 *
438 * If we're doing the regular list and there are
439 * sync requests sitting around, unplug before
440 * we add more
441 */
442 if (pending_bios == &device->pending_sync_bios) {
443 sync_pending = 1;
444 } else if (sync_pending) {
445 blk_finish_plug(&plug);
446 blk_start_plug(&plug);
447 sync_pending = 0;
448 }
449
Stefan Behrens21adbd52011-11-09 13:44:05 +0100450 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400451 num_run++;
452 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100453
454 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400455
456 /*
457 * we made progress, there is more work to do and the bdi
458 * is now congested. Back off and let other work structs
459 * run instead
460 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400461 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500462 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400463 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400464
Chris Masonb765ead2009-04-03 10:27:10 -0400465 ioc = current->io_context;
466
467 /*
468 * the main goal here is that we don't want to
469 * block if we're going to be able to submit
470 * more requests without blocking.
471 *
472 * This code does two great things, it pokes into
473 * the elevator code from a filesystem _and_
474 * it makes assumptions about how batching works.
475 */
476 if (ioc && ioc->nr_batch_requests > 0 &&
477 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
478 (last_waited == 0 ||
479 ioc->last_waited == last_waited)) {
480 /*
481 * we want to go through our batch of
482 * requests and stop. So, we copy out
483 * the ioc->last_waited time and test
484 * against it before looping
485 */
486 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100487 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400488 continue;
489 }
Chris Mason8b712842008-06-11 16:50:36 -0400490 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400491 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500492 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400493
494 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800495 btrfs_queue_work(fs_info->submit_workers,
496 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400497 goto done;
498 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500499 /* unplug every 64 requests just for good measure */
500 if (batch_run % 64 == 0) {
501 blk_finish_plug(&plug);
502 blk_start_plug(&plug);
503 sync_pending = 0;
504 }
Chris Mason8b712842008-06-11 16:50:36 -0400505 }
Chris Masonffbd5172009-04-20 15:50:09 -0400506
Chris Mason51684082010-03-10 15:33:32 -0500507 cond_resched();
508 if (again)
509 goto loop;
510
511 spin_lock(&device->io_lock);
512 if (device->pending_bios.head || device->pending_sync_bios.head)
513 goto loop_lock;
514 spin_unlock(&device->io_lock);
515
Chris Mason8b712842008-06-11 16:50:36 -0400516done:
Chris Mason211588a2011-04-19 20:12:40 -0400517 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400518}
519
Christoph Hellwigb2950862008-12-02 09:54:17 -0500520static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400521{
522 struct btrfs_device *device;
523
524 device = container_of(work, struct btrfs_device, work);
525 run_scheduled_bios(device);
526}
527
Anand Jain4fde46f2015-06-17 21:10:48 +0800528
529void btrfs_free_stale_device(struct btrfs_device *cur_dev)
530{
531 struct btrfs_fs_devices *fs_devs;
532 struct btrfs_device *dev;
533
534 if (!cur_dev->name)
535 return;
536
537 list_for_each_entry(fs_devs, &fs_uuids, list) {
538 int del = 1;
539
540 if (fs_devs->opened)
541 continue;
542 if (fs_devs->seeding)
543 continue;
544
545 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
546
547 if (dev == cur_dev)
548 continue;
549 if (!dev->name)
550 continue;
551
552 /*
553 * Todo: This won't be enough. What if the same device
554 * comes back (with new uuid and) with its mapper path?
555 * But for now, this does help as mostly an admin will
556 * either use mapper or non mapper path throughout.
557 */
558 rcu_read_lock();
559 del = strcmp(rcu_str_deref(dev->name),
560 rcu_str_deref(cur_dev->name));
561 rcu_read_unlock();
562 if (!del)
563 break;
564 }
565
566 if (!del) {
567 /* delete the stale device */
568 if (fs_devs->num_devices == 1) {
569 btrfs_sysfs_remove_fsid(fs_devs);
570 list_del(&fs_devs->list);
571 free_fs_devices(fs_devs);
572 } else {
573 fs_devs->num_devices--;
574 list_del(&dev->dev_list);
575 rcu_string_free(dev->name);
576 kfree(dev);
577 }
578 break;
579 }
580 }
581}
582
David Sterba60999ca2014-03-26 18:26:36 +0100583/*
584 * Add new device to list of registered devices
585 *
586 * Returns:
587 * 1 - first time device is seen
588 * 0 - device already known
589 * < 0 - error
590 */
Chris Masona1b32a52008-09-05 16:09:51 -0400591static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400592 struct btrfs_super_block *disk_super,
593 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
594{
595 struct btrfs_device *device;
596 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400597 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100598 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400599 u64 found_transid = btrfs_super_generation(disk_super);
600
601 fs_devices = find_fsid(disk_super->fsid);
602 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300603 fs_devices = alloc_fs_devices(disk_super->fsid);
604 if (IS_ERR(fs_devices))
605 return PTR_ERR(fs_devices);
606
Chris Mason8a4b83c2008-03-24 15:02:07 -0400607 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300608
Chris Mason8a4b83c2008-03-24 15:02:07 -0400609 device = NULL;
610 } else {
Chris Masona4437552008-04-18 10:29:38 -0400611 device = __find_device(&fs_devices->devices, devid,
612 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400613 }
Miao Xie443f24f2014-07-24 11:37:15 +0800614
Chris Mason8a4b83c2008-03-24 15:02:07 -0400615 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500616 if (fs_devices->opened)
617 return -EBUSY;
618
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300619 device = btrfs_alloc_device(NULL, &devid,
620 disk_super->dev_item.uuid);
621 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400622 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300623 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400624 }
Josef Bacik606686e2012-06-04 14:03:51 -0400625
626 name = rcu_string_strdup(path, GFP_NOFS);
627 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400628 kfree(device);
629 return -ENOMEM;
630 }
Josef Bacik606686e2012-06-04 14:03:51 -0400631 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200632
Chris Masone5e9a522009-06-10 15:17:02 -0400633 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000634 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100635 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400636 mutex_unlock(&fs_devices->device_list_mutex);
637
David Sterba60999ca2014-03-26 18:26:36 +0100638 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500639 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400640 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800641 /*
642 * When FS is already mounted.
643 * 1. If you are here and if the device->name is NULL that
644 * means this device was missing at time of FS mount.
645 * 2. If you are here and if the device->name is different
646 * from 'path' that means either
647 * a. The same device disappeared and reappeared with
648 * different name. or
649 * b. The missing-disk-which-was-replaced, has
650 * reappeared now.
651 *
652 * We must allow 1 and 2a above. But 2b would be a spurious
653 * and unintentional.
654 *
655 * Further in case of 1 and 2a above, the disk at 'path'
656 * would have missed some transaction when it was away and
657 * in case of 2a the stale bdev has to be updated as well.
658 * 2b must not be allowed at all time.
659 */
660
661 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700662 * For now, we do allow update to btrfs_fs_device through the
663 * btrfs dev scan cli after FS has been mounted. We're still
664 * tracking a problem where systems fail mount by subvolume id
665 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800666 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700667 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800668 /*
669 * That is if the FS is _not_ mounted and if you
670 * are here, that means there is more than one
671 * disk with same uuid and devid.We keep the one
672 * with larger generation number or the last-in if
673 * generation are equal.
674 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700675 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800676 }
Anand Jainb96de002014-07-03 18:22:05 +0800677
Josef Bacik606686e2012-06-04 14:03:51 -0400678 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000679 if (!name)
680 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400681 rcu_string_free(device->name);
682 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500683 if (device->missing) {
684 fs_devices->missing_devices--;
685 device->missing = 0;
686 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400687 }
688
Anand Jain77bdae42014-07-03 18:22:06 +0800689 /*
690 * Unmount does not free the btrfs_device struct but would zero
691 * generation along with most of the other members. So just update
692 * it back. We need it to pick the disk with largest generation
693 * (as above).
694 */
695 if (!fs_devices->opened)
696 device->generation = found_transid;
697
Anand Jain4fde46f2015-06-17 21:10:48 +0800698 /*
699 * if there is new btrfs on an already registered device,
700 * then remove the stale device entry.
701 */
702 btrfs_free_stale_device(device);
703
Chris Mason8a4b83c2008-03-24 15:02:07 -0400704 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100705
706 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400707}
708
Yan Zhenge4404d62008-12-12 10:03:26 -0500709static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
710{
711 struct btrfs_fs_devices *fs_devices;
712 struct btrfs_device *device;
713 struct btrfs_device *orig_dev;
714
Ilya Dryomov2208a372013-08-12 14:33:03 +0300715 fs_devices = alloc_fs_devices(orig->fsid);
716 if (IS_ERR(fs_devices))
717 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500718
Miao Xieadbbb862014-09-03 21:35:42 +0800719 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400720 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500721
Xiao Guangrong46224702011-04-20 10:08:47 +0000722 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500723 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400724 struct rcu_string *name;
725
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300726 device = btrfs_alloc_device(NULL, &orig_dev->devid,
727 orig_dev->uuid);
728 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500729 goto error;
730
Josef Bacik606686e2012-06-04 14:03:51 -0400731 /*
732 * This is ok to do without rcu read locked because we hold the
733 * uuid mutex so nothing we touch in here is going to disappear.
734 */
Anand Jaine755f782014-06-30 17:12:47 +0800735 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100736 name = rcu_string_strdup(orig_dev->name->str,
737 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800738 if (!name) {
739 kfree(device);
740 goto error;
741 }
742 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400743 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500744
Yan Zhenge4404d62008-12-12 10:03:26 -0500745 list_add(&device->dev_list, &fs_devices->devices);
746 device->fs_devices = fs_devices;
747 fs_devices->num_devices++;
748 }
Miao Xieadbbb862014-09-03 21:35:42 +0800749 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500750 return fs_devices;
751error:
Miao Xieadbbb862014-09-03 21:35:42 +0800752 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500753 free_fs_devices(fs_devices);
754 return ERR_PTR(-ENOMEM);
755}
756
Eric Sandeen9eaed212014-08-01 18:12:35 -0500757void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400758{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500759 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800760 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500761
Chris Masondfe25022008-05-13 13:46:40 -0400762 mutex_lock(&uuid_mutex);
763again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000764 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500765 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500766 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100767 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800768 (!latest_dev ||
769 device->generation > latest_dev->generation)) {
770 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500771 }
Yan Zheng2b820322008-11-17 21:11:30 -0500772 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500773 }
Yan Zheng2b820322008-11-17 21:11:30 -0500774
Stefan Behrens8dabb742012-11-06 13:15:27 +0100775 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
776 /*
777 * In the first step, keep the device which has
778 * the correct fsid and the devid that is used
779 * for the dev_replace procedure.
780 * In the second step, the dev_replace state is
781 * read from the device tree and it is known
782 * whether the procedure is really active or
783 * not, which means whether this device is
784 * used or whether it should be removed.
785 */
786 if (step == 0 || device->is_tgtdev_for_dev_replace) {
787 continue;
788 }
789 }
Yan Zheng2b820322008-11-17 21:11:30 -0500790 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100791 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500792 device->bdev = NULL;
793 fs_devices->open_devices--;
794 }
795 if (device->writeable) {
796 list_del_init(&device->dev_alloc_list);
797 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100798 if (!device->is_tgtdev_for_dev_replace)
799 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500800 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500801 list_del_init(&device->dev_list);
802 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400803 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500804 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400805 }
Yan Zheng2b820322008-11-17 21:11:30 -0500806
807 if (fs_devices->seed) {
808 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500809 goto again;
810 }
811
Miao Xie443f24f2014-07-24 11:37:15 +0800812 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500813
Chris Masondfe25022008-05-13 13:46:40 -0400814 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400815}
Chris Masona0af4692008-05-13 16:03:06 -0400816
Xiao Guangrong1f781602011-04-20 10:09:16 +0000817static void __free_device(struct work_struct *work)
818{
819 struct btrfs_device *device;
820
821 device = container_of(work, struct btrfs_device, rcu_work);
822
823 if (device->bdev)
824 blkdev_put(device->bdev, device->mode);
825
Josef Bacik606686e2012-06-04 14:03:51 -0400826 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000827 kfree(device);
828}
829
830static void free_device(struct rcu_head *head)
831{
832 struct btrfs_device *device;
833
834 device = container_of(head, struct btrfs_device, rcu);
835
836 INIT_WORK(&device->rcu_work, __free_device);
837 schedule_work(&device->rcu_work);
838}
839
Yan Zheng2b820322008-11-17 21:11:30 -0500840static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400841{
Sasha Levin2037a092015-05-12 19:31:37 -0400842 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -0500843
Yan Zheng2b820322008-11-17 21:11:30 -0500844 if (--fs_devices->opened > 0)
845 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400846
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000847 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400848 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jainf190aa42015-08-14 18:33:05 +0800849 btrfs_close_one_device(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400850 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000851 mutex_unlock(&fs_devices->device_list_mutex);
852
Yan Zhenge4404d62008-12-12 10:03:26 -0500853 WARN_ON(fs_devices->open_devices);
854 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500855 fs_devices->opened = 0;
856 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500857
Chris Mason8a4b83c2008-03-24 15:02:07 -0400858 return 0;
859}
860
Yan Zheng2b820322008-11-17 21:11:30 -0500861int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
862{
Yan Zhenge4404d62008-12-12 10:03:26 -0500863 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500864 int ret;
865
866 mutex_lock(&uuid_mutex);
867 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500868 if (!fs_devices->opened) {
869 seed_devices = fs_devices->seed;
870 fs_devices->seed = NULL;
871 }
Yan Zheng2b820322008-11-17 21:11:30 -0500872 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500873
874 while (seed_devices) {
875 fs_devices = seed_devices;
876 seed_devices = fs_devices->seed;
877 __btrfs_close_devices(fs_devices);
878 free_fs_devices(fs_devices);
879 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000880 /*
881 * Wait for rcu kworkers under __btrfs_close_devices
882 * to finish all blkdev_puts so device is really
883 * free when umount is done.
884 */
885 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500886 return ret;
887}
888
Yan Zhenge4404d62008-12-12 10:03:26 -0500889static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
890 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400891{
Josef Bacikd5e20032011-08-04 14:52:27 +0000892 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400893 struct block_device *bdev;
894 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400895 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800896 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400897 struct buffer_head *bh;
898 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400899 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500900 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400901 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400902
Tejun Heod4d77622010-11-13 11:55:18 +0100903 flags |= FMODE_EXCL;
904
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500905 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400906 if (device->bdev)
907 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400908 if (!device->name)
909 continue;
910
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000911 /* Just open everything we can; ignore failures here */
912 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
913 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100914 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400915
916 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000917 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400918 if (devid != device->devid)
919 goto error_brelse;
920
Yan Zheng2b820322008-11-17 21:11:30 -0500921 if (memcmp(device->uuid, disk_super->dev_item.uuid,
922 BTRFS_UUID_SIZE))
923 goto error_brelse;
924
925 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +0800926 if (!latest_dev ||
927 device->generation > latest_dev->generation)
928 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -0400929
Yan Zheng2b820322008-11-17 21:11:30 -0500930 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
931 device->writeable = 0;
932 } else {
933 device->writeable = !bdev_read_only(bdev);
934 seeding = 0;
935 }
936
Josef Bacikd5e20032011-08-04 14:52:27 +0000937 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +0800938 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +0000939 device->can_discard = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +0000940
Chris Mason8a4b83c2008-03-24 15:02:07 -0400941 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400942 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500943 device->mode = flags;
944
Chris Masonc2898112009-06-10 09:51:32 -0400945 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
946 fs_devices->rotating = 1;
947
Chris Masona0af4692008-05-13 16:03:06 -0400948 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +0300949 if (device->writeable &&
950 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500951 fs_devices->rw_devices++;
952 list_add(&device->dev_alloc_list,
953 &fs_devices->alloc_list);
954 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000955 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400956 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400957
Chris Masona0af4692008-05-13 16:03:06 -0400958error_brelse:
959 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100960 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400961 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400962 }
Chris Masona0af4692008-05-13 16:03:06 -0400963 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300964 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400965 goto out;
966 }
Yan Zheng2b820322008-11-17 21:11:30 -0500967 fs_devices->seeding = seeding;
968 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +0800969 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -0500970 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400971out:
Yan Zheng2b820322008-11-17 21:11:30 -0500972 return ret;
973}
974
975int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500976 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500977{
978 int ret;
979
980 mutex_lock(&uuid_mutex);
981 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500982 fs_devices->opened++;
983 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500984 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500985 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500986 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400987 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400988 return ret;
989}
990
Anand Jain6cf86a002016-02-13 10:01:29 +0800991void btrfs_release_disk_super(struct page *page)
992{
993 kunmap(page);
994 put_page(page);
995}
996
997int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
998 struct page **page, struct btrfs_super_block **disk_super)
999{
1000 void *p;
1001 pgoff_t index;
1002
1003 /* make sure our super fits in the device */
1004 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1005 return 1;
1006
1007 /* make sure our super fits in the page */
1008 if (sizeof(**disk_super) > PAGE_SIZE)
1009 return 1;
1010
1011 /* make sure our super doesn't straddle pages on disk */
1012 index = bytenr >> PAGE_SHIFT;
1013 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1014 return 1;
1015
1016 /* pull in the page with our super */
1017 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1018 index, GFP_KERNEL);
1019
1020 if (IS_ERR_OR_NULL(*page))
1021 return 1;
1022
1023 p = kmap(*page);
1024
1025 /* align our pointer to the offset of the super block */
1026 *disk_super = p + (bytenr & ~PAGE_MASK);
1027
1028 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1029 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1030 btrfs_release_disk_super(*page);
1031 return 1;
1032 }
1033
1034 if ((*disk_super)->label[0] &&
1035 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1036 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1037
1038 return 0;
1039}
1040
David Sterba6f60cbd2013-02-15 11:31:02 -07001041/*
1042 * Look for a btrfs signature on a device. This may be called out of the mount path
1043 * and we are not allowed to call set_blocksize during the scan. The superblock
1044 * is read via pagecache
1045 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001046int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001047 struct btrfs_fs_devices **fs_devices_ret)
1048{
1049 struct btrfs_super_block *disk_super;
1050 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001051 struct page *page;
David Sterba6f60cbd2013-02-15 11:31:02 -07001052 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001053 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001054 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001055 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001056 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001057
David Sterba6f60cbd2013-02-15 11:31:02 -07001058 /*
1059 * we would like to check all the supers, but that would make
1060 * a btrfs mount succeed after a mkfs from a different FS.
1061 * So, we need to add a special mount option to scan for
1062 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1063 */
1064 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001065 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001066 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001067
1068 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001069 if (IS_ERR(bdev)) {
1070 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001071 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001072 }
1073
Anand Jain6cf86a002016-02-13 10:01:29 +08001074 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super))
David Sterba6f60cbd2013-02-15 11:31:02 -07001075 goto error_bdev_put;
1076
Xiao Guangronga3438322010-01-06 11:48:18 +00001077 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001078 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001079 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001080
Chris Mason8a4b83c2008-03-24 15:02:07 -04001081 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001082 if (ret > 0) {
1083 if (disk_super->label[0]) {
David Sterba60999ca2014-03-26 18:26:36 +01001084 printk(KERN_INFO "BTRFS: device label %s ", disk_super->label);
1085 } else {
1086 printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid);
1087 }
1088
1089 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
1090 ret = 0;
1091 }
Josef Bacik02db0842012-06-21 16:03:58 -04001092 if (!ret && fs_devices_ret)
1093 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001094
Anand Jain6cf86a002016-02-13 10:01:29 +08001095 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001096
1097error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001098 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001099error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001100 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001101 return ret;
1102}
Chris Mason0b86a832008-03-24 15:01:56 -04001103
Miao Xie6d07bce2011-01-05 10:07:31 +00001104/* helper to account the used device space in the range */
1105int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1106 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001107{
1108 struct btrfs_key key;
1109 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001110 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001111 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001112 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001113 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001114 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001115 struct extent_buffer *l;
1116
Miao Xie6d07bce2011-01-05 10:07:31 +00001117 *length = 0;
1118
Stefan Behrens63a212a2012-11-05 18:29:28 +01001119 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001120 return 0;
1121
Yan Zheng2b820322008-11-17 21:11:30 -05001122 path = btrfs_alloc_path();
1123 if (!path)
1124 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001125 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001126
Chris Mason0b86a832008-03-24 15:01:56 -04001127 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001128 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001129 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001130
1131 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001132 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001133 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001134 if (ret > 0) {
1135 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1136 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001137 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001138 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001139
Chris Mason0b86a832008-03-24 15:01:56 -04001140 while (1) {
1141 l = path->nodes[0];
1142 slot = path->slots[0];
1143 if (slot >= btrfs_header_nritems(l)) {
1144 ret = btrfs_next_leaf(root, path);
1145 if (ret == 0)
1146 continue;
1147 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001148 goto out;
1149
1150 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001151 }
1152 btrfs_item_key_to_cpu(l, &key, slot);
1153
1154 if (key.objectid < device->devid)
1155 goto next;
1156
1157 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001158 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001159
David Sterba962a2982014-06-04 18:41:45 +02001160 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001161 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001162
Chris Mason0b86a832008-03-24 15:01:56 -04001163 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001164 extent_end = key.offset + btrfs_dev_extent_length(l,
1165 dev_extent);
1166 if (key.offset <= start && extent_end > end) {
1167 *length = end - start + 1;
1168 break;
1169 } else if (key.offset <= start && extent_end > start)
1170 *length += extent_end - start;
1171 else if (key.offset > start && extent_end <= end)
1172 *length += extent_end - key.offset;
1173 else if (key.offset > start && key.offset <= end) {
1174 *length += end - key.offset + 1;
1175 break;
1176 } else if (key.offset > end)
1177 break;
1178
1179next:
1180 path->slots[0]++;
1181 }
1182 ret = 0;
1183out:
1184 btrfs_free_path(path);
1185 return ret;
1186}
1187
Jeff Mahoney499f3772015-06-15 09:41:17 -04001188static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001189 struct btrfs_device *device,
1190 u64 *start, u64 len)
1191{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001192 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001193 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001194 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001195 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001196 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001197
Jeff Mahoney499f3772015-06-15 09:41:17 -04001198 if (transaction)
1199 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001200again:
1201 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001202 struct map_lookup *map;
1203 int i;
1204
Jeff Mahoney95617d62015-06-03 10:55:48 -04001205 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001206 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001207 u64 end;
1208
Josef Bacik6df9a952013-06-27 13:22:46 -04001209 if (map->stripes[i].dev != device)
1210 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001211 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001212 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001213 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001214 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001215 /*
1216 * Make sure that while processing the pinned list we do
1217 * not override our *start with a lower value, because
1218 * we can have pinned chunks that fall within this
1219 * device hole and that have lower physical addresses
1220 * than the pending chunks we processed before. If we
1221 * do not take this special care we can end up getting
1222 * 2 pending chunks that start at the same physical
1223 * device offsets because the end offset of a pinned
1224 * chunk can be equal to the start offset of some
1225 * pending chunk.
1226 */
1227 end = map->stripes[i].physical + em->orig_block_len;
1228 if (end > *start) {
1229 *start = end;
1230 ret = 1;
1231 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001232 }
1233 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001234 if (search_list != &fs_info->pinned_chunks) {
1235 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001236 goto again;
1237 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001238
1239 return ret;
1240}
1241
1242
Chris Mason0b86a832008-03-24 15:01:56 -04001243/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001244 * find_free_dev_extent_start - find free space in the specified device
1245 * @device: the device which we search the free space in
1246 * @num_bytes: the size of the free space that we need
1247 * @search_start: the position from which to begin the search
1248 * @start: store the start of the free space.
1249 * @len: the size of the free space. that we find, or the size
1250 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001251 *
Chris Mason0b86a832008-03-24 15:01:56 -04001252 * this uses a pretty simple search, the expectation is that it is
1253 * called very infrequently and that a given device has a small number
1254 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001255 *
1256 * @start is used to store the start of the free space if we find. But if we
1257 * don't find suitable free space, it will be used to store the start position
1258 * of the max free space.
1259 *
1260 * @len is used to store the size of the free space that we find.
1261 * But if we don't find suitable free space, it is used to store the size of
1262 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001263 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001264int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1265 struct btrfs_device *device, u64 num_bytes,
1266 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001267{
1268 struct btrfs_key key;
1269 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001270 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001271 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001272 u64 hole_size;
1273 u64 max_hole_start;
1274 u64 max_hole_size;
1275 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001276 u64 search_end = device->total_bytes;
1277 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001278 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001279 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001280 u64 min_search_start;
1281
1282 /*
1283 * We don't want to overwrite the superblock on the drive nor any area
1284 * used by the boot loader (grub for example), so we make sure to start
1285 * at an offset of at least 1MB.
1286 */
1287 min_search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
1288 search_start = max(search_start, min_search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001289
Josef Bacik6df9a952013-06-27 13:22:46 -04001290 path = btrfs_alloc_path();
1291 if (!path)
1292 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001293
Miao Xie7bfc8372011-01-05 10:07:26 +00001294 max_hole_start = search_start;
1295 max_hole_size = 0;
1296
Zhao Leif2ab7612015-02-16 18:52:17 +08001297again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001298 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001299 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001300 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001301 }
1302
David Sterbae4058b52015-11-27 16:31:35 +01001303 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001304 path->search_commit_root = 1;
1305 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001306
Chris Mason0b86a832008-03-24 15:01:56 -04001307 key.objectid = device->devid;
1308 key.offset = search_start;
1309 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001310
Li Zefan125ccb02011-12-08 15:07:24 +08001311 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001312 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001313 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001314 if (ret > 0) {
1315 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1316 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001317 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001318 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001319
Chris Mason0b86a832008-03-24 15:01:56 -04001320 while (1) {
1321 l = path->nodes[0];
1322 slot = path->slots[0];
1323 if (slot >= btrfs_header_nritems(l)) {
1324 ret = btrfs_next_leaf(root, path);
1325 if (ret == 0)
1326 continue;
1327 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001328 goto out;
1329
1330 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001331 }
1332 btrfs_item_key_to_cpu(l, &key, slot);
1333
1334 if (key.objectid < device->devid)
1335 goto next;
1336
1337 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001338 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001339
David Sterba962a2982014-06-04 18:41:45 +02001340 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001341 goto next;
1342
Miao Xie7bfc8372011-01-05 10:07:26 +00001343 if (key.offset > search_start) {
1344 hole_size = key.offset - search_start;
1345
Josef Bacik6df9a952013-06-27 13:22:46 -04001346 /*
1347 * Have to check before we set max_hole_start, otherwise
1348 * we could end up sending back this offset anyway.
1349 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001350 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001351 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001352 hole_size)) {
1353 if (key.offset >= search_start) {
1354 hole_size = key.offset - search_start;
1355 } else {
1356 WARN_ON_ONCE(1);
1357 hole_size = 0;
1358 }
1359 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001360
Miao Xie7bfc8372011-01-05 10:07:26 +00001361 if (hole_size > max_hole_size) {
1362 max_hole_start = search_start;
1363 max_hole_size = hole_size;
1364 }
1365
1366 /*
1367 * If this free space is greater than which we need,
1368 * it must be the max free space that we have found
1369 * until now, so max_hole_start must point to the start
1370 * of this free space and the length of this free space
1371 * is stored in max_hole_size. Thus, we return
1372 * max_hole_start and max_hole_size and go back to the
1373 * caller.
1374 */
1375 if (hole_size >= num_bytes) {
1376 ret = 0;
1377 goto out;
1378 }
1379 }
1380
Chris Mason0b86a832008-03-24 15:01:56 -04001381 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001382 extent_end = key.offset + btrfs_dev_extent_length(l,
1383 dev_extent);
1384 if (extent_end > search_start)
1385 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001386next:
1387 path->slots[0]++;
1388 cond_resched();
1389 }
Chris Mason0b86a832008-03-24 15:01:56 -04001390
liubo38c01b92011-08-02 02:39:03 +00001391 /*
1392 * At this point, search_start should be the end of
1393 * allocated dev extents, and when shrinking the device,
1394 * search_end may be smaller than search_start.
1395 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001396 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001397 hole_size = search_end - search_start;
1398
Jeff Mahoney499f3772015-06-15 09:41:17 -04001399 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001400 hole_size)) {
1401 btrfs_release_path(path);
1402 goto again;
1403 }
Chris Mason0b86a832008-03-24 15:01:56 -04001404
Zhao Leif2ab7612015-02-16 18:52:17 +08001405 if (hole_size > max_hole_size) {
1406 max_hole_start = search_start;
1407 max_hole_size = hole_size;
1408 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001409 }
1410
Miao Xie7bfc8372011-01-05 10:07:26 +00001411 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001412 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001413 ret = -ENOSPC;
1414 else
1415 ret = 0;
1416
1417out:
Yan Zheng2b820322008-11-17 21:11:30 -05001418 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001419 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001420 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001421 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001422 return ret;
1423}
1424
Jeff Mahoney499f3772015-06-15 09:41:17 -04001425int find_free_dev_extent(struct btrfs_trans_handle *trans,
1426 struct btrfs_device *device, u64 num_bytes,
1427 u64 *start, u64 *len)
1428{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001429 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001430 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001431 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001432}
1433
Christoph Hellwigb2950862008-12-02 09:54:17 -05001434static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001435 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001436 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001437{
1438 int ret;
1439 struct btrfs_path *path;
1440 struct btrfs_root *root = device->dev_root;
1441 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001442 struct btrfs_key found_key;
1443 struct extent_buffer *leaf = NULL;
1444 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001445
1446 path = btrfs_alloc_path();
1447 if (!path)
1448 return -ENOMEM;
1449
1450 key.objectid = device->devid;
1451 key.offset = start;
1452 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001453again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001454 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001455 if (ret > 0) {
1456 ret = btrfs_previous_item(root, path, key.objectid,
1457 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001458 if (ret)
1459 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001460 leaf = path->nodes[0];
1461 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1462 extent = btrfs_item_ptr(leaf, path->slots[0],
1463 struct btrfs_dev_extent);
1464 BUG_ON(found_key.offset > start || found_key.offset +
1465 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001466 key = found_key;
1467 btrfs_release_path(path);
1468 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001469 } else if (ret == 0) {
1470 leaf = path->nodes[0];
1471 extent = btrfs_item_ptr(leaf, path->slots[0],
1472 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001473 } else {
Anand Jaina4553fe2015-09-25 14:43:01 +08001474 btrfs_std_error(root->fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001475 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001476 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001477
Miao Xie2196d6e2014-09-03 21:35:41 +08001478 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1479
Chris Mason8f18cf12008-04-25 16:53:30 -04001480 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001481 if (ret) {
Anand Jaina4553fe2015-09-25 14:43:01 +08001482 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001483 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001484 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001485 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001486 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001487out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001488 btrfs_free_path(path);
1489 return ret;
1490}
1491
Eric Sandeen48a3b632013-04-25 20:41:01 +00001492static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1493 struct btrfs_device *device,
1494 u64 chunk_tree, u64 chunk_objectid,
1495 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001496{
1497 int ret;
1498 struct btrfs_path *path;
1499 struct btrfs_root *root = device->dev_root;
1500 struct btrfs_dev_extent *extent;
1501 struct extent_buffer *leaf;
1502 struct btrfs_key key;
1503
Chris Masondfe25022008-05-13 13:46:40 -04001504 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001505 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001506 path = btrfs_alloc_path();
1507 if (!path)
1508 return -ENOMEM;
1509
Chris Mason0b86a832008-03-24 15:01:56 -04001510 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001511 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001512 key.type = BTRFS_DEV_EXTENT_KEY;
1513 ret = btrfs_insert_empty_item(trans, root, path, &key,
1514 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001515 if (ret)
1516 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001517
1518 leaf = path->nodes[0];
1519 extent = btrfs_item_ptr(leaf, path->slots[0],
1520 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001521 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1522 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1523 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1524
1525 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001526 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001527
Chris Mason0b86a832008-03-24 15:01:56 -04001528 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1529 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001530out:
Chris Mason0b86a832008-03-24 15:01:56 -04001531 btrfs_free_path(path);
1532 return ret;
1533}
1534
Josef Bacik6df9a952013-06-27 13:22:46 -04001535static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001536{
Josef Bacik6df9a952013-06-27 13:22:46 -04001537 struct extent_map_tree *em_tree;
1538 struct extent_map *em;
1539 struct rb_node *n;
1540 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001541
Josef Bacik6df9a952013-06-27 13:22:46 -04001542 em_tree = &fs_info->mapping_tree.map_tree;
1543 read_lock(&em_tree->lock);
1544 n = rb_last(&em_tree->map);
1545 if (n) {
1546 em = rb_entry(n, struct extent_map, rb_node);
1547 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001548 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001549 read_unlock(&em_tree->lock);
1550
Chris Mason0b86a832008-03-24 15:01:56 -04001551 return ret;
1552}
1553
Ilya Dryomov53f10652013-08-12 14:33:01 +03001554static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1555 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001556{
1557 int ret;
1558 struct btrfs_key key;
1559 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001560 struct btrfs_path *path;
1561
Yan Zheng2b820322008-11-17 21:11:30 -05001562 path = btrfs_alloc_path();
1563 if (!path)
1564 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001565
1566 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1567 key.type = BTRFS_DEV_ITEM_KEY;
1568 key.offset = (u64)-1;
1569
Ilya Dryomov53f10652013-08-12 14:33:01 +03001570 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001571 if (ret < 0)
1572 goto error;
1573
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001574 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001575
Ilya Dryomov53f10652013-08-12 14:33:01 +03001576 ret = btrfs_previous_item(fs_info->chunk_root, path,
1577 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001578 BTRFS_DEV_ITEM_KEY);
1579 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001580 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001581 } else {
1582 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1583 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001584 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001585 }
1586 ret = 0;
1587error:
Yan Zheng2b820322008-11-17 21:11:30 -05001588 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001589 return ret;
1590}
1591
1592/*
1593 * the device information is stored in the chunk root
1594 * the btrfs_device struct should be fully filled in
1595 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001596static int btrfs_add_device(struct btrfs_trans_handle *trans,
1597 struct btrfs_root *root,
1598 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001599{
1600 int ret;
1601 struct btrfs_path *path;
1602 struct btrfs_dev_item *dev_item;
1603 struct extent_buffer *leaf;
1604 struct btrfs_key key;
1605 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001606
1607 root = root->fs_info->chunk_root;
1608
1609 path = btrfs_alloc_path();
1610 if (!path)
1611 return -ENOMEM;
1612
Chris Mason0b86a832008-03-24 15:01:56 -04001613 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1614 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001615 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001616
1617 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001618 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001619 if (ret)
1620 goto out;
1621
1622 leaf = path->nodes[0];
1623 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1624
1625 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001626 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001627 btrfs_set_device_type(leaf, dev_item, device->type);
1628 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1629 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1630 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001631 btrfs_set_device_total_bytes(leaf, dev_item,
1632 btrfs_device_get_disk_total_bytes(device));
1633 btrfs_set_device_bytes_used(leaf, dev_item,
1634 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001635 btrfs_set_device_group(leaf, dev_item, 0);
1636 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1637 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001638 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001639
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001640 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001641 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001642 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001643 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001644 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001645
Yan Zheng2b820322008-11-17 21:11:30 -05001646 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001647out:
1648 btrfs_free_path(path);
1649 return ret;
1650}
Chris Mason8f18cf12008-04-25 16:53:30 -04001651
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001652/*
1653 * Function to update ctime/mtime for a given device path.
1654 * Mainly used for ctime/mtime based probe like libblkid.
1655 */
1656static void update_dev_time(char *path_name)
1657{
1658 struct file *filp;
1659
1660 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001661 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001662 return;
1663 file_update_time(filp);
1664 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001665}
1666
Chris Masona061fc82008-05-07 11:43:44 -04001667static int btrfs_rm_dev_item(struct btrfs_root *root,
1668 struct btrfs_device *device)
1669{
1670 int ret;
1671 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001672 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001673 struct btrfs_trans_handle *trans;
1674
1675 root = root->fs_info->chunk_root;
1676
1677 path = btrfs_alloc_path();
1678 if (!path)
1679 return -ENOMEM;
1680
Yan, Zhenga22285a2010-05-16 10:48:46 -04001681 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001682 if (IS_ERR(trans)) {
1683 btrfs_free_path(path);
1684 return PTR_ERR(trans);
1685 }
Chris Masona061fc82008-05-07 11:43:44 -04001686 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1687 key.type = BTRFS_DEV_ITEM_KEY;
1688 key.offset = device->devid;
1689
1690 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1691 if (ret < 0)
1692 goto out;
1693
1694 if (ret > 0) {
1695 ret = -ENOENT;
1696 goto out;
1697 }
1698
1699 ret = btrfs_del_item(trans, root, path);
1700 if (ret)
1701 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001702out:
1703 btrfs_free_path(path);
1704 btrfs_commit_transaction(trans, root);
1705 return ret;
1706}
1707
Anand Jainbd45ffb2016-02-13 10:01:34 +08001708static int __check_raid_min_devices(struct btrfs_fs_info *fs_info)
Chris Masona061fc82008-05-07 11:43:44 -04001709{
Chris Masona061fc82008-05-07 11:43:44 -04001710 u64 all_avail;
Yan Zheng2b820322008-11-17 21:11:30 -05001711 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00001712 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001713
Anand Jainbd45ffb2016-02-13 10:01:34 +08001714 num_devices = fs_info->fs_devices->num_devices;
1715 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1716 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Stefan Behrens8dabb742012-11-06 13:15:27 +01001717 WARN_ON(num_devices < 1);
1718 num_devices--;
1719 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001720 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01001721
Anand Jainf1fa7f22016-02-13 10:01:33 +08001722 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001723 seq = read_seqbegin(&fs_info->profiles_lock);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001724
Anand Jainbd45ffb2016-02-13 10:01:34 +08001725 all_avail = fs_info->avail_data_alloc_bits |
1726 fs_info->avail_system_alloc_bits |
1727 fs_info->avail_metadata_alloc_bits;
1728 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001729
Stefan Behrens8dabb742012-11-06 13:15:27 +01001730 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001731 return BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001732 }
1733
Stefan Behrens8dabb742012-11-06 13:15:27 +01001734 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001735 return BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001736 }
1737
David Woodhouse53b381b2013-01-29 18:40:14 -05001738 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
Anand Jainbd45ffb2016-02-13 10:01:34 +08001739 fs_info->fs_devices->rw_devices <= 2) {
1740 return BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001741 }
1742
Anand Jainbd45ffb2016-02-13 10:01:34 +08001743 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1744 fs_info->fs_devices->rw_devices <= 3) {
1745 return BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
1746 }
1747
1748 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001749}
1750
Anand Jain6b526ed2016-02-13 10:01:39 +08001751int btrfs_rm_device(struct btrfs_root *root, char *device_path, u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001752{
1753 struct btrfs_device *device;
1754 struct btrfs_device *next_device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001755 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001756 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001757 int ret = 0;
1758 bool clear_super = false;
Anand Jain42b67422016-02-13 10:01:38 +08001759 char *dev_name = NULL;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001760
1761 mutex_lock(&uuid_mutex);
1762
Anand Jainbd45ffb2016-02-13 10:01:34 +08001763 ret = __check_raid_min_devices(root->fs_info);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001764 if (ret)
1765 goto out;
1766
Anand Jain6b526ed2016-02-13 10:01:39 +08001767 ret = btrfs_find_device_by_user_input(root, devid, device_path,
Anand Jain24fc5722016-02-13 10:01:36 +08001768 &device);
1769 if (ret)
1770 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001771
Stefan Behrens63a212a2012-11-05 18:29:28 +01001772 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001773 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001774 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001775 }
1776
Yan Zheng2b820322008-11-17 21:11:30 -05001777 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001778 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001779 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001780 }
1781
1782 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001783 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001784 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001785 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001786 unlock_chunks(root);
Anand Jain42b67422016-02-13 10:01:38 +08001787 dev_name = kstrdup(device->name->str, GFP_KERNEL);
1788 if (!dev_name) {
1789 ret = -ENOMEM;
1790 goto error_undo;
1791 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001792 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001793 }
Chris Masona061fc82008-05-07 11:43:44 -04001794
Carey Underwoodd7901552013-03-04 16:37:06 -06001795 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001796 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001797 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001798 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001799 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001800
Stefan Behrens63a212a2012-11-05 18:29:28 +01001801 /*
1802 * TODO: the superblock still includes this device in its num_devices
1803 * counter although write_all_supers() is not locked out. This
1804 * could give a filesystem state which requires a degraded mount.
1805 */
Chris Masona061fc82008-05-07 11:43:44 -04001806 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1807 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001808 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001809
Yan Zheng2b820322008-11-17 21:11:30 -05001810 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001811 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001812
1813 /*
1814 * the device list mutex makes sure that we don't change
1815 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001816 * the device supers. Whoever is writing all supers, should
1817 * lock the device list mutex before getting the number of
1818 * devices in the super block (super_copy). Conversely,
1819 * whoever updates the number of devices in the super block
1820 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001821 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001822
1823 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001824 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001825 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001826
Yan Zhenge4404d62008-12-12 10:03:26 -05001827 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001828 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001829
Chris Masoncd02dca2010-12-13 14:56:23 -05001830 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001831 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001832
Yan Zheng2b820322008-11-17 21:11:30 -05001833 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1834 struct btrfs_device, dev_list);
1835 if (device->bdev == root->fs_info->sb->s_bdev)
1836 root->fs_info->sb->s_bdev = next_device->bdev;
1837 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1838 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1839
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001840 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001841 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001842 /* remove sysfs entry */
Anand Jain32576042015-08-14 18:32:49 +08001843 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001844 }
Anand Jain99994cd2014-06-03 11:36:00 +08001845
Xiao Guangrong1f781602011-04-20 10:09:16 +00001846 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001847
David Sterba6c417612011-04-13 15:41:04 +02001848 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1849 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001850 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001851
Xiao Guangrong1f781602011-04-20 10:09:16 +00001852 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001853 struct btrfs_fs_devices *fs_devices;
1854 fs_devices = root->fs_info->fs_devices;
1855 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001856 if (fs_devices->seed == cur_devices) {
1857 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001858 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001859 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001860 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001861 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001862 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001863 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001864 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001865 }
1866
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001867 root->fs_info->num_tolerated_disk_barrier_failures =
1868 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1869
Yan Zheng2b820322008-11-17 21:11:30 -05001870 /*
1871 * at this point, the device is zero sized. We want to
1872 * remove it from the devices list and zero out the old super
1873 */
Anand Jain24fc5722016-02-13 10:01:36 +08001874 if (clear_super) {
Anand Jain42b67422016-02-13 10:01:38 +08001875 struct block_device *bdev;
Anand Jain4d90d282014-04-06 12:59:07 +08001876
Anand Jain42b67422016-02-13 10:01:38 +08001877 bdev = blkdev_get_by_path(dev_name, FMODE_READ | FMODE_EXCL,
1878 root->fs_info->bdev_holder);
1879 if (!IS_ERR(bdev)) {
1880 btrfs_scratch_superblocks(bdev, dev_name);
Anand Jain24fc5722016-02-13 10:01:36 +08001881 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Anand Jain4d90d282014-04-06 12:59:07 +08001882 }
Chris Masondfe25022008-05-13 13:46:40 -04001883 }
Chris Masona061fc82008-05-07 11:43:44 -04001884
Chris Masona061fc82008-05-07 11:43:44 -04001885out:
Anand Jain42b67422016-02-13 10:01:38 +08001886 kfree(dev_name);
1887
Chris Masona061fc82008-05-07 11:43:44 -04001888 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001889 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001890
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001891error_undo:
1892 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001893 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001894 list_add(&device->dev_alloc_list,
1895 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001896 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001897 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001898 }
Anand Jain24fc5722016-02-13 10:01:36 +08001899 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001900}
1901
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001902void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1903 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001904{
Anand Jaind51908c2014-08-13 14:24:19 +08001905 struct btrfs_fs_devices *fs_devices;
1906
Stefan Behrense93c89c2012-11-05 17:33:06 +01001907 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001908
Anand Jain25e8e912014-08-20 10:56:56 +08001909 /*
1910 * in case of fs with no seed, srcdev->fs_devices will point
1911 * to fs_devices of fs_info. However when the dev being replaced is
1912 * a seed dev it will point to the seed's local fs_devices. In short
1913 * srcdev will have its correct fs_devices in both the cases.
1914 */
1915 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001916
Stefan Behrense93c89c2012-11-05 17:33:06 +01001917 list_del_rcu(&srcdev->dev_list);
1918 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001919 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001920 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001921 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001922
Miao Xie82372bc2014-09-03 21:35:44 +08001923 if (srcdev->writeable) {
1924 fs_devices->rw_devices--;
1925 /* zero out the old super if it is writable */
David Sterba31388ab2015-11-19 11:35:17 +01001926 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
Ilya Dryomov13572722013-10-02 20:41:01 +03001927 }
1928
Miao Xie82372bc2014-09-03 21:35:44 +08001929 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08001930 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001931}
1932
1933void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1934 struct btrfs_device *srcdev)
1935{
1936 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001937
Stefan Behrense93c89c2012-11-05 17:33:06 +01001938 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001939
1940 /*
1941 * unless fs_devices is seed fs, num_devices shouldn't go
1942 * zero
1943 */
1944 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1945
1946 /* if this is no devs we rather delete the fs_devices */
1947 if (!fs_devices->num_devices) {
1948 struct btrfs_fs_devices *tmp_fs_devices;
1949
1950 tmp_fs_devices = fs_info->fs_devices;
1951 while (tmp_fs_devices) {
1952 if (tmp_fs_devices->seed == fs_devices) {
1953 tmp_fs_devices->seed = fs_devices->seed;
1954 break;
1955 }
1956 tmp_fs_devices = tmp_fs_devices->seed;
1957 }
1958 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08001959 __btrfs_close_devices(fs_devices);
1960 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001961 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01001962}
1963
1964void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1965 struct btrfs_device *tgtdev)
1966{
1967 struct btrfs_device *next_device;
1968
Miao Xie67a2c452014-09-03 21:35:43 +08001969 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01001970 WARN_ON(!tgtdev);
1971 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08001972
Anand Jain32576042015-08-14 18:32:49 +08001973 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08001974
Stefan Behrense93c89c2012-11-05 17:33:06 +01001975 if (tgtdev->bdev) {
David Sterba31388ab2015-11-19 11:35:17 +01001976 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Stefan Behrense93c89c2012-11-05 17:33:06 +01001977 fs_info->fs_devices->open_devices--;
1978 }
1979 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001980
1981 next_device = list_entry(fs_info->fs_devices->devices.next,
1982 struct btrfs_device, dev_list);
1983 if (tgtdev->bdev == fs_info->sb->s_bdev)
1984 fs_info->sb->s_bdev = next_device->bdev;
1985 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
1986 fs_info->fs_devices->latest_bdev = next_device->bdev;
1987 list_del_rcu(&tgtdev->dev_list);
1988
1989 call_rcu(&tgtdev->rcu, free_device);
1990
1991 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08001992 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01001993}
1994
Eric Sandeen48a3b632013-04-25 20:41:01 +00001995static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
1996 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001997{
1998 int ret = 0;
1999 struct btrfs_super_block *disk_super;
2000 u64 devid;
2001 u8 *dev_uuid;
2002 struct block_device *bdev;
2003 struct buffer_head *bh;
2004
2005 *device = NULL;
2006 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2007 root->fs_info->bdev_holder, 0, &bdev, &bh);
2008 if (ret)
2009 return ret;
2010 disk_super = (struct btrfs_super_block *)bh->b_data;
2011 devid = btrfs_stack_device_id(&disk_super->dev_item);
2012 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002013 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002014 disk_super->fsid);
2015 brelse(bh);
2016 if (!*device)
2017 ret = -ENOENT;
2018 blkdev_put(bdev, FMODE_READ);
2019 return ret;
2020}
2021
2022int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2023 char *device_path,
2024 struct btrfs_device **device)
2025{
2026 *device = NULL;
2027 if (strcmp(device_path, "missing") == 0) {
2028 struct list_head *devices;
2029 struct btrfs_device *tmp;
2030
2031 devices = &root->fs_info->fs_devices->devices;
2032 /*
2033 * It is safe to read the devices since the volume_mutex
2034 * is held by the caller.
2035 */
2036 list_for_each_entry(tmp, devices, dev_list) {
2037 if (tmp->in_fs_metadata && !tmp->bdev) {
2038 *device = tmp;
2039 break;
2040 }
2041 }
2042
Anand Jaind74a6252015-08-14 18:32:56 +08002043 if (!*device)
2044 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002045
2046 return 0;
2047 } else {
2048 return btrfs_find_device_by_path(root, device_path, device);
2049 }
2050}
2051
Anand Jain24e04742016-02-13 10:01:35 +08002052int btrfs_find_device_by_user_input(struct btrfs_root *root, u64 srcdevid,
2053 char *srcdev_name,
2054 struct btrfs_device **device)
2055{
2056 int ret;
2057
2058 if (srcdevid) {
2059 ret = 0;
2060 *device = btrfs_find_device(root->fs_info, srcdevid, NULL,
2061 NULL);
2062 if (!*device)
2063 ret = -ENOENT;
2064 } else {
Anand Jainb3d1b152016-02-13 10:01:37 +08002065 if (!srcdev_name || !srcdev_name[0])
2066 return -EINVAL;
2067
Anand Jain24e04742016-02-13 10:01:35 +08002068 ret = btrfs_find_device_missing_or_by_path(root, srcdev_name,
2069 device);
2070 }
2071 return ret;
2072}
2073
Yan Zheng2b820322008-11-17 21:11:30 -05002074/*
2075 * does all the dirty work required for changing file system's UUID.
2076 */
Li Zefan125ccb02011-12-08 15:07:24 +08002077static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05002078{
2079 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2080 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002081 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02002082 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002083 struct btrfs_device *device;
2084 u64 super_flags;
2085
2086 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002087 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002088 return -EINVAL;
2089
Ilya Dryomov2208a372013-08-12 14:33:03 +03002090 seed_devices = __alloc_fs_devices();
2091 if (IS_ERR(seed_devices))
2092 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002093
Yan Zhenge4404d62008-12-12 10:03:26 -05002094 old_devices = clone_fs_devices(fs_devices);
2095 if (IS_ERR(old_devices)) {
2096 kfree(seed_devices);
2097 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002098 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002099
Yan Zheng2b820322008-11-17 21:11:30 -05002100 list_add(&old_devices->list, &fs_uuids);
2101
Yan Zhenge4404d62008-12-12 10:03:26 -05002102 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2103 seed_devices->opened = 1;
2104 INIT_LIST_HEAD(&seed_devices->devices);
2105 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002106 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002107
2108 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002109 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2110 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002111 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002112 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002113
2114 lock_chunks(root);
2115 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2116 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05002117
Yan Zheng2b820322008-11-17 21:11:30 -05002118 fs_devices->seeding = 0;
2119 fs_devices->num_devices = 0;
2120 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002121 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002122 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002123 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002124
2125 generate_random_uuid(fs_devices->fsid);
2126 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2127 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002128 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2129
Yan Zheng2b820322008-11-17 21:11:30 -05002130 super_flags = btrfs_super_flags(disk_super) &
2131 ~BTRFS_SUPER_FLAG_SEEDING;
2132 btrfs_set_super_flags(disk_super, super_flags);
2133
2134 return 0;
2135}
2136
2137/*
2138 * strore the expected generation for seed devices in device items.
2139 */
2140static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2141 struct btrfs_root *root)
2142{
2143 struct btrfs_path *path;
2144 struct extent_buffer *leaf;
2145 struct btrfs_dev_item *dev_item;
2146 struct btrfs_device *device;
2147 struct btrfs_key key;
2148 u8 fs_uuid[BTRFS_UUID_SIZE];
2149 u8 dev_uuid[BTRFS_UUID_SIZE];
2150 u64 devid;
2151 int ret;
2152
2153 path = btrfs_alloc_path();
2154 if (!path)
2155 return -ENOMEM;
2156
2157 root = root->fs_info->chunk_root;
2158 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2159 key.offset = 0;
2160 key.type = BTRFS_DEV_ITEM_KEY;
2161
2162 while (1) {
2163 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2164 if (ret < 0)
2165 goto error;
2166
2167 leaf = path->nodes[0];
2168next_slot:
2169 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2170 ret = btrfs_next_leaf(root, path);
2171 if (ret > 0)
2172 break;
2173 if (ret < 0)
2174 goto error;
2175 leaf = path->nodes[0];
2176 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002177 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002178 continue;
2179 }
2180
2181 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2182 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2183 key.type != BTRFS_DEV_ITEM_KEY)
2184 break;
2185
2186 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2187 struct btrfs_dev_item);
2188 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002189 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002190 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002191 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002192 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002193 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2194 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002195 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002196
2197 if (device->fs_devices->seeding) {
2198 btrfs_set_device_generation(leaf, dev_item,
2199 device->generation);
2200 btrfs_mark_buffer_dirty(leaf);
2201 }
2202
2203 path->slots[0]++;
2204 goto next_slot;
2205 }
2206 ret = 0;
2207error:
2208 btrfs_free_path(path);
2209 return ret;
2210}
2211
Chris Mason788f20e2008-04-28 15:29:42 -04002212int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2213{
Josef Bacikd5e20032011-08-04 14:52:27 +00002214 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002215 struct btrfs_trans_handle *trans;
2216 struct btrfs_device *device;
2217 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002218 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002219 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002220 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002221 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002222 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002223 int ret = 0;
2224
Yan Zheng2b820322008-11-17 21:11:30 -05002225 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002226 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002227
Li Zefana5d16332011-12-07 20:08:40 -05002228 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002229 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002230 if (IS_ERR(bdev))
2231 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002232
Yan Zheng2b820322008-11-17 21:11:30 -05002233 if (root->fs_info->fs_devices->seeding) {
2234 seeding_dev = 1;
2235 down_write(&sb->s_umount);
2236 mutex_lock(&uuid_mutex);
2237 }
2238
Chris Mason8c8bee12008-09-29 11:19:10 -04002239 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002240
Chris Mason788f20e2008-04-28 15:29:42 -04002241 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002242
2243 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002244 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002245 if (device->bdev == bdev) {
2246 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002247 mutex_unlock(
2248 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002249 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002250 }
2251 }
Liu Bod25628b2012-11-14 14:35:30 +00002252 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002253
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002254 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2255 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002256 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002257 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002258 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002259 }
2260
David Sterba78f2c9e2016-02-11 14:25:38 +01002261 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002262 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002263 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002264 ret = -ENOMEM;
2265 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002266 }
Josef Bacik606686e2012-06-04 14:03:51 -04002267 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002268
Yan, Zhenga22285a2010-05-16 10:48:46 -04002269 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002270 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002271 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002272 kfree(device);
2273 ret = PTR_ERR(trans);
2274 goto error;
2275 }
2276
Josef Bacikd5e20032011-08-04 14:52:27 +00002277 q = bdev_get_queue(bdev);
2278 if (blk_queue_discard(q))
2279 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002280 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002281 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002282 device->io_width = root->sectorsize;
2283 device->io_align = root->sectorsize;
2284 device->sector_size = root->sectorsize;
2285 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002286 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002287 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002288 device->dev_root = root->fs_info->dev_root;
2289 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002290 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002291 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002292 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002293 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002294 set_blocksize(device->bdev, 4096);
2295
Yan Zheng2b820322008-11-17 21:11:30 -05002296 if (seeding_dev) {
2297 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002298 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002299 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002300 }
2301
2302 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002303
Chris Masone5e9a522009-06-10 15:17:02 -04002304 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002305 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002306 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002307 list_add(&device->dev_alloc_list,
2308 &root->fs_info->fs_devices->alloc_list);
2309 root->fs_info->fs_devices->num_devices++;
2310 root->fs_info->fs_devices->open_devices++;
2311 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002312 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002313 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2314
Josef Bacik2bf64752011-09-26 17:12:22 -04002315 spin_lock(&root->fs_info->free_chunk_lock);
2316 root->fs_info->free_chunk_space += device->total_bytes;
2317 spin_unlock(&root->fs_info->free_chunk_lock);
2318
Chris Masonc2898112009-06-10 09:51:32 -04002319 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2320 root->fs_info->fs_devices->rotating = 1;
2321
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002322 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002323 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002324 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002325
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002326 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002327 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002328 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002329
2330 /* add sysfs device entry */
Anand Jaine3bd6972015-08-14 18:32:48 +08002331 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002332
Miao Xie2196d6e2014-09-03 21:35:41 +08002333 /*
2334 * we've got more storage, clear any full flags on the space
2335 * infos
2336 */
2337 btrfs_clear_space_info_full(root->fs_info);
2338
2339 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002340 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002341
Yan Zheng2b820322008-11-17 21:11:30 -05002342 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002343 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002344 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002345 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002346 if (ret) {
2347 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002348 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002349 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002350 }
2351
2352 ret = btrfs_add_device(trans, root, device);
2353 if (ret) {
2354 btrfs_abort_transaction(trans, root, ret);
2355 goto error_trans;
2356 }
2357
2358 if (seeding_dev) {
2359 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2360
Yan Zheng2b820322008-11-17 21:11:30 -05002361 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002362 if (ret) {
2363 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002364 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002365 }
Anand Jainb2373f22014-06-03 11:36:03 +08002366
2367 /* Sprouting would change fsid of the mounted root,
2368 * so rename the fsid on the sysfs
2369 */
2370 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2371 root->fs_info->fsid);
Anand Jainc1b7e472015-08-14 18:32:50 +08002372 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
Anand Jain2e7910d2015-03-10 06:38:29 +08002373 fsid_buf))
David Sterbaf14d1042015-10-08 11:37:06 +02002374 btrfs_warn(root->fs_info,
2375 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002376 }
2377
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002378 root->fs_info->num_tolerated_disk_barrier_failures =
2379 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002380 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002381
2382 if (seeding_dev) {
2383 mutex_unlock(&uuid_mutex);
2384 up_write(&sb->s_umount);
2385
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002386 if (ret) /* transaction commit */
2387 return ret;
2388
Yan Zheng2b820322008-11-17 21:11:30 -05002389 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002390 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002391 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002392 "Failed to relocate sys chunks after "
2393 "device initialization. This can be fixed "
2394 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002395 trans = btrfs_attach_transaction(root);
2396 if (IS_ERR(trans)) {
2397 if (PTR_ERR(trans) == -ENOENT)
2398 return 0;
2399 return PTR_ERR(trans);
2400 }
2401 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002402 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002403
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002404 /* Update ctime/mtime for libblkid */
2405 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002406 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002407
2408error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002409 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002410 rcu_string_free(device->name);
Anand Jain32576042015-08-14 18:32:49 +08002411 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002412 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002413error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002414 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002415 if (seeding_dev) {
2416 mutex_unlock(&uuid_mutex);
2417 up_write(&sb->s_umount);
2418 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002419 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002420}
2421
Stefan Behrense93c89c2012-11-05 17:33:06 +01002422int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002423 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002424 struct btrfs_device **device_out)
2425{
2426 struct request_queue *q;
2427 struct btrfs_device *device;
2428 struct block_device *bdev;
2429 struct btrfs_fs_info *fs_info = root->fs_info;
2430 struct list_head *devices;
2431 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002432 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002433 int ret = 0;
2434
2435 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002436 if (fs_info->fs_devices->seeding) {
2437 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002438 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002439 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002440
2441 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2442 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002443 if (IS_ERR(bdev)) {
2444 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002445 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002446 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002447
2448 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2449
2450 devices = &fs_info->fs_devices->devices;
2451 list_for_each_entry(device, devices, dev_list) {
2452 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002453 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002454 ret = -EEXIST;
2455 goto error;
2456 }
2457 }
2458
Miao Xie1c433662014-09-03 21:35:32 +08002459
Miao Xie7cc8e582014-09-03 21:35:38 +08002460 if (i_size_read(bdev->bd_inode) <
2461 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002462 btrfs_err(fs_info, "target device is smaller than source device!");
2463 ret = -EINVAL;
2464 goto error;
2465 }
2466
2467
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002468 device = btrfs_alloc_device(NULL, &devid, NULL);
2469 if (IS_ERR(device)) {
2470 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002471 goto error;
2472 }
2473
2474 name = rcu_string_strdup(device_path, GFP_NOFS);
2475 if (!name) {
2476 kfree(device);
2477 ret = -ENOMEM;
2478 goto error;
2479 }
2480 rcu_assign_pointer(device->name, name);
2481
2482 q = bdev_get_queue(bdev);
2483 if (blk_queue_discard(q))
2484 device->can_discard = 1;
2485 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2486 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002487 device->generation = 0;
2488 device->io_width = root->sectorsize;
2489 device->io_align = root->sectorsize;
2490 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002491 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2492 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2493 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002494 ASSERT(list_empty(&srcdev->resized_list));
2495 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002496 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002497 device->dev_root = fs_info->dev_root;
2498 device->bdev = bdev;
2499 device->in_fs_metadata = 1;
2500 device->is_tgtdev_for_dev_replace = 1;
2501 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002502 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002503 set_blocksize(device->bdev, 4096);
2504 device->fs_devices = fs_info->fs_devices;
2505 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2506 fs_info->fs_devices->num_devices++;
2507 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002508 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2509
2510 *device_out = device;
2511 return ret;
2512
2513error:
2514 blkdev_put(bdev, FMODE_EXCL);
2515 return ret;
2516}
2517
2518void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2519 struct btrfs_device *tgtdev)
2520{
2521 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2522 tgtdev->io_width = fs_info->dev_root->sectorsize;
2523 tgtdev->io_align = fs_info->dev_root->sectorsize;
2524 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2525 tgtdev->dev_root = fs_info->dev_root;
2526 tgtdev->in_fs_metadata = 1;
2527}
2528
Chris Masond3977122009-01-05 21:25:51 -05002529static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2530 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002531{
2532 int ret;
2533 struct btrfs_path *path;
2534 struct btrfs_root *root;
2535 struct btrfs_dev_item *dev_item;
2536 struct extent_buffer *leaf;
2537 struct btrfs_key key;
2538
2539 root = device->dev_root->fs_info->chunk_root;
2540
2541 path = btrfs_alloc_path();
2542 if (!path)
2543 return -ENOMEM;
2544
2545 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2546 key.type = BTRFS_DEV_ITEM_KEY;
2547 key.offset = device->devid;
2548
2549 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2550 if (ret < 0)
2551 goto out;
2552
2553 if (ret > 0) {
2554 ret = -ENOENT;
2555 goto out;
2556 }
2557
2558 leaf = path->nodes[0];
2559 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2560
2561 btrfs_set_device_id(leaf, dev_item, device->devid);
2562 btrfs_set_device_type(leaf, dev_item, device->type);
2563 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2564 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2565 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002566 btrfs_set_device_total_bytes(leaf, dev_item,
2567 btrfs_device_get_disk_total_bytes(device));
2568 btrfs_set_device_bytes_used(leaf, dev_item,
2569 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002570 btrfs_mark_buffer_dirty(leaf);
2571
2572out:
2573 btrfs_free_path(path);
2574 return ret;
2575}
2576
Miao Xie2196d6e2014-09-03 21:35:41 +08002577int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002578 struct btrfs_device *device, u64 new_size)
2579{
2580 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002581 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002582 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002583 u64 old_total;
2584 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002585
Yan Zheng2b820322008-11-17 21:11:30 -05002586 if (!device->writeable)
2587 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002588
2589 lock_chunks(device->dev_root);
2590 old_total = btrfs_super_total_bytes(super_copy);
2591 diff = new_size - device->total_bytes;
2592
Stefan Behrens63a212a2012-11-05 18:29:28 +01002593 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002594 device->is_tgtdev_for_dev_replace) {
2595 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002596 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002597 }
Yan Zheng2b820322008-11-17 21:11:30 -05002598
Miao Xie935e5cc2014-09-03 21:35:33 +08002599 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002600
2601 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002602 device->fs_devices->total_rw_bytes += diff;
2603
Miao Xie7cc8e582014-09-03 21:35:38 +08002604 btrfs_device_set_total_bytes(device, new_size);
2605 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002606 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002607 if (list_empty(&device->resized_list))
2608 list_add_tail(&device->resized_list,
2609 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002610 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002611
Chris Mason8f18cf12008-04-25 16:53:30 -04002612 return btrfs_update_device(trans, device);
2613}
2614
2615static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Zhao Leia688a042015-02-09 20:31:44 +08002616 struct btrfs_root *root, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002617 u64 chunk_offset)
2618{
2619 int ret;
2620 struct btrfs_path *path;
2621 struct btrfs_key key;
2622
2623 root = root->fs_info->chunk_root;
2624 path = btrfs_alloc_path();
2625 if (!path)
2626 return -ENOMEM;
2627
2628 key.objectid = chunk_objectid;
2629 key.offset = chunk_offset;
2630 key.type = BTRFS_CHUNK_ITEM_KEY;
2631
2632 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002633 if (ret < 0)
2634 goto out;
2635 else if (ret > 0) { /* Logic error or corruption */
Anand Jaina4553fe2015-09-25 14:43:01 +08002636 btrfs_std_error(root->fs_info, -ENOENT,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002637 "Failed lookup while freeing chunk.");
2638 ret = -ENOENT;
2639 goto out;
2640 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002641
2642 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002643 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002644 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002645 "Failed to delete chunk item.");
2646out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002647 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002648 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002649}
2650
Christoph Hellwigb2950862008-12-02 09:54:17 -05002651static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002652 chunk_offset)
2653{
David Sterba6c417612011-04-13 15:41:04 +02002654 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002655 struct btrfs_disk_key *disk_key;
2656 struct btrfs_chunk *chunk;
2657 u8 *ptr;
2658 int ret = 0;
2659 u32 num_stripes;
2660 u32 array_size;
2661 u32 len = 0;
2662 u32 cur;
2663 struct btrfs_key key;
2664
Miao Xie2196d6e2014-09-03 21:35:41 +08002665 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002666 array_size = btrfs_super_sys_array_size(super_copy);
2667
2668 ptr = super_copy->sys_chunk_array;
2669 cur = 0;
2670
2671 while (cur < array_size) {
2672 disk_key = (struct btrfs_disk_key *)ptr;
2673 btrfs_disk_key_to_cpu(&key, disk_key);
2674
2675 len = sizeof(*disk_key);
2676
2677 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2678 chunk = (struct btrfs_chunk *)(ptr + len);
2679 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2680 len += btrfs_chunk_item_size(num_stripes);
2681 } else {
2682 ret = -EIO;
2683 break;
2684 }
2685 if (key.objectid == chunk_objectid &&
2686 key.offset == chunk_offset) {
2687 memmove(ptr, ptr + len, array_size - (cur + len));
2688 array_size -= len;
2689 btrfs_set_super_sys_array_size(super_copy, array_size);
2690 } else {
2691 ptr += len;
2692 cur += len;
2693 }
2694 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002695 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002696 return ret;
2697}
2698
Josef Bacik47ab2a62014-09-18 11:20:02 -04002699int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2700 struct btrfs_root *root, u64 chunk_offset)
2701{
2702 struct extent_map_tree *em_tree;
2703 struct extent_map *em;
2704 struct btrfs_root *extent_root = root->fs_info->extent_root;
2705 struct map_lookup *map;
2706 u64 dev_extent_len = 0;
2707 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002708 int i, ret = 0;
2709
2710 /* Just in case */
2711 root = root->fs_info->chunk_root;
2712 em_tree = &root->fs_info->mapping_tree.map_tree;
2713
2714 read_lock(&em_tree->lock);
2715 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2716 read_unlock(&em_tree->lock);
2717
2718 if (!em || em->start > chunk_offset ||
2719 em->start + em->len < chunk_offset) {
2720 /*
2721 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002722 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002723 * do anything we still error out.
2724 */
2725 ASSERT(0);
2726 if (em)
2727 free_extent_map(em);
2728 return -EINVAL;
2729 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002730 map = em->map_lookup;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002731 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01002732 check_system_chunk(trans, extent_root, map->type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002733 unlock_chunks(root->fs_info->chunk_root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002734
2735 for (i = 0; i < map->num_stripes; i++) {
2736 struct btrfs_device *device = map->stripes[i].dev;
2737 ret = btrfs_free_dev_extent(trans, device,
2738 map->stripes[i].physical,
2739 &dev_extent_len);
2740 if (ret) {
2741 btrfs_abort_transaction(trans, root, ret);
2742 goto out;
2743 }
2744
2745 if (device->bytes_used > 0) {
2746 lock_chunks(root);
2747 btrfs_device_set_bytes_used(device,
2748 device->bytes_used - dev_extent_len);
2749 spin_lock(&root->fs_info->free_chunk_lock);
2750 root->fs_info->free_chunk_space += dev_extent_len;
2751 spin_unlock(&root->fs_info->free_chunk_lock);
2752 btrfs_clear_space_info_full(root->fs_info);
2753 unlock_chunks(root);
2754 }
2755
2756 if (map->stripes[i].dev) {
2757 ret = btrfs_update_device(trans, map->stripes[i].dev);
2758 if (ret) {
2759 btrfs_abort_transaction(trans, root, ret);
2760 goto out;
2761 }
2762 }
2763 }
Zhao Leia688a042015-02-09 20:31:44 +08002764 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002765 if (ret) {
2766 btrfs_abort_transaction(trans, root, ret);
2767 goto out;
2768 }
2769
2770 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2771
2772 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2773 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2774 if (ret) {
2775 btrfs_abort_transaction(trans, root, ret);
2776 goto out;
2777 }
2778 }
2779
Filipe Manana04216822014-11-27 21:14:15 +00002780 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002781 if (ret) {
2782 btrfs_abort_transaction(trans, extent_root, ret);
2783 goto out;
2784 }
2785
Josef Bacik47ab2a62014-09-18 11:20:02 -04002786out:
2787 /* once for us */
2788 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002789 return ret;
2790}
2791
Zhaoleidc2ee4e2015-08-05 18:00:04 +08002792static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002793{
Chris Mason8f18cf12008-04-25 16:53:30 -04002794 struct btrfs_root *extent_root;
2795 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002796 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002797
2798 root = root->fs_info->chunk_root;
2799 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002800
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002801 /*
2802 * Prevent races with automatic removal of unused block groups.
2803 * After we relocate and before we remove the chunk with offset
2804 * chunk_offset, automatic removal of the block group can kick in,
2805 * resulting in a failure when calling btrfs_remove_chunk() below.
2806 *
2807 * Make sure to acquire this mutex before doing a tree search (dev
2808 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2809 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2810 * we release the path used to search the chunk/dev tree and before
2811 * the current task acquires this mutex and calls us.
2812 */
2813 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2814
Josef Bacikba1bf482009-09-11 16:11:19 -04002815 ret = btrfs_can_relocate(extent_root, chunk_offset);
2816 if (ret)
2817 return -ENOSPC;
2818
Chris Mason8f18cf12008-04-25 16:53:30 -04002819 /* step one, relocate all the extents inside this chunk */
Zhaolei55e3a602015-08-05 16:43:30 +08002820 btrfs_scrub_pause(root);
Zheng Yan1a40e232008-09-26 10:09:34 -04002821 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Zhaolei55e3a602015-08-05 16:43:30 +08002822 btrfs_scrub_continue(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002823 if (ret)
2824 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002825
Filipe Manana7fd01182015-11-13 23:57:17 +00002826 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2827 chunk_offset);
Liu Bo0f788c52013-03-04 16:25:40 +00002828 if (IS_ERR(trans)) {
2829 ret = PTR_ERR(trans);
Anand Jaina4553fe2015-09-25 14:43:01 +08002830 btrfs_std_error(root->fs_info, ret, NULL);
Liu Bo0f788c52013-03-04 16:25:40 +00002831 return ret;
2832 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002833
2834 /*
2835 * step two, delete the device extents and the
2836 * chunk tree entries
2837 */
Josef Bacik47ab2a62014-09-18 11:20:02 -04002838 ret = btrfs_remove_chunk(trans, root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002839 btrfs_end_transaction(trans, root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002840 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002841}
2842
Yan Zheng2b820322008-11-17 21:11:30 -05002843static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2844{
2845 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2846 struct btrfs_path *path;
2847 struct extent_buffer *leaf;
2848 struct btrfs_chunk *chunk;
2849 struct btrfs_key key;
2850 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002851 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002852 bool retried = false;
2853 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002854 int ret;
2855
2856 path = btrfs_alloc_path();
2857 if (!path)
2858 return -ENOMEM;
2859
Josef Bacikba1bf482009-09-11 16:11:19 -04002860again:
Yan Zheng2b820322008-11-17 21:11:30 -05002861 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2862 key.offset = (u64)-1;
2863 key.type = BTRFS_CHUNK_ITEM_KEY;
2864
2865 while (1) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002866 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002867 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002868 if (ret < 0) {
2869 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002870 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002871 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002872 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002873
2874 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2875 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002876 if (ret)
2877 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002878 if (ret < 0)
2879 goto error;
2880 if (ret > 0)
2881 break;
2882
2883 leaf = path->nodes[0];
2884 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2885
2886 chunk = btrfs_item_ptr(leaf, path->slots[0],
2887 struct btrfs_chunk);
2888 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002889 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002890
2891 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Zhao Leia688a042015-02-09 20:31:44 +08002892 ret = btrfs_relocate_chunk(chunk_root,
Yan Zheng2b820322008-11-17 21:11:30 -05002893 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002894 if (ret == -ENOSPC)
2895 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302896 else
2897 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002898 }
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002899 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002900
2901 if (found_key.offset == 0)
2902 break;
2903 key.offset = found_key.offset - 1;
2904 }
2905 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002906 if (failed && !retried) {
2907 failed = 0;
2908 retried = true;
2909 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302910 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002911 ret = -ENOSPC;
2912 }
Yan Zheng2b820322008-11-17 21:11:30 -05002913error:
2914 btrfs_free_path(path);
2915 return ret;
2916}
2917
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002918static int insert_balance_item(struct btrfs_root *root,
2919 struct btrfs_balance_control *bctl)
2920{
2921 struct btrfs_trans_handle *trans;
2922 struct btrfs_balance_item *item;
2923 struct btrfs_disk_balance_args disk_bargs;
2924 struct btrfs_path *path;
2925 struct extent_buffer *leaf;
2926 struct btrfs_key key;
2927 int ret, err;
2928
2929 path = btrfs_alloc_path();
2930 if (!path)
2931 return -ENOMEM;
2932
2933 trans = btrfs_start_transaction(root, 0);
2934 if (IS_ERR(trans)) {
2935 btrfs_free_path(path);
2936 return PTR_ERR(trans);
2937 }
2938
2939 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01002940 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002941 key.offset = 0;
2942
2943 ret = btrfs_insert_empty_item(trans, root, path, &key,
2944 sizeof(*item));
2945 if (ret)
2946 goto out;
2947
2948 leaf = path->nodes[0];
2949 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2950
2951 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2952
2953 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2954 btrfs_set_balance_data(leaf, item, &disk_bargs);
2955 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2956 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2957 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2958 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2959
2960 btrfs_set_balance_flags(leaf, item, bctl->flags);
2961
2962 btrfs_mark_buffer_dirty(leaf);
2963out:
2964 btrfs_free_path(path);
2965 err = btrfs_commit_transaction(trans, root);
2966 if (err && !ret)
2967 ret = err;
2968 return ret;
2969}
2970
2971static int del_balance_item(struct btrfs_root *root)
2972{
2973 struct btrfs_trans_handle *trans;
2974 struct btrfs_path *path;
2975 struct btrfs_key key;
2976 int ret, err;
2977
2978 path = btrfs_alloc_path();
2979 if (!path)
2980 return -ENOMEM;
2981
2982 trans = btrfs_start_transaction(root, 0);
2983 if (IS_ERR(trans)) {
2984 btrfs_free_path(path);
2985 return PTR_ERR(trans);
2986 }
2987
2988 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01002989 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002990 key.offset = 0;
2991
2992 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2993 if (ret < 0)
2994 goto out;
2995 if (ret > 0) {
2996 ret = -ENOENT;
2997 goto out;
2998 }
2999
3000 ret = btrfs_del_item(trans, root, path);
3001out:
3002 btrfs_free_path(path);
3003 err = btrfs_commit_transaction(trans, root);
3004 if (err && !ret)
3005 ret = err;
3006 return ret;
3007}
3008
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003009/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003010 * This is a heuristic used to reduce the number of chunks balanced on
3011 * resume after balance was interrupted.
3012 */
3013static void update_balance_args(struct btrfs_balance_control *bctl)
3014{
3015 /*
3016 * Turn on soft mode for chunk types that were being converted.
3017 */
3018 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3019 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3020 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3021 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3022 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3023 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3024
3025 /*
3026 * Turn on usage filter if is not already used. The idea is
3027 * that chunks that we have already balanced should be
3028 * reasonably full. Don't do it for chunks that are being
3029 * converted - that will keep us from relocating unconverted
3030 * (albeit full) chunks.
3031 */
3032 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003033 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003034 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3035 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3036 bctl->data.usage = 90;
3037 }
3038 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003039 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003040 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3041 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3042 bctl->sys.usage = 90;
3043 }
3044 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003045 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003046 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3047 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3048 bctl->meta.usage = 90;
3049 }
3050}
3051
3052/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003053 * Should be called with both balance and volume mutexes held to
3054 * serialize other volume operations (add_dev/rm_dev/resize) with
3055 * restriper. Same goes for unset_balance_control.
3056 */
3057static void set_balance_control(struct btrfs_balance_control *bctl)
3058{
3059 struct btrfs_fs_info *fs_info = bctl->fs_info;
3060
3061 BUG_ON(fs_info->balance_ctl);
3062
3063 spin_lock(&fs_info->balance_lock);
3064 fs_info->balance_ctl = bctl;
3065 spin_unlock(&fs_info->balance_lock);
3066}
3067
3068static void unset_balance_control(struct btrfs_fs_info *fs_info)
3069{
3070 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3071
3072 BUG_ON(!fs_info->balance_ctl);
3073
3074 spin_lock(&fs_info->balance_lock);
3075 fs_info->balance_ctl = NULL;
3076 spin_unlock(&fs_info->balance_lock);
3077
3078 kfree(bctl);
3079}
3080
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003081/*
3082 * Balance filters. Return 1 if chunk should be filtered out
3083 * (should not be balanced).
3084 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003085static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003086 struct btrfs_balance_args *bargs)
3087{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003088 chunk_type = chunk_to_extended(chunk_type) &
3089 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003090
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003091 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003092 return 0;
3093
3094 return 1;
3095}
3096
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003097static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003098 struct btrfs_balance_args *bargs)
3099{
3100 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003101 u64 chunk_used;
3102 u64 user_thresh_min;
3103 u64 user_thresh_max;
3104 int ret = 1;
3105
3106 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3107 chunk_used = btrfs_block_group_used(&cache->item);
3108
3109 if (bargs->usage_min == 0)
3110 user_thresh_min = 0;
3111 else
3112 user_thresh_min = div_factor_fine(cache->key.offset,
3113 bargs->usage_min);
3114
3115 if (bargs->usage_max == 0)
3116 user_thresh_max = 1;
3117 else if (bargs->usage_max > 100)
3118 user_thresh_max = cache->key.offset;
3119 else
3120 user_thresh_max = div_factor_fine(cache->key.offset,
3121 bargs->usage_max);
3122
3123 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3124 ret = 0;
3125
3126 btrfs_put_block_group(cache);
3127 return ret;
3128}
3129
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003130static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003131 u64 chunk_offset, struct btrfs_balance_args *bargs)
3132{
3133 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003134 u64 chunk_used, user_thresh;
3135 int ret = 1;
3136
3137 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3138 chunk_used = btrfs_block_group_used(&cache->item);
3139
David Sterbabc309462015-10-20 18:22:13 +02003140 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003141 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003142 else if (bargs->usage > 100)
3143 user_thresh = cache->key.offset;
3144 else
3145 user_thresh = div_factor_fine(cache->key.offset,
3146 bargs->usage);
3147
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003148 if (chunk_used < user_thresh)
3149 ret = 0;
3150
3151 btrfs_put_block_group(cache);
3152 return ret;
3153}
3154
Ilya Dryomov409d4042012-01-16 22:04:47 +02003155static int chunk_devid_filter(struct extent_buffer *leaf,
3156 struct btrfs_chunk *chunk,
3157 struct btrfs_balance_args *bargs)
3158{
3159 struct btrfs_stripe *stripe;
3160 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3161 int i;
3162
3163 for (i = 0; i < num_stripes; i++) {
3164 stripe = btrfs_stripe_nr(chunk, i);
3165 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3166 return 0;
3167 }
3168
3169 return 1;
3170}
3171
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003172/* [pstart, pend) */
3173static int chunk_drange_filter(struct extent_buffer *leaf,
3174 struct btrfs_chunk *chunk,
3175 u64 chunk_offset,
3176 struct btrfs_balance_args *bargs)
3177{
3178 struct btrfs_stripe *stripe;
3179 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3180 u64 stripe_offset;
3181 u64 stripe_length;
3182 int factor;
3183 int i;
3184
3185 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3186 return 0;
3187
3188 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003189 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3190 factor = num_stripes / 2;
3191 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3192 factor = num_stripes - 1;
3193 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3194 factor = num_stripes - 2;
3195 } else {
3196 factor = num_stripes;
3197 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003198
3199 for (i = 0; i < num_stripes; i++) {
3200 stripe = btrfs_stripe_nr(chunk, i);
3201 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3202 continue;
3203
3204 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3205 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003206 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003207
3208 if (stripe_offset < bargs->pend &&
3209 stripe_offset + stripe_length > bargs->pstart)
3210 return 0;
3211 }
3212
3213 return 1;
3214}
3215
Ilya Dryomovea671762012-01-16 22:04:48 +02003216/* [vstart, vend) */
3217static int chunk_vrange_filter(struct extent_buffer *leaf,
3218 struct btrfs_chunk *chunk,
3219 u64 chunk_offset,
3220 struct btrfs_balance_args *bargs)
3221{
3222 if (chunk_offset < bargs->vend &&
3223 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3224 /* at least part of the chunk is inside this vrange */
3225 return 0;
3226
3227 return 1;
3228}
3229
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003230static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3231 struct btrfs_chunk *chunk,
3232 struct btrfs_balance_args *bargs)
3233{
3234 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3235
3236 if (bargs->stripes_min <= num_stripes
3237 && num_stripes <= bargs->stripes_max)
3238 return 0;
3239
3240 return 1;
3241}
3242
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003243static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003244 struct btrfs_balance_args *bargs)
3245{
3246 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3247 return 0;
3248
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003249 chunk_type = chunk_to_extended(chunk_type) &
3250 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003251
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003252 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003253 return 1;
3254
3255 return 0;
3256}
3257
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003258static int should_balance_chunk(struct btrfs_root *root,
3259 struct extent_buffer *leaf,
3260 struct btrfs_chunk *chunk, u64 chunk_offset)
3261{
3262 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3263 struct btrfs_balance_args *bargs = NULL;
3264 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3265
3266 /* type filter */
3267 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3268 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3269 return 0;
3270 }
3271
3272 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3273 bargs = &bctl->data;
3274 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3275 bargs = &bctl->sys;
3276 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3277 bargs = &bctl->meta;
3278
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003279 /* profiles filter */
3280 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3281 chunk_profiles_filter(chunk_type, bargs)) {
3282 return 0;
3283 }
3284
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003285 /* usage filter */
3286 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3287 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3288 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003289 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
3290 chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) {
3291 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003292 }
3293
Ilya Dryomov409d4042012-01-16 22:04:47 +02003294 /* devid filter */
3295 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3296 chunk_devid_filter(leaf, chunk, bargs)) {
3297 return 0;
3298 }
3299
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003300 /* drange filter, makes sense only with devid filter */
3301 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3302 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3303 return 0;
3304 }
3305
Ilya Dryomovea671762012-01-16 22:04:48 +02003306 /* vrange filter */
3307 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3308 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3309 return 0;
3310 }
3311
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003312 /* stripes filter */
3313 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3314 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3315 return 0;
3316 }
3317
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003318 /* soft profile changing mode */
3319 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3320 chunk_soft_convert_filter(chunk_type, bargs)) {
3321 return 0;
3322 }
3323
David Sterba7d824b62014-05-07 17:37:51 +02003324 /*
3325 * limited by count, must be the last filter
3326 */
3327 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3328 if (bargs->limit == 0)
3329 return 0;
3330 else
3331 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003332 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3333 /*
3334 * Same logic as the 'limit' filter; the minimum cannot be
3335 * determined here because we do not have the global informatoin
3336 * about the count of all chunks that satisfy the filters.
3337 */
3338 if (bargs->limit_max == 0)
3339 return 0;
3340 else
3341 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003342 }
3343
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003344 return 1;
3345}
3346
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003347static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003348{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003349 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003350 struct btrfs_root *chunk_root = fs_info->chunk_root;
3351 struct btrfs_root *dev_root = fs_info->dev_root;
3352 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003353 struct btrfs_device *device;
3354 u64 old_size;
3355 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003356 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003357 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003358 struct btrfs_path *path;
3359 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003360 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003361 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003362 struct extent_buffer *leaf;
3363 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003364 int ret;
3365 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003366 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003367 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003368 u64 limit_data = bctl->data.limit;
3369 u64 limit_meta = bctl->meta.limit;
3370 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003371 u32 count_data = 0;
3372 u32 count_meta = 0;
3373 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003374 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003375
Chris Masonec44a352008-04-28 15:29:52 -04003376 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003377 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003378 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003379 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003380 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003381 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003382 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003383 btrfs_device_get_total_bytes(device) -
3384 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003385 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003386 continue;
3387
3388 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003389 if (ret == -ENOSPC)
3390 break;
Chris Masonec44a352008-04-28 15:29:52 -04003391 BUG_ON(ret);
3392
Yan, Zhenga22285a2010-05-16 10:48:46 -04003393 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003394 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003395
3396 ret = btrfs_grow_device(trans, device, old_size);
3397 BUG_ON(ret);
3398
3399 btrfs_end_transaction(trans, dev_root);
3400 }
3401
3402 /* step two, relocate all the chunks */
3403 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003404 if (!path) {
3405 ret = -ENOMEM;
3406 goto error;
3407 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003408
3409 /* zero out stat counters */
3410 spin_lock(&fs_info->balance_lock);
3411 memset(&bctl->stat, 0, sizeof(bctl->stat));
3412 spin_unlock(&fs_info->balance_lock);
3413again:
David Sterba7d824b62014-05-07 17:37:51 +02003414 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003415 /*
3416 * The single value limit and min/max limits use the same bytes
3417 * in the
3418 */
David Sterba7d824b62014-05-07 17:37:51 +02003419 bctl->data.limit = limit_data;
3420 bctl->meta.limit = limit_meta;
3421 bctl->sys.limit = limit_sys;
3422 }
Chris Masonec44a352008-04-28 15:29:52 -04003423 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3424 key.offset = (u64)-1;
3425 key.type = BTRFS_CHUNK_ITEM_KEY;
3426
Chris Masond3977122009-01-05 21:25:51 -05003427 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003428 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003429 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003430 ret = -ECANCELED;
3431 goto error;
3432 }
3433
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003434 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003435 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003436 if (ret < 0) {
3437 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003438 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003439 }
Chris Masonec44a352008-04-28 15:29:52 -04003440
3441 /*
3442 * this shouldn't happen, it means the last relocate
3443 * failed
3444 */
3445 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003446 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003447
3448 ret = btrfs_previous_item(chunk_root, path, 0,
3449 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003450 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003451 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003452 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003453 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003454 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003455
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003456 leaf = path->nodes[0];
3457 slot = path->slots[0];
3458 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3459
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003460 if (found_key.objectid != key.objectid) {
3461 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003462 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003463 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003464
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003465 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003466 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003467
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003468 if (!counting) {
3469 spin_lock(&fs_info->balance_lock);
3470 bctl->stat.considered++;
3471 spin_unlock(&fs_info->balance_lock);
3472 }
3473
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003474 ret = should_balance_chunk(chunk_root, leaf, chunk,
3475 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003476
David Sterbab3b4aa72011-04-21 01:20:15 +02003477 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003478 if (!ret) {
3479 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003480 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003481 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003482
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003483 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003484 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003485 spin_lock(&fs_info->balance_lock);
3486 bctl->stat.expected++;
3487 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003488
3489 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3490 count_data++;
3491 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3492 count_sys++;
3493 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3494 count_meta++;
3495
3496 goto loop;
3497 }
3498
3499 /*
3500 * Apply limit_min filter, no need to check if the LIMITS
3501 * filter is used, limit_min is 0 by default
3502 */
3503 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3504 count_data < bctl->data.limit_min)
3505 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3506 count_meta < bctl->meta.limit_min)
3507 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3508 count_sys < bctl->sys.limit_min)) {
3509 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003510 goto loop;
3511 }
3512
Zhao Lei2c9fe832015-11-09 11:51:32 +08003513 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && !chunk_reserved) {
3514 trans = btrfs_start_transaction(chunk_root, 0);
3515 if (IS_ERR(trans)) {
3516 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3517 ret = PTR_ERR(trans);
3518 goto error;
3519 }
3520
3521 ret = btrfs_force_chunk_alloc(trans, chunk_root,
3522 BTRFS_BLOCK_GROUP_DATA);
Filipe Manana8a7d6562015-12-10 11:08:59 +00003523 btrfs_end_transaction(trans, chunk_root);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003524 if (ret < 0) {
3525 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3526 goto error;
3527 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003528 chunk_reserved = 1;
3529 }
3530
Chris Masonec44a352008-04-28 15:29:52 -04003531 ret = btrfs_relocate_chunk(chunk_root,
Chris Masonec44a352008-04-28 15:29:52 -04003532 found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003533 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003534 if (ret && ret != -ENOSPC)
3535 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003536 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003537 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003538 } else {
3539 spin_lock(&fs_info->balance_lock);
3540 bctl->stat.completed++;
3541 spin_unlock(&fs_info->balance_lock);
3542 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003543loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003544 if (found_key.offset == 0)
3545 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003546 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003547 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003548
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003549 if (counting) {
3550 btrfs_release_path(path);
3551 counting = false;
3552 goto again;
3553 }
Chris Masonec44a352008-04-28 15:29:52 -04003554error:
3555 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003556 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003557 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003558 enospc_errors);
3559 if (!ret)
3560 ret = -ENOSPC;
3561 }
3562
Chris Masonec44a352008-04-28 15:29:52 -04003563 return ret;
3564}
3565
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003566/**
3567 * alloc_profile_is_valid - see if a given profile is valid and reduced
3568 * @flags: profile to validate
3569 * @extended: if true @flags is treated as an extended profile
3570 */
3571static int alloc_profile_is_valid(u64 flags, int extended)
3572{
3573 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3574 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3575
3576 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3577
3578 /* 1) check that all other bits are zeroed */
3579 if (flags & ~mask)
3580 return 0;
3581
3582 /* 2) see if profile is reduced */
3583 if (flags == 0)
3584 return !extended; /* "0" is valid for usual profiles */
3585
3586 /* true if exactly one bit set */
3587 return (flags & (flags - 1)) == 0;
3588}
3589
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003590static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3591{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003592 /* cancel requested || normal exit path */
3593 return atomic_read(&fs_info->balance_cancel_req) ||
3594 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3595 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003596}
3597
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003598static void __cancel_balance(struct btrfs_fs_info *fs_info)
3599{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003600 int ret;
3601
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003602 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003603 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003604 if (ret)
Anand Jaina4553fe2015-09-25 14:43:01 +08003605 btrfs_std_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003606
3607 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003608}
3609
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003610/* Non-zero return value signifies invalidity */
3611static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3612 u64 allowed)
3613{
3614 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3615 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3616 (bctl_arg->target & ~allowed)));
3617}
3618
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003619/*
3620 * Should be called with both balance and volume mutexes held
3621 */
3622int btrfs_balance(struct btrfs_balance_control *bctl,
3623 struct btrfs_ioctl_balance_args *bargs)
3624{
3625 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003626 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003627 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003628 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003629 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003630 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003631
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003632 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003633 atomic_read(&fs_info->balance_pause_req) ||
3634 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003635 ret = -EINVAL;
3636 goto out;
3637 }
3638
Ilya Dryomove4837f82012-03-27 17:09:17 +03003639 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3640 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3641 mixed = 1;
3642
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003643 /*
3644 * In case of mixed groups both data and meta should be picked,
3645 * and identical options should be given for both of them.
3646 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003647 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3648 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003649 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3650 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3651 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003652 btrfs_err(fs_info, "with mixed groups data and "
3653 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003654 ret = -EINVAL;
3655 goto out;
3656 }
3657 }
3658
Stefan Behrens8dabb742012-11-06 13:15:27 +01003659 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003660 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003661 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3662 BUG_ON(num_devices < 1);
3663 num_devices--;
3664 }
Liu Bo73beece2015-07-17 16:49:19 +08003665 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003666 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003667 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003668 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003669 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003670 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003671 if (num_devices > 2)
3672 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3673 if (num_devices > 3)
3674 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3675 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003676 if (validate_convert_profile(&bctl->data, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003677 btrfs_err(fs_info, "unable to start balance with target "
3678 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003679 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003680 ret = -EINVAL;
3681 goto out;
3682 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003683 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003684 btrfs_err(fs_info,
3685 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003686 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003687 ret = -EINVAL;
3688 goto out;
3689 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003690 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003691 btrfs_err(fs_info,
3692 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003693 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003694 ret = -EINVAL;
3695 goto out;
3696 }
3697
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003698 /* allow to reduce meta or sys integrity only if force set */
3699 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003700 BTRFS_BLOCK_GROUP_RAID10 |
3701 BTRFS_BLOCK_GROUP_RAID5 |
3702 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003703 do {
3704 seq = read_seqbegin(&fs_info->profiles_lock);
3705
3706 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3707 (fs_info->avail_system_alloc_bits & allowed) &&
3708 !(bctl->sys.target & allowed)) ||
3709 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3710 (fs_info->avail_metadata_alloc_bits & allowed) &&
3711 !(bctl->meta.target & allowed))) {
3712 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003713 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003714 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003715 btrfs_err(fs_info, "balance will reduce metadata "
3716 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003717 ret = -EINVAL;
3718 goto out;
3719 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003720 }
Miao Xiede98ced2013-01-29 10:13:12 +00003721 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003722
Sam Tygieree592d02016-01-06 08:46:12 +00003723 if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
3724 btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
3725 btrfs_warn(fs_info,
Filipe Mananafedc0042016-01-15 10:56:15 +00003726 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Sam Tygieree592d02016-01-06 08:46:12 +00003727 bctl->meta.target, bctl->data.target);
3728 }
3729
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003730 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003731 fs_info->num_tolerated_disk_barrier_failures = min(
3732 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3733 btrfs_get_num_tolerated_disk_barrier_failures(
3734 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003735 }
3736
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003737 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003738 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003739 goto out;
3740
Ilya Dryomov59641012012-01-16 22:04:48 +02003741 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3742 BUG_ON(ret == -EEXIST);
3743 set_balance_control(bctl);
3744 } else {
3745 BUG_ON(ret != -EEXIST);
3746 spin_lock(&fs_info->balance_lock);
3747 update_balance_args(bctl);
3748 spin_unlock(&fs_info->balance_lock);
3749 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003750
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003751 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003752 mutex_unlock(&fs_info->balance_mutex);
3753
3754 ret = __btrfs_balance(fs_info);
3755
3756 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003757 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003758
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003759 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3760 fs_info->num_tolerated_disk_barrier_failures =
3761 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3762 }
3763
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003764 if (bargs) {
3765 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003766 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003767 }
3768
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003769 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3770 balance_need_close(fs_info)) {
3771 __cancel_balance(fs_info);
3772 }
3773
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003774 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003775
3776 return ret;
3777out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003778 if (bctl->flags & BTRFS_BALANCE_RESUME)
3779 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003780 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003781 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003782 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3783 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003784 return ret;
3785}
3786
3787static int balance_kthread(void *data)
3788{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003789 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003790 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003791
3792 mutex_lock(&fs_info->volume_mutex);
3793 mutex_lock(&fs_info->balance_mutex);
3794
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003795 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003796 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003797 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003798 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003799
3800 mutex_unlock(&fs_info->balance_mutex);
3801 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003802
Ilya Dryomov59641012012-01-16 22:04:48 +02003803 return ret;
3804}
3805
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003806int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3807{
3808 struct task_struct *tsk;
3809
3810 spin_lock(&fs_info->balance_lock);
3811 if (!fs_info->balance_ctl) {
3812 spin_unlock(&fs_info->balance_lock);
3813 return 0;
3814 }
3815 spin_unlock(&fs_info->balance_lock);
3816
3817 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003818 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003819 return 0;
3820 }
3821
3822 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303823 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003824}
3825
Ilya Dryomov68310a52012-06-22 12:24:12 -06003826int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003827{
Ilya Dryomov59641012012-01-16 22:04:48 +02003828 struct btrfs_balance_control *bctl;
3829 struct btrfs_balance_item *item;
3830 struct btrfs_disk_balance_args disk_bargs;
3831 struct btrfs_path *path;
3832 struct extent_buffer *leaf;
3833 struct btrfs_key key;
3834 int ret;
3835
3836 path = btrfs_alloc_path();
3837 if (!path)
3838 return -ENOMEM;
3839
Ilya Dryomov68310a52012-06-22 12:24:12 -06003840 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003841 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003842 key.offset = 0;
3843
3844 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3845 if (ret < 0)
3846 goto out;
3847 if (ret > 0) { /* ret = -ENOENT; */
3848 ret = 0;
3849 goto out;
3850 }
3851
Ilya Dryomov59641012012-01-16 22:04:48 +02003852 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3853 if (!bctl) {
3854 ret = -ENOMEM;
3855 goto out;
3856 }
3857
Ilya Dryomov59641012012-01-16 22:04:48 +02003858 leaf = path->nodes[0];
3859 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3860
Ilya Dryomov68310a52012-06-22 12:24:12 -06003861 bctl->fs_info = fs_info;
3862 bctl->flags = btrfs_balance_flags(leaf, item);
3863 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003864
3865 btrfs_balance_data(leaf, item, &disk_bargs);
3866 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3867 btrfs_balance_meta(leaf, item, &disk_bargs);
3868 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3869 btrfs_balance_sys(leaf, item, &disk_bargs);
3870 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3871
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003872 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3873
Ilya Dryomov68310a52012-06-22 12:24:12 -06003874 mutex_lock(&fs_info->volume_mutex);
3875 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003876
Ilya Dryomov68310a52012-06-22 12:24:12 -06003877 set_balance_control(bctl);
3878
3879 mutex_unlock(&fs_info->balance_mutex);
3880 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003881out:
3882 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003883 return ret;
3884}
3885
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003886int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3887{
3888 int ret = 0;
3889
3890 mutex_lock(&fs_info->balance_mutex);
3891 if (!fs_info->balance_ctl) {
3892 mutex_unlock(&fs_info->balance_mutex);
3893 return -ENOTCONN;
3894 }
3895
3896 if (atomic_read(&fs_info->balance_running)) {
3897 atomic_inc(&fs_info->balance_pause_req);
3898 mutex_unlock(&fs_info->balance_mutex);
3899
3900 wait_event(fs_info->balance_wait_q,
3901 atomic_read(&fs_info->balance_running) == 0);
3902
3903 mutex_lock(&fs_info->balance_mutex);
3904 /* we are good with balance_ctl ripped off from under us */
3905 BUG_ON(atomic_read(&fs_info->balance_running));
3906 atomic_dec(&fs_info->balance_pause_req);
3907 } else {
3908 ret = -ENOTCONN;
3909 }
3910
3911 mutex_unlock(&fs_info->balance_mutex);
3912 return ret;
3913}
3914
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003915int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3916{
Ilya Dryomove649e582013-10-10 20:40:21 +03003917 if (fs_info->sb->s_flags & MS_RDONLY)
3918 return -EROFS;
3919
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003920 mutex_lock(&fs_info->balance_mutex);
3921 if (!fs_info->balance_ctl) {
3922 mutex_unlock(&fs_info->balance_mutex);
3923 return -ENOTCONN;
3924 }
3925
3926 atomic_inc(&fs_info->balance_cancel_req);
3927 /*
3928 * if we are running just wait and return, balance item is
3929 * deleted in btrfs_balance in this case
3930 */
3931 if (atomic_read(&fs_info->balance_running)) {
3932 mutex_unlock(&fs_info->balance_mutex);
3933 wait_event(fs_info->balance_wait_q,
3934 atomic_read(&fs_info->balance_running) == 0);
3935 mutex_lock(&fs_info->balance_mutex);
3936 } else {
3937 /* __cancel_balance needs volume_mutex */
3938 mutex_unlock(&fs_info->balance_mutex);
3939 mutex_lock(&fs_info->volume_mutex);
3940 mutex_lock(&fs_info->balance_mutex);
3941
3942 if (fs_info->balance_ctl)
3943 __cancel_balance(fs_info);
3944
3945 mutex_unlock(&fs_info->volume_mutex);
3946 }
3947
3948 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3949 atomic_dec(&fs_info->balance_cancel_req);
3950 mutex_unlock(&fs_info->balance_mutex);
3951 return 0;
3952}
3953
Stefan Behrens803b2f52013-08-15 17:11:21 +02003954static int btrfs_uuid_scan_kthread(void *data)
3955{
3956 struct btrfs_fs_info *fs_info = data;
3957 struct btrfs_root *root = fs_info->tree_root;
3958 struct btrfs_key key;
3959 struct btrfs_key max_key;
3960 struct btrfs_path *path = NULL;
3961 int ret = 0;
3962 struct extent_buffer *eb;
3963 int slot;
3964 struct btrfs_root_item root_item;
3965 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003966 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003967
3968 path = btrfs_alloc_path();
3969 if (!path) {
3970 ret = -ENOMEM;
3971 goto out;
3972 }
3973
3974 key.objectid = 0;
3975 key.type = BTRFS_ROOT_ITEM_KEY;
3976 key.offset = 0;
3977
3978 max_key.objectid = (u64)-1;
3979 max_key.type = BTRFS_ROOT_ITEM_KEY;
3980 max_key.offset = (u64)-1;
3981
Stefan Behrens803b2f52013-08-15 17:11:21 +02003982 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003983 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003984 if (ret) {
3985 if (ret > 0)
3986 ret = 0;
3987 break;
3988 }
3989
3990 if (key.type != BTRFS_ROOT_ITEM_KEY ||
3991 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
3992 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
3993 key.objectid > BTRFS_LAST_FREE_OBJECTID)
3994 goto skip;
3995
3996 eb = path->nodes[0];
3997 slot = path->slots[0];
3998 item_size = btrfs_item_size_nr(eb, slot);
3999 if (item_size < sizeof(root_item))
4000 goto skip;
4001
Stefan Behrens803b2f52013-08-15 17:11:21 +02004002 read_extent_buffer(eb, &root_item,
4003 btrfs_item_ptr_offset(eb, slot),
4004 (int)sizeof(root_item));
4005 if (btrfs_root_refs(&root_item) == 0)
4006 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004007
4008 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4009 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4010 if (trans)
4011 goto update_tree;
4012
4013 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004014 /*
4015 * 1 - subvol uuid item
4016 * 1 - received_subvol uuid item
4017 */
4018 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4019 if (IS_ERR(trans)) {
4020 ret = PTR_ERR(trans);
4021 break;
4022 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004023 continue;
4024 } else {
4025 goto skip;
4026 }
4027update_tree:
4028 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004029 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4030 root_item.uuid,
4031 BTRFS_UUID_KEY_SUBVOL,
4032 key.objectid);
4033 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004034 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004035 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004036 break;
4037 }
4038 }
4039
4040 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004041 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4042 root_item.received_uuid,
4043 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4044 key.objectid);
4045 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004046 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004047 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004048 break;
4049 }
4050 }
4051
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004052skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004053 if (trans) {
4054 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004055 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004056 if (ret)
4057 break;
4058 }
4059
Stefan Behrens803b2f52013-08-15 17:11:21 +02004060 btrfs_release_path(path);
4061 if (key.offset < (u64)-1) {
4062 key.offset++;
4063 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4064 key.offset = 0;
4065 key.type = BTRFS_ROOT_ITEM_KEY;
4066 } else if (key.objectid < (u64)-1) {
4067 key.offset = 0;
4068 key.type = BTRFS_ROOT_ITEM_KEY;
4069 key.objectid++;
4070 } else {
4071 break;
4072 }
4073 cond_resched();
4074 }
4075
4076out:
4077 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004078 if (trans && !IS_ERR(trans))
4079 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004080 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004081 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004082 else
4083 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004084 up(&fs_info->uuid_tree_rescan_sem);
4085 return 0;
4086}
4087
Stefan Behrens70f80172013-08-15 17:11:23 +02004088/*
4089 * Callback for btrfs_uuid_tree_iterate().
4090 * returns:
4091 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004092 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004093 * > 0 if the check failed, which means the caller shall remove the entry.
4094 */
4095static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4096 u8 *uuid, u8 type, u64 subid)
4097{
4098 struct btrfs_key key;
4099 int ret = 0;
4100 struct btrfs_root *subvol_root;
4101
4102 if (type != BTRFS_UUID_KEY_SUBVOL &&
4103 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4104 goto out;
4105
4106 key.objectid = subid;
4107 key.type = BTRFS_ROOT_ITEM_KEY;
4108 key.offset = (u64)-1;
4109 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4110 if (IS_ERR(subvol_root)) {
4111 ret = PTR_ERR(subvol_root);
4112 if (ret == -ENOENT)
4113 ret = 1;
4114 goto out;
4115 }
4116
4117 switch (type) {
4118 case BTRFS_UUID_KEY_SUBVOL:
4119 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4120 ret = 1;
4121 break;
4122 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4123 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4124 BTRFS_UUID_SIZE))
4125 ret = 1;
4126 break;
4127 }
4128
4129out:
4130 return ret;
4131}
4132
4133static int btrfs_uuid_rescan_kthread(void *data)
4134{
4135 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4136 int ret;
4137
4138 /*
4139 * 1st step is to iterate through the existing UUID tree and
4140 * to delete all entries that contain outdated data.
4141 * 2nd step is to add all missing entries to the UUID tree.
4142 */
4143 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4144 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004145 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004146 up(&fs_info->uuid_tree_rescan_sem);
4147 return ret;
4148 }
4149 return btrfs_uuid_scan_kthread(data);
4150}
4151
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004152int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4153{
4154 struct btrfs_trans_handle *trans;
4155 struct btrfs_root *tree_root = fs_info->tree_root;
4156 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004157 struct task_struct *task;
4158 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004159
4160 /*
4161 * 1 - root node
4162 * 1 - root item
4163 */
4164 trans = btrfs_start_transaction(tree_root, 2);
4165 if (IS_ERR(trans))
4166 return PTR_ERR(trans);
4167
4168 uuid_root = btrfs_create_tree(trans, fs_info,
4169 BTRFS_UUID_TREE_OBJECTID);
4170 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004171 ret = PTR_ERR(uuid_root);
4172 btrfs_abort_transaction(trans, tree_root, ret);
4173 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004174 }
4175
4176 fs_info->uuid_root = uuid_root;
4177
Stefan Behrens803b2f52013-08-15 17:11:21 +02004178 ret = btrfs_commit_transaction(trans, tree_root);
4179 if (ret)
4180 return ret;
4181
4182 down(&fs_info->uuid_tree_rescan_sem);
4183 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4184 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004185 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004186 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004187 up(&fs_info->uuid_tree_rescan_sem);
4188 return PTR_ERR(task);
4189 }
4190
4191 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004192}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004193
Stefan Behrens70f80172013-08-15 17:11:23 +02004194int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4195{
4196 struct task_struct *task;
4197
4198 down(&fs_info->uuid_tree_rescan_sem);
4199 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4200 if (IS_ERR(task)) {
4201 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004202 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004203 up(&fs_info->uuid_tree_rescan_sem);
4204 return PTR_ERR(task);
4205 }
4206
4207 return 0;
4208}
4209
Chris Mason8f18cf12008-04-25 16:53:30 -04004210/*
4211 * shrinking a device means finding all of the device extents past
4212 * the new size, and then following the back refs to the chunks.
4213 * The chunk relocation code actually frees the device extent
4214 */
4215int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4216{
4217 struct btrfs_trans_handle *trans;
4218 struct btrfs_root *root = device->dev_root;
4219 struct btrfs_dev_extent *dev_extent = NULL;
4220 struct btrfs_path *path;
4221 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004222 u64 chunk_offset;
4223 int ret;
4224 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004225 int failed = 0;
4226 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004227 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004228 struct extent_buffer *l;
4229 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02004230 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004231 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004232 u64 old_size = btrfs_device_get_total_bytes(device);
4233 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004234
Stefan Behrens63a212a2012-11-05 18:29:28 +01004235 if (device->is_tgtdev_for_dev_replace)
4236 return -EINVAL;
4237
Chris Mason8f18cf12008-04-25 16:53:30 -04004238 path = btrfs_alloc_path();
4239 if (!path)
4240 return -ENOMEM;
4241
David Sterbae4058b52015-11-27 16:31:35 +01004242 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004243
Chris Mason7d9eb122008-07-08 14:19:17 -04004244 lock_chunks(root);
4245
Miao Xie7cc8e582014-09-03 21:35:38 +08004246 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004247 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004248 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004249 spin_lock(&root->fs_info->free_chunk_lock);
4250 root->fs_info->free_chunk_space -= diff;
4251 spin_unlock(&root->fs_info->free_chunk_lock);
4252 }
Chris Mason7d9eb122008-07-08 14:19:17 -04004253 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004254
Josef Bacikba1bf482009-09-11 16:11:19 -04004255again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004256 key.objectid = device->devid;
4257 key.offset = (u64)-1;
4258 key.type = BTRFS_DEV_EXTENT_KEY;
4259
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004260 do {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004261 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004262 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004263 if (ret < 0) {
4264 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004265 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004266 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004267
4268 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004269 if (ret)
4270 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004271 if (ret < 0)
4272 goto done;
4273 if (ret) {
4274 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004275 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004276 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004277 }
4278
4279 l = path->nodes[0];
4280 slot = path->slots[0];
4281 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4282
Josef Bacikba1bf482009-09-11 16:11:19 -04004283 if (key.objectid != device->devid) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004284 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004285 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004286 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004287 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004288
4289 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4290 length = btrfs_dev_extent_length(l, dev_extent);
4291
Josef Bacikba1bf482009-09-11 16:11:19 -04004292 if (key.offset + length <= new_size) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004293 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004294 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004295 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004296 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004297
Chris Mason8f18cf12008-04-25 16:53:30 -04004298 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004299 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004300
Zhaoleidc2ee4e2015-08-05 18:00:04 +08004301 ret = btrfs_relocate_chunk(root, chunk_offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004302 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004303 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004304 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004305 if (ret == -ENOSPC)
4306 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004307 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004308
4309 if (failed && !retried) {
4310 failed = 0;
4311 retried = true;
4312 goto again;
4313 } else if (failed && retried) {
4314 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004315 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004316 }
4317
Chris Balld6397ba2009-04-27 07:29:03 -04004318 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004319 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004320 if (IS_ERR(trans)) {
4321 ret = PTR_ERR(trans);
4322 goto done;
4323 }
4324
Chris Balld6397ba2009-04-27 07:29:03 -04004325 lock_chunks(root);
Filipe Manana53e489b2015-06-02 14:43:21 +01004326
4327 /*
4328 * We checked in the above loop all device extents that were already in
4329 * the device tree. However before we have updated the device's
4330 * total_bytes to the new size, we might have had chunk allocations that
4331 * have not complete yet (new block groups attached to transaction
4332 * handles), and therefore their device extents were not yet in the
4333 * device tree and we missed them in the loop above. So if we have any
4334 * pending chunk using a device extent that overlaps the device range
4335 * that we can not use anymore, commit the current transaction and
4336 * repeat the search on the device tree - this way we guarantee we will
4337 * not have chunks using device extents that end beyond 'new_size'.
4338 */
4339 if (!checked_pending_chunks) {
4340 u64 start = new_size;
4341 u64 len = old_size - new_size;
4342
Jeff Mahoney499f3772015-06-15 09:41:17 -04004343 if (contains_pending_extent(trans->transaction, device,
4344 &start, len)) {
Filipe Manana53e489b2015-06-02 14:43:21 +01004345 unlock_chunks(root);
4346 checked_pending_chunks = true;
4347 failed = 0;
4348 retried = false;
4349 ret = btrfs_commit_transaction(trans, root);
4350 if (ret)
4351 goto done;
4352 goto again;
4353 }
4354 }
4355
Miao Xie7cc8e582014-09-03 21:35:38 +08004356 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004357 if (list_empty(&device->resized_list))
4358 list_add_tail(&device->resized_list,
4359 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004360
Chris Balld6397ba2009-04-27 07:29:03 -04004361 WARN_ON(diff > old_total);
4362 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4363 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004364
4365 /* Now btrfs_update_device() will change the on-disk size. */
4366 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004367 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004368done:
4369 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004370 if (ret) {
4371 lock_chunks(root);
4372 btrfs_device_set_total_bytes(device, old_size);
4373 if (device->writeable)
4374 device->fs_devices->total_rw_bytes += diff;
4375 spin_lock(&root->fs_info->free_chunk_lock);
4376 root->fs_info->free_chunk_space += diff;
4377 spin_unlock(&root->fs_info->free_chunk_lock);
4378 unlock_chunks(root);
4379 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004380 return ret;
4381}
4382
Li Zefan125ccb02011-12-08 15:07:24 +08004383static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004384 struct btrfs_key *key,
4385 struct btrfs_chunk *chunk, int item_size)
4386{
David Sterba6c417612011-04-13 15:41:04 +02004387 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004388 struct btrfs_disk_key disk_key;
4389 u32 array_size;
4390 u8 *ptr;
4391
Miao Xiefe48a5c2014-09-03 21:35:39 +08004392 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004393 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004394 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004395 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4396 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004397 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004398 }
Chris Mason0b86a832008-03-24 15:01:56 -04004399
4400 ptr = super_copy->sys_chunk_array + array_size;
4401 btrfs_cpu_key_to_disk(&disk_key, key);
4402 memcpy(ptr, &disk_key, sizeof(disk_key));
4403 ptr += sizeof(disk_key);
4404 memcpy(ptr, chunk, item_size);
4405 item_size += sizeof(disk_key);
4406 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004407 unlock_chunks(root);
4408
Chris Mason0b86a832008-03-24 15:01:56 -04004409 return 0;
4410}
4411
Miao Xieb2117a32011-01-05 10:07:28 +00004412/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004413 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004414 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004415static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004416{
Arne Jansen73c5de02011-04-12 12:07:57 +02004417 const struct btrfs_device_info *di_a = a;
4418 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004419
Arne Jansen73c5de02011-04-12 12:07:57 +02004420 if (di_a->max_avail > di_b->max_avail)
4421 return -1;
4422 if (di_a->max_avail < di_b->max_avail)
4423 return 1;
4424 if (di_a->total_avail > di_b->total_avail)
4425 return -1;
4426 if (di_a->total_avail < di_b->total_avail)
4427 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004428 return 0;
4429}
4430
David Woodhouse53b381b2013-01-29 18:40:14 -05004431static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4432{
4433 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004434 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004435}
4436
4437static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4438{
Zhao Leiffe2d202015-01-20 15:11:44 +08004439 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004440 return;
4441
Miao Xieceda0862013-04-11 10:30:16 +00004442 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004443}
4444
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004445#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4446 - sizeof(struct btrfs_item) \
4447 - sizeof(struct btrfs_chunk)) \
4448 / sizeof(struct btrfs_stripe) + 1)
4449
4450#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4451 - 2 * sizeof(struct btrfs_disk_key) \
4452 - 2 * sizeof(struct btrfs_chunk)) \
4453 / sizeof(struct btrfs_stripe) + 1)
4454
Miao Xieb2117a32011-01-05 10:07:28 +00004455static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004456 struct btrfs_root *extent_root, u64 start,
4457 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004458{
4459 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004460 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4461 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004462 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004463 struct extent_map_tree *em_tree;
4464 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004465 struct btrfs_device_info *devices_info = NULL;
4466 u64 total_avail;
4467 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004468 int data_stripes; /* number of stripes that count for
4469 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004470 int sub_stripes; /* sub_stripes info for map */
4471 int dev_stripes; /* stripes per dev */
4472 int devs_max; /* max devs to use */
4473 int devs_min; /* min devs needed */
4474 int devs_increment; /* ndevs has to be a multiple of this */
4475 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004476 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004477 u64 max_stripe_size;
4478 u64 max_chunk_size;
4479 u64 stripe_size;
4480 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004481 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004482 int ndevs;
4483 int i;
4484 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004485 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004486
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004487 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004488
Miao Xieb2117a32011-01-05 10:07:28 +00004489 if (list_empty(&fs_devices->alloc_list))
4490 return -ENOSPC;
4491
Liu Bo31e50222012-11-21 14:18:10 +00004492 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004493
Liu Bo31e50222012-11-21 14:18:10 +00004494 sub_stripes = btrfs_raid_array[index].sub_stripes;
4495 dev_stripes = btrfs_raid_array[index].dev_stripes;
4496 devs_max = btrfs_raid_array[index].devs_max;
4497 devs_min = btrfs_raid_array[index].devs_min;
4498 devs_increment = btrfs_raid_array[index].devs_increment;
4499 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004500
4501 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004502 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004503 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004504 if (!devs_max)
4505 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004506 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004507 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004508 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4509 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004510 else
Byongho Leeee221842015-12-15 01:42:10 +09004511 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004512 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004513 if (!devs_max)
4514 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004515 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004516 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004517 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004518 if (!devs_max)
4519 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004520 } else {
David Sterba351fd352014-05-15 16:48:20 +02004521 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004522 type);
4523 BUG_ON(1);
4524 }
4525
4526 /* we don't want a chunk larger than 10% of writeable space */
4527 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4528 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004529
David Sterba31e818f2015-02-20 18:00:26 +01004530 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004531 GFP_NOFS);
4532 if (!devices_info)
4533 return -ENOMEM;
4534
Arne Jansen73c5de02011-04-12 12:07:57 +02004535 cur = fs_devices->alloc_list.next;
4536
4537 /*
4538 * in the first pass through the devices list, we gather information
4539 * about the available holes on each device.
4540 */
4541 ndevs = 0;
4542 while (cur != &fs_devices->alloc_list) {
4543 struct btrfs_device *device;
4544 u64 max_avail;
4545 u64 dev_offset;
4546
4547 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4548
4549 cur = cur->next;
4550
4551 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004552 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004553 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004554 continue;
4555 }
4556
Stefan Behrens63a212a2012-11-05 18:29:28 +01004557 if (!device->in_fs_metadata ||
4558 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004559 continue;
4560
4561 if (device->total_bytes > device->bytes_used)
4562 total_avail = device->total_bytes - device->bytes_used;
4563 else
4564 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004565
4566 /* If there is no space on this device, skip it. */
4567 if (total_avail == 0)
4568 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004569
Josef Bacik6df9a952013-06-27 13:22:46 -04004570 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004571 max_stripe_size * dev_stripes,
4572 &dev_offset, &max_avail);
4573 if (ret && ret != -ENOSPC)
4574 goto error;
4575
4576 if (ret == 0)
4577 max_avail = max_stripe_size * dev_stripes;
4578
4579 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4580 continue;
4581
Eric Sandeen063d0062013-01-31 00:55:01 +00004582 if (ndevs == fs_devices->rw_devices) {
4583 WARN(1, "%s: found more than %llu devices\n",
4584 __func__, fs_devices->rw_devices);
4585 break;
4586 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004587 devices_info[ndevs].dev_offset = dev_offset;
4588 devices_info[ndevs].max_avail = max_avail;
4589 devices_info[ndevs].total_avail = total_avail;
4590 devices_info[ndevs].dev = device;
4591 ++ndevs;
4592 }
4593
4594 /*
4595 * now sort the devices by hole size / available space
4596 */
4597 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4598 btrfs_cmp_device_info, NULL);
4599
4600 /* round down to number of usable stripes */
4601 ndevs -= ndevs % devs_increment;
4602
4603 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4604 ret = -ENOSPC;
4605 goto error;
4606 }
4607
4608 if (devs_max && ndevs > devs_max)
4609 ndevs = devs_max;
4610 /*
4611 * the primary goal is to maximize the number of stripes, so use as many
4612 * devices as possible, even if the stripes are not maximum sized.
4613 */
4614 stripe_size = devices_info[ndevs-1].max_avail;
4615 num_stripes = ndevs * dev_stripes;
4616
David Woodhouse53b381b2013-01-29 18:40:14 -05004617 /*
4618 * this will have to be fixed for RAID1 and RAID10 over
4619 * more drives
4620 */
4621 data_stripes = num_stripes / ncopies;
4622
David Woodhouse53b381b2013-01-29 18:40:14 -05004623 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4624 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4625 btrfs_super_stripesize(info->super_copy));
4626 data_stripes = num_stripes - 1;
4627 }
4628 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4629 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4630 btrfs_super_stripesize(info->super_copy));
4631 data_stripes = num_stripes - 2;
4632 }
Chris Mason86db2572013-02-20 16:23:40 -05004633
4634 /*
4635 * Use the number of data stripes to figure out how big this chunk
4636 * is really going to be in terms of logical address space,
4637 * and compare that answer with the max chunk size
4638 */
4639 if (stripe_size * data_stripes > max_chunk_size) {
4640 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004641
4642 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004643
4644 /* bump the answer up to a 16MB boundary */
4645 stripe_size = (stripe_size + mask) & ~mask;
4646
4647 /* but don't go higher than the limits we found
4648 * while searching for free extents
4649 */
4650 if (stripe_size > devices_info[ndevs-1].max_avail)
4651 stripe_size = devices_info[ndevs-1].max_avail;
4652 }
4653
David Sterbab8b93ad2015-01-16 17:26:13 +01004654 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004655
4656 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004657 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004658 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004659
Miao Xieb2117a32011-01-05 10:07:28 +00004660 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4661 if (!map) {
4662 ret = -ENOMEM;
4663 goto error;
4664 }
4665 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004666
Arne Jansen73c5de02011-04-12 12:07:57 +02004667 for (i = 0; i < ndevs; ++i) {
4668 for (j = 0; j < dev_stripes; ++j) {
4669 int s = i * dev_stripes + j;
4670 map->stripes[s].dev = devices_info[i].dev;
4671 map->stripes[s].physical = devices_info[i].dev_offset +
4672 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004673 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004674 }
Chris Mason593060d2008-03-25 16:50:33 -04004675 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004676 map->stripe_len = raid_stripe_len;
4677 map->io_align = raid_stripe_len;
4678 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004679 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004680 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004681
David Woodhouse53b381b2013-01-29 18:40:14 -05004682 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004683
Arne Jansen73c5de02011-04-12 12:07:57 +02004684 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004685
David Sterba172ddd62011-04-21 00:48:27 +02004686 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004687 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004688 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004689 ret = -ENOMEM;
4690 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004691 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004692 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004693 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004694 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004695 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004696 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004697 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004698 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004699
Chris Mason0b86a832008-03-24 15:01:56 -04004700 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004701 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004702 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004703 if (!ret) {
4704 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4705 atomic_inc(&em->refs);
4706 }
Chris Mason890871b2009-09-02 16:24:52 -04004707 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004708 if (ret) {
4709 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004710 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004711 }
Yan Zheng2b820322008-11-17 21:11:30 -05004712
Josef Bacik04487482013-01-29 15:03:37 -05004713 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4714 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4715 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004716 if (ret)
4717 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004718
Miao Xie7cc8e582014-09-03 21:35:38 +08004719 for (i = 0; i < map->num_stripes; i++) {
4720 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4721 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4722 }
Miao Xie43530c42014-09-03 21:35:36 +08004723
Miao Xie1c116182014-09-03 21:35:37 +08004724 spin_lock(&extent_root->fs_info->free_chunk_lock);
4725 extent_root->fs_info->free_chunk_space -= (stripe_size *
4726 map->num_stripes);
4727 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4728
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004729 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004730 check_raid56_incompat_flag(extent_root->fs_info, type);
4731
Miao Xieb2117a32011-01-05 10:07:28 +00004732 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004733 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004734
Josef Bacik6df9a952013-06-27 13:22:46 -04004735error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004736 write_lock(&em_tree->lock);
4737 remove_extent_mapping(em_tree, em);
4738 write_unlock(&em_tree->lock);
4739
4740 /* One for our allocation */
4741 free_extent_map(em);
4742 /* One for the tree reference */
4743 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004744 /* One for the pending_chunks list reference */
4745 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004746error:
Miao Xieb2117a32011-01-05 10:07:28 +00004747 kfree(devices_info);
4748 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004749}
4750
Josef Bacik6df9a952013-06-27 13:22:46 -04004751int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004752 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004753 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004754{
Yan Zheng2b820322008-11-17 21:11:30 -05004755 struct btrfs_key key;
4756 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4757 struct btrfs_device *device;
4758 struct btrfs_chunk *chunk;
4759 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004760 struct extent_map_tree *em_tree;
4761 struct extent_map *em;
4762 struct map_lookup *map;
4763 size_t item_size;
4764 u64 dev_offset;
4765 u64 stripe_size;
4766 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004767 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004768
Josef Bacik6df9a952013-06-27 13:22:46 -04004769 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4770 read_lock(&em_tree->lock);
4771 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4772 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004773
Josef Bacik6df9a952013-06-27 13:22:46 -04004774 if (!em) {
4775 btrfs_crit(extent_root->fs_info, "unable to find logical "
4776 "%Lu len %Lu", chunk_offset, chunk_size);
4777 return -EINVAL;
4778 }
4779
4780 if (em->start != chunk_offset || em->len != chunk_size) {
4781 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004782 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004783 chunk_size, em->start, em->len);
4784 free_extent_map(em);
4785 return -EINVAL;
4786 }
4787
Jeff Mahoney95617d62015-06-03 10:55:48 -04004788 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004789 item_size = btrfs_chunk_item_size(map->num_stripes);
4790 stripe_size = em->orig_block_len;
4791
4792 chunk = kzalloc(item_size, GFP_NOFS);
4793 if (!chunk) {
4794 ret = -ENOMEM;
4795 goto out;
4796 }
4797
Filipe Manana50460e32015-11-20 10:42:47 +00004798 /*
4799 * Take the device list mutex to prevent races with the final phase of
4800 * a device replace operation that replaces the device object associated
4801 * with the map's stripes, because the device object's id can change
4802 * at any time during that final phase of the device replace operation
4803 * (dev-replace.c:btrfs_dev_replace_finishing()).
4804 */
4805 mutex_lock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004806 for (i = 0; i < map->num_stripes; i++) {
4807 device = map->stripes[i].dev;
4808 dev_offset = map->stripes[i].physical;
4809
Yan Zheng2b820322008-11-17 21:11:30 -05004810 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004811 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004812 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004813 ret = btrfs_alloc_dev_extent(trans, device,
4814 chunk_root->root_key.objectid,
4815 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4816 chunk_offset, dev_offset,
4817 stripe_size);
4818 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004819 break;
4820 }
4821 if (ret) {
4822 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
4823 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004824 }
4825
Yan Zheng2b820322008-11-17 21:11:30 -05004826 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004827 for (i = 0; i < map->num_stripes; i++) {
4828 device = map->stripes[i].dev;
4829 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004830
4831 btrfs_set_stack_stripe_devid(stripe, device->devid);
4832 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4833 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4834 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004835 }
Filipe Manana50460e32015-11-20 10:42:47 +00004836 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004837
4838 btrfs_set_stack_chunk_length(chunk, chunk_size);
4839 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4840 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4841 btrfs_set_stack_chunk_type(chunk, map->type);
4842 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4843 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4844 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4845 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4846 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4847
4848 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4849 key.type = BTRFS_CHUNK_ITEM_KEY;
4850 key.offset = chunk_offset;
4851
4852 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004853 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4854 /*
4855 * TODO: Cleanup of inserted chunk root in case of
4856 * failure.
4857 */
Li Zefan125ccb02011-12-08 15:07:24 +08004858 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004859 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004860 }
liubo1abe9b82011-03-24 11:18:59 +00004861
Josef Bacik6df9a952013-06-27 13:22:46 -04004862out:
Yan Zheng2b820322008-11-17 21:11:30 -05004863 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004864 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004865 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004866}
4867
4868/*
4869 * Chunk allocation falls into two parts. The first part does works
4870 * that make the new allocated chunk useable, but not do any operation
4871 * that modifies the chunk tree. The second part does the works that
4872 * require modifying the chunk tree. This division is important for the
4873 * bootstrap process of adding storage to a seed btrfs.
4874 */
4875int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4876 struct btrfs_root *extent_root, u64 type)
4877{
4878 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004879
Filipe Mananaa9629592015-05-18 19:11:40 +01004880 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
Josef Bacik6df9a952013-06-27 13:22:46 -04004881 chunk_offset = find_next_chunk(extent_root->fs_info);
4882 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004883}
4884
Chris Masond3977122009-01-05 21:25:51 -05004885static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004886 struct btrfs_root *root,
4887 struct btrfs_device *device)
4888{
4889 u64 chunk_offset;
4890 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004891 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004892 struct btrfs_fs_info *fs_info = root->fs_info;
4893 struct btrfs_root *extent_root = fs_info->extent_root;
4894 int ret;
4895
Josef Bacik6df9a952013-06-27 13:22:46 -04004896 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004897 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004898 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4899 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004900 if (ret)
4901 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004902
Josef Bacik6df9a952013-06-27 13:22:46 -04004903 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004904 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004905 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4906 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004907 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004908}
4909
Miao Xied20983b2014-07-03 18:22:13 +08004910static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4911{
4912 int max_errors;
4913
4914 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4915 BTRFS_BLOCK_GROUP_RAID10 |
4916 BTRFS_BLOCK_GROUP_RAID5 |
4917 BTRFS_BLOCK_GROUP_DUP)) {
4918 max_errors = 1;
4919 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4920 max_errors = 2;
4921 } else {
4922 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004923 }
4924
Miao Xied20983b2014-07-03 18:22:13 +08004925 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004926}
4927
4928int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4929{
4930 struct extent_map *em;
4931 struct map_lookup *map;
4932 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4933 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004934 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004935 int i;
4936
Chris Mason890871b2009-09-02 16:24:52 -04004937 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004938 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004939 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004940 if (!em)
4941 return 1;
4942
Jeff Mahoney95617d62015-06-03 10:55:48 -04004943 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05004944 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08004945 if (map->stripes[i].dev->missing) {
4946 miss_ndevs++;
4947 continue;
4948 }
4949
Yan Zheng2b820322008-11-17 21:11:30 -05004950 if (!map->stripes[i].dev->writeable) {
4951 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08004952 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05004953 }
4954 }
Miao Xied20983b2014-07-03 18:22:13 +08004955
4956 /*
4957 * If the number of missing devices is larger than max errors,
4958 * we can not write the data into that chunk successfully, so
4959 * set it readonly.
4960 */
4961 if (miss_ndevs > btrfs_chunk_max_errors(map))
4962 readonly = 1;
4963end:
Yan Zheng2b820322008-11-17 21:11:30 -05004964 free_extent_map(em);
4965 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004966}
4967
4968void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4969{
David Sterbaa8067e02011-04-21 00:34:43 +02004970 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004971}
4972
4973void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4974{
4975 struct extent_map *em;
4976
Chris Masond3977122009-01-05 21:25:51 -05004977 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004978 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004979 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4980 if (em)
4981 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004982 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004983 if (!em)
4984 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004985 /* once for us */
4986 free_extent_map(em);
4987 /* once for the tree */
4988 free_extent_map(em);
4989 }
4990}
4991
Stefan Behrens5d964052012-11-05 14:59:07 +01004992int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04004993{
Stefan Behrens5d964052012-11-05 14:59:07 +01004994 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04004995 struct extent_map *em;
4996 struct map_lookup *map;
4997 struct extent_map_tree *em_tree = &map_tree->map_tree;
4998 int ret;
4999
Chris Mason890871b2009-09-02 16:24:52 -04005000 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005001 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005002 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005003
Josef Bacikfb7669b2013-04-23 10:53:18 -04005004 /*
5005 * We could return errors for these cases, but that could get ugly and
5006 * we'd probably do the same thing which is just not do anything else
5007 * and exit, so return 1 so the callers don't try to use other copies.
5008 */
5009 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005010 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005011 logical+len);
5012 return 1;
5013 }
5014
5015 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02005016 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02005017 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005018 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005019 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005020 return 1;
5021 }
5022
Jeff Mahoney95617d62015-06-03 10:55:48 -04005023 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005024 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5025 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005026 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5027 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005028 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5029 ret = 2;
5030 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5031 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005032 else
5033 ret = 1;
5034 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005035
Liu Bo73beece2015-07-17 16:49:19 +08005036 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005037 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5038 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005039 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005040
Chris Masonf1885912008-04-09 16:28:12 -04005041 return ret;
5042}
5043
David Woodhouse53b381b2013-01-29 18:40:14 -05005044unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5045 struct btrfs_mapping_tree *map_tree,
5046 u64 logical)
5047{
5048 struct extent_map *em;
5049 struct map_lookup *map;
5050 struct extent_map_tree *em_tree = &map_tree->map_tree;
5051 unsigned long len = root->sectorsize;
5052
5053 read_lock(&em_tree->lock);
5054 em = lookup_extent_mapping(em_tree, logical, len);
5055 read_unlock(&em_tree->lock);
5056 BUG_ON(!em);
5057
5058 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005059 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005060 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005061 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005062 free_extent_map(em);
5063 return len;
5064}
5065
5066int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5067 u64 logical, u64 len, int mirror_num)
5068{
5069 struct extent_map *em;
5070 struct map_lookup *map;
5071 struct extent_map_tree *em_tree = &map_tree->map_tree;
5072 int ret = 0;
5073
5074 read_lock(&em_tree->lock);
5075 em = lookup_extent_mapping(em_tree, logical, len);
5076 read_unlock(&em_tree->lock);
5077 BUG_ON(!em);
5078
5079 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005080 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005081 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005082 ret = 1;
5083 free_extent_map(em);
5084 return ret;
5085}
5086
Stefan Behrens30d98612012-11-06 14:52:18 +01005087static int find_live_mirror(struct btrfs_fs_info *fs_info,
5088 struct map_lookup *map, int first, int num,
5089 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005090{
5091 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005092 int tolerance;
5093 struct btrfs_device *srcdev;
5094
5095 if (dev_replace_is_ongoing &&
5096 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5097 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5098 srcdev = fs_info->dev_replace.srcdev;
5099 else
5100 srcdev = NULL;
5101
5102 /*
5103 * try to avoid the drive that is the source drive for a
5104 * dev-replace procedure, only choose it if no other non-missing
5105 * mirror is available
5106 */
5107 for (tolerance = 0; tolerance < 2; tolerance++) {
5108 if (map->stripes[optimal].dev->bdev &&
5109 (tolerance || map->stripes[optimal].dev != srcdev))
5110 return optimal;
5111 for (i = first; i < first + num; i++) {
5112 if (map->stripes[i].dev->bdev &&
5113 (tolerance || map->stripes[i].dev != srcdev))
5114 return i;
5115 }
Chris Masondfe25022008-05-13 13:46:40 -04005116 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005117
Chris Masondfe25022008-05-13 13:46:40 -04005118 /* we couldn't find one that doesn't fail. Just return something
5119 * and the io error handling code will clean up eventually
5120 */
5121 return optimal;
5122}
5123
David Woodhouse53b381b2013-01-29 18:40:14 -05005124static inline int parity_smaller(u64 a, u64 b)
5125{
5126 return a > b;
5127}
5128
5129/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005130static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005131{
5132 struct btrfs_bio_stripe s;
5133 int i;
5134 u64 l;
5135 int again = 1;
5136
5137 while (again) {
5138 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005139 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005140 if (parity_smaller(bbio->raid_map[i],
5141 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005142 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005143 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005144 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005145 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005146 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005147 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005148
David Woodhouse53b381b2013-01-29 18:40:14 -05005149 again = 1;
5150 }
5151 }
5152 }
5153}
5154
Zhao Lei6e9606d2015-01-20 15:11:34 +08005155static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5156{
5157 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005158 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005159 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005160 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005161 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005162 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005163 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005164 /*
5165 * plus the raid_map, which includes both the tgt dev
5166 * and the stripes
5167 */
5168 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005169 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005170
5171 atomic_set(&bbio->error, 0);
5172 atomic_set(&bbio->refs, 1);
5173
5174 return bbio;
5175}
5176
5177void btrfs_get_bbio(struct btrfs_bio *bbio)
5178{
5179 WARN_ON(!atomic_read(&bbio->refs));
5180 atomic_inc(&bbio->refs);
5181}
5182
5183void btrfs_put_bbio(struct btrfs_bio *bbio)
5184{
5185 if (!bbio)
5186 return;
5187 if (atomic_dec_and_test(&bbio->refs))
5188 kfree(bbio);
5189}
5190
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005191static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005192 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005193 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005194 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005195{
5196 struct extent_map *em;
5197 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005198 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005199 struct extent_map_tree *em_tree = &map_tree->map_tree;
5200 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005201 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005202 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005203 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005204 u64 stripe_nr_orig;
5205 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005206 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005207 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005208 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005209 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005210 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005211 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005212 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005213 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005214 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5215 int dev_replace_is_ongoing = 0;
5216 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005217 int patch_the_first_stripe_for_dev_replace = 0;
5218 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005219 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005220
Chris Mason890871b2009-09-02 16:24:52 -04005221 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005222 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005223 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005224
Chris Mason3b951512008-04-17 11:29:12 -04005225 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005226 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005227 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005228 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005229 }
Chris Mason0b86a832008-03-24 15:01:56 -04005230
Josef Bacik9bb91872013-04-19 23:45:33 -04005231 if (em->start > logical || em->start + em->len < logical) {
5232 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02005233 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04005234 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005235 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005236 return -EINVAL;
5237 }
5238
Jeff Mahoney95617d62015-06-03 10:55:48 -04005239 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005240 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005241
David Woodhouse53b381b2013-01-29 18:40:14 -05005242 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005243 stripe_nr = offset;
5244 /*
5245 * stripe_nr counts the total number of stripes we have to stride
5246 * to get to this block
5247 */
David Sterba47c57132015-02-20 18:43:47 +01005248 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005249
David Woodhouse53b381b2013-01-29 18:40:14 -05005250 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005251 BUG_ON(offset < stripe_offset);
5252
5253 /* stripe_offset is the offset of this block in its stripe*/
5254 stripe_offset = offset - stripe_offset;
5255
David Woodhouse53b381b2013-01-29 18:40:14 -05005256 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005257 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005258 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5259 raid56_full_stripe_start = offset;
5260
5261 /* allow a write of a full stripe, but make sure we don't
5262 * allow straddling of stripes
5263 */
David Sterba47c57132015-02-20 18:43:47 +01005264 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5265 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005266 raid56_full_stripe_start *= full_stripe_len;
5267 }
5268
5269 if (rw & REQ_DISCARD) {
5270 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005271 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005272 ret = -EOPNOTSUPP;
5273 goto out;
5274 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005275 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005276 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5277 u64 max_len;
5278 /* For writes to RAID[56], allow a full stripeset across all disks.
5279 For other RAID types and for RAID[56] reads, just allow a single
5280 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005281 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
David Woodhouse53b381b2013-01-29 18:40:14 -05005282 (rw & REQ_WRITE)) {
5283 max_len = stripe_len * nr_data_stripes(map) -
5284 (offset - raid56_full_stripe_start);
5285 } else {
5286 /* we limit the length of each bio to what fits in a stripe */
5287 max_len = stripe_len - stripe_offset;
5288 }
5289 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005290 } else {
5291 *length = em->len - offset;
5292 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005293
David Woodhouse53b381b2013-01-29 18:40:14 -05005294 /* This is for when we're called from btrfs_merge_bio_hook() and all
5295 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005296 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005297 goto out;
5298
Liu Bo73beece2015-07-17 16:49:19 +08005299 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005300 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5301 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005302 btrfs_dev_replace_unlock(dev_replace, 0);
5303 else
5304 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005305
Stefan Behrensad6d6202012-11-06 15:06:47 +01005306 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5307 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5308 dev_replace->tgtdev != NULL) {
5309 /*
5310 * in dev-replace case, for repair case (that's the only
5311 * case where the mirror is selected explicitly when
5312 * calling btrfs_map_block), blocks left of the left cursor
5313 * can also be read from the target drive.
5314 * For REQ_GET_READ_MIRRORS, the target drive is added as
5315 * the last one to the array of stripes. For READ, it also
5316 * needs to be supported using the same mirror number.
5317 * If the requested block is not left of the left cursor,
5318 * EIO is returned. This can happen because btrfs_num_copies()
5319 * returns one more in the dev-replace case.
5320 */
5321 u64 tmp_length = *length;
5322 struct btrfs_bio *tmp_bbio = NULL;
5323 int tmp_num_stripes;
5324 u64 srcdev_devid = dev_replace->srcdev->devid;
5325 int index_srcdev = 0;
5326 int found = 0;
5327 u64 physical_of_found = 0;
5328
5329 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005330 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005331 if (ret) {
5332 WARN_ON(tmp_bbio != NULL);
5333 goto out;
5334 }
5335
5336 tmp_num_stripes = tmp_bbio->num_stripes;
5337 if (mirror_num > tmp_num_stripes) {
5338 /*
5339 * REQ_GET_READ_MIRRORS does not contain this
5340 * mirror, that means that the requested area
5341 * is not left of the left cursor
5342 */
5343 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005344 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005345 goto out;
5346 }
5347
5348 /*
5349 * process the rest of the function using the mirror_num
5350 * of the source drive. Therefore look it up first.
5351 * At the end, patch the device pointer to the one of the
5352 * target drive.
5353 */
5354 for (i = 0; i < tmp_num_stripes; i++) {
Zhao Lei94a97df2015-12-09 21:03:49 +08005355 if (tmp_bbio->stripes[i].dev->devid != srcdev_devid)
5356 continue;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005357
Zhao Lei94a97df2015-12-09 21:03:49 +08005358 /*
5359 * In case of DUP, in order to keep it simple, only add
5360 * the mirror with the lowest physical address
5361 */
5362 if (found &&
5363 physical_of_found <= tmp_bbio->stripes[i].physical)
5364 continue;
5365
5366 index_srcdev = i;
5367 found = 1;
5368 physical_of_found = tmp_bbio->stripes[i].physical;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005369 }
5370
Zhao Lei6e9606d2015-01-20 15:11:34 +08005371 btrfs_put_bbio(tmp_bbio);
Zhao Lei94a97df2015-12-09 21:03:49 +08005372
5373 if (!found) {
5374 WARN_ON(1);
5375 ret = -EIO;
5376 goto out;
5377 }
5378
5379 mirror_num = index_srcdev + 1;
5380 patch_the_first_stripe_for_dev_replace = 1;
5381 physical_to_patch_in_first_stripe = physical_of_found;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005382 } else if (mirror_num > map->num_stripes) {
5383 mirror_num = 0;
5384 }
5385
Chris Masonf2d8d742008-04-21 10:03:05 -04005386 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005387 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005388 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005389 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005390 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005391 stripe_end_offset = stripe_nr_end * map->stripe_len -
5392 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005393
Li Dongyangfce3bb92011-03-24 10:24:26 +00005394 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5395 if (rw & REQ_DISCARD)
5396 num_stripes = min_t(u64, map->num_stripes,
5397 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005398 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5399 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005400 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5401 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005402 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005403 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005404 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005405 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005406 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005407 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005408 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005409 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005410 current->pid % map->num_stripes,
5411 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005412 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005413 }
Chris Mason2fff7342008-04-29 14:12:09 -04005414
Chris Mason611f0e02008-04-03 16:29:03 -04005415 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005416 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005417 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005418 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005419 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005420 } else {
5421 mirror_num = 1;
5422 }
Chris Mason2fff7342008-04-29 14:12:09 -04005423
Chris Mason321aecc2008-04-16 10:49:51 -04005424 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005425 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005426
David Sterba47c57132015-02-20 18:43:47 +01005427 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005428 stripe_index *= map->sub_stripes;
5429
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005430 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005431 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005432 else if (rw & REQ_DISCARD)
5433 num_stripes = min_t(u64, map->sub_stripes *
5434 (stripe_nr_end - stripe_nr_orig),
5435 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005436 else if (mirror_num)
5437 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005438 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005439 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005440 stripe_index = find_live_mirror(fs_info, map,
5441 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005442 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005443 current->pid % map->sub_stripes,
5444 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005445 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005446 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005447
Zhao Leiffe2d202015-01-20 15:11:44 +08005448 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005449 if (need_raid_map &&
Miao Xieaf8e2d12014-10-23 14:42:50 +08005450 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5451 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005452 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005453 stripe_nr = div_u64(raid56_full_stripe_start,
5454 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005455
5456 /* RAID[56] write or recovery. Return all stripes */
5457 num_stripes = map->num_stripes;
5458 max_errors = nr_parity_stripes(map);
5459
David Woodhouse53b381b2013-01-29 18:40:14 -05005460 *length = map->stripe_len;
5461 stripe_index = 0;
5462 stripe_offset = 0;
5463 } else {
5464 /*
5465 * Mirror #0 or #1 means the original data block.
5466 * Mirror #2 is RAID5 parity block.
5467 * Mirror #3 is RAID6 Q block.
5468 */
David Sterba47c57132015-02-20 18:43:47 +01005469 stripe_nr = div_u64_rem(stripe_nr,
5470 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005471 if (mirror_num > 1)
5472 stripe_index = nr_data_stripes(map) +
5473 mirror_num - 2;
5474
5475 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005476 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5477 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005478 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5479 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5480 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005481 }
Chris Mason8790d502008-04-03 16:29:03 -04005482 } else {
5483 /*
David Sterba47c57132015-02-20 18:43:47 +01005484 * after this, stripe_nr is the number of stripes on this
5485 * device we have to walk to find the data, and stripe_index is
5486 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005487 */
David Sterba47c57132015-02-20 18:43:47 +01005488 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5489 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005490 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005491 }
Chris Mason593060d2008-03-25 16:50:33 -04005492 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04005493
Stefan Behrens472262f2012-11-06 14:43:46 +01005494 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005495 if (dev_replace_is_ongoing) {
5496 if (rw & (REQ_WRITE | REQ_DISCARD))
5497 num_alloc_stripes <<= 1;
5498 if (rw & REQ_GET_READ_MIRRORS)
5499 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005500 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005501 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005502
Zhao Lei6e9606d2015-01-20 15:11:34 +08005503 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005504 if (!bbio) {
5505 ret = -ENOMEM;
5506 goto out;
5507 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005508 if (dev_replace_is_ongoing)
5509 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005510
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005511 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005512 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005513 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5514 mirror_num > 1)) {
5515 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005516 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005517
5518 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5519 sizeof(struct btrfs_bio_stripe) *
5520 num_alloc_stripes +
5521 sizeof(int) * tgtdev_indexes);
5522
5523 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005524 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005525
5526 /* Fill in the logical address of each stripe */
5527 tmp = stripe_nr * nr_data_stripes(map);
5528 for (i = 0; i < nr_data_stripes(map); i++)
5529 bbio->raid_map[(i+rot) % num_stripes] =
5530 em->start + (tmp + i) * map->stripe_len;
5531
5532 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5533 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5534 bbio->raid_map[(i+rot+1) % num_stripes] =
5535 RAID6_Q_STRIPE;
5536 }
5537
Li Dongyangfce3bb92011-03-24 10:24:26 +00005538 if (rw & REQ_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005539 u32 factor = 0;
5540 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005541 u64 stripes_per_dev = 0;
5542 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005543 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005544
5545 if (map->type &
5546 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5547 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5548 sub_stripes = 1;
5549 else
5550 sub_stripes = map->sub_stripes;
5551
5552 factor = map->num_stripes / sub_stripes;
5553 stripes_per_dev = div_u64_rem(stripe_nr_end -
5554 stripe_nr_orig,
5555 factor,
5556 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005557 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5558 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005559 }
5560
Li Dongyangfce3bb92011-03-24 10:24:26 +00005561 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005562 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005563 map->stripes[stripe_index].physical +
5564 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005565 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005566
Li Zefanec9ef7a2011-12-01 14:06:42 +08005567 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5568 BTRFS_BLOCK_GROUP_RAID10)) {
5569 bbio->stripes[i].length = stripes_per_dev *
5570 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005571
Li Zefanec9ef7a2011-12-01 14:06:42 +08005572 if (i / sub_stripes < remaining_stripes)
5573 bbio->stripes[i].length +=
5574 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005575
5576 /*
5577 * Special for the first stripe and
5578 * the last stripe:
5579 *
5580 * |-------|...|-------|
5581 * |----------|
5582 * off end_off
5583 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005584 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005585 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005586 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005587
5588 if (stripe_index >= last_stripe &&
5589 stripe_index <= (last_stripe +
5590 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005591 bbio->stripes[i].length -=
5592 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005593
Li Zefanec9ef7a2011-12-01 14:06:42 +08005594 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005595 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005596 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005597 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005598
5599 stripe_index++;
5600 if (stripe_index == map->num_stripes) {
5601 /* This could only happen for RAID0/10 */
5602 stripe_index = 0;
5603 stripe_nr++;
5604 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005605 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005606 } else {
5607 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005608 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005609 map->stripes[stripe_index].physical +
5610 stripe_offset +
5611 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005612 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005613 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005614 stripe_index++;
5615 }
Chris Mason593060d2008-03-25 16:50:33 -04005616 }
Li Zefande11cc12011-12-01 12:55:47 +08005617
Miao Xied20983b2014-07-03 18:22:13 +08005618 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5619 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005620
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005621 if (bbio->raid_map)
5622 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005623
Miao Xie2c8cdd62014-11-14 16:06:25 +08005624 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005625 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5626 dev_replace->tgtdev != NULL) {
5627 int index_where_to_add;
5628 u64 srcdev_devid = dev_replace->srcdev->devid;
5629
5630 /*
5631 * duplicate the write operations while the dev replace
5632 * procedure is running. Since the copying of the old disk
5633 * to the new disk takes place at run time while the
5634 * filesystem is mounted writable, the regular write
5635 * operations to the old disk have to be duplicated to go
5636 * to the new disk as well.
5637 * Note that device->missing is handled by the caller, and
5638 * that the write to the old disk is already set up in the
5639 * stripes array.
5640 */
5641 index_where_to_add = num_stripes;
5642 for (i = 0; i < num_stripes; i++) {
5643 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5644 /* write to new disk, too */
5645 struct btrfs_bio_stripe *new =
5646 bbio->stripes + index_where_to_add;
5647 struct btrfs_bio_stripe *old =
5648 bbio->stripes + i;
5649
5650 new->physical = old->physical;
5651 new->length = old->length;
5652 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005653 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005654 index_where_to_add++;
5655 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005656 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005657 }
5658 }
5659 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005660 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5661 dev_replace->tgtdev != NULL) {
5662 u64 srcdev_devid = dev_replace->srcdev->devid;
5663 int index_srcdev = 0;
5664 int found = 0;
5665 u64 physical_of_found = 0;
5666
5667 /*
5668 * During the dev-replace procedure, the target drive can
5669 * also be used to read data in case it is needed to repair
5670 * a corrupt block elsewhere. This is possible if the
5671 * requested area is left of the left cursor. In this area,
5672 * the target drive is a full copy of the source drive.
5673 */
5674 for (i = 0; i < num_stripes; i++) {
5675 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5676 /*
5677 * In case of DUP, in order to keep it
5678 * simple, only add the mirror with the
5679 * lowest physical address
5680 */
5681 if (found &&
5682 physical_of_found <=
5683 bbio->stripes[i].physical)
5684 continue;
5685 index_srcdev = i;
5686 found = 1;
5687 physical_of_found = bbio->stripes[i].physical;
5688 }
5689 }
5690 if (found) {
David Sterba258ece02015-02-24 19:45:15 +01005691 if (physical_of_found + map->stripe_len <=
Stefan Behrensad6d6202012-11-06 15:06:47 +01005692 dev_replace->cursor_left) {
5693 struct btrfs_bio_stripe *tgtdev_stripe =
5694 bbio->stripes + num_stripes;
5695
5696 tgtdev_stripe->physical = physical_of_found;
5697 tgtdev_stripe->length =
5698 bbio->stripes[index_srcdev].length;
5699 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005700 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005701
Miao Xie2c8cdd62014-11-14 16:06:25 +08005702 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005703 num_stripes++;
5704 }
5705 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005706 }
5707
Li Zefande11cc12011-12-01 12:55:47 +08005708 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005709 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005710 bbio->num_stripes = num_stripes;
5711 bbio->max_errors = max_errors;
5712 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005713 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005714
5715 /*
5716 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5717 * mirror_num == num_stripes + 1 && dev_replace target drive is
5718 * available as a mirror
5719 */
5720 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5721 WARN_ON(num_stripes > 1);
5722 bbio->stripes[0].dev = dev_replace->tgtdev;
5723 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5724 bbio->mirror_num = map->num_stripes + 1;
5725 }
Chris Masoncea9e442008-04-09 16:28:12 -04005726out:
Liu Bo73beece2015-07-17 16:49:19 +08005727 if (dev_replace_is_ongoing) {
5728 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5729 btrfs_dev_replace_unlock(dev_replace, 0);
5730 }
Chris Mason0b86a832008-03-24 15:01:56 -04005731 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005732 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005733}
5734
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005735int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005736 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005737 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005738{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005739 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005740 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005741}
5742
Miao Xieaf8e2d12014-10-23 14:42:50 +08005743/* For Scrub/replace */
5744int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5745 u64 logical, u64 *length,
5746 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005747 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005748{
5749 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005750 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005751}
5752
Yan Zhenga512bbf2008-12-08 16:46:26 -05005753int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5754 u64 chunk_start, u64 physical, u64 devid,
5755 u64 **logical, int *naddrs, int *stripe_len)
5756{
5757 struct extent_map_tree *em_tree = &map_tree->map_tree;
5758 struct extent_map *em;
5759 struct map_lookup *map;
5760 u64 *buf;
5761 u64 bytenr;
5762 u64 length;
5763 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005764 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005765 int i, j, nr = 0;
5766
Chris Mason890871b2009-09-02 16:24:52 -04005767 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005768 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005769 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005770
Josef Bacik835d9742013-03-19 12:13:25 -04005771 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005772 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005773 chunk_start);
5774 return -EIO;
5775 }
5776
5777 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005778 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005779 em->start, chunk_start);
5780 free_extent_map(em);
5781 return -EIO;
5782 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04005783 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005784
5785 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005786 rmap_len = map->stripe_len;
5787
Yan Zhenga512bbf2008-12-08 16:46:26 -05005788 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005789 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005790 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005791 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005792 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005793 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005794 rmap_len = map->stripe_len * nr_data_stripes(map);
5795 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005796
David Sterba31e818f2015-02-20 18:00:26 +01005797 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005798 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005799
5800 for (i = 0; i < map->num_stripes; i++) {
5801 if (devid && map->stripes[i].dev->devid != devid)
5802 continue;
5803 if (map->stripes[i].physical > physical ||
5804 map->stripes[i].physical + length <= physical)
5805 continue;
5806
5807 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005808 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005809
5810 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5811 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005812 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005813 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5814 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005815 } /* else if RAID[56], multiply by nr_data_stripes().
5816 * Alternatively, just use rmap_len below instead of
5817 * map->stripe_len */
5818
5819 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005820 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005821 for (j = 0; j < nr; j++) {
5822 if (buf[j] == bytenr)
5823 break;
5824 }
Chris Mason934d3752008-12-08 16:43:10 -05005825 if (j == nr) {
5826 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005827 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005828 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005829 }
5830
Yan Zhenga512bbf2008-12-08 16:46:26 -05005831 *logical = buf;
5832 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005833 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005834
5835 free_extent_map(em);
5836 return 0;
5837}
5838
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005839static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005840{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005841 bio->bi_private = bbio->private;
5842 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005843 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005844
Zhao Lei6e9606d2015-01-20 15:11:34 +08005845 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005846}
5847
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005848static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005849{
Chris Mason9be33952013-05-17 18:30:14 -04005850 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005851 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005852
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005853 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005854 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005855 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005856 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005857 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005858 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005859
5860 BUG_ON(stripe_index >= bbio->num_stripes);
5861 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005862 if (dev->bdev) {
5863 if (bio->bi_rw & WRITE)
5864 btrfs_dev_stat_inc(dev,
5865 BTRFS_DEV_STAT_WRITE_ERRS);
5866 else
5867 btrfs_dev_stat_inc(dev,
5868 BTRFS_DEV_STAT_READ_ERRS);
5869 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5870 btrfs_dev_stat_inc(dev,
5871 BTRFS_DEV_STAT_FLUSH_ERRS);
5872 btrfs_dev_stat_print_on_error(dev);
5873 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005874 }
5875 }
Chris Mason8790d502008-04-03 16:29:03 -04005876
Jan Schmidta1d3c472011-08-04 17:15:33 +02005877 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005878 is_orig_bio = 1;
5879
Miao Xiec404e0d2014-01-30 16:46:55 +08005880 btrfs_bio_counter_dec(bbio->fs_info);
5881
Jan Schmidta1d3c472011-08-04 17:15:33 +02005882 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005883 if (!is_orig_bio) {
5884 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005885 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005886 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005887
Chris Mason9be33952013-05-17 18:30:14 -04005888 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005889 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005890 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005891 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005892 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005893 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005894 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005895 /*
5896 * this bio is actually up to date, we didn't
5897 * go over the max number of errors
5898 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005899 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005900 }
Miao Xiec55f1392014-06-19 10:42:54 +08005901
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005902 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005903 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005904 bio_put(bio);
5905 }
Chris Mason8790d502008-04-03 16:29:03 -04005906}
5907
Chris Mason8b712842008-06-11 16:50:36 -04005908/*
5909 * see run_scheduled_bios for a description of why bios are collected for
5910 * async submit.
5911 *
5912 * This will add one bio to the pending list for a device and make sure
5913 * the work struct is scheduled.
5914 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005915static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5916 struct btrfs_device *device,
5917 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005918{
5919 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005920 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005921
David Woodhouse53b381b2013-01-29 18:40:14 -05005922 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005923 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05005924 return;
5925 }
5926
Chris Mason8b712842008-06-11 16:50:36 -04005927 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005928 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005929 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005930 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005931 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005932 return;
Chris Mason8b712842008-06-11 16:50:36 -04005933 }
5934
5935 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005936 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005937 * higher layers. Otherwise, the async bio makes it appear we have
5938 * made progress against dirty pages when we've really just put it
5939 * on a queue for later
5940 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005941 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005942 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005943 bio->bi_next = NULL;
5944 bio->bi_rw |= rw;
5945
5946 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005947 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005948 pending_bios = &device->pending_sync_bios;
5949 else
5950 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005951
Chris Masonffbd5172009-04-20 15:50:09 -04005952 if (pending_bios->tail)
5953 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005954
Chris Masonffbd5172009-04-20 15:50:09 -04005955 pending_bios->tail = bio;
5956 if (!pending_bios->head)
5957 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005958 if (device->running_pending)
5959 should_queue = 0;
5960
5961 spin_unlock(&device->io_lock);
5962
5963 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08005964 btrfs_queue_work(root->fs_info->submit_workers,
5965 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005966}
5967
Josef Bacikde1ee922012-10-19 16:50:56 -04005968static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5969 struct bio *bio, u64 physical, int dev_nr,
5970 int rw, int async)
5971{
5972 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5973
5974 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005975 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005976 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005977 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04005978#ifdef DEBUG
5979 {
5980 struct rcu_string *name;
5981
5982 rcu_read_lock();
5983 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005984 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005985 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02005986 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
5987 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04005988 rcu_read_unlock();
5989 }
5990#endif
5991 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08005992
5993 btrfs_bio_counter_inc_noblocked(root->fs_info);
5994
Josef Bacikde1ee922012-10-19 16:50:56 -04005995 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05005996 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005997 else
5998 btrfsic_submit_bio(rw, bio);
5999}
6000
Josef Bacikde1ee922012-10-19 16:50:56 -04006001static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6002{
6003 atomic_inc(&bbio->error);
6004 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Miao Xie8408c712014-06-19 10:42:55 +08006005 /* Shoud be the original bio. */
6006 WARN_ON(bio != bbio->orig_bio);
6007
Chris Mason9be33952013-05-17 18:30:14 -04006008 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006009 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006010 bio->bi_error = -EIO;
6011 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006012 }
6013}
6014
Chris Masonf1885912008-04-09 16:28:12 -04006015int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006016 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006017{
Chris Mason0b86a832008-03-24 15:01:56 -04006018 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006019 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006020 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006021 u64 length = 0;
6022 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006023 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006024 int dev_nr;
6025 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006026 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006027
Kent Overstreet4f024f32013-10-11 15:44:27 -07006028 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006029 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006030
Miao Xiec404e0d2014-01-30 16:46:55 +08006031 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05006032 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006033 mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006034 if (ret) {
6035 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006036 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006037 }
Chris Masoncea9e442008-04-09 16:28:12 -04006038
Jan Schmidta1d3c472011-08-04 17:15:33 +02006039 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006040 bbio->orig_bio = first_bio;
6041 bbio->private = first_bio->bi_private;
6042 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08006043 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006044 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6045
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006046 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
6047 ((rw & WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006048 /* In this case, map_length has been set to the length of
6049 a single stripe; not the whole write */
6050 if (rw & WRITE) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006051 ret = raid56_parity_write(root, bio, bbio, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006052 } else {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006053 ret = raid56_parity_recover(root, bio, bbio, map_length,
Miao Xie42452152014-11-25 16:39:28 +08006054 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006055 }
Miao Xie42452152014-11-25 16:39:28 +08006056
Miao Xiec404e0d2014-01-30 16:46:55 +08006057 btrfs_bio_counter_dec(root->fs_info);
6058 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006059 }
6060
Chris Masoncea9e442008-04-09 16:28:12 -04006061 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006062 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006063 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006064 BUG();
6065 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006066
Zhao Lei08da7572015-02-12 15:42:16 +08006067 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006068 dev = bbio->stripes[dev_nr].dev;
6069 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6070 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006071 continue;
6072 }
6073
Jan Schmidta1d3c472011-08-04 17:15:33 +02006074 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006075 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006076 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006077 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006078 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006079
Josef Bacikde1ee922012-10-19 16:50:56 -04006080 submit_stripe_bio(root, bbio, bio,
6081 bbio->stripes[dev_nr].physical, dev_nr, rw,
6082 async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006083 }
Miao Xiec404e0d2014-01-30 16:46:55 +08006084 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006085 return 0;
6086}
6087
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006088struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006089 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006090{
Yan Zheng2b820322008-11-17 21:11:30 -05006091 struct btrfs_device *device;
6092 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006093
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006094 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006095 while (cur_devices) {
6096 if (!fsid ||
6097 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6098 device = __find_device(&cur_devices->devices,
6099 devid, uuid);
6100 if (device)
6101 return device;
6102 }
6103 cur_devices = cur_devices->seed;
6104 }
6105 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006106}
6107
Chris Masondfe25022008-05-13 13:46:40 -04006108static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08006109 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006110 u64 devid, u8 *dev_uuid)
6111{
6112 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006113
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006114 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6115 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006116 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006117
6118 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006119 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006120 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006121
6122 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006123 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006124
Chris Masondfe25022008-05-13 13:46:40 -04006125 return device;
6126}
6127
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006128/**
6129 * btrfs_alloc_device - allocate struct btrfs_device
6130 * @fs_info: used only for generating a new devid, can be NULL if
6131 * devid is provided (i.e. @devid != NULL).
6132 * @devid: a pointer to devid for this device. If NULL a new devid
6133 * is generated.
6134 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6135 * is generated.
6136 *
6137 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6138 * on error. Returned struct is not linked onto any lists and can be
6139 * destroyed with kfree() right away.
6140 */
6141struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6142 const u64 *devid,
6143 const u8 *uuid)
6144{
6145 struct btrfs_device *dev;
6146 u64 tmp;
6147
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306148 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006149 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006150
6151 dev = __alloc_device();
6152 if (IS_ERR(dev))
6153 return dev;
6154
6155 if (devid)
6156 tmp = *devid;
6157 else {
6158 int ret;
6159
6160 ret = find_next_devid(fs_info, &tmp);
6161 if (ret) {
6162 kfree(dev);
6163 return ERR_PTR(ret);
6164 }
6165 }
6166 dev->devid = tmp;
6167
6168 if (uuid)
6169 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6170 else
6171 generate_random_uuid(dev->uuid);
6172
Liu Bo9e0af232014-08-15 23:36:53 +08006173 btrfs_init_work(&dev->work, btrfs_submit_helper,
6174 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006175
6176 return dev;
6177}
6178
Chris Mason0b86a832008-03-24 15:01:56 -04006179static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6180 struct extent_buffer *leaf,
6181 struct btrfs_chunk *chunk)
6182{
6183 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6184 struct map_lookup *map;
6185 struct extent_map *em;
6186 u64 logical;
6187 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006188 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006189 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006190 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006191 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006192 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006193 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006194
Chris Masone17cade2008-04-15 15:41:47 -04006195 logical = key->offset;
6196 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006197 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6198 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6199 /* Validation check */
6200 if (!num_stripes) {
6201 btrfs_err(root->fs_info, "invalid chunk num_stripes: %u",
6202 num_stripes);
6203 return -EIO;
6204 }
6205 if (!IS_ALIGNED(logical, root->sectorsize)) {
6206 btrfs_err(root->fs_info,
6207 "invalid chunk logical %llu", logical);
6208 return -EIO;
6209 }
6210 if (!length || !IS_ALIGNED(length, root->sectorsize)) {
6211 btrfs_err(root->fs_info,
6212 "invalid chunk length %llu", length);
6213 return -EIO;
6214 }
6215 if (!is_power_of_2(stripe_len)) {
6216 btrfs_err(root->fs_info, "invalid chunk stripe length: %llu",
6217 stripe_len);
6218 return -EIO;
6219 }
6220 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6221 btrfs_chunk_type(leaf, chunk)) {
6222 btrfs_err(root->fs_info, "unrecognized chunk type: %llu",
6223 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6224 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6225 btrfs_chunk_type(leaf, chunk));
6226 return -EIO;
6227 }
Chris Masona061fc82008-05-07 11:43:44 -04006228
Chris Mason890871b2009-09-02 16:24:52 -04006229 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006230 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006231 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006232
6233 /* already mapped? */
6234 if (em && em->start <= logical && em->start + em->len > logical) {
6235 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006236 return 0;
6237 } else if (em) {
6238 free_extent_map(em);
6239 }
Chris Mason0b86a832008-03-24 15:01:56 -04006240
David Sterba172ddd62011-04-21 00:48:27 +02006241 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006242 if (!em)
6243 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006244 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006245 if (!map) {
6246 free_extent_map(em);
6247 return -ENOMEM;
6248 }
6249
Wang Shilong298a8f92014-06-19 10:42:52 +08006250 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006251 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006252 em->start = logical;
6253 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006254 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006255 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006256 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006257
Chris Mason593060d2008-03-25 16:50:33 -04006258 map->num_stripes = num_stripes;
6259 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6260 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6261 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6262 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6263 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006264 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006265 for (i = 0; i < num_stripes; i++) {
6266 map->stripes[i].physical =
6267 btrfs_stripe_offset_nr(leaf, chunk, i);
6268 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006269 read_extent_buffer(leaf, uuid, (unsigned long)
6270 btrfs_stripe_dev_uuid_nr(chunk, i),
6271 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006272 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6273 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006274 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006275 free_extent_map(em);
6276 return -EIO;
6277 }
Chris Masondfe25022008-05-13 13:46:40 -04006278 if (!map->stripes[i].dev) {
6279 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006280 add_missing_dev(root, root->fs_info->fs_devices,
6281 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006282 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006283 free_extent_map(em);
6284 return -EIO;
6285 }
Anand Jain816fceb2015-04-27 12:46:18 +08006286 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6287 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006288 }
6289 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006290 }
6291
Chris Mason890871b2009-09-02 16:24:52 -04006292 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006293 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006294 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006295 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006296 free_extent_map(em);
6297
6298 return 0;
6299}
6300
Jeff Mahoney143bede2012-03-01 14:56:26 +01006301static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006302 struct btrfs_dev_item *dev_item,
6303 struct btrfs_device *device)
6304{
6305 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006306
6307 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006308 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6309 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006310 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006311 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006312 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006313 device->type = btrfs_device_type(leaf, dev_item);
6314 device->io_align = btrfs_device_io_align(leaf, dev_item);
6315 device->io_width = btrfs_device_io_width(leaf, dev_item);
6316 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006317 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006318 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006319
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006320 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006321 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006322}
6323
Miao Xie5f375832014-09-03 21:35:46 +08006324static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6325 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006326{
6327 struct btrfs_fs_devices *fs_devices;
6328 int ret;
6329
Li Zefanb367e472011-12-07 11:38:24 +08006330 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006331
6332 fs_devices = root->fs_info->fs_devices->seed;
6333 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006334 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6335 return fs_devices;
6336
Yan Zheng2b820322008-11-17 21:11:30 -05006337 fs_devices = fs_devices->seed;
6338 }
6339
6340 fs_devices = find_fsid(fsid);
6341 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006342 if (!btrfs_test_opt(root, DEGRADED))
6343 return ERR_PTR(-ENOENT);
6344
6345 fs_devices = alloc_fs_devices(fsid);
6346 if (IS_ERR(fs_devices))
6347 return fs_devices;
6348
6349 fs_devices->seeding = 1;
6350 fs_devices->opened = 1;
6351 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006352 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006353
6354 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006355 if (IS_ERR(fs_devices))
6356 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006357
Christoph Hellwig97288f22008-12-02 06:36:09 -05006358 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006359 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006360 if (ret) {
6361 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006362 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006363 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006364 }
Yan Zheng2b820322008-11-17 21:11:30 -05006365
6366 if (!fs_devices->seeding) {
6367 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006368 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006369 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006370 goto out;
6371 }
6372
6373 fs_devices->seed = root->fs_info->fs_devices->seed;
6374 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006375out:
Miao Xie5f375832014-09-03 21:35:46 +08006376 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006377}
6378
Chris Mason0d81ba52008-03-24 15:02:07 -04006379static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006380 struct extent_buffer *leaf,
6381 struct btrfs_dev_item *dev_item)
6382{
Miao Xie5f375832014-09-03 21:35:46 +08006383 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006384 struct btrfs_device *device;
6385 u64 devid;
6386 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006387 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006388 u8 dev_uuid[BTRFS_UUID_SIZE];
6389
Chris Mason0b86a832008-03-24 15:01:56 -04006390 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006391 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006392 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006393 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006394 BTRFS_UUID_SIZE);
6395
6396 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006397 fs_devices = open_seed_devices(root, fs_uuid);
6398 if (IS_ERR(fs_devices))
6399 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006400 }
6401
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006402 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006403 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006404 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006405 return -EIO;
6406
Miao Xie5f375832014-09-03 21:35:46 +08006407 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6408 if (!device)
6409 return -ENOMEM;
Anand Jain33b97e42015-05-08 04:34:35 +08006410 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6411 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006412 } else {
6413 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6414 return -EIO;
6415
6416 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006417 /*
6418 * this happens when a device that was properly setup
6419 * in the device info lists suddenly goes bad.
6420 * device->bdev is NULL, and so we have to set
6421 * device->missing to one here
6422 */
Miao Xie5f375832014-09-03 21:35:46 +08006423 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006424 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006425 }
Miao Xie5f375832014-09-03 21:35:46 +08006426
6427 /* Move the device to its own fs_devices */
6428 if (device->fs_devices != fs_devices) {
6429 ASSERT(device->missing);
6430
6431 list_move(&device->dev_list, &fs_devices->devices);
6432 device->fs_devices->num_devices--;
6433 fs_devices->num_devices++;
6434
6435 device->fs_devices->missing_devices--;
6436 fs_devices->missing_devices++;
6437
6438 device->fs_devices = fs_devices;
6439 }
Yan Zheng2b820322008-11-17 21:11:30 -05006440 }
6441
6442 if (device->fs_devices != root->fs_info->fs_devices) {
6443 BUG_ON(device->writeable);
6444 if (device->generation !=
6445 btrfs_device_generation(leaf, dev_item))
6446 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006447 }
Chris Mason0b86a832008-03-24 15:01:56 -04006448
6449 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006450 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006451 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006452 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006453 spin_lock(&root->fs_info->free_chunk_lock);
6454 root->fs_info->free_chunk_space += device->total_bytes -
6455 device->bytes_used;
6456 spin_unlock(&root->fs_info->free_chunk_lock);
6457 }
Chris Mason0b86a832008-03-24 15:01:56 -04006458 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006459 return ret;
6460}
6461
Yan Zhenge4404d62008-12-12 10:03:26 -05006462int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006463{
David Sterba6c417612011-04-13 15:41:04 +02006464 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006465 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006466 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006467 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006468 u8 *array_ptr;
6469 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006470 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006471 u32 num_stripes;
6472 u32 array_size;
6473 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006474 u32 cur_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006475 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006476
David Sterbaa83fffb2014-06-15 02:39:54 +02006477 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6478 /*
6479 * This will create extent buffer of nodesize, superblock size is
6480 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6481 * overallocate but we can keep it as-is, only the first page is used.
6482 */
6483 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
Chris Masona061fc82008-05-07 11:43:44 -04006484 if (!sb)
6485 return -ENOMEM;
David Sterba4db8c522015-12-03 13:06:46 +01006486 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006487 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006488 /*
6489 * The sb extent buffer is artifical and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006490 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006491 * pages up-to-date when the page is larger: extent does not cover the
6492 * whole page and consequently check_page_uptodate does not find all
6493 * the page's extents up-to-date (the hole beyond sb),
6494 * write_extent_buffer then triggers a WARN_ON.
6495 *
6496 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6497 * but sb spans only this function. Add an explicit SetPageUptodate call
6498 * to silence the warning eg. on PowerPC 64.
6499 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006500 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006501 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006502
Chris Masona061fc82008-05-07 11:43:44 -04006503 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006504 array_size = btrfs_super_sys_array_size(super_copy);
6505
David Sterba1ffb22c2014-10-31 19:02:42 +01006506 array_ptr = super_copy->sys_chunk_array;
6507 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6508 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006509
David Sterba1ffb22c2014-10-31 19:02:42 +01006510 while (cur_offset < array_size) {
6511 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006512 len = sizeof(*disk_key);
6513 if (cur_offset + len > array_size)
6514 goto out_short_read;
6515
Chris Mason0b86a832008-03-24 15:01:56 -04006516 btrfs_disk_key_to_cpu(&key, disk_key);
6517
David Sterba1ffb22c2014-10-31 19:02:42 +01006518 array_ptr += len;
6519 sb_array_offset += len;
6520 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006521
Chris Mason0d81ba52008-03-24 15:02:07 -04006522 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006523 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006524 /*
6525 * At least one btrfs_chunk with one stripe must be
6526 * present, exact stripe count check comes afterwards
6527 */
6528 len = btrfs_chunk_item_size(1);
6529 if (cur_offset + len > array_size)
6530 goto out_short_read;
6531
6532 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006533 if (!num_stripes) {
6534 printk(KERN_ERR
6535 "BTRFS: invalid number of stripes %u in sys_array at offset %u\n",
6536 num_stripes, cur_offset);
6537 ret = -EIO;
6538 break;
6539 }
6540
David Sterbae3540ea2014-11-05 15:24:51 +01006541 len = btrfs_chunk_item_size(num_stripes);
6542 if (cur_offset + len > array_size)
6543 goto out_short_read;
6544
Chris Mason0d81ba52008-03-24 15:02:07 -04006545 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006546 if (ret)
6547 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006548 } else {
David Sterba93a3d462015-11-30 17:27:09 +01006549 printk(KERN_ERR
6550 "BTRFS: unexpected item type %u in sys_array at offset %u\n",
6551 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006552 ret = -EIO;
6553 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006554 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006555 array_ptr += len;
6556 sb_array_offset += len;
6557 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006558 }
Chris Masona061fc82008-05-07 11:43:44 -04006559 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006560 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006561
6562out_short_read:
6563 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6564 len, cur_offset);
6565 free_extent_buffer(sb);
6566 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006567}
6568
6569int btrfs_read_chunk_tree(struct btrfs_root *root)
6570{
6571 struct btrfs_path *path;
6572 struct extent_buffer *leaf;
6573 struct btrfs_key key;
6574 struct btrfs_key found_key;
6575 int ret;
6576 int slot;
6577
6578 root = root->fs_info->chunk_root;
6579
6580 path = btrfs_alloc_path();
6581 if (!path)
6582 return -ENOMEM;
6583
Li Zefanb367e472011-12-07 11:38:24 +08006584 mutex_lock(&uuid_mutex);
6585 lock_chunks(root);
6586
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006587 /*
6588 * Read all device items, and then all the chunk items. All
6589 * device items are found before any chunk item (their object id
6590 * is smaller than the lowest possible object id for a chunk
6591 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006592 */
6593 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6594 key.offset = 0;
6595 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006596 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006597 if (ret < 0)
6598 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006599 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006600 leaf = path->nodes[0];
6601 slot = path->slots[0];
6602 if (slot >= btrfs_header_nritems(leaf)) {
6603 ret = btrfs_next_leaf(root, path);
6604 if (ret == 0)
6605 continue;
6606 if (ret < 0)
6607 goto error;
6608 break;
6609 }
6610 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006611 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6612 struct btrfs_dev_item *dev_item;
6613 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006614 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006615 ret = read_one_dev(root, leaf, dev_item);
6616 if (ret)
6617 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006618 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6619 struct btrfs_chunk *chunk;
6620 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6621 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006622 if (ret)
6623 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006624 }
6625 path->slots[0]++;
6626 }
Chris Mason0b86a832008-03-24 15:01:56 -04006627 ret = 0;
6628error:
Li Zefanb367e472011-12-07 11:38:24 +08006629 unlock_chunks(root);
6630 mutex_unlock(&uuid_mutex);
6631
Yan Zheng2b820322008-11-17 21:11:30 -05006632 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006633 return ret;
6634}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006635
Miao Xiecb517ea2013-05-15 07:48:19 +00006636void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6637{
6638 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6639 struct btrfs_device *device;
6640
Liu Bo29cc83f2014-05-11 23:14:59 +08006641 while (fs_devices) {
6642 mutex_lock(&fs_devices->device_list_mutex);
6643 list_for_each_entry(device, &fs_devices->devices, dev_list)
6644 device->dev_root = fs_info->dev_root;
6645 mutex_unlock(&fs_devices->device_list_mutex);
6646
6647 fs_devices = fs_devices->seed;
6648 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006649}
6650
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006651static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6652{
6653 int i;
6654
6655 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6656 btrfs_dev_stat_reset(dev, i);
6657}
6658
6659int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6660{
6661 struct btrfs_key key;
6662 struct btrfs_key found_key;
6663 struct btrfs_root *dev_root = fs_info->dev_root;
6664 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6665 struct extent_buffer *eb;
6666 int slot;
6667 int ret = 0;
6668 struct btrfs_device *device;
6669 struct btrfs_path *path = NULL;
6670 int i;
6671
6672 path = btrfs_alloc_path();
6673 if (!path) {
6674 ret = -ENOMEM;
6675 goto out;
6676 }
6677
6678 mutex_lock(&fs_devices->device_list_mutex);
6679 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6680 int item_size;
6681 struct btrfs_dev_stats_item *ptr;
6682
David Sterba242e2952016-01-25 17:51:31 +01006683 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6684 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006685 key.offset = device->devid;
6686 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6687 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006688 __btrfs_reset_dev_stats(device);
6689 device->dev_stats_valid = 1;
6690 btrfs_release_path(path);
6691 continue;
6692 }
6693 slot = path->slots[0];
6694 eb = path->nodes[0];
6695 btrfs_item_key_to_cpu(eb, &found_key, slot);
6696 item_size = btrfs_item_size_nr(eb, slot);
6697
6698 ptr = btrfs_item_ptr(eb, slot,
6699 struct btrfs_dev_stats_item);
6700
6701 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6702 if (item_size >= (1 + i) * sizeof(__le64))
6703 btrfs_dev_stat_set(device, i,
6704 btrfs_dev_stats_value(eb, ptr, i));
6705 else
6706 btrfs_dev_stat_reset(device, i);
6707 }
6708
6709 device->dev_stats_valid = 1;
6710 btrfs_dev_stat_print_on_load(device);
6711 btrfs_release_path(path);
6712 }
6713 mutex_unlock(&fs_devices->device_list_mutex);
6714
6715out:
6716 btrfs_free_path(path);
6717 return ret < 0 ? ret : 0;
6718}
6719
6720static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6721 struct btrfs_root *dev_root,
6722 struct btrfs_device *device)
6723{
6724 struct btrfs_path *path;
6725 struct btrfs_key key;
6726 struct extent_buffer *eb;
6727 struct btrfs_dev_stats_item *ptr;
6728 int ret;
6729 int i;
6730
David Sterba242e2952016-01-25 17:51:31 +01006731 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6732 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006733 key.offset = device->devid;
6734
6735 path = btrfs_alloc_path();
6736 BUG_ON(!path);
6737 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6738 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006739 btrfs_warn_in_rcu(dev_root->fs_info,
6740 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006741 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006742 goto out;
6743 }
6744
6745 if (ret == 0 &&
6746 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6747 /* need to delete old one and insert a new one */
6748 ret = btrfs_del_item(trans, dev_root, path);
6749 if (ret != 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006750 btrfs_warn_in_rcu(dev_root->fs_info,
6751 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006752 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006753 goto out;
6754 }
6755 ret = 1;
6756 }
6757
6758 if (ret == 1) {
6759 /* need to insert a new item */
6760 btrfs_release_path(path);
6761 ret = btrfs_insert_empty_item(trans, dev_root, path,
6762 &key, sizeof(*ptr));
6763 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006764 btrfs_warn_in_rcu(dev_root->fs_info,
6765 "insert dev_stats item for device %s failed %d",
6766 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006767 goto out;
6768 }
6769 }
6770
6771 eb = path->nodes[0];
6772 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6773 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6774 btrfs_set_dev_stats_value(eb, ptr, i,
6775 btrfs_dev_stat_read(device, i));
6776 btrfs_mark_buffer_dirty(eb);
6777
6778out:
6779 btrfs_free_path(path);
6780 return ret;
6781}
6782
6783/*
6784 * called from commit_transaction. Writes all changed device stats to disk.
6785 */
6786int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6787 struct btrfs_fs_info *fs_info)
6788{
6789 struct btrfs_root *dev_root = fs_info->dev_root;
6790 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6791 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006792 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006793 int ret = 0;
6794
6795 mutex_lock(&fs_devices->device_list_mutex);
6796 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006797 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006798 continue;
6799
Miao Xieaddc3fa2014-07-24 11:37:11 +08006800 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006801 ret = update_dev_stat_item(trans, dev_root, device);
6802 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006803 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006804 }
6805 mutex_unlock(&fs_devices->device_list_mutex);
6806
6807 return ret;
6808}
6809
Stefan Behrens442a4f62012-05-25 16:06:08 +02006810void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6811{
6812 btrfs_dev_stat_inc(dev, index);
6813 btrfs_dev_stat_print_on_error(dev);
6814}
6815
Eric Sandeen48a3b632013-04-25 20:41:01 +00006816static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006817{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006818 if (!dev->dev_stats_valid)
6819 return;
David Sterbab14af3b2015-10-08 10:43:10 +02006820 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6821 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006822 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006823 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6824 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6825 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006826 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6827 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006828}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006829
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006830static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6831{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006832 int i;
6833
6834 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6835 if (btrfs_dev_stat_read(dev, i) != 0)
6836 break;
6837 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6838 return; /* all values == 0, suppress message */
6839
David Sterbaecaeb142015-10-08 09:01:03 +02006840 btrfs_info_in_rcu(dev->dev_root->fs_info,
6841 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006842 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006843 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6844 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6845 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6846 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6847 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6848}
6849
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006850int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006851 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006852{
6853 struct btrfs_device *dev;
6854 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6855 int i;
6856
6857 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006858 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006859 mutex_unlock(&fs_devices->device_list_mutex);
6860
6861 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006862 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006863 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006864 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006865 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006866 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006867 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006868 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6869 if (stats->nr_items > i)
6870 stats->values[i] =
6871 btrfs_dev_stat_read_and_reset(dev, i);
6872 else
6873 btrfs_dev_stat_reset(dev, i);
6874 }
6875 } else {
6876 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6877 if (stats->nr_items > i)
6878 stats->values[i] = btrfs_dev_stat_read(dev, i);
6879 }
6880 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6881 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6882 return 0;
6883}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006884
Anand Jain12b1c262015-08-14 18:32:59 +08006885void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006886{
6887 struct buffer_head *bh;
6888 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08006889 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006890
Anand Jain12b1c262015-08-14 18:32:59 +08006891 if (!bdev)
6892 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006893
Anand Jain12b1c262015-08-14 18:32:59 +08006894 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6895 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006896
Anand Jain12b1c262015-08-14 18:32:59 +08006897 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6898 continue;
6899
6900 disk_super = (struct btrfs_super_block *)bh->b_data;
6901
6902 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6903 set_buffer_dirty(bh);
6904 sync_dirty_buffer(bh);
6905 brelse(bh);
6906 }
6907
6908 /* Notify udev that device has changed */
6909 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6910
6911 /* Update ctime/mtime for device path for libblkid */
6912 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006913}
Miao Xie935e5cc2014-09-03 21:35:33 +08006914
6915/*
6916 * Update the size of all devices, which is used for writing out the
6917 * super blocks.
6918 */
6919void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6920{
6921 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6922 struct btrfs_device *curr, *next;
6923
6924 if (list_empty(&fs_devices->resized_devices))
6925 return;
6926
6927 mutex_lock(&fs_devices->device_list_mutex);
6928 lock_chunks(fs_info->dev_root);
6929 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6930 resized_list) {
6931 list_del_init(&curr->resized_list);
6932 curr->commit_total_bytes = curr->disk_total_bytes;
6933 }
6934 unlock_chunks(fs_info->dev_root);
6935 mutex_unlock(&fs_devices->device_list_mutex);
6936}
Miao Xiece7213c2014-09-03 21:35:34 +08006937
6938/* Must be invoked during the transaction commit */
6939void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6940 struct btrfs_transaction *transaction)
6941{
6942 struct extent_map *em;
6943 struct map_lookup *map;
6944 struct btrfs_device *dev;
6945 int i;
6946
6947 if (list_empty(&transaction->pending_chunks))
6948 return;
6949
6950 /* In order to kick the device replace finish process */
6951 lock_chunks(root);
6952 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04006953 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08006954
6955 for (i = 0; i < map->num_stripes; i++) {
6956 dev = map->stripes[i].dev;
6957 dev->commit_bytes_used = dev->bytes_used;
6958 }
6959 }
6960 unlock_chunks(root);
6961}
Anand Jain5a13f432015-03-10 06:38:31 +08006962
6963void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
6964{
6965 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6966 while (fs_devices) {
6967 fs_devices->fs_info = fs_info;
6968 fs_devices = fs_devices->seed;
6969 }
6970}
6971
6972void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
6973{
6974 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6975 while (fs_devices) {
6976 fs_devices->fs_info = NULL;
6977 fs_devices = fs_devices->seed;
6978 }
6979}
Anand Jainf190aa42015-08-14 18:33:05 +08006980
David Sterba87ad58c2015-11-27 18:49:39 +01006981static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf190aa42015-08-14 18:33:05 +08006982{
6983 struct btrfs_fs_devices *fs_devices = device->fs_devices;
6984 struct btrfs_device *new_device;
6985 struct rcu_string *name;
6986
6987 if (device->bdev)
6988 fs_devices->open_devices--;
6989
6990 if (device->writeable &&
6991 device->devid != BTRFS_DEV_REPLACE_DEVID) {
6992 list_del_init(&device->dev_alloc_list);
6993 fs_devices->rw_devices--;
6994 }
6995
6996 if (device->missing)
6997 fs_devices->missing_devices--;
6998
6999 new_device = btrfs_alloc_device(NULL, &device->devid,
7000 device->uuid);
7001 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
7002
7003 /* Safe because we are under uuid_mutex */
7004 if (device->name) {
7005 name = rcu_string_strdup(device->name->str, GFP_NOFS);
7006 BUG_ON(!name); /* -ENOMEM */
7007 rcu_assign_pointer(new_device->name, name);
7008 }
7009
7010 list_replace_rcu(&device->dev_list, &new_device->dev_list);
7011 new_device->fs_devices = device->fs_devices;
7012
7013 call_rcu(&device->rcu, free_device);
7014}