blob: 366b335946fae763e380ed884792df5efe07a2c9 [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
141 fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS);
142 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
223 dev = kzalloc(sizeof(*dev), GFP_NOFS);
224 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) {
736 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
737 if (!name) {
738 kfree(device);
739 goto error;
740 }
741 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400742 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500743
Yan Zhenge4404d62008-12-12 10:03:26 -0500744 list_add(&device->dev_list, &fs_devices->devices);
745 device->fs_devices = fs_devices;
746 fs_devices->num_devices++;
747 }
Miao Xieadbbb862014-09-03 21:35:42 +0800748 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500749 return fs_devices;
750error:
Miao Xieadbbb862014-09-03 21:35:42 +0800751 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500752 free_fs_devices(fs_devices);
753 return ERR_PTR(-ENOMEM);
754}
755
Eric Sandeen9eaed212014-08-01 18:12:35 -0500756void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400757{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500758 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800759 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500760
Chris Masondfe25022008-05-13 13:46:40 -0400761 mutex_lock(&uuid_mutex);
762again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000763 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500764 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500765 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100766 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800767 (!latest_dev ||
768 device->generation > latest_dev->generation)) {
769 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500770 }
Yan Zheng2b820322008-11-17 21:11:30 -0500771 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500772 }
Yan Zheng2b820322008-11-17 21:11:30 -0500773
Stefan Behrens8dabb742012-11-06 13:15:27 +0100774 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
775 /*
776 * In the first step, keep the device which has
777 * the correct fsid and the devid that is used
778 * for the dev_replace procedure.
779 * In the second step, the dev_replace state is
780 * read from the device tree and it is known
781 * whether the procedure is really active or
782 * not, which means whether this device is
783 * used or whether it should be removed.
784 */
785 if (step == 0 || device->is_tgtdev_for_dev_replace) {
786 continue;
787 }
788 }
Yan Zheng2b820322008-11-17 21:11:30 -0500789 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100790 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500791 device->bdev = NULL;
792 fs_devices->open_devices--;
793 }
794 if (device->writeable) {
795 list_del_init(&device->dev_alloc_list);
796 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100797 if (!device->is_tgtdev_for_dev_replace)
798 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500799 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500800 list_del_init(&device->dev_list);
801 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400802 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500803 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400804 }
Yan Zheng2b820322008-11-17 21:11:30 -0500805
806 if (fs_devices->seed) {
807 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500808 goto again;
809 }
810
Miao Xie443f24f2014-07-24 11:37:15 +0800811 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500812
Chris Masondfe25022008-05-13 13:46:40 -0400813 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400814}
Chris Masona0af4692008-05-13 16:03:06 -0400815
Xiao Guangrong1f781602011-04-20 10:09:16 +0000816static void __free_device(struct work_struct *work)
817{
818 struct btrfs_device *device;
819
820 device = container_of(work, struct btrfs_device, rcu_work);
821
822 if (device->bdev)
823 blkdev_put(device->bdev, device->mode);
824
Josef Bacik606686e2012-06-04 14:03:51 -0400825 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000826 kfree(device);
827}
828
829static void free_device(struct rcu_head *head)
830{
831 struct btrfs_device *device;
832
833 device = container_of(head, struct btrfs_device, rcu);
834
835 INIT_WORK(&device->rcu_work, __free_device);
836 schedule_work(&device->rcu_work);
837}
838
Yan Zheng2b820322008-11-17 21:11:30 -0500839static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400840{
Sasha Levin2037a092015-05-12 19:31:37 -0400841 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -0500842
Yan Zheng2b820322008-11-17 21:11:30 -0500843 if (--fs_devices->opened > 0)
844 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400845
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000846 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400847 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jainf190aa42015-08-14 18:33:05 +0800848 btrfs_close_one_device(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400849 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000850 mutex_unlock(&fs_devices->device_list_mutex);
851
Yan Zhenge4404d62008-12-12 10:03:26 -0500852 WARN_ON(fs_devices->open_devices);
853 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500854 fs_devices->opened = 0;
855 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500856
Chris Mason8a4b83c2008-03-24 15:02:07 -0400857 return 0;
858}
859
Yan Zheng2b820322008-11-17 21:11:30 -0500860int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
861{
Yan Zhenge4404d62008-12-12 10:03:26 -0500862 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500863 int ret;
864
865 mutex_lock(&uuid_mutex);
866 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500867 if (!fs_devices->opened) {
868 seed_devices = fs_devices->seed;
869 fs_devices->seed = NULL;
870 }
Yan Zheng2b820322008-11-17 21:11:30 -0500871 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500872
873 while (seed_devices) {
874 fs_devices = seed_devices;
875 seed_devices = fs_devices->seed;
876 __btrfs_close_devices(fs_devices);
877 free_fs_devices(fs_devices);
878 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000879 /*
880 * Wait for rcu kworkers under __btrfs_close_devices
881 * to finish all blkdev_puts so device is really
882 * free when umount is done.
883 */
884 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500885 return ret;
886}
887
Yan Zhenge4404d62008-12-12 10:03:26 -0500888static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
889 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400890{
Josef Bacikd5e20032011-08-04 14:52:27 +0000891 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400892 struct block_device *bdev;
893 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400894 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800895 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400896 struct buffer_head *bh;
897 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400898 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500899 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400900 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400901
Tejun Heod4d77622010-11-13 11:55:18 +0100902 flags |= FMODE_EXCL;
903
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500904 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400905 if (device->bdev)
906 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400907 if (!device->name)
908 continue;
909
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000910 /* Just open everything we can; ignore failures here */
911 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
912 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100913 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400914
915 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000916 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400917 if (devid != device->devid)
918 goto error_brelse;
919
Yan Zheng2b820322008-11-17 21:11:30 -0500920 if (memcmp(device->uuid, disk_super->dev_item.uuid,
921 BTRFS_UUID_SIZE))
922 goto error_brelse;
923
924 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +0800925 if (!latest_dev ||
926 device->generation > latest_dev->generation)
927 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -0400928
Yan Zheng2b820322008-11-17 21:11:30 -0500929 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
930 device->writeable = 0;
931 } else {
932 device->writeable = !bdev_read_only(bdev);
933 seeding = 0;
934 }
935
Josef Bacikd5e20032011-08-04 14:52:27 +0000936 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +0800937 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +0000938 device->can_discard = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +0000939
Chris Mason8a4b83c2008-03-24 15:02:07 -0400940 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400941 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500942 device->mode = flags;
943
Chris Masonc2898112009-06-10 09:51:32 -0400944 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
945 fs_devices->rotating = 1;
946
Chris Masona0af4692008-05-13 16:03:06 -0400947 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +0300948 if (device->writeable &&
949 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500950 fs_devices->rw_devices++;
951 list_add(&device->dev_alloc_list,
952 &fs_devices->alloc_list);
953 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000954 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400955 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400956
Chris Masona0af4692008-05-13 16:03:06 -0400957error_brelse:
958 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100959 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400960 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400961 }
Chris Masona0af4692008-05-13 16:03:06 -0400962 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300963 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400964 goto out;
965 }
Yan Zheng2b820322008-11-17 21:11:30 -0500966 fs_devices->seeding = seeding;
967 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +0800968 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -0500969 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400970out:
Yan Zheng2b820322008-11-17 21:11:30 -0500971 return ret;
972}
973
974int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500975 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500976{
977 int ret;
978
979 mutex_lock(&uuid_mutex);
980 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500981 fs_devices->opened++;
982 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500983 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500984 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500985 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400986 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400987 return ret;
988}
989
David Sterba6f60cbd2013-02-15 11:31:02 -0700990/*
991 * Look for a btrfs signature on a device. This may be called out of the mount path
992 * and we are not allowed to call set_blocksize during the scan. The superblock
993 * is read via pagecache
994 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500995int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400996 struct btrfs_fs_devices **fs_devices_ret)
997{
998 struct btrfs_super_block *disk_super;
999 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001000 struct page *page;
1001 void *p;
1002 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001003 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001004 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001005 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001006 u64 bytenr;
1007 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001008
David Sterba6f60cbd2013-02-15 11:31:02 -07001009 /*
1010 * we would like to check all the supers, but that would make
1011 * a btrfs mount succeed after a mkfs from a different FS.
1012 * So, we need to add a special mount option to scan for
1013 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1014 */
1015 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001016 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001017 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001018
1019 bdev = blkdev_get_by_path(path, flags, holder);
1020
1021 if (IS_ERR(bdev)) {
1022 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001023 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001024 }
1025
1026 /* make sure our super fits in the device */
1027 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
1028 goto error_bdev_put;
1029
1030 /* make sure our super fits in the page */
1031 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
1032 goto error_bdev_put;
1033
1034 /* make sure our super doesn't straddle pages on disk */
1035 index = bytenr >> PAGE_CACHE_SHIFT;
1036 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
1037 goto error_bdev_put;
1038
1039 /* pull in the page with our super */
1040 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1041 index, GFP_NOFS);
1042
1043 if (IS_ERR_OR_NULL(page))
1044 goto error_bdev_put;
1045
1046 p = kmap(page);
1047
1048 /* align our pointer to the offset of the super block */
1049 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
1050
1051 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +08001052 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -07001053 goto error_unmap;
1054
Xiao Guangronga3438322010-01-06 11:48:18 +00001055 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001056 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001057 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001058
Chris Mason8a4b83c2008-03-24 15:02:07 -04001059 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001060 if (ret > 0) {
1061 if (disk_super->label[0]) {
1062 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
1063 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
1064 printk(KERN_INFO "BTRFS: device label %s ", disk_super->label);
1065 } else {
1066 printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid);
1067 }
1068
1069 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
1070 ret = 0;
1071 }
Josef Bacik02db0842012-06-21 16:03:58 -04001072 if (!ret && fs_devices_ret)
1073 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001074
1075error_unmap:
1076 kunmap(page);
1077 page_cache_release(page);
1078
1079error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001080 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001081error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001082 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001083 return ret;
1084}
Chris Mason0b86a832008-03-24 15:01:56 -04001085
Miao Xie6d07bce2011-01-05 10:07:31 +00001086/* helper to account the used device space in the range */
1087int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1088 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001089{
1090 struct btrfs_key key;
1091 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001092 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001093 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001094 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001095 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001096 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001097 struct extent_buffer *l;
1098
Miao Xie6d07bce2011-01-05 10:07:31 +00001099 *length = 0;
1100
Stefan Behrens63a212a2012-11-05 18:29:28 +01001101 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001102 return 0;
1103
Yan Zheng2b820322008-11-17 21:11:30 -05001104 path = btrfs_alloc_path();
1105 if (!path)
1106 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001107 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001108
Chris Mason0b86a832008-03-24 15:01:56 -04001109 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001110 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001111 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001112
1113 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001114 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001115 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001116 if (ret > 0) {
1117 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1118 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001119 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001120 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001121
Chris Mason0b86a832008-03-24 15:01:56 -04001122 while (1) {
1123 l = path->nodes[0];
1124 slot = path->slots[0];
1125 if (slot >= btrfs_header_nritems(l)) {
1126 ret = btrfs_next_leaf(root, path);
1127 if (ret == 0)
1128 continue;
1129 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001130 goto out;
1131
1132 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001133 }
1134 btrfs_item_key_to_cpu(l, &key, slot);
1135
1136 if (key.objectid < device->devid)
1137 goto next;
1138
1139 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001140 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001141
David Sterba962a2982014-06-04 18:41:45 +02001142 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001143 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001144
Chris Mason0b86a832008-03-24 15:01:56 -04001145 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001146 extent_end = key.offset + btrfs_dev_extent_length(l,
1147 dev_extent);
1148 if (key.offset <= start && extent_end > end) {
1149 *length = end - start + 1;
1150 break;
1151 } else if (key.offset <= start && extent_end > start)
1152 *length += extent_end - start;
1153 else if (key.offset > start && extent_end <= end)
1154 *length += extent_end - key.offset;
1155 else if (key.offset > start && key.offset <= end) {
1156 *length += end - key.offset + 1;
1157 break;
1158 } else if (key.offset > end)
1159 break;
1160
1161next:
1162 path->slots[0]++;
1163 }
1164 ret = 0;
1165out:
1166 btrfs_free_path(path);
1167 return ret;
1168}
1169
Jeff Mahoney499f3772015-06-15 09:41:17 -04001170static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001171 struct btrfs_device *device,
1172 u64 *start, u64 len)
1173{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001174 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001175 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001176 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001177 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001178 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001179
Jeff Mahoney499f3772015-06-15 09:41:17 -04001180 if (transaction)
1181 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001182again:
1183 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001184 struct map_lookup *map;
1185 int i;
1186
Jeff Mahoney95617d62015-06-03 10:55:48 -04001187 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001188 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001189 u64 end;
1190
Josef Bacik6df9a952013-06-27 13:22:46 -04001191 if (map->stripes[i].dev != device)
1192 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001193 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001194 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001195 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001196 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001197 /*
1198 * Make sure that while processing the pinned list we do
1199 * not override our *start with a lower value, because
1200 * we can have pinned chunks that fall within this
1201 * device hole and that have lower physical addresses
1202 * than the pending chunks we processed before. If we
1203 * do not take this special care we can end up getting
1204 * 2 pending chunks that start at the same physical
1205 * device offsets because the end offset of a pinned
1206 * chunk can be equal to the start offset of some
1207 * pending chunk.
1208 */
1209 end = map->stripes[i].physical + em->orig_block_len;
1210 if (end > *start) {
1211 *start = end;
1212 ret = 1;
1213 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001214 }
1215 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001216 if (search_list != &fs_info->pinned_chunks) {
1217 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001218 goto again;
1219 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001220
1221 return ret;
1222}
1223
1224
Chris Mason0b86a832008-03-24 15:01:56 -04001225/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001226 * find_free_dev_extent_start - find free space in the specified device
1227 * @device: the device which we search the free space in
1228 * @num_bytes: the size of the free space that we need
1229 * @search_start: the position from which to begin the search
1230 * @start: store the start of the free space.
1231 * @len: the size of the free space. that we find, or the size
1232 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001233 *
Chris Mason0b86a832008-03-24 15:01:56 -04001234 * this uses a pretty simple search, the expectation is that it is
1235 * called very infrequently and that a given device has a small number
1236 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001237 *
1238 * @start is used to store the start of the free space if we find. But if we
1239 * don't find suitable free space, it will be used to store the start position
1240 * of the max free space.
1241 *
1242 * @len is used to store the size of the free space that we find.
1243 * But if we don't find suitable free space, it is used to store the size of
1244 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001245 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001246int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1247 struct btrfs_device *device, u64 num_bytes,
1248 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001249{
1250 struct btrfs_key key;
1251 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001252 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001253 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001254 u64 hole_size;
1255 u64 max_hole_start;
1256 u64 max_hole_size;
1257 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001258 u64 search_end = device->total_bytes;
1259 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001260 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001261 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001262 u64 min_search_start;
1263
1264 /*
1265 * We don't want to overwrite the superblock on the drive nor any area
1266 * used by the boot loader (grub for example), so we make sure to start
1267 * at an offset of at least 1MB.
1268 */
1269 min_search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
1270 search_start = max(search_start, min_search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001271
Josef Bacik6df9a952013-06-27 13:22:46 -04001272 path = btrfs_alloc_path();
1273 if (!path)
1274 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001275
Miao Xie7bfc8372011-01-05 10:07:26 +00001276 max_hole_start = search_start;
1277 max_hole_size = 0;
1278
Zhao Leif2ab7612015-02-16 18:52:17 +08001279again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001280 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001281 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001282 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001283 }
1284
David Sterbae4058b52015-11-27 16:31:35 +01001285 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001286 path->search_commit_root = 1;
1287 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001288
Chris Mason0b86a832008-03-24 15:01:56 -04001289 key.objectid = device->devid;
1290 key.offset = search_start;
1291 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001292
Li Zefan125ccb02011-12-08 15:07:24 +08001293 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001294 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001295 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001296 if (ret > 0) {
1297 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1298 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001299 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001300 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001301
Chris Mason0b86a832008-03-24 15:01:56 -04001302 while (1) {
1303 l = path->nodes[0];
1304 slot = path->slots[0];
1305 if (slot >= btrfs_header_nritems(l)) {
1306 ret = btrfs_next_leaf(root, path);
1307 if (ret == 0)
1308 continue;
1309 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001310 goto out;
1311
1312 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001313 }
1314 btrfs_item_key_to_cpu(l, &key, slot);
1315
1316 if (key.objectid < device->devid)
1317 goto next;
1318
1319 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001320 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001321
David Sterba962a2982014-06-04 18:41:45 +02001322 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001323 goto next;
1324
Miao Xie7bfc8372011-01-05 10:07:26 +00001325 if (key.offset > search_start) {
1326 hole_size = key.offset - search_start;
1327
Josef Bacik6df9a952013-06-27 13:22:46 -04001328 /*
1329 * Have to check before we set max_hole_start, otherwise
1330 * we could end up sending back this offset anyway.
1331 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001332 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001333 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001334 hole_size)) {
1335 if (key.offset >= search_start) {
1336 hole_size = key.offset - search_start;
1337 } else {
1338 WARN_ON_ONCE(1);
1339 hole_size = 0;
1340 }
1341 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001342
Miao Xie7bfc8372011-01-05 10:07:26 +00001343 if (hole_size > max_hole_size) {
1344 max_hole_start = search_start;
1345 max_hole_size = hole_size;
1346 }
1347
1348 /*
1349 * If this free space is greater than which we need,
1350 * it must be the max free space that we have found
1351 * until now, so max_hole_start must point to the start
1352 * of this free space and the length of this free space
1353 * is stored in max_hole_size. Thus, we return
1354 * max_hole_start and max_hole_size and go back to the
1355 * caller.
1356 */
1357 if (hole_size >= num_bytes) {
1358 ret = 0;
1359 goto out;
1360 }
1361 }
1362
Chris Mason0b86a832008-03-24 15:01:56 -04001363 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001364 extent_end = key.offset + btrfs_dev_extent_length(l,
1365 dev_extent);
1366 if (extent_end > search_start)
1367 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001368next:
1369 path->slots[0]++;
1370 cond_resched();
1371 }
Chris Mason0b86a832008-03-24 15:01:56 -04001372
liubo38c01b92011-08-02 02:39:03 +00001373 /*
1374 * At this point, search_start should be the end of
1375 * allocated dev extents, and when shrinking the device,
1376 * search_end may be smaller than search_start.
1377 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001378 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001379 hole_size = search_end - search_start;
1380
Jeff Mahoney499f3772015-06-15 09:41:17 -04001381 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001382 hole_size)) {
1383 btrfs_release_path(path);
1384 goto again;
1385 }
Chris Mason0b86a832008-03-24 15:01:56 -04001386
Zhao Leif2ab7612015-02-16 18:52:17 +08001387 if (hole_size > max_hole_size) {
1388 max_hole_start = search_start;
1389 max_hole_size = hole_size;
1390 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001391 }
1392
Miao Xie7bfc8372011-01-05 10:07:26 +00001393 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001394 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001395 ret = -ENOSPC;
1396 else
1397 ret = 0;
1398
1399out:
Yan Zheng2b820322008-11-17 21:11:30 -05001400 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001401 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001402 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001403 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001404 return ret;
1405}
1406
Jeff Mahoney499f3772015-06-15 09:41:17 -04001407int find_free_dev_extent(struct btrfs_trans_handle *trans,
1408 struct btrfs_device *device, u64 num_bytes,
1409 u64 *start, u64 *len)
1410{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001411 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001412 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001413 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001414}
1415
Christoph Hellwigb2950862008-12-02 09:54:17 -05001416static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001417 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001418 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001419{
1420 int ret;
1421 struct btrfs_path *path;
1422 struct btrfs_root *root = device->dev_root;
1423 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001424 struct btrfs_key found_key;
1425 struct extent_buffer *leaf = NULL;
1426 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001427
1428 path = btrfs_alloc_path();
1429 if (!path)
1430 return -ENOMEM;
1431
1432 key.objectid = device->devid;
1433 key.offset = start;
1434 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001435again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001436 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001437 if (ret > 0) {
1438 ret = btrfs_previous_item(root, path, key.objectid,
1439 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001440 if (ret)
1441 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001442 leaf = path->nodes[0];
1443 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1444 extent = btrfs_item_ptr(leaf, path->slots[0],
1445 struct btrfs_dev_extent);
1446 BUG_ON(found_key.offset > start || found_key.offset +
1447 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001448 key = found_key;
1449 btrfs_release_path(path);
1450 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001451 } else if (ret == 0) {
1452 leaf = path->nodes[0];
1453 extent = btrfs_item_ptr(leaf, path->slots[0],
1454 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001455 } else {
Anand Jaina4553fe2015-09-25 14:43:01 +08001456 btrfs_std_error(root->fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001457 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001458 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001459
Miao Xie2196d6e2014-09-03 21:35:41 +08001460 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1461
Chris Mason8f18cf12008-04-25 16:53:30 -04001462 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001463 if (ret) {
Anand Jaina4553fe2015-09-25 14:43:01 +08001464 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001465 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001466 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001467 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001468 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001469out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001470 btrfs_free_path(path);
1471 return ret;
1472}
1473
Eric Sandeen48a3b632013-04-25 20:41:01 +00001474static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1475 struct btrfs_device *device,
1476 u64 chunk_tree, u64 chunk_objectid,
1477 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001478{
1479 int ret;
1480 struct btrfs_path *path;
1481 struct btrfs_root *root = device->dev_root;
1482 struct btrfs_dev_extent *extent;
1483 struct extent_buffer *leaf;
1484 struct btrfs_key key;
1485
Chris Masondfe25022008-05-13 13:46:40 -04001486 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001487 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001488 path = btrfs_alloc_path();
1489 if (!path)
1490 return -ENOMEM;
1491
Chris Mason0b86a832008-03-24 15:01:56 -04001492 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001493 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001494 key.type = BTRFS_DEV_EXTENT_KEY;
1495 ret = btrfs_insert_empty_item(trans, root, path, &key,
1496 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001497 if (ret)
1498 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001499
1500 leaf = path->nodes[0];
1501 extent = btrfs_item_ptr(leaf, path->slots[0],
1502 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001503 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1504 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1505 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1506
1507 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001508 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001509
Chris Mason0b86a832008-03-24 15:01:56 -04001510 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1511 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001512out:
Chris Mason0b86a832008-03-24 15:01:56 -04001513 btrfs_free_path(path);
1514 return ret;
1515}
1516
Josef Bacik6df9a952013-06-27 13:22:46 -04001517static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001518{
Josef Bacik6df9a952013-06-27 13:22:46 -04001519 struct extent_map_tree *em_tree;
1520 struct extent_map *em;
1521 struct rb_node *n;
1522 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001523
Josef Bacik6df9a952013-06-27 13:22:46 -04001524 em_tree = &fs_info->mapping_tree.map_tree;
1525 read_lock(&em_tree->lock);
1526 n = rb_last(&em_tree->map);
1527 if (n) {
1528 em = rb_entry(n, struct extent_map, rb_node);
1529 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001530 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001531 read_unlock(&em_tree->lock);
1532
Chris Mason0b86a832008-03-24 15:01:56 -04001533 return ret;
1534}
1535
Ilya Dryomov53f10652013-08-12 14:33:01 +03001536static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1537 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001538{
1539 int ret;
1540 struct btrfs_key key;
1541 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001542 struct btrfs_path *path;
1543
Yan Zheng2b820322008-11-17 21:11:30 -05001544 path = btrfs_alloc_path();
1545 if (!path)
1546 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001547
1548 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1549 key.type = BTRFS_DEV_ITEM_KEY;
1550 key.offset = (u64)-1;
1551
Ilya Dryomov53f10652013-08-12 14:33:01 +03001552 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001553 if (ret < 0)
1554 goto error;
1555
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001556 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001557
Ilya Dryomov53f10652013-08-12 14:33:01 +03001558 ret = btrfs_previous_item(fs_info->chunk_root, path,
1559 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001560 BTRFS_DEV_ITEM_KEY);
1561 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001562 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001563 } else {
1564 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1565 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001566 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001567 }
1568 ret = 0;
1569error:
Yan Zheng2b820322008-11-17 21:11:30 -05001570 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001571 return ret;
1572}
1573
1574/*
1575 * the device information is stored in the chunk root
1576 * the btrfs_device struct should be fully filled in
1577 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001578static int btrfs_add_device(struct btrfs_trans_handle *trans,
1579 struct btrfs_root *root,
1580 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001581{
1582 int ret;
1583 struct btrfs_path *path;
1584 struct btrfs_dev_item *dev_item;
1585 struct extent_buffer *leaf;
1586 struct btrfs_key key;
1587 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001588
1589 root = root->fs_info->chunk_root;
1590
1591 path = btrfs_alloc_path();
1592 if (!path)
1593 return -ENOMEM;
1594
Chris Mason0b86a832008-03-24 15:01:56 -04001595 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1596 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001597 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001598
1599 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001600 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001601 if (ret)
1602 goto out;
1603
1604 leaf = path->nodes[0];
1605 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1606
1607 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001608 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001609 btrfs_set_device_type(leaf, dev_item, device->type);
1610 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1611 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1612 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001613 btrfs_set_device_total_bytes(leaf, dev_item,
1614 btrfs_device_get_disk_total_bytes(device));
1615 btrfs_set_device_bytes_used(leaf, dev_item,
1616 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001617 btrfs_set_device_group(leaf, dev_item, 0);
1618 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1619 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001620 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001621
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001622 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001623 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001624 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001625 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001626 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001627
Yan Zheng2b820322008-11-17 21:11:30 -05001628 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001629out:
1630 btrfs_free_path(path);
1631 return ret;
1632}
Chris Mason8f18cf12008-04-25 16:53:30 -04001633
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001634/*
1635 * Function to update ctime/mtime for a given device path.
1636 * Mainly used for ctime/mtime based probe like libblkid.
1637 */
1638static void update_dev_time(char *path_name)
1639{
1640 struct file *filp;
1641
1642 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001643 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001644 return;
1645 file_update_time(filp);
1646 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001647}
1648
Chris Masona061fc82008-05-07 11:43:44 -04001649static int btrfs_rm_dev_item(struct btrfs_root *root,
1650 struct btrfs_device *device)
1651{
1652 int ret;
1653 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001654 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001655 struct btrfs_trans_handle *trans;
1656
1657 root = root->fs_info->chunk_root;
1658
1659 path = btrfs_alloc_path();
1660 if (!path)
1661 return -ENOMEM;
1662
Yan, Zhenga22285a2010-05-16 10:48:46 -04001663 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001664 if (IS_ERR(trans)) {
1665 btrfs_free_path(path);
1666 return PTR_ERR(trans);
1667 }
Chris Masona061fc82008-05-07 11:43:44 -04001668 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1669 key.type = BTRFS_DEV_ITEM_KEY;
1670 key.offset = device->devid;
1671
1672 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1673 if (ret < 0)
1674 goto out;
1675
1676 if (ret > 0) {
1677 ret = -ENOENT;
1678 goto out;
1679 }
1680
1681 ret = btrfs_del_item(trans, root, path);
1682 if (ret)
1683 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001684out:
1685 btrfs_free_path(path);
1686 btrfs_commit_transaction(trans, root);
1687 return ret;
1688}
1689
1690int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1691{
1692 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001693 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001694 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001695 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001696 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001697 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001698 u64 all_avail;
1699 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001700 u64 num_devices;
1701 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001702 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001703 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001704 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001705
Chris Masona061fc82008-05-07 11:43:44 -04001706 mutex_lock(&uuid_mutex);
1707
Miao Xiede98ced2013-01-29 10:13:12 +00001708 do {
1709 seq = read_seqbegin(&root->fs_info->profiles_lock);
1710
1711 all_avail = root->fs_info->avail_data_alloc_bits |
1712 root->fs_info->avail_system_alloc_bits |
1713 root->fs_info->avail_metadata_alloc_bits;
1714 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001715
Stefan Behrens8dabb742012-11-06 13:15:27 +01001716 num_devices = root->fs_info->fs_devices->num_devices;
1717 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1718 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1719 WARN_ON(num_devices < 1);
1720 num_devices--;
1721 }
1722 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1723
1724 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001725 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001726 goto out;
1727 }
1728
Stefan Behrens8dabb742012-11-06 13:15:27 +01001729 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001730 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001731 goto out;
1732 }
1733
David Woodhouse53b381b2013-01-29 18:40:14 -05001734 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1735 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001736 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001737 goto out;
1738 }
1739 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1740 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001741 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001742 goto out;
1743 }
1744
Chris Masondfe25022008-05-13 13:46:40 -04001745 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001746 struct list_head *devices;
1747 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001748
Chris Masondfe25022008-05-13 13:46:40 -04001749 device = NULL;
1750 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001751 /*
1752 * It is safe to read the devices since the volume_mutex
1753 * is held.
1754 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001755 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001756 if (tmp->in_fs_metadata &&
1757 !tmp->is_tgtdev_for_dev_replace &&
1758 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001759 device = tmp;
1760 break;
1761 }
1762 }
1763 bdev = NULL;
1764 bh = NULL;
1765 disk_super = NULL;
1766 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001767 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001768 goto out;
1769 }
Chris Masondfe25022008-05-13 13:46:40 -04001770 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001771 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001772 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001773 root->fs_info->bdev_holder, 0,
1774 &bdev, &bh);
1775 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001776 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001777 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001778 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001779 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001780 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001781 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001782 if (!device) {
1783 ret = -ENOENT;
1784 goto error_brelse;
1785 }
Chris Masondfe25022008-05-13 13:46:40 -04001786 }
Yan Zheng2b820322008-11-17 21:11:30 -05001787
Stefan Behrens63a212a2012-11-05 18:29:28 +01001788 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001789 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001790 goto error_brelse;
1791 }
1792
Yan Zheng2b820322008-11-17 21:11:30 -05001793 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001794 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001795 goto error_brelse;
1796 }
1797
1798 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001799 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001800 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001801 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001802 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001803 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001804 }
Chris Masona061fc82008-05-07 11:43:44 -04001805
Carey Underwoodd7901552013-03-04 16:37:06 -06001806 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001807 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001808 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001809 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001810 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001811
Stefan Behrens63a212a2012-11-05 18:29:28 +01001812 /*
1813 * TODO: the superblock still includes this device in its num_devices
1814 * counter although write_all_supers() is not locked out. This
1815 * could give a filesystem state which requires a degraded mount.
1816 */
Chris Masona061fc82008-05-07 11:43:44 -04001817 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1818 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001819 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001820
Yan Zheng2b820322008-11-17 21:11:30 -05001821 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001822 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001823
1824 /*
1825 * the device list mutex makes sure that we don't change
1826 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001827 * the device supers. Whoever is writing all supers, should
1828 * lock the device list mutex before getting the number of
1829 * devices in the super block (super_copy). Conversely,
1830 * whoever updates the number of devices in the super block
1831 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001832 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001833
1834 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001835 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001836 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001837
Yan Zhenge4404d62008-12-12 10:03:26 -05001838 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001839 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001840
Chris Masoncd02dca2010-12-13 14:56:23 -05001841 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001842 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001843
Yan Zheng2b820322008-11-17 21:11:30 -05001844 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1845 struct btrfs_device, dev_list);
1846 if (device->bdev == root->fs_info->sb->s_bdev)
1847 root->fs_info->sb->s_bdev = next_device->bdev;
1848 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1849 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1850
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001851 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001852 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001853 /* remove sysfs entry */
Anand Jain32576042015-08-14 18:32:49 +08001854 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001855 }
Anand Jain99994cd2014-06-03 11:36:00 +08001856
Xiao Guangrong1f781602011-04-20 10:09:16 +00001857 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001858
David Sterba6c417612011-04-13 15:41:04 +02001859 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1860 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001861 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001862
Xiao Guangrong1f781602011-04-20 10:09:16 +00001863 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001864 struct btrfs_fs_devices *fs_devices;
1865 fs_devices = root->fs_info->fs_devices;
1866 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001867 if (fs_devices->seed == cur_devices) {
1868 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001869 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001870 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001871 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001872 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001873 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001874 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001875 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001876 }
1877
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001878 root->fs_info->num_tolerated_disk_barrier_failures =
1879 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1880
Yan Zheng2b820322008-11-17 21:11:30 -05001881 /*
1882 * at this point, the device is zero sized. We want to
1883 * remove it from the devices list and zero out the old super
1884 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001885 if (clear_super && disk_super) {
Anand Jain4d90d282014-04-06 12:59:07 +08001886 u64 bytenr;
1887 int i;
1888
Chris Masondfe25022008-05-13 13:46:40 -04001889 /* make sure this device isn't detected as part of
1890 * the FS anymore
1891 */
1892 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1893 set_buffer_dirty(bh);
1894 sync_dirty_buffer(bh);
Anand Jain4d90d282014-04-06 12:59:07 +08001895
1896 /* clear the mirror copies of super block on the disk
1897 * being removed, 0th copy is been taken care above and
1898 * the below would take of the rest
1899 */
1900 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1901 bytenr = btrfs_sb_offset(i);
1902 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
1903 i_size_read(bdev->bd_inode))
1904 break;
1905
1906 brelse(bh);
1907 bh = __bread(bdev, bytenr / 4096,
1908 BTRFS_SUPER_INFO_SIZE);
1909 if (!bh)
1910 continue;
1911
1912 disk_super = (struct btrfs_super_block *)bh->b_data;
1913
1914 if (btrfs_super_bytenr(disk_super) != bytenr ||
1915 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
1916 continue;
1917 }
1918 memset(&disk_super->magic, 0,
1919 sizeof(disk_super->magic));
1920 set_buffer_dirty(bh);
1921 sync_dirty_buffer(bh);
1922 }
Chris Masondfe25022008-05-13 13:46:40 -04001923 }
Chris Masona061fc82008-05-07 11:43:44 -04001924
Chris Masona061fc82008-05-07 11:43:44 -04001925 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001926
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001927 if (bdev) {
1928 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001929 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001930
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001931 /* Update ctime/mtime for device path for libblkid */
1932 update_dev_time(device_path);
1933 }
1934
Chris Masona061fc82008-05-07 11:43:44 -04001935error_brelse:
1936 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001937 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001938 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001939out:
1940 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001941 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001942error_undo:
1943 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001944 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001945 list_add(&device->dev_alloc_list,
1946 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001947 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001948 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001949 }
1950 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001951}
1952
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001953void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1954 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001955{
Anand Jaind51908c2014-08-13 14:24:19 +08001956 struct btrfs_fs_devices *fs_devices;
1957
Stefan Behrense93c89c2012-11-05 17:33:06 +01001958 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001959
Anand Jain25e8e912014-08-20 10:56:56 +08001960 /*
1961 * in case of fs with no seed, srcdev->fs_devices will point
1962 * to fs_devices of fs_info. However when the dev being replaced is
1963 * a seed dev it will point to the seed's local fs_devices. In short
1964 * srcdev will have its correct fs_devices in both the cases.
1965 */
1966 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001967
Stefan Behrense93c89c2012-11-05 17:33:06 +01001968 list_del_rcu(&srcdev->dev_list);
1969 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001970 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001971 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001972 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001973
Miao Xie82372bc2014-09-03 21:35:44 +08001974 if (srcdev->writeable) {
1975 fs_devices->rw_devices--;
1976 /* zero out the old super if it is writable */
David Sterba31388ab2015-11-19 11:35:17 +01001977 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
Ilya Dryomov13572722013-10-02 20:41:01 +03001978 }
1979
Miao Xie82372bc2014-09-03 21:35:44 +08001980 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08001981 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001982}
1983
1984void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1985 struct btrfs_device *srcdev)
1986{
1987 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001988
Stefan Behrense93c89c2012-11-05 17:33:06 +01001989 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001990
1991 /*
1992 * unless fs_devices is seed fs, num_devices shouldn't go
1993 * zero
1994 */
1995 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1996
1997 /* if this is no devs we rather delete the fs_devices */
1998 if (!fs_devices->num_devices) {
1999 struct btrfs_fs_devices *tmp_fs_devices;
2000
2001 tmp_fs_devices = fs_info->fs_devices;
2002 while (tmp_fs_devices) {
2003 if (tmp_fs_devices->seed == fs_devices) {
2004 tmp_fs_devices->seed = fs_devices->seed;
2005 break;
2006 }
2007 tmp_fs_devices = tmp_fs_devices->seed;
2008 }
2009 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002010 __btrfs_close_devices(fs_devices);
2011 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002012 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002013}
2014
2015void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2016 struct btrfs_device *tgtdev)
2017{
2018 struct btrfs_device *next_device;
2019
Miao Xie67a2c452014-09-03 21:35:43 +08002020 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002021 WARN_ON(!tgtdev);
2022 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002023
Anand Jain32576042015-08-14 18:32:49 +08002024 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002025
Stefan Behrense93c89c2012-11-05 17:33:06 +01002026 if (tgtdev->bdev) {
David Sterba31388ab2015-11-19 11:35:17 +01002027 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002028 fs_info->fs_devices->open_devices--;
2029 }
2030 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002031
2032 next_device = list_entry(fs_info->fs_devices->devices.next,
2033 struct btrfs_device, dev_list);
2034 if (tgtdev->bdev == fs_info->sb->s_bdev)
2035 fs_info->sb->s_bdev = next_device->bdev;
2036 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
2037 fs_info->fs_devices->latest_bdev = next_device->bdev;
2038 list_del_rcu(&tgtdev->dev_list);
2039
2040 call_rcu(&tgtdev->rcu, free_device);
2041
2042 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002043 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002044}
2045
Eric Sandeen48a3b632013-04-25 20:41:01 +00002046static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
2047 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002048{
2049 int ret = 0;
2050 struct btrfs_super_block *disk_super;
2051 u64 devid;
2052 u8 *dev_uuid;
2053 struct block_device *bdev;
2054 struct buffer_head *bh;
2055
2056 *device = NULL;
2057 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2058 root->fs_info->bdev_holder, 0, &bdev, &bh);
2059 if (ret)
2060 return ret;
2061 disk_super = (struct btrfs_super_block *)bh->b_data;
2062 devid = btrfs_stack_device_id(&disk_super->dev_item);
2063 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002064 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002065 disk_super->fsid);
2066 brelse(bh);
2067 if (!*device)
2068 ret = -ENOENT;
2069 blkdev_put(bdev, FMODE_READ);
2070 return ret;
2071}
2072
2073int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2074 char *device_path,
2075 struct btrfs_device **device)
2076{
2077 *device = NULL;
2078 if (strcmp(device_path, "missing") == 0) {
2079 struct list_head *devices;
2080 struct btrfs_device *tmp;
2081
2082 devices = &root->fs_info->fs_devices->devices;
2083 /*
2084 * It is safe to read the devices since the volume_mutex
2085 * is held by the caller.
2086 */
2087 list_for_each_entry(tmp, devices, dev_list) {
2088 if (tmp->in_fs_metadata && !tmp->bdev) {
2089 *device = tmp;
2090 break;
2091 }
2092 }
2093
Anand Jaind74a6252015-08-14 18:32:56 +08002094 if (!*device)
2095 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002096
2097 return 0;
2098 } else {
2099 return btrfs_find_device_by_path(root, device_path, device);
2100 }
2101}
2102
Yan Zheng2b820322008-11-17 21:11:30 -05002103/*
2104 * does all the dirty work required for changing file system's UUID.
2105 */
Li Zefan125ccb02011-12-08 15:07:24 +08002106static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05002107{
2108 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2109 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002110 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02002111 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002112 struct btrfs_device *device;
2113 u64 super_flags;
2114
2115 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002116 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002117 return -EINVAL;
2118
Ilya Dryomov2208a372013-08-12 14:33:03 +03002119 seed_devices = __alloc_fs_devices();
2120 if (IS_ERR(seed_devices))
2121 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002122
Yan Zhenge4404d62008-12-12 10:03:26 -05002123 old_devices = clone_fs_devices(fs_devices);
2124 if (IS_ERR(old_devices)) {
2125 kfree(seed_devices);
2126 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002127 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002128
Yan Zheng2b820322008-11-17 21:11:30 -05002129 list_add(&old_devices->list, &fs_uuids);
2130
Yan Zhenge4404d62008-12-12 10:03:26 -05002131 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2132 seed_devices->opened = 1;
2133 INIT_LIST_HEAD(&seed_devices->devices);
2134 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002135 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002136
2137 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002138 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2139 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002140 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002141 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002142
2143 lock_chunks(root);
2144 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2145 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05002146
Yan Zheng2b820322008-11-17 21:11:30 -05002147 fs_devices->seeding = 0;
2148 fs_devices->num_devices = 0;
2149 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002150 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002151 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002152 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002153
2154 generate_random_uuid(fs_devices->fsid);
2155 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2156 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002157 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2158
Yan Zheng2b820322008-11-17 21:11:30 -05002159 super_flags = btrfs_super_flags(disk_super) &
2160 ~BTRFS_SUPER_FLAG_SEEDING;
2161 btrfs_set_super_flags(disk_super, super_flags);
2162
2163 return 0;
2164}
2165
2166/*
2167 * strore the expected generation for seed devices in device items.
2168 */
2169static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2170 struct btrfs_root *root)
2171{
2172 struct btrfs_path *path;
2173 struct extent_buffer *leaf;
2174 struct btrfs_dev_item *dev_item;
2175 struct btrfs_device *device;
2176 struct btrfs_key key;
2177 u8 fs_uuid[BTRFS_UUID_SIZE];
2178 u8 dev_uuid[BTRFS_UUID_SIZE];
2179 u64 devid;
2180 int ret;
2181
2182 path = btrfs_alloc_path();
2183 if (!path)
2184 return -ENOMEM;
2185
2186 root = root->fs_info->chunk_root;
2187 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2188 key.offset = 0;
2189 key.type = BTRFS_DEV_ITEM_KEY;
2190
2191 while (1) {
2192 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2193 if (ret < 0)
2194 goto error;
2195
2196 leaf = path->nodes[0];
2197next_slot:
2198 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2199 ret = btrfs_next_leaf(root, path);
2200 if (ret > 0)
2201 break;
2202 if (ret < 0)
2203 goto error;
2204 leaf = path->nodes[0];
2205 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002206 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002207 continue;
2208 }
2209
2210 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2211 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2212 key.type != BTRFS_DEV_ITEM_KEY)
2213 break;
2214
2215 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2216 struct btrfs_dev_item);
2217 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002218 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002219 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002220 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002221 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002222 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2223 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002224 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002225
2226 if (device->fs_devices->seeding) {
2227 btrfs_set_device_generation(leaf, dev_item,
2228 device->generation);
2229 btrfs_mark_buffer_dirty(leaf);
2230 }
2231
2232 path->slots[0]++;
2233 goto next_slot;
2234 }
2235 ret = 0;
2236error:
2237 btrfs_free_path(path);
2238 return ret;
2239}
2240
Chris Mason788f20e2008-04-28 15:29:42 -04002241int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2242{
Josef Bacikd5e20032011-08-04 14:52:27 +00002243 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002244 struct btrfs_trans_handle *trans;
2245 struct btrfs_device *device;
2246 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002247 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002248 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002249 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002250 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002251 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002252 int ret = 0;
2253
Yan Zheng2b820322008-11-17 21:11:30 -05002254 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002255 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002256
Li Zefana5d16332011-12-07 20:08:40 -05002257 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002258 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002259 if (IS_ERR(bdev))
2260 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002261
Yan Zheng2b820322008-11-17 21:11:30 -05002262 if (root->fs_info->fs_devices->seeding) {
2263 seeding_dev = 1;
2264 down_write(&sb->s_umount);
2265 mutex_lock(&uuid_mutex);
2266 }
2267
Chris Mason8c8bee12008-09-29 11:19:10 -04002268 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002269
Chris Mason788f20e2008-04-28 15:29:42 -04002270 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002271
2272 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002273 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002274 if (device->bdev == bdev) {
2275 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002276 mutex_unlock(
2277 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002278 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002279 }
2280 }
Liu Bod25628b2012-11-14 14:35:30 +00002281 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002282
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002283 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2284 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002285 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002286 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002287 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002288 }
2289
Josef Bacik606686e2012-06-04 14:03:51 -04002290 name = rcu_string_strdup(device_path, GFP_NOFS);
2291 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002292 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002293 ret = -ENOMEM;
2294 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002295 }
Josef Bacik606686e2012-06-04 14:03:51 -04002296 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002297
Yan, Zhenga22285a2010-05-16 10:48:46 -04002298 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002299 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002300 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002301 kfree(device);
2302 ret = PTR_ERR(trans);
2303 goto error;
2304 }
2305
Josef Bacikd5e20032011-08-04 14:52:27 +00002306 q = bdev_get_queue(bdev);
2307 if (blk_queue_discard(q))
2308 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002309 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002310 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002311 device->io_width = root->sectorsize;
2312 device->io_align = root->sectorsize;
2313 device->sector_size = root->sectorsize;
2314 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002315 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002316 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002317 device->dev_root = root->fs_info->dev_root;
2318 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002319 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002320 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002321 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002322 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002323 set_blocksize(device->bdev, 4096);
2324
Yan Zheng2b820322008-11-17 21:11:30 -05002325 if (seeding_dev) {
2326 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002327 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002328 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002329 }
2330
2331 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002332
Chris Masone5e9a522009-06-10 15:17:02 -04002333 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002334 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002335 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002336 list_add(&device->dev_alloc_list,
2337 &root->fs_info->fs_devices->alloc_list);
2338 root->fs_info->fs_devices->num_devices++;
2339 root->fs_info->fs_devices->open_devices++;
2340 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002341 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002342 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2343
Josef Bacik2bf64752011-09-26 17:12:22 -04002344 spin_lock(&root->fs_info->free_chunk_lock);
2345 root->fs_info->free_chunk_space += device->total_bytes;
2346 spin_unlock(&root->fs_info->free_chunk_lock);
2347
Chris Masonc2898112009-06-10 09:51:32 -04002348 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2349 root->fs_info->fs_devices->rotating = 1;
2350
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002351 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002352 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002353 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002354
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002355 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002356 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002357 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002358
2359 /* add sysfs device entry */
Anand Jaine3bd6972015-08-14 18:32:48 +08002360 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002361
Miao Xie2196d6e2014-09-03 21:35:41 +08002362 /*
2363 * we've got more storage, clear any full flags on the space
2364 * infos
2365 */
2366 btrfs_clear_space_info_full(root->fs_info);
2367
2368 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002369 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002370
Yan Zheng2b820322008-11-17 21:11:30 -05002371 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002372 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002373 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002374 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002375 if (ret) {
2376 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002377 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002378 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002379 }
2380
2381 ret = btrfs_add_device(trans, root, device);
2382 if (ret) {
2383 btrfs_abort_transaction(trans, root, ret);
2384 goto error_trans;
2385 }
2386
2387 if (seeding_dev) {
2388 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2389
Yan Zheng2b820322008-11-17 21:11:30 -05002390 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002391 if (ret) {
2392 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002393 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002394 }
Anand Jainb2373f22014-06-03 11:36:03 +08002395
2396 /* Sprouting would change fsid of the mounted root,
2397 * so rename the fsid on the sysfs
2398 */
2399 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2400 root->fs_info->fsid);
Anand Jainc1b7e472015-08-14 18:32:50 +08002401 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
Anand Jain2e7910d2015-03-10 06:38:29 +08002402 fsid_buf))
David Sterbaf14d1042015-10-08 11:37:06 +02002403 btrfs_warn(root->fs_info,
2404 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002405 }
2406
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002407 root->fs_info->num_tolerated_disk_barrier_failures =
2408 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002409 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002410
2411 if (seeding_dev) {
2412 mutex_unlock(&uuid_mutex);
2413 up_write(&sb->s_umount);
2414
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002415 if (ret) /* transaction commit */
2416 return ret;
2417
Yan Zheng2b820322008-11-17 21:11:30 -05002418 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002419 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002420 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002421 "Failed to relocate sys chunks after "
2422 "device initialization. This can be fixed "
2423 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002424 trans = btrfs_attach_transaction(root);
2425 if (IS_ERR(trans)) {
2426 if (PTR_ERR(trans) == -ENOENT)
2427 return 0;
2428 return PTR_ERR(trans);
2429 }
2430 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002431 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002432
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002433 /* Update ctime/mtime for libblkid */
2434 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002435 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002436
2437error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002438 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002439 rcu_string_free(device->name);
Anand Jain32576042015-08-14 18:32:49 +08002440 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002441 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002442error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002443 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002444 if (seeding_dev) {
2445 mutex_unlock(&uuid_mutex);
2446 up_write(&sb->s_umount);
2447 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002448 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002449}
2450
Stefan Behrense93c89c2012-11-05 17:33:06 +01002451int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002452 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002453 struct btrfs_device **device_out)
2454{
2455 struct request_queue *q;
2456 struct btrfs_device *device;
2457 struct block_device *bdev;
2458 struct btrfs_fs_info *fs_info = root->fs_info;
2459 struct list_head *devices;
2460 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002461 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002462 int ret = 0;
2463
2464 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002465 if (fs_info->fs_devices->seeding) {
2466 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002467 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002468 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002469
2470 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2471 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002472 if (IS_ERR(bdev)) {
2473 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002474 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002475 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002476
2477 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2478
2479 devices = &fs_info->fs_devices->devices;
2480 list_for_each_entry(device, devices, dev_list) {
2481 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002482 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002483 ret = -EEXIST;
2484 goto error;
2485 }
2486 }
2487
Miao Xie1c433662014-09-03 21:35:32 +08002488
Miao Xie7cc8e582014-09-03 21:35:38 +08002489 if (i_size_read(bdev->bd_inode) <
2490 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002491 btrfs_err(fs_info, "target device is smaller than source device!");
2492 ret = -EINVAL;
2493 goto error;
2494 }
2495
2496
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002497 device = btrfs_alloc_device(NULL, &devid, NULL);
2498 if (IS_ERR(device)) {
2499 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002500 goto error;
2501 }
2502
2503 name = rcu_string_strdup(device_path, GFP_NOFS);
2504 if (!name) {
2505 kfree(device);
2506 ret = -ENOMEM;
2507 goto error;
2508 }
2509 rcu_assign_pointer(device->name, name);
2510
2511 q = bdev_get_queue(bdev);
2512 if (blk_queue_discard(q))
2513 device->can_discard = 1;
2514 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2515 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002516 device->generation = 0;
2517 device->io_width = root->sectorsize;
2518 device->io_align = root->sectorsize;
2519 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002520 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2521 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2522 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002523 ASSERT(list_empty(&srcdev->resized_list));
2524 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002525 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002526 device->dev_root = fs_info->dev_root;
2527 device->bdev = bdev;
2528 device->in_fs_metadata = 1;
2529 device->is_tgtdev_for_dev_replace = 1;
2530 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002531 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002532 set_blocksize(device->bdev, 4096);
2533 device->fs_devices = fs_info->fs_devices;
2534 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2535 fs_info->fs_devices->num_devices++;
2536 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002537 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2538
2539 *device_out = device;
2540 return ret;
2541
2542error:
2543 blkdev_put(bdev, FMODE_EXCL);
2544 return ret;
2545}
2546
2547void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2548 struct btrfs_device *tgtdev)
2549{
2550 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2551 tgtdev->io_width = fs_info->dev_root->sectorsize;
2552 tgtdev->io_align = fs_info->dev_root->sectorsize;
2553 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2554 tgtdev->dev_root = fs_info->dev_root;
2555 tgtdev->in_fs_metadata = 1;
2556}
2557
Chris Masond3977122009-01-05 21:25:51 -05002558static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2559 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002560{
2561 int ret;
2562 struct btrfs_path *path;
2563 struct btrfs_root *root;
2564 struct btrfs_dev_item *dev_item;
2565 struct extent_buffer *leaf;
2566 struct btrfs_key key;
2567
2568 root = device->dev_root->fs_info->chunk_root;
2569
2570 path = btrfs_alloc_path();
2571 if (!path)
2572 return -ENOMEM;
2573
2574 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2575 key.type = BTRFS_DEV_ITEM_KEY;
2576 key.offset = device->devid;
2577
2578 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2579 if (ret < 0)
2580 goto out;
2581
2582 if (ret > 0) {
2583 ret = -ENOENT;
2584 goto out;
2585 }
2586
2587 leaf = path->nodes[0];
2588 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2589
2590 btrfs_set_device_id(leaf, dev_item, device->devid);
2591 btrfs_set_device_type(leaf, dev_item, device->type);
2592 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2593 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2594 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002595 btrfs_set_device_total_bytes(leaf, dev_item,
2596 btrfs_device_get_disk_total_bytes(device));
2597 btrfs_set_device_bytes_used(leaf, dev_item,
2598 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002599 btrfs_mark_buffer_dirty(leaf);
2600
2601out:
2602 btrfs_free_path(path);
2603 return ret;
2604}
2605
Miao Xie2196d6e2014-09-03 21:35:41 +08002606int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002607 struct btrfs_device *device, u64 new_size)
2608{
2609 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002610 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002611 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002612 u64 old_total;
2613 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002614
Yan Zheng2b820322008-11-17 21:11:30 -05002615 if (!device->writeable)
2616 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002617
2618 lock_chunks(device->dev_root);
2619 old_total = btrfs_super_total_bytes(super_copy);
2620 diff = new_size - device->total_bytes;
2621
Stefan Behrens63a212a2012-11-05 18:29:28 +01002622 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002623 device->is_tgtdev_for_dev_replace) {
2624 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002625 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002626 }
Yan Zheng2b820322008-11-17 21:11:30 -05002627
Miao Xie935e5cc2014-09-03 21:35:33 +08002628 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002629
2630 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002631 device->fs_devices->total_rw_bytes += diff;
2632
Miao Xie7cc8e582014-09-03 21:35:38 +08002633 btrfs_device_set_total_bytes(device, new_size);
2634 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002635 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002636 if (list_empty(&device->resized_list))
2637 list_add_tail(&device->resized_list,
2638 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002639 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002640
Chris Mason8f18cf12008-04-25 16:53:30 -04002641 return btrfs_update_device(trans, device);
2642}
2643
2644static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Zhao Leia688a042015-02-09 20:31:44 +08002645 struct btrfs_root *root, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002646 u64 chunk_offset)
2647{
2648 int ret;
2649 struct btrfs_path *path;
2650 struct btrfs_key key;
2651
2652 root = root->fs_info->chunk_root;
2653 path = btrfs_alloc_path();
2654 if (!path)
2655 return -ENOMEM;
2656
2657 key.objectid = chunk_objectid;
2658 key.offset = chunk_offset;
2659 key.type = BTRFS_CHUNK_ITEM_KEY;
2660
2661 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002662 if (ret < 0)
2663 goto out;
2664 else if (ret > 0) { /* Logic error or corruption */
Anand Jaina4553fe2015-09-25 14:43:01 +08002665 btrfs_std_error(root->fs_info, -ENOENT,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002666 "Failed lookup while freeing chunk.");
2667 ret = -ENOENT;
2668 goto out;
2669 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002670
2671 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002672 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002673 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002674 "Failed to delete chunk item.");
2675out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002676 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002677 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002678}
2679
Christoph Hellwigb2950862008-12-02 09:54:17 -05002680static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002681 chunk_offset)
2682{
David Sterba6c417612011-04-13 15:41:04 +02002683 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002684 struct btrfs_disk_key *disk_key;
2685 struct btrfs_chunk *chunk;
2686 u8 *ptr;
2687 int ret = 0;
2688 u32 num_stripes;
2689 u32 array_size;
2690 u32 len = 0;
2691 u32 cur;
2692 struct btrfs_key key;
2693
Miao Xie2196d6e2014-09-03 21:35:41 +08002694 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002695 array_size = btrfs_super_sys_array_size(super_copy);
2696
2697 ptr = super_copy->sys_chunk_array;
2698 cur = 0;
2699
2700 while (cur < array_size) {
2701 disk_key = (struct btrfs_disk_key *)ptr;
2702 btrfs_disk_key_to_cpu(&key, disk_key);
2703
2704 len = sizeof(*disk_key);
2705
2706 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2707 chunk = (struct btrfs_chunk *)(ptr + len);
2708 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2709 len += btrfs_chunk_item_size(num_stripes);
2710 } else {
2711 ret = -EIO;
2712 break;
2713 }
2714 if (key.objectid == chunk_objectid &&
2715 key.offset == chunk_offset) {
2716 memmove(ptr, ptr + len, array_size - (cur + len));
2717 array_size -= len;
2718 btrfs_set_super_sys_array_size(super_copy, array_size);
2719 } else {
2720 ptr += len;
2721 cur += len;
2722 }
2723 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002724 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002725 return ret;
2726}
2727
Josef Bacik47ab2a62014-09-18 11:20:02 -04002728int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2729 struct btrfs_root *root, u64 chunk_offset)
2730{
2731 struct extent_map_tree *em_tree;
2732 struct extent_map *em;
2733 struct btrfs_root *extent_root = root->fs_info->extent_root;
2734 struct map_lookup *map;
2735 u64 dev_extent_len = 0;
2736 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002737 int i, ret = 0;
2738
2739 /* Just in case */
2740 root = root->fs_info->chunk_root;
2741 em_tree = &root->fs_info->mapping_tree.map_tree;
2742
2743 read_lock(&em_tree->lock);
2744 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2745 read_unlock(&em_tree->lock);
2746
2747 if (!em || em->start > chunk_offset ||
2748 em->start + em->len < chunk_offset) {
2749 /*
2750 * This is a logic error, but we don't want to just rely on the
2751 * user having built with ASSERT enabled, so if ASSERT doens't
2752 * do anything we still error out.
2753 */
2754 ASSERT(0);
2755 if (em)
2756 free_extent_map(em);
2757 return -EINVAL;
2758 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002759 map = em->map_lookup;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002760 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01002761 check_system_chunk(trans, extent_root, map->type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002762 unlock_chunks(root->fs_info->chunk_root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002763
2764 for (i = 0; i < map->num_stripes; i++) {
2765 struct btrfs_device *device = map->stripes[i].dev;
2766 ret = btrfs_free_dev_extent(trans, device,
2767 map->stripes[i].physical,
2768 &dev_extent_len);
2769 if (ret) {
2770 btrfs_abort_transaction(trans, root, ret);
2771 goto out;
2772 }
2773
2774 if (device->bytes_used > 0) {
2775 lock_chunks(root);
2776 btrfs_device_set_bytes_used(device,
2777 device->bytes_used - dev_extent_len);
2778 spin_lock(&root->fs_info->free_chunk_lock);
2779 root->fs_info->free_chunk_space += dev_extent_len;
2780 spin_unlock(&root->fs_info->free_chunk_lock);
2781 btrfs_clear_space_info_full(root->fs_info);
2782 unlock_chunks(root);
2783 }
2784
2785 if (map->stripes[i].dev) {
2786 ret = btrfs_update_device(trans, map->stripes[i].dev);
2787 if (ret) {
2788 btrfs_abort_transaction(trans, root, ret);
2789 goto out;
2790 }
2791 }
2792 }
Zhao Leia688a042015-02-09 20:31:44 +08002793 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002794 if (ret) {
2795 btrfs_abort_transaction(trans, root, ret);
2796 goto out;
2797 }
2798
2799 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2800
2801 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2802 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2803 if (ret) {
2804 btrfs_abort_transaction(trans, root, ret);
2805 goto out;
2806 }
2807 }
2808
Filipe Manana04216822014-11-27 21:14:15 +00002809 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002810 if (ret) {
2811 btrfs_abort_transaction(trans, extent_root, ret);
2812 goto out;
2813 }
2814
Josef Bacik47ab2a62014-09-18 11:20:02 -04002815out:
2816 /* once for us */
2817 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002818 return ret;
2819}
2820
Zhaoleidc2ee4e2015-08-05 18:00:04 +08002821static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002822{
Chris Mason8f18cf12008-04-25 16:53:30 -04002823 struct btrfs_root *extent_root;
2824 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002825 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002826
2827 root = root->fs_info->chunk_root;
2828 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002829
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002830 /*
2831 * Prevent races with automatic removal of unused block groups.
2832 * After we relocate and before we remove the chunk with offset
2833 * chunk_offset, automatic removal of the block group can kick in,
2834 * resulting in a failure when calling btrfs_remove_chunk() below.
2835 *
2836 * Make sure to acquire this mutex before doing a tree search (dev
2837 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2838 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2839 * we release the path used to search the chunk/dev tree and before
2840 * the current task acquires this mutex and calls us.
2841 */
2842 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2843
Josef Bacikba1bf482009-09-11 16:11:19 -04002844 ret = btrfs_can_relocate(extent_root, chunk_offset);
2845 if (ret)
2846 return -ENOSPC;
2847
Chris Mason8f18cf12008-04-25 16:53:30 -04002848 /* step one, relocate all the extents inside this chunk */
Zhaolei55e3a602015-08-05 16:43:30 +08002849 btrfs_scrub_pause(root);
Zheng Yan1a40e232008-09-26 10:09:34 -04002850 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Zhaolei55e3a602015-08-05 16:43:30 +08002851 btrfs_scrub_continue(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002852 if (ret)
2853 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002854
Filipe Manana7fd01182015-11-13 23:57:17 +00002855 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2856 chunk_offset);
Liu Bo0f788c52013-03-04 16:25:40 +00002857 if (IS_ERR(trans)) {
2858 ret = PTR_ERR(trans);
Anand Jaina4553fe2015-09-25 14:43:01 +08002859 btrfs_std_error(root->fs_info, ret, NULL);
Liu Bo0f788c52013-03-04 16:25:40 +00002860 return ret;
2861 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002862
2863 /*
2864 * step two, delete the device extents and the
2865 * chunk tree entries
2866 */
Josef Bacik47ab2a62014-09-18 11:20:02 -04002867 ret = btrfs_remove_chunk(trans, root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002868 btrfs_end_transaction(trans, root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002869 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002870}
2871
Yan Zheng2b820322008-11-17 21:11:30 -05002872static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2873{
2874 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2875 struct btrfs_path *path;
2876 struct extent_buffer *leaf;
2877 struct btrfs_chunk *chunk;
2878 struct btrfs_key key;
2879 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002880 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002881 bool retried = false;
2882 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002883 int ret;
2884
2885 path = btrfs_alloc_path();
2886 if (!path)
2887 return -ENOMEM;
2888
Josef Bacikba1bf482009-09-11 16:11:19 -04002889again:
Yan Zheng2b820322008-11-17 21:11:30 -05002890 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2891 key.offset = (u64)-1;
2892 key.type = BTRFS_CHUNK_ITEM_KEY;
2893
2894 while (1) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002895 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002896 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002897 if (ret < 0) {
2898 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002899 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002900 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002901 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002902
2903 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2904 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002905 if (ret)
2906 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002907 if (ret < 0)
2908 goto error;
2909 if (ret > 0)
2910 break;
2911
2912 leaf = path->nodes[0];
2913 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2914
2915 chunk = btrfs_item_ptr(leaf, path->slots[0],
2916 struct btrfs_chunk);
2917 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002918 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002919
2920 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Zhao Leia688a042015-02-09 20:31:44 +08002921 ret = btrfs_relocate_chunk(chunk_root,
Yan Zheng2b820322008-11-17 21:11:30 -05002922 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002923 if (ret == -ENOSPC)
2924 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302925 else
2926 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002927 }
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002928 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002929
2930 if (found_key.offset == 0)
2931 break;
2932 key.offset = found_key.offset - 1;
2933 }
2934 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002935 if (failed && !retried) {
2936 failed = 0;
2937 retried = true;
2938 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302939 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002940 ret = -ENOSPC;
2941 }
Yan Zheng2b820322008-11-17 21:11:30 -05002942error:
2943 btrfs_free_path(path);
2944 return ret;
2945}
2946
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002947static int insert_balance_item(struct btrfs_root *root,
2948 struct btrfs_balance_control *bctl)
2949{
2950 struct btrfs_trans_handle *trans;
2951 struct btrfs_balance_item *item;
2952 struct btrfs_disk_balance_args disk_bargs;
2953 struct btrfs_path *path;
2954 struct extent_buffer *leaf;
2955 struct btrfs_key key;
2956 int ret, err;
2957
2958 path = btrfs_alloc_path();
2959 if (!path)
2960 return -ENOMEM;
2961
2962 trans = btrfs_start_transaction(root, 0);
2963 if (IS_ERR(trans)) {
2964 btrfs_free_path(path);
2965 return PTR_ERR(trans);
2966 }
2967
2968 key.objectid = BTRFS_BALANCE_OBJECTID;
2969 key.type = BTRFS_BALANCE_ITEM_KEY;
2970 key.offset = 0;
2971
2972 ret = btrfs_insert_empty_item(trans, root, path, &key,
2973 sizeof(*item));
2974 if (ret)
2975 goto out;
2976
2977 leaf = path->nodes[0];
2978 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2979
2980 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2981
2982 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2983 btrfs_set_balance_data(leaf, item, &disk_bargs);
2984 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2985 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2986 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2987 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2988
2989 btrfs_set_balance_flags(leaf, item, bctl->flags);
2990
2991 btrfs_mark_buffer_dirty(leaf);
2992out:
2993 btrfs_free_path(path);
2994 err = btrfs_commit_transaction(trans, root);
2995 if (err && !ret)
2996 ret = err;
2997 return ret;
2998}
2999
3000static int del_balance_item(struct btrfs_root *root)
3001{
3002 struct btrfs_trans_handle *trans;
3003 struct btrfs_path *path;
3004 struct btrfs_key key;
3005 int ret, err;
3006
3007 path = btrfs_alloc_path();
3008 if (!path)
3009 return -ENOMEM;
3010
3011 trans = btrfs_start_transaction(root, 0);
3012 if (IS_ERR(trans)) {
3013 btrfs_free_path(path);
3014 return PTR_ERR(trans);
3015 }
3016
3017 key.objectid = BTRFS_BALANCE_OBJECTID;
3018 key.type = BTRFS_BALANCE_ITEM_KEY;
3019 key.offset = 0;
3020
3021 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3022 if (ret < 0)
3023 goto out;
3024 if (ret > 0) {
3025 ret = -ENOENT;
3026 goto out;
3027 }
3028
3029 ret = btrfs_del_item(trans, root, path);
3030out:
3031 btrfs_free_path(path);
3032 err = btrfs_commit_transaction(trans, root);
3033 if (err && !ret)
3034 ret = err;
3035 return ret;
3036}
3037
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003038/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003039 * This is a heuristic used to reduce the number of chunks balanced on
3040 * resume after balance was interrupted.
3041 */
3042static void update_balance_args(struct btrfs_balance_control *bctl)
3043{
3044 /*
3045 * Turn on soft mode for chunk types that were being converted.
3046 */
3047 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3048 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3049 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3050 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3051 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3052 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3053
3054 /*
3055 * Turn on usage filter if is not already used. The idea is
3056 * that chunks that we have already balanced should be
3057 * reasonably full. Don't do it for chunks that are being
3058 * converted - that will keep us from relocating unconverted
3059 * (albeit full) chunks.
3060 */
3061 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003062 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003063 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3064 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3065 bctl->data.usage = 90;
3066 }
3067 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003068 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003069 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3070 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3071 bctl->sys.usage = 90;
3072 }
3073 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003074 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003075 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3076 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3077 bctl->meta.usage = 90;
3078 }
3079}
3080
3081/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003082 * Should be called with both balance and volume mutexes held to
3083 * serialize other volume operations (add_dev/rm_dev/resize) with
3084 * restriper. Same goes for unset_balance_control.
3085 */
3086static void set_balance_control(struct btrfs_balance_control *bctl)
3087{
3088 struct btrfs_fs_info *fs_info = bctl->fs_info;
3089
3090 BUG_ON(fs_info->balance_ctl);
3091
3092 spin_lock(&fs_info->balance_lock);
3093 fs_info->balance_ctl = bctl;
3094 spin_unlock(&fs_info->balance_lock);
3095}
3096
3097static void unset_balance_control(struct btrfs_fs_info *fs_info)
3098{
3099 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3100
3101 BUG_ON(!fs_info->balance_ctl);
3102
3103 spin_lock(&fs_info->balance_lock);
3104 fs_info->balance_ctl = NULL;
3105 spin_unlock(&fs_info->balance_lock);
3106
3107 kfree(bctl);
3108}
3109
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003110/*
3111 * Balance filters. Return 1 if chunk should be filtered out
3112 * (should not be balanced).
3113 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003114static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003115 struct btrfs_balance_args *bargs)
3116{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003117 chunk_type = chunk_to_extended(chunk_type) &
3118 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003119
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003120 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003121 return 0;
3122
3123 return 1;
3124}
3125
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003126static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003127 struct btrfs_balance_args *bargs)
3128{
3129 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003130 u64 chunk_used;
3131 u64 user_thresh_min;
3132 u64 user_thresh_max;
3133 int ret = 1;
3134
3135 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3136 chunk_used = btrfs_block_group_used(&cache->item);
3137
3138 if (bargs->usage_min == 0)
3139 user_thresh_min = 0;
3140 else
3141 user_thresh_min = div_factor_fine(cache->key.offset,
3142 bargs->usage_min);
3143
3144 if (bargs->usage_max == 0)
3145 user_thresh_max = 1;
3146 else if (bargs->usage_max > 100)
3147 user_thresh_max = cache->key.offset;
3148 else
3149 user_thresh_max = div_factor_fine(cache->key.offset,
3150 bargs->usage_max);
3151
3152 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3153 ret = 0;
3154
3155 btrfs_put_block_group(cache);
3156 return ret;
3157}
3158
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003159static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003160 u64 chunk_offset, struct btrfs_balance_args *bargs)
3161{
3162 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003163 u64 chunk_used, user_thresh;
3164 int ret = 1;
3165
3166 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3167 chunk_used = btrfs_block_group_used(&cache->item);
3168
David Sterbabc309462015-10-20 18:22:13 +02003169 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003170 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003171 else if (bargs->usage > 100)
3172 user_thresh = cache->key.offset;
3173 else
3174 user_thresh = div_factor_fine(cache->key.offset,
3175 bargs->usage);
3176
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003177 if (chunk_used < user_thresh)
3178 ret = 0;
3179
3180 btrfs_put_block_group(cache);
3181 return ret;
3182}
3183
Ilya Dryomov409d4042012-01-16 22:04:47 +02003184static int chunk_devid_filter(struct extent_buffer *leaf,
3185 struct btrfs_chunk *chunk,
3186 struct btrfs_balance_args *bargs)
3187{
3188 struct btrfs_stripe *stripe;
3189 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3190 int i;
3191
3192 for (i = 0; i < num_stripes; i++) {
3193 stripe = btrfs_stripe_nr(chunk, i);
3194 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3195 return 0;
3196 }
3197
3198 return 1;
3199}
3200
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003201/* [pstart, pend) */
3202static int chunk_drange_filter(struct extent_buffer *leaf,
3203 struct btrfs_chunk *chunk,
3204 u64 chunk_offset,
3205 struct btrfs_balance_args *bargs)
3206{
3207 struct btrfs_stripe *stripe;
3208 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3209 u64 stripe_offset;
3210 u64 stripe_length;
3211 int factor;
3212 int i;
3213
3214 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3215 return 0;
3216
3217 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003218 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3219 factor = num_stripes / 2;
3220 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3221 factor = num_stripes - 1;
3222 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3223 factor = num_stripes - 2;
3224 } else {
3225 factor = num_stripes;
3226 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003227
3228 for (i = 0; i < num_stripes; i++) {
3229 stripe = btrfs_stripe_nr(chunk, i);
3230 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3231 continue;
3232
3233 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3234 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003235 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003236
3237 if (stripe_offset < bargs->pend &&
3238 stripe_offset + stripe_length > bargs->pstart)
3239 return 0;
3240 }
3241
3242 return 1;
3243}
3244
Ilya Dryomovea671762012-01-16 22:04:48 +02003245/* [vstart, vend) */
3246static int chunk_vrange_filter(struct extent_buffer *leaf,
3247 struct btrfs_chunk *chunk,
3248 u64 chunk_offset,
3249 struct btrfs_balance_args *bargs)
3250{
3251 if (chunk_offset < bargs->vend &&
3252 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3253 /* at least part of the chunk is inside this vrange */
3254 return 0;
3255
3256 return 1;
3257}
3258
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003259static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3260 struct btrfs_chunk *chunk,
3261 struct btrfs_balance_args *bargs)
3262{
3263 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3264
3265 if (bargs->stripes_min <= num_stripes
3266 && num_stripes <= bargs->stripes_max)
3267 return 0;
3268
3269 return 1;
3270}
3271
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003272static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003273 struct btrfs_balance_args *bargs)
3274{
3275 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3276 return 0;
3277
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003278 chunk_type = chunk_to_extended(chunk_type) &
3279 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003280
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003281 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003282 return 1;
3283
3284 return 0;
3285}
3286
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003287static int should_balance_chunk(struct btrfs_root *root,
3288 struct extent_buffer *leaf,
3289 struct btrfs_chunk *chunk, u64 chunk_offset)
3290{
3291 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3292 struct btrfs_balance_args *bargs = NULL;
3293 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3294
3295 /* type filter */
3296 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3297 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3298 return 0;
3299 }
3300
3301 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3302 bargs = &bctl->data;
3303 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3304 bargs = &bctl->sys;
3305 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3306 bargs = &bctl->meta;
3307
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003308 /* profiles filter */
3309 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3310 chunk_profiles_filter(chunk_type, bargs)) {
3311 return 0;
3312 }
3313
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003314 /* usage filter */
3315 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3316 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3317 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003318 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
3319 chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) {
3320 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003321 }
3322
Ilya Dryomov409d4042012-01-16 22:04:47 +02003323 /* devid filter */
3324 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3325 chunk_devid_filter(leaf, chunk, bargs)) {
3326 return 0;
3327 }
3328
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003329 /* drange filter, makes sense only with devid filter */
3330 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3331 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3332 return 0;
3333 }
3334
Ilya Dryomovea671762012-01-16 22:04:48 +02003335 /* vrange filter */
3336 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3337 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3338 return 0;
3339 }
3340
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003341 /* stripes filter */
3342 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3343 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3344 return 0;
3345 }
3346
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003347 /* soft profile changing mode */
3348 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3349 chunk_soft_convert_filter(chunk_type, bargs)) {
3350 return 0;
3351 }
3352
David Sterba7d824b62014-05-07 17:37:51 +02003353 /*
3354 * limited by count, must be the last filter
3355 */
3356 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3357 if (bargs->limit == 0)
3358 return 0;
3359 else
3360 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003361 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3362 /*
3363 * Same logic as the 'limit' filter; the minimum cannot be
3364 * determined here because we do not have the global informatoin
3365 * about the count of all chunks that satisfy the filters.
3366 */
3367 if (bargs->limit_max == 0)
3368 return 0;
3369 else
3370 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003371 }
3372
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003373 return 1;
3374}
3375
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003376static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003377{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003378 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003379 struct btrfs_root *chunk_root = fs_info->chunk_root;
3380 struct btrfs_root *dev_root = fs_info->dev_root;
3381 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003382 struct btrfs_device *device;
3383 u64 old_size;
3384 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003385 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003386 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003387 struct btrfs_path *path;
3388 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003389 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003390 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003391 struct extent_buffer *leaf;
3392 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003393 int ret;
3394 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003395 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003396 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003397 u64 limit_data = bctl->data.limit;
3398 u64 limit_meta = bctl->meta.limit;
3399 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003400 u32 count_data = 0;
3401 u32 count_meta = 0;
3402 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003403 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003404
Chris Masonec44a352008-04-28 15:29:52 -04003405 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003406 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003407 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003408 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003409 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003410 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003411 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003412 btrfs_device_get_total_bytes(device) -
3413 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003414 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003415 continue;
3416
3417 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003418 if (ret == -ENOSPC)
3419 break;
Chris Masonec44a352008-04-28 15:29:52 -04003420 BUG_ON(ret);
3421
Yan, Zhenga22285a2010-05-16 10:48:46 -04003422 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003423 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003424
3425 ret = btrfs_grow_device(trans, device, old_size);
3426 BUG_ON(ret);
3427
3428 btrfs_end_transaction(trans, dev_root);
3429 }
3430
3431 /* step two, relocate all the chunks */
3432 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003433 if (!path) {
3434 ret = -ENOMEM;
3435 goto error;
3436 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003437
3438 /* zero out stat counters */
3439 spin_lock(&fs_info->balance_lock);
3440 memset(&bctl->stat, 0, sizeof(bctl->stat));
3441 spin_unlock(&fs_info->balance_lock);
3442again:
David Sterba7d824b62014-05-07 17:37:51 +02003443 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003444 /*
3445 * The single value limit and min/max limits use the same bytes
3446 * in the
3447 */
David Sterba7d824b62014-05-07 17:37:51 +02003448 bctl->data.limit = limit_data;
3449 bctl->meta.limit = limit_meta;
3450 bctl->sys.limit = limit_sys;
3451 }
Chris Masonec44a352008-04-28 15:29:52 -04003452 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3453 key.offset = (u64)-1;
3454 key.type = BTRFS_CHUNK_ITEM_KEY;
3455
Chris Masond3977122009-01-05 21:25:51 -05003456 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003457 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003458 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003459 ret = -ECANCELED;
3460 goto error;
3461 }
3462
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003463 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003464 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003465 if (ret < 0) {
3466 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003467 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003468 }
Chris Masonec44a352008-04-28 15:29:52 -04003469
3470 /*
3471 * this shouldn't happen, it means the last relocate
3472 * failed
3473 */
3474 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003475 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003476
3477 ret = btrfs_previous_item(chunk_root, path, 0,
3478 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003479 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003480 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003481 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003482 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003483 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003484
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003485 leaf = path->nodes[0];
3486 slot = path->slots[0];
3487 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3488
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003489 if (found_key.objectid != key.objectid) {
3490 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003491 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003492 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003493
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003494 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003495 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003496
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003497 if (!counting) {
3498 spin_lock(&fs_info->balance_lock);
3499 bctl->stat.considered++;
3500 spin_unlock(&fs_info->balance_lock);
3501 }
3502
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003503 ret = should_balance_chunk(chunk_root, leaf, chunk,
3504 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003505
David Sterbab3b4aa72011-04-21 01:20:15 +02003506 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003507 if (!ret) {
3508 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003509 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003510 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003511
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003512 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003513 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003514 spin_lock(&fs_info->balance_lock);
3515 bctl->stat.expected++;
3516 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003517
3518 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3519 count_data++;
3520 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3521 count_sys++;
3522 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3523 count_meta++;
3524
3525 goto loop;
3526 }
3527
3528 /*
3529 * Apply limit_min filter, no need to check if the LIMITS
3530 * filter is used, limit_min is 0 by default
3531 */
3532 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3533 count_data < bctl->data.limit_min)
3534 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3535 count_meta < bctl->meta.limit_min)
3536 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3537 count_sys < bctl->sys.limit_min)) {
3538 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003539 goto loop;
3540 }
3541
Zhao Lei2c9fe832015-11-09 11:51:32 +08003542 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && !chunk_reserved) {
3543 trans = btrfs_start_transaction(chunk_root, 0);
3544 if (IS_ERR(trans)) {
3545 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3546 ret = PTR_ERR(trans);
3547 goto error;
3548 }
3549
3550 ret = btrfs_force_chunk_alloc(trans, chunk_root,
3551 BTRFS_BLOCK_GROUP_DATA);
Filipe Manana8a7d6562015-12-10 11:08:59 +00003552 btrfs_end_transaction(trans, chunk_root);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003553 if (ret < 0) {
3554 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3555 goto error;
3556 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003557 chunk_reserved = 1;
3558 }
3559
Chris Masonec44a352008-04-28 15:29:52 -04003560 ret = btrfs_relocate_chunk(chunk_root,
Chris Masonec44a352008-04-28 15:29:52 -04003561 found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003562 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003563 if (ret && ret != -ENOSPC)
3564 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003565 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003566 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003567 } else {
3568 spin_lock(&fs_info->balance_lock);
3569 bctl->stat.completed++;
3570 spin_unlock(&fs_info->balance_lock);
3571 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003572loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003573 if (found_key.offset == 0)
3574 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003575 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003576 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003577
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003578 if (counting) {
3579 btrfs_release_path(path);
3580 counting = false;
3581 goto again;
3582 }
Chris Masonec44a352008-04-28 15:29:52 -04003583error:
3584 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003585 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003586 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003587 enospc_errors);
3588 if (!ret)
3589 ret = -ENOSPC;
3590 }
3591
Chris Masonec44a352008-04-28 15:29:52 -04003592 return ret;
3593}
3594
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003595/**
3596 * alloc_profile_is_valid - see if a given profile is valid and reduced
3597 * @flags: profile to validate
3598 * @extended: if true @flags is treated as an extended profile
3599 */
3600static int alloc_profile_is_valid(u64 flags, int extended)
3601{
3602 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3603 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3604
3605 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3606
3607 /* 1) check that all other bits are zeroed */
3608 if (flags & ~mask)
3609 return 0;
3610
3611 /* 2) see if profile is reduced */
3612 if (flags == 0)
3613 return !extended; /* "0" is valid for usual profiles */
3614
3615 /* true if exactly one bit set */
3616 return (flags & (flags - 1)) == 0;
3617}
3618
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003619static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3620{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003621 /* cancel requested || normal exit path */
3622 return atomic_read(&fs_info->balance_cancel_req) ||
3623 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3624 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003625}
3626
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003627static void __cancel_balance(struct btrfs_fs_info *fs_info)
3628{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003629 int ret;
3630
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003631 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003632 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003633 if (ret)
Anand Jaina4553fe2015-09-25 14:43:01 +08003634 btrfs_std_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003635
3636 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003637}
3638
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003639/* Non-zero return value signifies invalidity */
3640static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3641 u64 allowed)
3642{
3643 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3644 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3645 (bctl_arg->target & ~allowed)));
3646}
3647
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003648/*
3649 * Should be called with both balance and volume mutexes held
3650 */
3651int btrfs_balance(struct btrfs_balance_control *bctl,
3652 struct btrfs_ioctl_balance_args *bargs)
3653{
3654 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003655 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003656 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003657 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003658 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003659 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003660
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003661 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003662 atomic_read(&fs_info->balance_pause_req) ||
3663 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003664 ret = -EINVAL;
3665 goto out;
3666 }
3667
Ilya Dryomove4837f82012-03-27 17:09:17 +03003668 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3669 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3670 mixed = 1;
3671
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003672 /*
3673 * In case of mixed groups both data and meta should be picked,
3674 * and identical options should be given for both of them.
3675 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003676 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3677 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003678 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3679 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3680 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003681 btrfs_err(fs_info, "with mixed groups data and "
3682 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003683 ret = -EINVAL;
3684 goto out;
3685 }
3686 }
3687
Stefan Behrens8dabb742012-11-06 13:15:27 +01003688 num_devices = fs_info->fs_devices->num_devices;
3689 btrfs_dev_replace_lock(&fs_info->dev_replace);
3690 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3691 BUG_ON(num_devices < 1);
3692 num_devices--;
3693 }
3694 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003695 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003696 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003697 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003698 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003699 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003700 if (num_devices > 2)
3701 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3702 if (num_devices > 3)
3703 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3704 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003705 if (validate_convert_profile(&bctl->data, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003706 btrfs_err(fs_info, "unable to start balance with target "
3707 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003708 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003709 ret = -EINVAL;
3710 goto out;
3711 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003712 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003713 btrfs_err(fs_info,
3714 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003715 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003716 ret = -EINVAL;
3717 goto out;
3718 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003719 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003720 btrfs_err(fs_info,
3721 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003722 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003723 ret = -EINVAL;
3724 goto out;
3725 }
3726
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003727 /* allow to reduce meta or sys integrity only if force set */
3728 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003729 BTRFS_BLOCK_GROUP_RAID10 |
3730 BTRFS_BLOCK_GROUP_RAID5 |
3731 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003732 do {
3733 seq = read_seqbegin(&fs_info->profiles_lock);
3734
3735 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3736 (fs_info->avail_system_alloc_bits & allowed) &&
3737 !(bctl->sys.target & allowed)) ||
3738 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3739 (fs_info->avail_metadata_alloc_bits & allowed) &&
3740 !(bctl->meta.target & allowed))) {
3741 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003742 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003743 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003744 btrfs_err(fs_info, "balance will reduce metadata "
3745 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003746 ret = -EINVAL;
3747 goto out;
3748 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003749 }
Miao Xiede98ced2013-01-29 10:13:12 +00003750 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003751
Sam Tygieree592d02016-01-06 08:46:12 +00003752 if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
3753 btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
3754 btrfs_warn(fs_info,
Filipe Mananafedc0042016-01-15 10:56:15 +00003755 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Sam Tygieree592d02016-01-06 08:46:12 +00003756 bctl->meta.target, bctl->data.target);
3757 }
3758
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003759 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003760 fs_info->num_tolerated_disk_barrier_failures = min(
3761 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3762 btrfs_get_num_tolerated_disk_barrier_failures(
3763 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003764 }
3765
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003766 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003767 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003768 goto out;
3769
Ilya Dryomov59641012012-01-16 22:04:48 +02003770 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3771 BUG_ON(ret == -EEXIST);
3772 set_balance_control(bctl);
3773 } else {
3774 BUG_ON(ret != -EEXIST);
3775 spin_lock(&fs_info->balance_lock);
3776 update_balance_args(bctl);
3777 spin_unlock(&fs_info->balance_lock);
3778 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003779
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003780 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003781 mutex_unlock(&fs_info->balance_mutex);
3782
3783 ret = __btrfs_balance(fs_info);
3784
3785 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003786 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003787
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003788 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3789 fs_info->num_tolerated_disk_barrier_failures =
3790 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3791 }
3792
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003793 if (bargs) {
3794 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003795 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003796 }
3797
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003798 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3799 balance_need_close(fs_info)) {
3800 __cancel_balance(fs_info);
3801 }
3802
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003803 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003804
3805 return ret;
3806out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003807 if (bctl->flags & BTRFS_BALANCE_RESUME)
3808 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003809 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003810 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003811 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3812 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003813 return ret;
3814}
3815
3816static int balance_kthread(void *data)
3817{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003818 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003819 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003820
3821 mutex_lock(&fs_info->volume_mutex);
3822 mutex_lock(&fs_info->balance_mutex);
3823
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003824 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003825 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003826 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003827 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003828
3829 mutex_unlock(&fs_info->balance_mutex);
3830 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003831
Ilya Dryomov59641012012-01-16 22:04:48 +02003832 return ret;
3833}
3834
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003835int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3836{
3837 struct task_struct *tsk;
3838
3839 spin_lock(&fs_info->balance_lock);
3840 if (!fs_info->balance_ctl) {
3841 spin_unlock(&fs_info->balance_lock);
3842 return 0;
3843 }
3844 spin_unlock(&fs_info->balance_lock);
3845
3846 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003847 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003848 return 0;
3849 }
3850
3851 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303852 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003853}
3854
Ilya Dryomov68310a52012-06-22 12:24:12 -06003855int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003856{
Ilya Dryomov59641012012-01-16 22:04:48 +02003857 struct btrfs_balance_control *bctl;
3858 struct btrfs_balance_item *item;
3859 struct btrfs_disk_balance_args disk_bargs;
3860 struct btrfs_path *path;
3861 struct extent_buffer *leaf;
3862 struct btrfs_key key;
3863 int ret;
3864
3865 path = btrfs_alloc_path();
3866 if (!path)
3867 return -ENOMEM;
3868
Ilya Dryomov68310a52012-06-22 12:24:12 -06003869 key.objectid = BTRFS_BALANCE_OBJECTID;
3870 key.type = BTRFS_BALANCE_ITEM_KEY;
3871 key.offset = 0;
3872
3873 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3874 if (ret < 0)
3875 goto out;
3876 if (ret > 0) { /* ret = -ENOENT; */
3877 ret = 0;
3878 goto out;
3879 }
3880
Ilya Dryomov59641012012-01-16 22:04:48 +02003881 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3882 if (!bctl) {
3883 ret = -ENOMEM;
3884 goto out;
3885 }
3886
Ilya Dryomov59641012012-01-16 22:04:48 +02003887 leaf = path->nodes[0];
3888 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3889
Ilya Dryomov68310a52012-06-22 12:24:12 -06003890 bctl->fs_info = fs_info;
3891 bctl->flags = btrfs_balance_flags(leaf, item);
3892 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003893
3894 btrfs_balance_data(leaf, item, &disk_bargs);
3895 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3896 btrfs_balance_meta(leaf, item, &disk_bargs);
3897 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3898 btrfs_balance_sys(leaf, item, &disk_bargs);
3899 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3900
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003901 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3902
Ilya Dryomov68310a52012-06-22 12:24:12 -06003903 mutex_lock(&fs_info->volume_mutex);
3904 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003905
Ilya Dryomov68310a52012-06-22 12:24:12 -06003906 set_balance_control(bctl);
3907
3908 mutex_unlock(&fs_info->balance_mutex);
3909 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003910out:
3911 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003912 return ret;
3913}
3914
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003915int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3916{
3917 int ret = 0;
3918
3919 mutex_lock(&fs_info->balance_mutex);
3920 if (!fs_info->balance_ctl) {
3921 mutex_unlock(&fs_info->balance_mutex);
3922 return -ENOTCONN;
3923 }
3924
3925 if (atomic_read(&fs_info->balance_running)) {
3926 atomic_inc(&fs_info->balance_pause_req);
3927 mutex_unlock(&fs_info->balance_mutex);
3928
3929 wait_event(fs_info->balance_wait_q,
3930 atomic_read(&fs_info->balance_running) == 0);
3931
3932 mutex_lock(&fs_info->balance_mutex);
3933 /* we are good with balance_ctl ripped off from under us */
3934 BUG_ON(atomic_read(&fs_info->balance_running));
3935 atomic_dec(&fs_info->balance_pause_req);
3936 } else {
3937 ret = -ENOTCONN;
3938 }
3939
3940 mutex_unlock(&fs_info->balance_mutex);
3941 return ret;
3942}
3943
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003944int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3945{
Ilya Dryomove649e582013-10-10 20:40:21 +03003946 if (fs_info->sb->s_flags & MS_RDONLY)
3947 return -EROFS;
3948
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003949 mutex_lock(&fs_info->balance_mutex);
3950 if (!fs_info->balance_ctl) {
3951 mutex_unlock(&fs_info->balance_mutex);
3952 return -ENOTCONN;
3953 }
3954
3955 atomic_inc(&fs_info->balance_cancel_req);
3956 /*
3957 * if we are running just wait and return, balance item is
3958 * deleted in btrfs_balance in this case
3959 */
3960 if (atomic_read(&fs_info->balance_running)) {
3961 mutex_unlock(&fs_info->balance_mutex);
3962 wait_event(fs_info->balance_wait_q,
3963 atomic_read(&fs_info->balance_running) == 0);
3964 mutex_lock(&fs_info->balance_mutex);
3965 } else {
3966 /* __cancel_balance needs volume_mutex */
3967 mutex_unlock(&fs_info->balance_mutex);
3968 mutex_lock(&fs_info->volume_mutex);
3969 mutex_lock(&fs_info->balance_mutex);
3970
3971 if (fs_info->balance_ctl)
3972 __cancel_balance(fs_info);
3973
3974 mutex_unlock(&fs_info->volume_mutex);
3975 }
3976
3977 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3978 atomic_dec(&fs_info->balance_cancel_req);
3979 mutex_unlock(&fs_info->balance_mutex);
3980 return 0;
3981}
3982
Stefan Behrens803b2f52013-08-15 17:11:21 +02003983static int btrfs_uuid_scan_kthread(void *data)
3984{
3985 struct btrfs_fs_info *fs_info = data;
3986 struct btrfs_root *root = fs_info->tree_root;
3987 struct btrfs_key key;
3988 struct btrfs_key max_key;
3989 struct btrfs_path *path = NULL;
3990 int ret = 0;
3991 struct extent_buffer *eb;
3992 int slot;
3993 struct btrfs_root_item root_item;
3994 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003995 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003996
3997 path = btrfs_alloc_path();
3998 if (!path) {
3999 ret = -ENOMEM;
4000 goto out;
4001 }
4002
4003 key.objectid = 0;
4004 key.type = BTRFS_ROOT_ITEM_KEY;
4005 key.offset = 0;
4006
4007 max_key.objectid = (u64)-1;
4008 max_key.type = BTRFS_ROOT_ITEM_KEY;
4009 max_key.offset = (u64)-1;
4010
Stefan Behrens803b2f52013-08-15 17:11:21 +02004011 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004012 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004013 if (ret) {
4014 if (ret > 0)
4015 ret = 0;
4016 break;
4017 }
4018
4019 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4020 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4021 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4022 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4023 goto skip;
4024
4025 eb = path->nodes[0];
4026 slot = path->slots[0];
4027 item_size = btrfs_item_size_nr(eb, slot);
4028 if (item_size < sizeof(root_item))
4029 goto skip;
4030
Stefan Behrens803b2f52013-08-15 17:11:21 +02004031 read_extent_buffer(eb, &root_item,
4032 btrfs_item_ptr_offset(eb, slot),
4033 (int)sizeof(root_item));
4034 if (btrfs_root_refs(&root_item) == 0)
4035 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004036
4037 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4038 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4039 if (trans)
4040 goto update_tree;
4041
4042 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004043 /*
4044 * 1 - subvol uuid item
4045 * 1 - received_subvol uuid item
4046 */
4047 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4048 if (IS_ERR(trans)) {
4049 ret = PTR_ERR(trans);
4050 break;
4051 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004052 continue;
4053 } else {
4054 goto skip;
4055 }
4056update_tree:
4057 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004058 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4059 root_item.uuid,
4060 BTRFS_UUID_KEY_SUBVOL,
4061 key.objectid);
4062 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004063 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004064 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004065 break;
4066 }
4067 }
4068
4069 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004070 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4071 root_item.received_uuid,
4072 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4073 key.objectid);
4074 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004075 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004076 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004077 break;
4078 }
4079 }
4080
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004081skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004082 if (trans) {
4083 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004084 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004085 if (ret)
4086 break;
4087 }
4088
Stefan Behrens803b2f52013-08-15 17:11:21 +02004089 btrfs_release_path(path);
4090 if (key.offset < (u64)-1) {
4091 key.offset++;
4092 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4093 key.offset = 0;
4094 key.type = BTRFS_ROOT_ITEM_KEY;
4095 } else if (key.objectid < (u64)-1) {
4096 key.offset = 0;
4097 key.type = BTRFS_ROOT_ITEM_KEY;
4098 key.objectid++;
4099 } else {
4100 break;
4101 }
4102 cond_resched();
4103 }
4104
4105out:
4106 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004107 if (trans && !IS_ERR(trans))
4108 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004109 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004110 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004111 else
4112 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004113 up(&fs_info->uuid_tree_rescan_sem);
4114 return 0;
4115}
4116
Stefan Behrens70f80172013-08-15 17:11:23 +02004117/*
4118 * Callback for btrfs_uuid_tree_iterate().
4119 * returns:
4120 * 0 check succeeded, the entry is not outdated.
4121 * < 0 if an error occured.
4122 * > 0 if the check failed, which means the caller shall remove the entry.
4123 */
4124static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4125 u8 *uuid, u8 type, u64 subid)
4126{
4127 struct btrfs_key key;
4128 int ret = 0;
4129 struct btrfs_root *subvol_root;
4130
4131 if (type != BTRFS_UUID_KEY_SUBVOL &&
4132 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4133 goto out;
4134
4135 key.objectid = subid;
4136 key.type = BTRFS_ROOT_ITEM_KEY;
4137 key.offset = (u64)-1;
4138 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4139 if (IS_ERR(subvol_root)) {
4140 ret = PTR_ERR(subvol_root);
4141 if (ret == -ENOENT)
4142 ret = 1;
4143 goto out;
4144 }
4145
4146 switch (type) {
4147 case BTRFS_UUID_KEY_SUBVOL:
4148 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4149 ret = 1;
4150 break;
4151 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4152 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4153 BTRFS_UUID_SIZE))
4154 ret = 1;
4155 break;
4156 }
4157
4158out:
4159 return ret;
4160}
4161
4162static int btrfs_uuid_rescan_kthread(void *data)
4163{
4164 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4165 int ret;
4166
4167 /*
4168 * 1st step is to iterate through the existing UUID tree and
4169 * to delete all entries that contain outdated data.
4170 * 2nd step is to add all missing entries to the UUID tree.
4171 */
4172 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4173 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004174 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004175 up(&fs_info->uuid_tree_rescan_sem);
4176 return ret;
4177 }
4178 return btrfs_uuid_scan_kthread(data);
4179}
4180
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004181int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4182{
4183 struct btrfs_trans_handle *trans;
4184 struct btrfs_root *tree_root = fs_info->tree_root;
4185 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004186 struct task_struct *task;
4187 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004188
4189 /*
4190 * 1 - root node
4191 * 1 - root item
4192 */
4193 trans = btrfs_start_transaction(tree_root, 2);
4194 if (IS_ERR(trans))
4195 return PTR_ERR(trans);
4196
4197 uuid_root = btrfs_create_tree(trans, fs_info,
4198 BTRFS_UUID_TREE_OBJECTID);
4199 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004200 ret = PTR_ERR(uuid_root);
4201 btrfs_abort_transaction(trans, tree_root, ret);
4202 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004203 }
4204
4205 fs_info->uuid_root = uuid_root;
4206
Stefan Behrens803b2f52013-08-15 17:11:21 +02004207 ret = btrfs_commit_transaction(trans, tree_root);
4208 if (ret)
4209 return ret;
4210
4211 down(&fs_info->uuid_tree_rescan_sem);
4212 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4213 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004214 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004215 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004216 up(&fs_info->uuid_tree_rescan_sem);
4217 return PTR_ERR(task);
4218 }
4219
4220 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004221}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004222
Stefan Behrens70f80172013-08-15 17:11:23 +02004223int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4224{
4225 struct task_struct *task;
4226
4227 down(&fs_info->uuid_tree_rescan_sem);
4228 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4229 if (IS_ERR(task)) {
4230 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004231 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004232 up(&fs_info->uuid_tree_rescan_sem);
4233 return PTR_ERR(task);
4234 }
4235
4236 return 0;
4237}
4238
Chris Mason8f18cf12008-04-25 16:53:30 -04004239/*
4240 * shrinking a device means finding all of the device extents past
4241 * the new size, and then following the back refs to the chunks.
4242 * The chunk relocation code actually frees the device extent
4243 */
4244int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4245{
4246 struct btrfs_trans_handle *trans;
4247 struct btrfs_root *root = device->dev_root;
4248 struct btrfs_dev_extent *dev_extent = NULL;
4249 struct btrfs_path *path;
4250 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004251 u64 chunk_offset;
4252 int ret;
4253 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004254 int failed = 0;
4255 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004256 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004257 struct extent_buffer *l;
4258 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02004259 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004260 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004261 u64 old_size = btrfs_device_get_total_bytes(device);
4262 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004263
Stefan Behrens63a212a2012-11-05 18:29:28 +01004264 if (device->is_tgtdev_for_dev_replace)
4265 return -EINVAL;
4266
Chris Mason8f18cf12008-04-25 16:53:30 -04004267 path = btrfs_alloc_path();
4268 if (!path)
4269 return -ENOMEM;
4270
David Sterbae4058b52015-11-27 16:31:35 +01004271 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004272
Chris Mason7d9eb122008-07-08 14:19:17 -04004273 lock_chunks(root);
4274
Miao Xie7cc8e582014-09-03 21:35:38 +08004275 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004276 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004277 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004278 spin_lock(&root->fs_info->free_chunk_lock);
4279 root->fs_info->free_chunk_space -= diff;
4280 spin_unlock(&root->fs_info->free_chunk_lock);
4281 }
Chris Mason7d9eb122008-07-08 14:19:17 -04004282 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004283
Josef Bacikba1bf482009-09-11 16:11:19 -04004284again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004285 key.objectid = device->devid;
4286 key.offset = (u64)-1;
4287 key.type = BTRFS_DEV_EXTENT_KEY;
4288
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004289 do {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004290 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004291 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004292 if (ret < 0) {
4293 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004294 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004295 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004296
4297 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004298 if (ret)
4299 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004300 if (ret < 0)
4301 goto done;
4302 if (ret) {
4303 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004304 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004305 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004306 }
4307
4308 l = path->nodes[0];
4309 slot = path->slots[0];
4310 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4311
Josef Bacikba1bf482009-09-11 16:11:19 -04004312 if (key.objectid != device->devid) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004313 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004314 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004315 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004316 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004317
4318 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4319 length = btrfs_dev_extent_length(l, dev_extent);
4320
Josef Bacikba1bf482009-09-11 16:11:19 -04004321 if (key.offset + length <= new_size) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004322 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004323 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004324 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004325 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004326
Chris Mason8f18cf12008-04-25 16:53:30 -04004327 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004328 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004329
Zhaoleidc2ee4e2015-08-05 18:00:04 +08004330 ret = btrfs_relocate_chunk(root, chunk_offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004331 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004332 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004333 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004334 if (ret == -ENOSPC)
4335 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004336 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004337
4338 if (failed && !retried) {
4339 failed = 0;
4340 retried = true;
4341 goto again;
4342 } else if (failed && retried) {
4343 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004344 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004345 }
4346
Chris Balld6397ba2009-04-27 07:29:03 -04004347 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004348 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004349 if (IS_ERR(trans)) {
4350 ret = PTR_ERR(trans);
4351 goto done;
4352 }
4353
Chris Balld6397ba2009-04-27 07:29:03 -04004354 lock_chunks(root);
Filipe Manana53e489b2015-06-02 14:43:21 +01004355
4356 /*
4357 * We checked in the above loop all device extents that were already in
4358 * the device tree. However before we have updated the device's
4359 * total_bytes to the new size, we might have had chunk allocations that
4360 * have not complete yet (new block groups attached to transaction
4361 * handles), and therefore their device extents were not yet in the
4362 * device tree and we missed them in the loop above. So if we have any
4363 * pending chunk using a device extent that overlaps the device range
4364 * that we can not use anymore, commit the current transaction and
4365 * repeat the search on the device tree - this way we guarantee we will
4366 * not have chunks using device extents that end beyond 'new_size'.
4367 */
4368 if (!checked_pending_chunks) {
4369 u64 start = new_size;
4370 u64 len = old_size - new_size;
4371
Jeff Mahoney499f3772015-06-15 09:41:17 -04004372 if (contains_pending_extent(trans->transaction, device,
4373 &start, len)) {
Filipe Manana53e489b2015-06-02 14:43:21 +01004374 unlock_chunks(root);
4375 checked_pending_chunks = true;
4376 failed = 0;
4377 retried = false;
4378 ret = btrfs_commit_transaction(trans, root);
4379 if (ret)
4380 goto done;
4381 goto again;
4382 }
4383 }
4384
Miao Xie7cc8e582014-09-03 21:35:38 +08004385 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004386 if (list_empty(&device->resized_list))
4387 list_add_tail(&device->resized_list,
4388 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004389
Chris Balld6397ba2009-04-27 07:29:03 -04004390 WARN_ON(diff > old_total);
4391 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4392 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004393
4394 /* Now btrfs_update_device() will change the on-disk size. */
4395 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004396 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004397done:
4398 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004399 if (ret) {
4400 lock_chunks(root);
4401 btrfs_device_set_total_bytes(device, old_size);
4402 if (device->writeable)
4403 device->fs_devices->total_rw_bytes += diff;
4404 spin_lock(&root->fs_info->free_chunk_lock);
4405 root->fs_info->free_chunk_space += diff;
4406 spin_unlock(&root->fs_info->free_chunk_lock);
4407 unlock_chunks(root);
4408 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004409 return ret;
4410}
4411
Li Zefan125ccb02011-12-08 15:07:24 +08004412static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004413 struct btrfs_key *key,
4414 struct btrfs_chunk *chunk, int item_size)
4415{
David Sterba6c417612011-04-13 15:41:04 +02004416 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004417 struct btrfs_disk_key disk_key;
4418 u32 array_size;
4419 u8 *ptr;
4420
Miao Xiefe48a5c2014-09-03 21:35:39 +08004421 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004422 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004423 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004424 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4425 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004426 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004427 }
Chris Mason0b86a832008-03-24 15:01:56 -04004428
4429 ptr = super_copy->sys_chunk_array + array_size;
4430 btrfs_cpu_key_to_disk(&disk_key, key);
4431 memcpy(ptr, &disk_key, sizeof(disk_key));
4432 ptr += sizeof(disk_key);
4433 memcpy(ptr, chunk, item_size);
4434 item_size += sizeof(disk_key);
4435 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004436 unlock_chunks(root);
4437
Chris Mason0b86a832008-03-24 15:01:56 -04004438 return 0;
4439}
4440
Miao Xieb2117a32011-01-05 10:07:28 +00004441/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004442 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004443 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004444static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004445{
Arne Jansen73c5de02011-04-12 12:07:57 +02004446 const struct btrfs_device_info *di_a = a;
4447 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004448
Arne Jansen73c5de02011-04-12 12:07:57 +02004449 if (di_a->max_avail > di_b->max_avail)
4450 return -1;
4451 if (di_a->max_avail < di_b->max_avail)
4452 return 1;
4453 if (di_a->total_avail > di_b->total_avail)
4454 return -1;
4455 if (di_a->total_avail < di_b->total_avail)
4456 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004457 return 0;
4458}
4459
David Woodhouse53b381b2013-01-29 18:40:14 -05004460static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4461{
4462 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004463 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004464}
4465
4466static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4467{
Zhao Leiffe2d202015-01-20 15:11:44 +08004468 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004469 return;
4470
Miao Xieceda0862013-04-11 10:30:16 +00004471 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004472}
4473
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004474#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4475 - sizeof(struct btrfs_item) \
4476 - sizeof(struct btrfs_chunk)) \
4477 / sizeof(struct btrfs_stripe) + 1)
4478
4479#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4480 - 2 * sizeof(struct btrfs_disk_key) \
4481 - 2 * sizeof(struct btrfs_chunk)) \
4482 / sizeof(struct btrfs_stripe) + 1)
4483
Miao Xieb2117a32011-01-05 10:07:28 +00004484static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004485 struct btrfs_root *extent_root, u64 start,
4486 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004487{
4488 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004489 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4490 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004491 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004492 struct extent_map_tree *em_tree;
4493 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004494 struct btrfs_device_info *devices_info = NULL;
4495 u64 total_avail;
4496 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004497 int data_stripes; /* number of stripes that count for
4498 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004499 int sub_stripes; /* sub_stripes info for map */
4500 int dev_stripes; /* stripes per dev */
4501 int devs_max; /* max devs to use */
4502 int devs_min; /* min devs needed */
4503 int devs_increment; /* ndevs has to be a multiple of this */
4504 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004505 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004506 u64 max_stripe_size;
4507 u64 max_chunk_size;
4508 u64 stripe_size;
4509 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004510 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004511 int ndevs;
4512 int i;
4513 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004514 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004515
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004516 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004517
Miao Xieb2117a32011-01-05 10:07:28 +00004518 if (list_empty(&fs_devices->alloc_list))
4519 return -ENOSPC;
4520
Liu Bo31e50222012-11-21 14:18:10 +00004521 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004522
Liu Bo31e50222012-11-21 14:18:10 +00004523 sub_stripes = btrfs_raid_array[index].sub_stripes;
4524 dev_stripes = btrfs_raid_array[index].dev_stripes;
4525 devs_max = btrfs_raid_array[index].devs_max;
4526 devs_min = btrfs_raid_array[index].devs_min;
4527 devs_increment = btrfs_raid_array[index].devs_increment;
4528 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004529
4530 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004531 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004532 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004533 if (!devs_max)
4534 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004535 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004536 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004537 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4538 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004539 else
Byongho Leeee221842015-12-15 01:42:10 +09004540 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004541 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004542 if (!devs_max)
4543 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004544 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004545 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004546 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004547 if (!devs_max)
4548 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004549 } else {
David Sterba351fd352014-05-15 16:48:20 +02004550 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004551 type);
4552 BUG_ON(1);
4553 }
4554
4555 /* we don't want a chunk larger than 10% of writeable space */
4556 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4557 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004558
David Sterba31e818f2015-02-20 18:00:26 +01004559 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004560 GFP_NOFS);
4561 if (!devices_info)
4562 return -ENOMEM;
4563
Arne Jansen73c5de02011-04-12 12:07:57 +02004564 cur = fs_devices->alloc_list.next;
4565
4566 /*
4567 * in the first pass through the devices list, we gather information
4568 * about the available holes on each device.
4569 */
4570 ndevs = 0;
4571 while (cur != &fs_devices->alloc_list) {
4572 struct btrfs_device *device;
4573 u64 max_avail;
4574 u64 dev_offset;
4575
4576 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4577
4578 cur = cur->next;
4579
4580 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004581 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004582 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004583 continue;
4584 }
4585
Stefan Behrens63a212a2012-11-05 18:29:28 +01004586 if (!device->in_fs_metadata ||
4587 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004588 continue;
4589
4590 if (device->total_bytes > device->bytes_used)
4591 total_avail = device->total_bytes - device->bytes_used;
4592 else
4593 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004594
4595 /* If there is no space on this device, skip it. */
4596 if (total_avail == 0)
4597 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004598
Josef Bacik6df9a952013-06-27 13:22:46 -04004599 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004600 max_stripe_size * dev_stripes,
4601 &dev_offset, &max_avail);
4602 if (ret && ret != -ENOSPC)
4603 goto error;
4604
4605 if (ret == 0)
4606 max_avail = max_stripe_size * dev_stripes;
4607
4608 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4609 continue;
4610
Eric Sandeen063d0062013-01-31 00:55:01 +00004611 if (ndevs == fs_devices->rw_devices) {
4612 WARN(1, "%s: found more than %llu devices\n",
4613 __func__, fs_devices->rw_devices);
4614 break;
4615 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004616 devices_info[ndevs].dev_offset = dev_offset;
4617 devices_info[ndevs].max_avail = max_avail;
4618 devices_info[ndevs].total_avail = total_avail;
4619 devices_info[ndevs].dev = device;
4620 ++ndevs;
4621 }
4622
4623 /*
4624 * now sort the devices by hole size / available space
4625 */
4626 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4627 btrfs_cmp_device_info, NULL);
4628
4629 /* round down to number of usable stripes */
4630 ndevs -= ndevs % devs_increment;
4631
4632 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4633 ret = -ENOSPC;
4634 goto error;
4635 }
4636
4637 if (devs_max && ndevs > devs_max)
4638 ndevs = devs_max;
4639 /*
4640 * the primary goal is to maximize the number of stripes, so use as many
4641 * devices as possible, even if the stripes are not maximum sized.
4642 */
4643 stripe_size = devices_info[ndevs-1].max_avail;
4644 num_stripes = ndevs * dev_stripes;
4645
David Woodhouse53b381b2013-01-29 18:40:14 -05004646 /*
4647 * this will have to be fixed for RAID1 and RAID10 over
4648 * more drives
4649 */
4650 data_stripes = num_stripes / ncopies;
4651
David Woodhouse53b381b2013-01-29 18:40:14 -05004652 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4653 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4654 btrfs_super_stripesize(info->super_copy));
4655 data_stripes = num_stripes - 1;
4656 }
4657 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4658 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4659 btrfs_super_stripesize(info->super_copy));
4660 data_stripes = num_stripes - 2;
4661 }
Chris Mason86db2572013-02-20 16:23:40 -05004662
4663 /*
4664 * Use the number of data stripes to figure out how big this chunk
4665 * is really going to be in terms of logical address space,
4666 * and compare that answer with the max chunk size
4667 */
4668 if (stripe_size * data_stripes > max_chunk_size) {
4669 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004670
4671 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004672
4673 /* bump the answer up to a 16MB boundary */
4674 stripe_size = (stripe_size + mask) & ~mask;
4675
4676 /* but don't go higher than the limits we found
4677 * while searching for free extents
4678 */
4679 if (stripe_size > devices_info[ndevs-1].max_avail)
4680 stripe_size = devices_info[ndevs-1].max_avail;
4681 }
4682
David Sterbab8b93ad2015-01-16 17:26:13 +01004683 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004684
4685 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004686 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004687 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004688
Miao Xieb2117a32011-01-05 10:07:28 +00004689 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4690 if (!map) {
4691 ret = -ENOMEM;
4692 goto error;
4693 }
4694 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004695
Arne Jansen73c5de02011-04-12 12:07:57 +02004696 for (i = 0; i < ndevs; ++i) {
4697 for (j = 0; j < dev_stripes; ++j) {
4698 int s = i * dev_stripes + j;
4699 map->stripes[s].dev = devices_info[i].dev;
4700 map->stripes[s].physical = devices_info[i].dev_offset +
4701 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004702 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004703 }
Chris Mason593060d2008-03-25 16:50:33 -04004704 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004705 map->stripe_len = raid_stripe_len;
4706 map->io_align = raid_stripe_len;
4707 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004708 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004709 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004710
David Woodhouse53b381b2013-01-29 18:40:14 -05004711 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004712
Arne Jansen73c5de02011-04-12 12:07:57 +02004713 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004714
David Sterba172ddd62011-04-21 00:48:27 +02004715 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004716 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004717 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004718 ret = -ENOMEM;
4719 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004720 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004721 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004722 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004723 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004724 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004725 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004726 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004727 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004728
Chris Mason0b86a832008-03-24 15:01:56 -04004729 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004730 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004731 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004732 if (!ret) {
4733 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4734 atomic_inc(&em->refs);
4735 }
Chris Mason890871b2009-09-02 16:24:52 -04004736 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004737 if (ret) {
4738 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004739 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004740 }
Yan Zheng2b820322008-11-17 21:11:30 -05004741
Josef Bacik04487482013-01-29 15:03:37 -05004742 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4743 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4744 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004745 if (ret)
4746 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004747
Miao Xie7cc8e582014-09-03 21:35:38 +08004748 for (i = 0; i < map->num_stripes; i++) {
4749 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4750 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4751 }
Miao Xie43530c42014-09-03 21:35:36 +08004752
Miao Xie1c116182014-09-03 21:35:37 +08004753 spin_lock(&extent_root->fs_info->free_chunk_lock);
4754 extent_root->fs_info->free_chunk_space -= (stripe_size *
4755 map->num_stripes);
4756 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4757
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004758 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004759 check_raid56_incompat_flag(extent_root->fs_info, type);
4760
Miao Xieb2117a32011-01-05 10:07:28 +00004761 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004762 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004763
Josef Bacik6df9a952013-06-27 13:22:46 -04004764error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004765 write_lock(&em_tree->lock);
4766 remove_extent_mapping(em_tree, em);
4767 write_unlock(&em_tree->lock);
4768
4769 /* One for our allocation */
4770 free_extent_map(em);
4771 /* One for the tree reference */
4772 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004773 /* One for the pending_chunks list reference */
4774 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004775error:
Miao Xieb2117a32011-01-05 10:07:28 +00004776 kfree(devices_info);
4777 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004778}
4779
Josef Bacik6df9a952013-06-27 13:22:46 -04004780int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004781 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004782 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004783{
Yan Zheng2b820322008-11-17 21:11:30 -05004784 struct btrfs_key key;
4785 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4786 struct btrfs_device *device;
4787 struct btrfs_chunk *chunk;
4788 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004789 struct extent_map_tree *em_tree;
4790 struct extent_map *em;
4791 struct map_lookup *map;
4792 size_t item_size;
4793 u64 dev_offset;
4794 u64 stripe_size;
4795 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004796 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004797
Josef Bacik6df9a952013-06-27 13:22:46 -04004798 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4799 read_lock(&em_tree->lock);
4800 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4801 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004802
Josef Bacik6df9a952013-06-27 13:22:46 -04004803 if (!em) {
4804 btrfs_crit(extent_root->fs_info, "unable to find logical "
4805 "%Lu len %Lu", chunk_offset, chunk_size);
4806 return -EINVAL;
4807 }
4808
4809 if (em->start != chunk_offset || em->len != chunk_size) {
4810 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004811 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004812 chunk_size, em->start, em->len);
4813 free_extent_map(em);
4814 return -EINVAL;
4815 }
4816
Jeff Mahoney95617d62015-06-03 10:55:48 -04004817 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004818 item_size = btrfs_chunk_item_size(map->num_stripes);
4819 stripe_size = em->orig_block_len;
4820
4821 chunk = kzalloc(item_size, GFP_NOFS);
4822 if (!chunk) {
4823 ret = -ENOMEM;
4824 goto out;
4825 }
4826
Filipe Manana50460e32015-11-20 10:42:47 +00004827 /*
4828 * Take the device list mutex to prevent races with the final phase of
4829 * a device replace operation that replaces the device object associated
4830 * with the map's stripes, because the device object's id can change
4831 * at any time during that final phase of the device replace operation
4832 * (dev-replace.c:btrfs_dev_replace_finishing()).
4833 */
4834 mutex_lock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004835 for (i = 0; i < map->num_stripes; i++) {
4836 device = map->stripes[i].dev;
4837 dev_offset = map->stripes[i].physical;
4838
Yan Zheng2b820322008-11-17 21:11:30 -05004839 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004840 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004841 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004842 ret = btrfs_alloc_dev_extent(trans, device,
4843 chunk_root->root_key.objectid,
4844 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4845 chunk_offset, dev_offset,
4846 stripe_size);
4847 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004848 break;
4849 }
4850 if (ret) {
4851 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
4852 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004853 }
4854
Yan Zheng2b820322008-11-17 21:11:30 -05004855 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004856 for (i = 0; i < map->num_stripes; i++) {
4857 device = map->stripes[i].dev;
4858 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004859
4860 btrfs_set_stack_stripe_devid(stripe, device->devid);
4861 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4862 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4863 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004864 }
Filipe Manana50460e32015-11-20 10:42:47 +00004865 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004866
4867 btrfs_set_stack_chunk_length(chunk, chunk_size);
4868 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4869 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4870 btrfs_set_stack_chunk_type(chunk, map->type);
4871 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4872 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4873 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4874 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4875 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4876
4877 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4878 key.type = BTRFS_CHUNK_ITEM_KEY;
4879 key.offset = chunk_offset;
4880
4881 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004882 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4883 /*
4884 * TODO: Cleanup of inserted chunk root in case of
4885 * failure.
4886 */
Li Zefan125ccb02011-12-08 15:07:24 +08004887 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004888 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004889 }
liubo1abe9b82011-03-24 11:18:59 +00004890
Josef Bacik6df9a952013-06-27 13:22:46 -04004891out:
Yan Zheng2b820322008-11-17 21:11:30 -05004892 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004893 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004894 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004895}
4896
4897/*
4898 * Chunk allocation falls into two parts. The first part does works
4899 * that make the new allocated chunk useable, but not do any operation
4900 * that modifies the chunk tree. The second part does the works that
4901 * require modifying the chunk tree. This division is important for the
4902 * bootstrap process of adding storage to a seed btrfs.
4903 */
4904int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4905 struct btrfs_root *extent_root, u64 type)
4906{
4907 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004908
Filipe Mananaa9629592015-05-18 19:11:40 +01004909 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
Josef Bacik6df9a952013-06-27 13:22:46 -04004910 chunk_offset = find_next_chunk(extent_root->fs_info);
4911 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004912}
4913
Chris Masond3977122009-01-05 21:25:51 -05004914static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004915 struct btrfs_root *root,
4916 struct btrfs_device *device)
4917{
4918 u64 chunk_offset;
4919 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004920 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004921 struct btrfs_fs_info *fs_info = root->fs_info;
4922 struct btrfs_root *extent_root = fs_info->extent_root;
4923 int ret;
4924
Josef Bacik6df9a952013-06-27 13:22:46 -04004925 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004926 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004927 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4928 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004929 if (ret)
4930 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004931
Josef Bacik6df9a952013-06-27 13:22:46 -04004932 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004933 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004934 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4935 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004936 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004937}
4938
Miao Xied20983b2014-07-03 18:22:13 +08004939static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4940{
4941 int max_errors;
4942
4943 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4944 BTRFS_BLOCK_GROUP_RAID10 |
4945 BTRFS_BLOCK_GROUP_RAID5 |
4946 BTRFS_BLOCK_GROUP_DUP)) {
4947 max_errors = 1;
4948 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4949 max_errors = 2;
4950 } else {
4951 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004952 }
4953
Miao Xied20983b2014-07-03 18:22:13 +08004954 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004955}
4956
4957int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4958{
4959 struct extent_map *em;
4960 struct map_lookup *map;
4961 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4962 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004963 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004964 int i;
4965
Chris Mason890871b2009-09-02 16:24:52 -04004966 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004967 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004968 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004969 if (!em)
4970 return 1;
4971
Jeff Mahoney95617d62015-06-03 10:55:48 -04004972 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05004973 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08004974 if (map->stripes[i].dev->missing) {
4975 miss_ndevs++;
4976 continue;
4977 }
4978
Yan Zheng2b820322008-11-17 21:11:30 -05004979 if (!map->stripes[i].dev->writeable) {
4980 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08004981 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05004982 }
4983 }
Miao Xied20983b2014-07-03 18:22:13 +08004984
4985 /*
4986 * If the number of missing devices is larger than max errors,
4987 * we can not write the data into that chunk successfully, so
4988 * set it readonly.
4989 */
4990 if (miss_ndevs > btrfs_chunk_max_errors(map))
4991 readonly = 1;
4992end:
Yan Zheng2b820322008-11-17 21:11:30 -05004993 free_extent_map(em);
4994 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004995}
4996
4997void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4998{
David Sterbaa8067e02011-04-21 00:34:43 +02004999 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005000}
5001
5002void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5003{
5004 struct extent_map *em;
5005
Chris Masond3977122009-01-05 21:25:51 -05005006 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005007 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005008 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5009 if (em)
5010 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005011 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005012 if (!em)
5013 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005014 /* once for us */
5015 free_extent_map(em);
5016 /* once for the tree */
5017 free_extent_map(em);
5018 }
5019}
5020
Stefan Behrens5d964052012-11-05 14:59:07 +01005021int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005022{
Stefan Behrens5d964052012-11-05 14:59:07 +01005023 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04005024 struct extent_map *em;
5025 struct map_lookup *map;
5026 struct extent_map_tree *em_tree = &map_tree->map_tree;
5027 int ret;
5028
Chris Mason890871b2009-09-02 16:24:52 -04005029 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005030 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005031 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005032
Josef Bacikfb7669b2013-04-23 10:53:18 -04005033 /*
5034 * We could return errors for these cases, but that could get ugly and
5035 * we'd probably do the same thing which is just not do anything else
5036 * and exit, so return 1 so the callers don't try to use other copies.
5037 */
5038 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005039 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005040 logical+len);
5041 return 1;
5042 }
5043
5044 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02005045 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02005046 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005047 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005048 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005049 return 1;
5050 }
5051
Jeff Mahoney95617d62015-06-03 10:55:48 -04005052 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005053 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5054 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005055 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5056 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005057 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5058 ret = 2;
5059 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5060 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005061 else
5062 ret = 1;
5063 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005064
5065 btrfs_dev_replace_lock(&fs_info->dev_replace);
5066 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5067 ret++;
5068 btrfs_dev_replace_unlock(&fs_info->dev_replace);
5069
Chris Masonf1885912008-04-09 16:28:12 -04005070 return ret;
5071}
5072
David Woodhouse53b381b2013-01-29 18:40:14 -05005073unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5074 struct btrfs_mapping_tree *map_tree,
5075 u64 logical)
5076{
5077 struct extent_map *em;
5078 struct map_lookup *map;
5079 struct extent_map_tree *em_tree = &map_tree->map_tree;
5080 unsigned long len = root->sectorsize;
5081
5082 read_lock(&em_tree->lock);
5083 em = lookup_extent_mapping(em_tree, logical, len);
5084 read_unlock(&em_tree->lock);
5085 BUG_ON(!em);
5086
5087 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005088 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005089 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005090 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005091 free_extent_map(em);
5092 return len;
5093}
5094
5095int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5096 u64 logical, u64 len, int mirror_num)
5097{
5098 struct extent_map *em;
5099 struct map_lookup *map;
5100 struct extent_map_tree *em_tree = &map_tree->map_tree;
5101 int ret = 0;
5102
5103 read_lock(&em_tree->lock);
5104 em = lookup_extent_mapping(em_tree, logical, len);
5105 read_unlock(&em_tree->lock);
5106 BUG_ON(!em);
5107
5108 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005109 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005110 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005111 ret = 1;
5112 free_extent_map(em);
5113 return ret;
5114}
5115
Stefan Behrens30d98612012-11-06 14:52:18 +01005116static int find_live_mirror(struct btrfs_fs_info *fs_info,
5117 struct map_lookup *map, int first, int num,
5118 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005119{
5120 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005121 int tolerance;
5122 struct btrfs_device *srcdev;
5123
5124 if (dev_replace_is_ongoing &&
5125 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5126 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5127 srcdev = fs_info->dev_replace.srcdev;
5128 else
5129 srcdev = NULL;
5130
5131 /*
5132 * try to avoid the drive that is the source drive for a
5133 * dev-replace procedure, only choose it if no other non-missing
5134 * mirror is available
5135 */
5136 for (tolerance = 0; tolerance < 2; tolerance++) {
5137 if (map->stripes[optimal].dev->bdev &&
5138 (tolerance || map->stripes[optimal].dev != srcdev))
5139 return optimal;
5140 for (i = first; i < first + num; i++) {
5141 if (map->stripes[i].dev->bdev &&
5142 (tolerance || map->stripes[i].dev != srcdev))
5143 return i;
5144 }
Chris Masondfe25022008-05-13 13:46:40 -04005145 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005146
Chris Masondfe25022008-05-13 13:46:40 -04005147 /* we couldn't find one that doesn't fail. Just return something
5148 * and the io error handling code will clean up eventually
5149 */
5150 return optimal;
5151}
5152
David Woodhouse53b381b2013-01-29 18:40:14 -05005153static inline int parity_smaller(u64 a, u64 b)
5154{
5155 return a > b;
5156}
5157
5158/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005159static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005160{
5161 struct btrfs_bio_stripe s;
5162 int i;
5163 u64 l;
5164 int again = 1;
5165
5166 while (again) {
5167 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005168 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005169 if (parity_smaller(bbio->raid_map[i],
5170 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005171 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005172 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005173 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005174 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005175 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005176 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005177
David Woodhouse53b381b2013-01-29 18:40:14 -05005178 again = 1;
5179 }
5180 }
5181 }
5182}
5183
Zhao Lei6e9606d2015-01-20 15:11:34 +08005184static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5185{
5186 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005187 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005188 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005189 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005190 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005191 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005192 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005193 /*
5194 * plus the raid_map, which includes both the tgt dev
5195 * and the stripes
5196 */
5197 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005198 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005199
5200 atomic_set(&bbio->error, 0);
5201 atomic_set(&bbio->refs, 1);
5202
5203 return bbio;
5204}
5205
5206void btrfs_get_bbio(struct btrfs_bio *bbio)
5207{
5208 WARN_ON(!atomic_read(&bbio->refs));
5209 atomic_inc(&bbio->refs);
5210}
5211
5212void btrfs_put_bbio(struct btrfs_bio *bbio)
5213{
5214 if (!bbio)
5215 return;
5216 if (atomic_dec_and_test(&bbio->refs))
5217 kfree(bbio);
5218}
5219
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005220static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005221 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005222 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005223 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005224{
5225 struct extent_map *em;
5226 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005227 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005228 struct extent_map_tree *em_tree = &map_tree->map_tree;
5229 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005230 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005231 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005232 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005233 u64 stripe_nr_orig;
5234 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005235 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005236 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005237 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005238 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005239 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005240 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005241 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005242 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005243 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5244 int dev_replace_is_ongoing = 0;
5245 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005246 int patch_the_first_stripe_for_dev_replace = 0;
5247 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005248 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005249
Chris Mason890871b2009-09-02 16:24:52 -04005250 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005251 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005252 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005253
Chris Mason3b951512008-04-17 11:29:12 -04005254 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005255 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005256 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005257 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005258 }
Chris Mason0b86a832008-03-24 15:01:56 -04005259
Josef Bacik9bb91872013-04-19 23:45:33 -04005260 if (em->start > logical || em->start + em->len < logical) {
5261 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02005262 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04005263 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005264 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005265 return -EINVAL;
5266 }
5267
Jeff Mahoney95617d62015-06-03 10:55:48 -04005268 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005269 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005270
David Woodhouse53b381b2013-01-29 18:40:14 -05005271 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005272 stripe_nr = offset;
5273 /*
5274 * stripe_nr counts the total number of stripes we have to stride
5275 * to get to this block
5276 */
David Sterba47c57132015-02-20 18:43:47 +01005277 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005278
David Woodhouse53b381b2013-01-29 18:40:14 -05005279 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005280 BUG_ON(offset < stripe_offset);
5281
5282 /* stripe_offset is the offset of this block in its stripe*/
5283 stripe_offset = offset - stripe_offset;
5284
David Woodhouse53b381b2013-01-29 18:40:14 -05005285 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005286 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005287 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5288 raid56_full_stripe_start = offset;
5289
5290 /* allow a write of a full stripe, but make sure we don't
5291 * allow straddling of stripes
5292 */
David Sterba47c57132015-02-20 18:43:47 +01005293 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5294 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005295 raid56_full_stripe_start *= full_stripe_len;
5296 }
5297
5298 if (rw & REQ_DISCARD) {
5299 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005300 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005301 ret = -EOPNOTSUPP;
5302 goto out;
5303 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005304 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005305 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5306 u64 max_len;
5307 /* For writes to RAID[56], allow a full stripeset across all disks.
5308 For other RAID types and for RAID[56] reads, just allow a single
5309 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005310 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
David Woodhouse53b381b2013-01-29 18:40:14 -05005311 (rw & REQ_WRITE)) {
5312 max_len = stripe_len * nr_data_stripes(map) -
5313 (offset - raid56_full_stripe_start);
5314 } else {
5315 /* we limit the length of each bio to what fits in a stripe */
5316 max_len = stripe_len - stripe_offset;
5317 }
5318 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005319 } else {
5320 *length = em->len - offset;
5321 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005322
David Woodhouse53b381b2013-01-29 18:40:14 -05005323 /* This is for when we're called from btrfs_merge_bio_hook() and all
5324 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005325 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005326 goto out;
5327
Stefan Behrens472262f2012-11-06 14:43:46 +01005328 btrfs_dev_replace_lock(dev_replace);
5329 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5330 if (!dev_replace_is_ongoing)
5331 btrfs_dev_replace_unlock(dev_replace);
5332
Stefan Behrensad6d6202012-11-06 15:06:47 +01005333 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5334 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5335 dev_replace->tgtdev != NULL) {
5336 /*
5337 * in dev-replace case, for repair case (that's the only
5338 * case where the mirror is selected explicitly when
5339 * calling btrfs_map_block), blocks left of the left cursor
5340 * can also be read from the target drive.
5341 * For REQ_GET_READ_MIRRORS, the target drive is added as
5342 * the last one to the array of stripes. For READ, it also
5343 * needs to be supported using the same mirror number.
5344 * If the requested block is not left of the left cursor,
5345 * EIO is returned. This can happen because btrfs_num_copies()
5346 * returns one more in the dev-replace case.
5347 */
5348 u64 tmp_length = *length;
5349 struct btrfs_bio *tmp_bbio = NULL;
5350 int tmp_num_stripes;
5351 u64 srcdev_devid = dev_replace->srcdev->devid;
5352 int index_srcdev = 0;
5353 int found = 0;
5354 u64 physical_of_found = 0;
5355
5356 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005357 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005358 if (ret) {
5359 WARN_ON(tmp_bbio != NULL);
5360 goto out;
5361 }
5362
5363 tmp_num_stripes = tmp_bbio->num_stripes;
5364 if (mirror_num > tmp_num_stripes) {
5365 /*
5366 * REQ_GET_READ_MIRRORS does not contain this
5367 * mirror, that means that the requested area
5368 * is not left of the left cursor
5369 */
5370 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005371 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005372 goto out;
5373 }
5374
5375 /*
5376 * process the rest of the function using the mirror_num
5377 * of the source drive. Therefore look it up first.
5378 * At the end, patch the device pointer to the one of the
5379 * target drive.
5380 */
5381 for (i = 0; i < tmp_num_stripes; i++) {
Zhao Lei94a97df2015-12-09 21:03:49 +08005382 if (tmp_bbio->stripes[i].dev->devid != srcdev_devid)
5383 continue;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005384
Zhao Lei94a97df2015-12-09 21:03:49 +08005385 /*
5386 * In case of DUP, in order to keep it simple, only add
5387 * the mirror with the lowest physical address
5388 */
5389 if (found &&
5390 physical_of_found <= tmp_bbio->stripes[i].physical)
5391 continue;
5392
5393 index_srcdev = i;
5394 found = 1;
5395 physical_of_found = tmp_bbio->stripes[i].physical;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005396 }
5397
Zhao Lei6e9606d2015-01-20 15:11:34 +08005398 btrfs_put_bbio(tmp_bbio);
Zhao Lei94a97df2015-12-09 21:03:49 +08005399
5400 if (!found) {
5401 WARN_ON(1);
5402 ret = -EIO;
5403 goto out;
5404 }
5405
5406 mirror_num = index_srcdev + 1;
5407 patch_the_first_stripe_for_dev_replace = 1;
5408 physical_to_patch_in_first_stripe = physical_of_found;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005409 } else if (mirror_num > map->num_stripes) {
5410 mirror_num = 0;
5411 }
5412
Chris Masonf2d8d742008-04-21 10:03:05 -04005413 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005414 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005415 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005416 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005417 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005418 stripe_end_offset = stripe_nr_end * map->stripe_len -
5419 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005420
Li Dongyangfce3bb92011-03-24 10:24:26 +00005421 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5422 if (rw & REQ_DISCARD)
5423 num_stripes = min_t(u64, map->num_stripes,
5424 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005425 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5426 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005427 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5428 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005429 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005430 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005431 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005432 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005433 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005434 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005435 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005436 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005437 current->pid % map->num_stripes,
5438 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005439 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005440 }
Chris Mason2fff7342008-04-29 14:12:09 -04005441
Chris Mason611f0e02008-04-03 16:29:03 -04005442 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005443 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005444 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005445 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005446 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005447 } else {
5448 mirror_num = 1;
5449 }
Chris Mason2fff7342008-04-29 14:12:09 -04005450
Chris Mason321aecc2008-04-16 10:49:51 -04005451 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005452 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005453
David Sterba47c57132015-02-20 18:43:47 +01005454 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005455 stripe_index *= map->sub_stripes;
5456
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005457 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005458 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005459 else if (rw & REQ_DISCARD)
5460 num_stripes = min_t(u64, map->sub_stripes *
5461 (stripe_nr_end - stripe_nr_orig),
5462 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005463 else if (mirror_num)
5464 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005465 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005466 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005467 stripe_index = find_live_mirror(fs_info, map,
5468 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005469 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005470 current->pid % map->sub_stripes,
5471 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005472 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005473 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005474
Zhao Leiffe2d202015-01-20 15:11:44 +08005475 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005476 if (need_raid_map &&
Miao Xieaf8e2d12014-10-23 14:42:50 +08005477 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5478 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005479 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005480 stripe_nr = div_u64(raid56_full_stripe_start,
5481 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005482
5483 /* RAID[56] write or recovery. Return all stripes */
5484 num_stripes = map->num_stripes;
5485 max_errors = nr_parity_stripes(map);
5486
David Woodhouse53b381b2013-01-29 18:40:14 -05005487 *length = map->stripe_len;
5488 stripe_index = 0;
5489 stripe_offset = 0;
5490 } else {
5491 /*
5492 * Mirror #0 or #1 means the original data block.
5493 * Mirror #2 is RAID5 parity block.
5494 * Mirror #3 is RAID6 Q block.
5495 */
David Sterba47c57132015-02-20 18:43:47 +01005496 stripe_nr = div_u64_rem(stripe_nr,
5497 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005498 if (mirror_num > 1)
5499 stripe_index = nr_data_stripes(map) +
5500 mirror_num - 2;
5501
5502 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005503 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5504 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005505 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5506 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5507 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005508 }
Chris Mason8790d502008-04-03 16:29:03 -04005509 } else {
5510 /*
David Sterba47c57132015-02-20 18:43:47 +01005511 * after this, stripe_nr is the number of stripes on this
5512 * device we have to walk to find the data, and stripe_index is
5513 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005514 */
David Sterba47c57132015-02-20 18:43:47 +01005515 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5516 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005517 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005518 }
Chris Mason593060d2008-03-25 16:50:33 -04005519 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04005520
Stefan Behrens472262f2012-11-06 14:43:46 +01005521 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005522 if (dev_replace_is_ongoing) {
5523 if (rw & (REQ_WRITE | REQ_DISCARD))
5524 num_alloc_stripes <<= 1;
5525 if (rw & REQ_GET_READ_MIRRORS)
5526 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005527 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005528 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005529
Zhao Lei6e9606d2015-01-20 15:11:34 +08005530 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005531 if (!bbio) {
5532 ret = -ENOMEM;
5533 goto out;
5534 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005535 if (dev_replace_is_ongoing)
5536 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005537
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005538 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005539 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005540 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5541 mirror_num > 1)) {
5542 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005543 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005544
5545 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5546 sizeof(struct btrfs_bio_stripe) *
5547 num_alloc_stripes +
5548 sizeof(int) * tgtdev_indexes);
5549
5550 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005551 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005552
5553 /* Fill in the logical address of each stripe */
5554 tmp = stripe_nr * nr_data_stripes(map);
5555 for (i = 0; i < nr_data_stripes(map); i++)
5556 bbio->raid_map[(i+rot) % num_stripes] =
5557 em->start + (tmp + i) * map->stripe_len;
5558
5559 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5560 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5561 bbio->raid_map[(i+rot+1) % num_stripes] =
5562 RAID6_Q_STRIPE;
5563 }
5564
Li Dongyangfce3bb92011-03-24 10:24:26 +00005565 if (rw & REQ_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005566 u32 factor = 0;
5567 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005568 u64 stripes_per_dev = 0;
5569 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005570 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005571
5572 if (map->type &
5573 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5574 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5575 sub_stripes = 1;
5576 else
5577 sub_stripes = map->sub_stripes;
5578
5579 factor = map->num_stripes / sub_stripes;
5580 stripes_per_dev = div_u64_rem(stripe_nr_end -
5581 stripe_nr_orig,
5582 factor,
5583 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005584 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5585 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005586 }
5587
Li Dongyangfce3bb92011-03-24 10:24:26 +00005588 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005589 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005590 map->stripes[stripe_index].physical +
5591 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005592 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005593
Li Zefanec9ef7a2011-12-01 14:06:42 +08005594 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5595 BTRFS_BLOCK_GROUP_RAID10)) {
5596 bbio->stripes[i].length = stripes_per_dev *
5597 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005598
Li Zefanec9ef7a2011-12-01 14:06:42 +08005599 if (i / sub_stripes < remaining_stripes)
5600 bbio->stripes[i].length +=
5601 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005602
5603 /*
5604 * Special for the first stripe and
5605 * the last stripe:
5606 *
5607 * |-------|...|-------|
5608 * |----------|
5609 * off end_off
5610 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005611 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005612 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005613 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005614
5615 if (stripe_index >= last_stripe &&
5616 stripe_index <= (last_stripe +
5617 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005618 bbio->stripes[i].length -=
5619 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005620
Li Zefanec9ef7a2011-12-01 14:06:42 +08005621 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005622 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005623 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005624 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005625
5626 stripe_index++;
5627 if (stripe_index == map->num_stripes) {
5628 /* This could only happen for RAID0/10 */
5629 stripe_index = 0;
5630 stripe_nr++;
5631 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005632 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005633 } else {
5634 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005635 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005636 map->stripes[stripe_index].physical +
5637 stripe_offset +
5638 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005639 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005640 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005641 stripe_index++;
5642 }
Chris Mason593060d2008-03-25 16:50:33 -04005643 }
Li Zefande11cc12011-12-01 12:55:47 +08005644
Miao Xied20983b2014-07-03 18:22:13 +08005645 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5646 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005647
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005648 if (bbio->raid_map)
5649 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005650
Miao Xie2c8cdd62014-11-14 16:06:25 +08005651 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005652 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5653 dev_replace->tgtdev != NULL) {
5654 int index_where_to_add;
5655 u64 srcdev_devid = dev_replace->srcdev->devid;
5656
5657 /*
5658 * duplicate the write operations while the dev replace
5659 * procedure is running. Since the copying of the old disk
5660 * to the new disk takes place at run time while the
5661 * filesystem is mounted writable, the regular write
5662 * operations to the old disk have to be duplicated to go
5663 * to the new disk as well.
5664 * Note that device->missing is handled by the caller, and
5665 * that the write to the old disk is already set up in the
5666 * stripes array.
5667 */
5668 index_where_to_add = num_stripes;
5669 for (i = 0; i < num_stripes; i++) {
5670 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5671 /* write to new disk, too */
5672 struct btrfs_bio_stripe *new =
5673 bbio->stripes + index_where_to_add;
5674 struct btrfs_bio_stripe *old =
5675 bbio->stripes + i;
5676
5677 new->physical = old->physical;
5678 new->length = old->length;
5679 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005680 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005681 index_where_to_add++;
5682 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005683 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005684 }
5685 }
5686 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005687 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5688 dev_replace->tgtdev != NULL) {
5689 u64 srcdev_devid = dev_replace->srcdev->devid;
5690 int index_srcdev = 0;
5691 int found = 0;
5692 u64 physical_of_found = 0;
5693
5694 /*
5695 * During the dev-replace procedure, the target drive can
5696 * also be used to read data in case it is needed to repair
5697 * a corrupt block elsewhere. This is possible if the
5698 * requested area is left of the left cursor. In this area,
5699 * the target drive is a full copy of the source drive.
5700 */
5701 for (i = 0; i < num_stripes; i++) {
5702 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5703 /*
5704 * In case of DUP, in order to keep it
5705 * simple, only add the mirror with the
5706 * lowest physical address
5707 */
5708 if (found &&
5709 physical_of_found <=
5710 bbio->stripes[i].physical)
5711 continue;
5712 index_srcdev = i;
5713 found = 1;
5714 physical_of_found = bbio->stripes[i].physical;
5715 }
5716 }
5717 if (found) {
David Sterba258ece02015-02-24 19:45:15 +01005718 if (physical_of_found + map->stripe_len <=
Stefan Behrensad6d6202012-11-06 15:06:47 +01005719 dev_replace->cursor_left) {
5720 struct btrfs_bio_stripe *tgtdev_stripe =
5721 bbio->stripes + num_stripes;
5722
5723 tgtdev_stripe->physical = physical_of_found;
5724 tgtdev_stripe->length =
5725 bbio->stripes[index_srcdev].length;
5726 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005727 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005728
Miao Xie2c8cdd62014-11-14 16:06:25 +08005729 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005730 num_stripes++;
5731 }
5732 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005733 }
5734
Li Zefande11cc12011-12-01 12:55:47 +08005735 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005736 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005737 bbio->num_stripes = num_stripes;
5738 bbio->max_errors = max_errors;
5739 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005740 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005741
5742 /*
5743 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5744 * mirror_num == num_stripes + 1 && dev_replace target drive is
5745 * available as a mirror
5746 */
5747 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5748 WARN_ON(num_stripes > 1);
5749 bbio->stripes[0].dev = dev_replace->tgtdev;
5750 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5751 bbio->mirror_num = map->num_stripes + 1;
5752 }
Chris Masoncea9e442008-04-09 16:28:12 -04005753out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005754 if (dev_replace_is_ongoing)
5755 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005756 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005757 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005758}
5759
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005760int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005761 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005762 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005763{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005764 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005765 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005766}
5767
Miao Xieaf8e2d12014-10-23 14:42:50 +08005768/* For Scrub/replace */
5769int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5770 u64 logical, u64 *length,
5771 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005772 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005773{
5774 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005775 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005776}
5777
Yan Zhenga512bbf2008-12-08 16:46:26 -05005778int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5779 u64 chunk_start, u64 physical, u64 devid,
5780 u64 **logical, int *naddrs, int *stripe_len)
5781{
5782 struct extent_map_tree *em_tree = &map_tree->map_tree;
5783 struct extent_map *em;
5784 struct map_lookup *map;
5785 u64 *buf;
5786 u64 bytenr;
5787 u64 length;
5788 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005789 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005790 int i, j, nr = 0;
5791
Chris Mason890871b2009-09-02 16:24:52 -04005792 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005793 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005794 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005795
Josef Bacik835d9742013-03-19 12:13:25 -04005796 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005797 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005798 chunk_start);
5799 return -EIO;
5800 }
5801
5802 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005803 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005804 em->start, chunk_start);
5805 free_extent_map(em);
5806 return -EIO;
5807 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04005808 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005809
5810 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005811 rmap_len = map->stripe_len;
5812
Yan Zhenga512bbf2008-12-08 16:46:26 -05005813 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005814 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005815 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005816 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005817 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005818 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005819 rmap_len = map->stripe_len * nr_data_stripes(map);
5820 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005821
David Sterba31e818f2015-02-20 18:00:26 +01005822 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005823 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005824
5825 for (i = 0; i < map->num_stripes; i++) {
5826 if (devid && map->stripes[i].dev->devid != devid)
5827 continue;
5828 if (map->stripes[i].physical > physical ||
5829 map->stripes[i].physical + length <= physical)
5830 continue;
5831
5832 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005833 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005834
5835 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5836 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005837 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005838 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5839 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005840 } /* else if RAID[56], multiply by nr_data_stripes().
5841 * Alternatively, just use rmap_len below instead of
5842 * map->stripe_len */
5843
5844 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005845 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005846 for (j = 0; j < nr; j++) {
5847 if (buf[j] == bytenr)
5848 break;
5849 }
Chris Mason934d3752008-12-08 16:43:10 -05005850 if (j == nr) {
5851 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005852 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005853 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005854 }
5855
Yan Zhenga512bbf2008-12-08 16:46:26 -05005856 *logical = buf;
5857 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005858 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005859
5860 free_extent_map(em);
5861 return 0;
5862}
5863
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005864static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005865{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005866 bio->bi_private = bbio->private;
5867 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005868 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005869
Zhao Lei6e9606d2015-01-20 15:11:34 +08005870 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005871}
5872
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005873static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005874{
Chris Mason9be33952013-05-17 18:30:14 -04005875 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005876 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005877
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005878 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005879 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005880 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005881 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005882 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005883 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005884
5885 BUG_ON(stripe_index >= bbio->num_stripes);
5886 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005887 if (dev->bdev) {
5888 if (bio->bi_rw & WRITE)
5889 btrfs_dev_stat_inc(dev,
5890 BTRFS_DEV_STAT_WRITE_ERRS);
5891 else
5892 btrfs_dev_stat_inc(dev,
5893 BTRFS_DEV_STAT_READ_ERRS);
5894 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5895 btrfs_dev_stat_inc(dev,
5896 BTRFS_DEV_STAT_FLUSH_ERRS);
5897 btrfs_dev_stat_print_on_error(dev);
5898 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005899 }
5900 }
Chris Mason8790d502008-04-03 16:29:03 -04005901
Jan Schmidta1d3c472011-08-04 17:15:33 +02005902 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005903 is_orig_bio = 1;
5904
Miao Xiec404e0d2014-01-30 16:46:55 +08005905 btrfs_bio_counter_dec(bbio->fs_info);
5906
Jan Schmidta1d3c472011-08-04 17:15:33 +02005907 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005908 if (!is_orig_bio) {
5909 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005910 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005911 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005912
Chris Mason9be33952013-05-17 18:30:14 -04005913 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005914 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005915 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005916 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005917 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005918 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005919 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005920 /*
5921 * this bio is actually up to date, we didn't
5922 * go over the max number of errors
5923 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005924 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005925 }
Miao Xiec55f1392014-06-19 10:42:54 +08005926
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005927 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005928 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005929 bio_put(bio);
5930 }
Chris Mason8790d502008-04-03 16:29:03 -04005931}
5932
Chris Mason8b712842008-06-11 16:50:36 -04005933/*
5934 * see run_scheduled_bios for a description of why bios are collected for
5935 * async submit.
5936 *
5937 * This will add one bio to the pending list for a device and make sure
5938 * the work struct is scheduled.
5939 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005940static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5941 struct btrfs_device *device,
5942 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005943{
5944 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005945 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005946
David Woodhouse53b381b2013-01-29 18:40:14 -05005947 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005948 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05005949 return;
5950 }
5951
Chris Mason8b712842008-06-11 16:50:36 -04005952 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005953 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005954 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005955 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005956 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005957 return;
Chris Mason8b712842008-06-11 16:50:36 -04005958 }
5959
5960 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005961 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005962 * higher layers. Otherwise, the async bio makes it appear we have
5963 * made progress against dirty pages when we've really just put it
5964 * on a queue for later
5965 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005966 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005967 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005968 bio->bi_next = NULL;
5969 bio->bi_rw |= rw;
5970
5971 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005972 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005973 pending_bios = &device->pending_sync_bios;
5974 else
5975 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005976
Chris Masonffbd5172009-04-20 15:50:09 -04005977 if (pending_bios->tail)
5978 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005979
Chris Masonffbd5172009-04-20 15:50:09 -04005980 pending_bios->tail = bio;
5981 if (!pending_bios->head)
5982 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005983 if (device->running_pending)
5984 should_queue = 0;
5985
5986 spin_unlock(&device->io_lock);
5987
5988 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08005989 btrfs_queue_work(root->fs_info->submit_workers,
5990 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005991}
5992
Josef Bacikde1ee922012-10-19 16:50:56 -04005993static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5994 struct bio *bio, u64 physical, int dev_nr,
5995 int rw, int async)
5996{
5997 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5998
5999 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006000 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006001 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006002 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006003#ifdef DEBUG
6004 {
6005 struct rcu_string *name;
6006
6007 rcu_read_lock();
6008 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00006009 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04006010 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02006011 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
6012 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006013 rcu_read_unlock();
6014 }
6015#endif
6016 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006017
6018 btrfs_bio_counter_inc_noblocked(root->fs_info);
6019
Josef Bacikde1ee922012-10-19 16:50:56 -04006020 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05006021 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006022 else
6023 btrfsic_submit_bio(rw, bio);
6024}
6025
Josef Bacikde1ee922012-10-19 16:50:56 -04006026static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6027{
6028 atomic_inc(&bbio->error);
6029 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Miao Xie8408c712014-06-19 10:42:55 +08006030 /* Shoud be the original bio. */
6031 WARN_ON(bio != bbio->orig_bio);
6032
Chris Mason9be33952013-05-17 18:30:14 -04006033 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006034 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006035 bio->bi_error = -EIO;
6036 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006037 }
6038}
6039
Chris Masonf1885912008-04-09 16:28:12 -04006040int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006041 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006042{
Chris Mason0b86a832008-03-24 15:01:56 -04006043 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006044 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006045 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006046 u64 length = 0;
6047 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006048 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006049 int dev_nr;
6050 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006051 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006052
Kent Overstreet4f024f32013-10-11 15:44:27 -07006053 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006054 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006055
Miao Xiec404e0d2014-01-30 16:46:55 +08006056 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05006057 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006058 mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006059 if (ret) {
6060 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006061 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006062 }
Chris Masoncea9e442008-04-09 16:28:12 -04006063
Jan Schmidta1d3c472011-08-04 17:15:33 +02006064 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006065 bbio->orig_bio = first_bio;
6066 bbio->private = first_bio->bi_private;
6067 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08006068 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006069 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6070
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006071 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
6072 ((rw & WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006073 /* In this case, map_length has been set to the length of
6074 a single stripe; not the whole write */
6075 if (rw & WRITE) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006076 ret = raid56_parity_write(root, bio, bbio, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006077 } else {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006078 ret = raid56_parity_recover(root, bio, bbio, map_length,
Miao Xie42452152014-11-25 16:39:28 +08006079 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006080 }
Miao Xie42452152014-11-25 16:39:28 +08006081
Miao Xiec404e0d2014-01-30 16:46:55 +08006082 btrfs_bio_counter_dec(root->fs_info);
6083 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006084 }
6085
Chris Masoncea9e442008-04-09 16:28:12 -04006086 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006087 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006088 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006089 BUG();
6090 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006091
Zhao Lei08da7572015-02-12 15:42:16 +08006092 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006093 dev = bbio->stripes[dev_nr].dev;
6094 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6095 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006096 continue;
6097 }
6098
Jan Schmidta1d3c472011-08-04 17:15:33 +02006099 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006100 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006101 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006102 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006103 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006104
Josef Bacikde1ee922012-10-19 16:50:56 -04006105 submit_stripe_bio(root, bbio, bio,
6106 bbio->stripes[dev_nr].physical, dev_nr, rw,
6107 async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006108 }
Miao Xiec404e0d2014-01-30 16:46:55 +08006109 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006110 return 0;
6111}
6112
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006113struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006114 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006115{
Yan Zheng2b820322008-11-17 21:11:30 -05006116 struct btrfs_device *device;
6117 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006118
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006119 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006120 while (cur_devices) {
6121 if (!fsid ||
6122 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6123 device = __find_device(&cur_devices->devices,
6124 devid, uuid);
6125 if (device)
6126 return device;
6127 }
6128 cur_devices = cur_devices->seed;
6129 }
6130 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006131}
6132
Chris Masondfe25022008-05-13 13:46:40 -04006133static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08006134 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006135 u64 devid, u8 *dev_uuid)
6136{
6137 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006138
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006139 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6140 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006141 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006142
6143 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006144 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006145 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006146
6147 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006148 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006149
Chris Masondfe25022008-05-13 13:46:40 -04006150 return device;
6151}
6152
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006153/**
6154 * btrfs_alloc_device - allocate struct btrfs_device
6155 * @fs_info: used only for generating a new devid, can be NULL if
6156 * devid is provided (i.e. @devid != NULL).
6157 * @devid: a pointer to devid for this device. If NULL a new devid
6158 * is generated.
6159 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6160 * is generated.
6161 *
6162 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6163 * on error. Returned struct is not linked onto any lists and can be
6164 * destroyed with kfree() right away.
6165 */
6166struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6167 const u64 *devid,
6168 const u8 *uuid)
6169{
6170 struct btrfs_device *dev;
6171 u64 tmp;
6172
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306173 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006174 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006175
6176 dev = __alloc_device();
6177 if (IS_ERR(dev))
6178 return dev;
6179
6180 if (devid)
6181 tmp = *devid;
6182 else {
6183 int ret;
6184
6185 ret = find_next_devid(fs_info, &tmp);
6186 if (ret) {
6187 kfree(dev);
6188 return ERR_PTR(ret);
6189 }
6190 }
6191 dev->devid = tmp;
6192
6193 if (uuid)
6194 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6195 else
6196 generate_random_uuid(dev->uuid);
6197
Liu Bo9e0af232014-08-15 23:36:53 +08006198 btrfs_init_work(&dev->work, btrfs_submit_helper,
6199 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006200
6201 return dev;
6202}
6203
Chris Mason0b86a832008-03-24 15:01:56 -04006204static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6205 struct extent_buffer *leaf,
6206 struct btrfs_chunk *chunk)
6207{
6208 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6209 struct map_lookup *map;
6210 struct extent_map *em;
6211 u64 logical;
6212 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006213 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006214 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006215 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006216 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006217 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006218 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006219
Chris Masone17cade2008-04-15 15:41:47 -04006220 logical = key->offset;
6221 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006222 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6223 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6224 /* Validation check */
6225 if (!num_stripes) {
6226 btrfs_err(root->fs_info, "invalid chunk num_stripes: %u",
6227 num_stripes);
6228 return -EIO;
6229 }
6230 if (!IS_ALIGNED(logical, root->sectorsize)) {
6231 btrfs_err(root->fs_info,
6232 "invalid chunk logical %llu", logical);
6233 return -EIO;
6234 }
6235 if (!length || !IS_ALIGNED(length, root->sectorsize)) {
6236 btrfs_err(root->fs_info,
6237 "invalid chunk length %llu", length);
6238 return -EIO;
6239 }
6240 if (!is_power_of_2(stripe_len)) {
6241 btrfs_err(root->fs_info, "invalid chunk stripe length: %llu",
6242 stripe_len);
6243 return -EIO;
6244 }
6245 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6246 btrfs_chunk_type(leaf, chunk)) {
6247 btrfs_err(root->fs_info, "unrecognized chunk type: %llu",
6248 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6249 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6250 btrfs_chunk_type(leaf, chunk));
6251 return -EIO;
6252 }
Chris Masona061fc82008-05-07 11:43:44 -04006253
Chris Mason890871b2009-09-02 16:24:52 -04006254 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006255 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006256 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006257
6258 /* already mapped? */
6259 if (em && em->start <= logical && em->start + em->len > logical) {
6260 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006261 return 0;
6262 } else if (em) {
6263 free_extent_map(em);
6264 }
Chris Mason0b86a832008-03-24 15:01:56 -04006265
David Sterba172ddd62011-04-21 00:48:27 +02006266 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006267 if (!em)
6268 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006269 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006270 if (!map) {
6271 free_extent_map(em);
6272 return -ENOMEM;
6273 }
6274
Wang Shilong298a8f92014-06-19 10:42:52 +08006275 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006276 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006277 em->start = logical;
6278 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006279 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006280 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006281 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006282
Chris Mason593060d2008-03-25 16:50:33 -04006283 map->num_stripes = num_stripes;
6284 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6285 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6286 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6287 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6288 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006289 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006290 for (i = 0; i < num_stripes; i++) {
6291 map->stripes[i].physical =
6292 btrfs_stripe_offset_nr(leaf, chunk, i);
6293 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006294 read_extent_buffer(leaf, uuid, (unsigned long)
6295 btrfs_stripe_dev_uuid_nr(chunk, i),
6296 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006297 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6298 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006299 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006300 free_extent_map(em);
6301 return -EIO;
6302 }
Chris Masondfe25022008-05-13 13:46:40 -04006303 if (!map->stripes[i].dev) {
6304 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006305 add_missing_dev(root, root->fs_info->fs_devices,
6306 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006307 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006308 free_extent_map(em);
6309 return -EIO;
6310 }
Anand Jain816fceb2015-04-27 12:46:18 +08006311 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6312 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006313 }
6314 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006315 }
6316
Chris Mason890871b2009-09-02 16:24:52 -04006317 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006318 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006319 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006320 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006321 free_extent_map(em);
6322
6323 return 0;
6324}
6325
Jeff Mahoney143bede2012-03-01 14:56:26 +01006326static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006327 struct btrfs_dev_item *dev_item,
6328 struct btrfs_device *device)
6329{
6330 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006331
6332 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006333 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6334 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006335 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006336 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006337 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006338 device->type = btrfs_device_type(leaf, dev_item);
6339 device->io_align = btrfs_device_io_align(leaf, dev_item);
6340 device->io_width = btrfs_device_io_width(leaf, dev_item);
6341 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006342 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006343 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006344
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006345 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006346 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006347}
6348
Miao Xie5f375832014-09-03 21:35:46 +08006349static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6350 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006351{
6352 struct btrfs_fs_devices *fs_devices;
6353 int ret;
6354
Li Zefanb367e472011-12-07 11:38:24 +08006355 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006356
6357 fs_devices = root->fs_info->fs_devices->seed;
6358 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006359 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6360 return fs_devices;
6361
Yan Zheng2b820322008-11-17 21:11:30 -05006362 fs_devices = fs_devices->seed;
6363 }
6364
6365 fs_devices = find_fsid(fsid);
6366 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006367 if (!btrfs_test_opt(root, DEGRADED))
6368 return ERR_PTR(-ENOENT);
6369
6370 fs_devices = alloc_fs_devices(fsid);
6371 if (IS_ERR(fs_devices))
6372 return fs_devices;
6373
6374 fs_devices->seeding = 1;
6375 fs_devices->opened = 1;
6376 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006377 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006378
6379 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006380 if (IS_ERR(fs_devices))
6381 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006382
Christoph Hellwig97288f22008-12-02 06:36:09 -05006383 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006384 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006385 if (ret) {
6386 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006387 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006388 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006389 }
Yan Zheng2b820322008-11-17 21:11:30 -05006390
6391 if (!fs_devices->seeding) {
6392 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006393 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006394 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006395 goto out;
6396 }
6397
6398 fs_devices->seed = root->fs_info->fs_devices->seed;
6399 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006400out:
Miao Xie5f375832014-09-03 21:35:46 +08006401 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006402}
6403
Chris Mason0d81ba52008-03-24 15:02:07 -04006404static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006405 struct extent_buffer *leaf,
6406 struct btrfs_dev_item *dev_item)
6407{
Miao Xie5f375832014-09-03 21:35:46 +08006408 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006409 struct btrfs_device *device;
6410 u64 devid;
6411 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006412 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006413 u8 dev_uuid[BTRFS_UUID_SIZE];
6414
Chris Mason0b86a832008-03-24 15:01:56 -04006415 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006416 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006417 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006418 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006419 BTRFS_UUID_SIZE);
6420
6421 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006422 fs_devices = open_seed_devices(root, fs_uuid);
6423 if (IS_ERR(fs_devices))
6424 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006425 }
6426
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006427 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006428 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006429 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006430 return -EIO;
6431
Miao Xie5f375832014-09-03 21:35:46 +08006432 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6433 if (!device)
6434 return -ENOMEM;
Anand Jain33b97e42015-05-08 04:34:35 +08006435 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6436 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006437 } else {
6438 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6439 return -EIO;
6440
6441 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006442 /*
6443 * this happens when a device that was properly setup
6444 * in the device info lists suddenly goes bad.
6445 * device->bdev is NULL, and so we have to set
6446 * device->missing to one here
6447 */
Miao Xie5f375832014-09-03 21:35:46 +08006448 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006449 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006450 }
Miao Xie5f375832014-09-03 21:35:46 +08006451
6452 /* Move the device to its own fs_devices */
6453 if (device->fs_devices != fs_devices) {
6454 ASSERT(device->missing);
6455
6456 list_move(&device->dev_list, &fs_devices->devices);
6457 device->fs_devices->num_devices--;
6458 fs_devices->num_devices++;
6459
6460 device->fs_devices->missing_devices--;
6461 fs_devices->missing_devices++;
6462
6463 device->fs_devices = fs_devices;
6464 }
Yan Zheng2b820322008-11-17 21:11:30 -05006465 }
6466
6467 if (device->fs_devices != root->fs_info->fs_devices) {
6468 BUG_ON(device->writeable);
6469 if (device->generation !=
6470 btrfs_device_generation(leaf, dev_item))
6471 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006472 }
Chris Mason0b86a832008-03-24 15:01:56 -04006473
6474 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006475 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006476 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006477 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006478 spin_lock(&root->fs_info->free_chunk_lock);
6479 root->fs_info->free_chunk_space += device->total_bytes -
6480 device->bytes_used;
6481 spin_unlock(&root->fs_info->free_chunk_lock);
6482 }
Chris Mason0b86a832008-03-24 15:01:56 -04006483 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006484 return ret;
6485}
6486
Yan Zhenge4404d62008-12-12 10:03:26 -05006487int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006488{
David Sterba6c417612011-04-13 15:41:04 +02006489 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006490 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006491 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006492 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006493 u8 *array_ptr;
6494 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006495 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006496 u32 num_stripes;
6497 u32 array_size;
6498 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006499 u32 cur_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006500 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006501
David Sterbaa83fffb2014-06-15 02:39:54 +02006502 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6503 /*
6504 * This will create extent buffer of nodesize, superblock size is
6505 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6506 * overallocate but we can keep it as-is, only the first page is used.
6507 */
6508 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
Chris Masona061fc82008-05-07 11:43:44 -04006509 if (!sb)
6510 return -ENOMEM;
David Sterba4db8c522015-12-03 13:06:46 +01006511 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006512 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006513 /*
6514 * The sb extent buffer is artifical and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006515 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006516 * pages up-to-date when the page is larger: extent does not cover the
6517 * whole page and consequently check_page_uptodate does not find all
6518 * the page's extents up-to-date (the hole beyond sb),
6519 * write_extent_buffer then triggers a WARN_ON.
6520 *
6521 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6522 * but sb spans only this function. Add an explicit SetPageUptodate call
6523 * to silence the warning eg. on PowerPC 64.
6524 */
6525 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006526 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006527
Chris Masona061fc82008-05-07 11:43:44 -04006528 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006529 array_size = btrfs_super_sys_array_size(super_copy);
6530
David Sterba1ffb22c2014-10-31 19:02:42 +01006531 array_ptr = super_copy->sys_chunk_array;
6532 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6533 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006534
David Sterba1ffb22c2014-10-31 19:02:42 +01006535 while (cur_offset < array_size) {
6536 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006537 len = sizeof(*disk_key);
6538 if (cur_offset + len > array_size)
6539 goto out_short_read;
6540
Chris Mason0b86a832008-03-24 15:01:56 -04006541 btrfs_disk_key_to_cpu(&key, disk_key);
6542
David Sterba1ffb22c2014-10-31 19:02:42 +01006543 array_ptr += len;
6544 sb_array_offset += len;
6545 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006546
Chris Mason0d81ba52008-03-24 15:02:07 -04006547 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006548 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006549 /*
6550 * At least one btrfs_chunk with one stripe must be
6551 * present, exact stripe count check comes afterwards
6552 */
6553 len = btrfs_chunk_item_size(1);
6554 if (cur_offset + len > array_size)
6555 goto out_short_read;
6556
6557 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006558 if (!num_stripes) {
6559 printk(KERN_ERR
6560 "BTRFS: invalid number of stripes %u in sys_array at offset %u\n",
6561 num_stripes, cur_offset);
6562 ret = -EIO;
6563 break;
6564 }
6565
David Sterbae3540ea2014-11-05 15:24:51 +01006566 len = btrfs_chunk_item_size(num_stripes);
6567 if (cur_offset + len > array_size)
6568 goto out_short_read;
6569
Chris Mason0d81ba52008-03-24 15:02:07 -04006570 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006571 if (ret)
6572 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006573 } else {
David Sterba93a3d462015-11-30 17:27:09 +01006574 printk(KERN_ERR
6575 "BTRFS: unexpected item type %u in sys_array at offset %u\n",
6576 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006577 ret = -EIO;
6578 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006579 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006580 array_ptr += len;
6581 sb_array_offset += len;
6582 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006583 }
Chris Masona061fc82008-05-07 11:43:44 -04006584 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006585 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006586
6587out_short_read:
6588 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6589 len, cur_offset);
6590 free_extent_buffer(sb);
6591 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006592}
6593
6594int btrfs_read_chunk_tree(struct btrfs_root *root)
6595{
6596 struct btrfs_path *path;
6597 struct extent_buffer *leaf;
6598 struct btrfs_key key;
6599 struct btrfs_key found_key;
6600 int ret;
6601 int slot;
6602
6603 root = root->fs_info->chunk_root;
6604
6605 path = btrfs_alloc_path();
6606 if (!path)
6607 return -ENOMEM;
6608
Li Zefanb367e472011-12-07 11:38:24 +08006609 mutex_lock(&uuid_mutex);
6610 lock_chunks(root);
6611
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006612 /*
6613 * Read all device items, and then all the chunk items. All
6614 * device items are found before any chunk item (their object id
6615 * is smaller than the lowest possible object id for a chunk
6616 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006617 */
6618 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6619 key.offset = 0;
6620 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006621 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006622 if (ret < 0)
6623 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006624 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006625 leaf = path->nodes[0];
6626 slot = path->slots[0];
6627 if (slot >= btrfs_header_nritems(leaf)) {
6628 ret = btrfs_next_leaf(root, path);
6629 if (ret == 0)
6630 continue;
6631 if (ret < 0)
6632 goto error;
6633 break;
6634 }
6635 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006636 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6637 struct btrfs_dev_item *dev_item;
6638 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006639 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006640 ret = read_one_dev(root, leaf, dev_item);
6641 if (ret)
6642 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006643 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6644 struct btrfs_chunk *chunk;
6645 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6646 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006647 if (ret)
6648 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006649 }
6650 path->slots[0]++;
6651 }
Chris Mason0b86a832008-03-24 15:01:56 -04006652 ret = 0;
6653error:
Li Zefanb367e472011-12-07 11:38:24 +08006654 unlock_chunks(root);
6655 mutex_unlock(&uuid_mutex);
6656
Yan Zheng2b820322008-11-17 21:11:30 -05006657 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006658 return ret;
6659}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006660
Miao Xiecb517ea2013-05-15 07:48:19 +00006661void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6662{
6663 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6664 struct btrfs_device *device;
6665
Liu Bo29cc83f2014-05-11 23:14:59 +08006666 while (fs_devices) {
6667 mutex_lock(&fs_devices->device_list_mutex);
6668 list_for_each_entry(device, &fs_devices->devices, dev_list)
6669 device->dev_root = fs_info->dev_root;
6670 mutex_unlock(&fs_devices->device_list_mutex);
6671
6672 fs_devices = fs_devices->seed;
6673 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006674}
6675
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006676static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6677{
6678 int i;
6679
6680 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6681 btrfs_dev_stat_reset(dev, i);
6682}
6683
6684int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6685{
6686 struct btrfs_key key;
6687 struct btrfs_key found_key;
6688 struct btrfs_root *dev_root = fs_info->dev_root;
6689 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6690 struct extent_buffer *eb;
6691 int slot;
6692 int ret = 0;
6693 struct btrfs_device *device;
6694 struct btrfs_path *path = NULL;
6695 int i;
6696
6697 path = btrfs_alloc_path();
6698 if (!path) {
6699 ret = -ENOMEM;
6700 goto out;
6701 }
6702
6703 mutex_lock(&fs_devices->device_list_mutex);
6704 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6705 int item_size;
6706 struct btrfs_dev_stats_item *ptr;
6707
6708 key.objectid = 0;
6709 key.type = BTRFS_DEV_STATS_KEY;
6710 key.offset = device->devid;
6711 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6712 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006713 __btrfs_reset_dev_stats(device);
6714 device->dev_stats_valid = 1;
6715 btrfs_release_path(path);
6716 continue;
6717 }
6718 slot = path->slots[0];
6719 eb = path->nodes[0];
6720 btrfs_item_key_to_cpu(eb, &found_key, slot);
6721 item_size = btrfs_item_size_nr(eb, slot);
6722
6723 ptr = btrfs_item_ptr(eb, slot,
6724 struct btrfs_dev_stats_item);
6725
6726 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6727 if (item_size >= (1 + i) * sizeof(__le64))
6728 btrfs_dev_stat_set(device, i,
6729 btrfs_dev_stats_value(eb, ptr, i));
6730 else
6731 btrfs_dev_stat_reset(device, i);
6732 }
6733
6734 device->dev_stats_valid = 1;
6735 btrfs_dev_stat_print_on_load(device);
6736 btrfs_release_path(path);
6737 }
6738 mutex_unlock(&fs_devices->device_list_mutex);
6739
6740out:
6741 btrfs_free_path(path);
6742 return ret < 0 ? ret : 0;
6743}
6744
6745static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6746 struct btrfs_root *dev_root,
6747 struct btrfs_device *device)
6748{
6749 struct btrfs_path *path;
6750 struct btrfs_key key;
6751 struct extent_buffer *eb;
6752 struct btrfs_dev_stats_item *ptr;
6753 int ret;
6754 int i;
6755
6756 key.objectid = 0;
6757 key.type = BTRFS_DEV_STATS_KEY;
6758 key.offset = device->devid;
6759
6760 path = btrfs_alloc_path();
6761 BUG_ON(!path);
6762 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6763 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006764 btrfs_warn_in_rcu(dev_root->fs_info,
6765 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006766 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006767 goto out;
6768 }
6769
6770 if (ret == 0 &&
6771 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6772 /* need to delete old one and insert a new one */
6773 ret = btrfs_del_item(trans, dev_root, path);
6774 if (ret != 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006775 btrfs_warn_in_rcu(dev_root->fs_info,
6776 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006777 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006778 goto out;
6779 }
6780 ret = 1;
6781 }
6782
6783 if (ret == 1) {
6784 /* need to insert a new item */
6785 btrfs_release_path(path);
6786 ret = btrfs_insert_empty_item(trans, dev_root, path,
6787 &key, sizeof(*ptr));
6788 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006789 btrfs_warn_in_rcu(dev_root->fs_info,
6790 "insert dev_stats item for device %s failed %d",
6791 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006792 goto out;
6793 }
6794 }
6795
6796 eb = path->nodes[0];
6797 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6798 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6799 btrfs_set_dev_stats_value(eb, ptr, i,
6800 btrfs_dev_stat_read(device, i));
6801 btrfs_mark_buffer_dirty(eb);
6802
6803out:
6804 btrfs_free_path(path);
6805 return ret;
6806}
6807
6808/*
6809 * called from commit_transaction. Writes all changed device stats to disk.
6810 */
6811int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6812 struct btrfs_fs_info *fs_info)
6813{
6814 struct btrfs_root *dev_root = fs_info->dev_root;
6815 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6816 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006817 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006818 int ret = 0;
6819
6820 mutex_lock(&fs_devices->device_list_mutex);
6821 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006822 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006823 continue;
6824
Miao Xieaddc3fa2014-07-24 11:37:11 +08006825 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006826 ret = update_dev_stat_item(trans, dev_root, device);
6827 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006828 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006829 }
6830 mutex_unlock(&fs_devices->device_list_mutex);
6831
6832 return ret;
6833}
6834
Stefan Behrens442a4f62012-05-25 16:06:08 +02006835void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6836{
6837 btrfs_dev_stat_inc(dev, index);
6838 btrfs_dev_stat_print_on_error(dev);
6839}
6840
Eric Sandeen48a3b632013-04-25 20:41:01 +00006841static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006842{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006843 if (!dev->dev_stats_valid)
6844 return;
David Sterbab14af3b2015-10-08 10:43:10 +02006845 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6846 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006847 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006848 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6849 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6850 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006851 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6852 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006853}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006854
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006855static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6856{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006857 int i;
6858
6859 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6860 if (btrfs_dev_stat_read(dev, i) != 0)
6861 break;
6862 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6863 return; /* all values == 0, suppress message */
6864
David Sterbaecaeb142015-10-08 09:01:03 +02006865 btrfs_info_in_rcu(dev->dev_root->fs_info,
6866 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006867 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006868 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6869 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6870 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6871 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6872 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6873}
6874
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006875int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006876 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006877{
6878 struct btrfs_device *dev;
6879 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6880 int i;
6881
6882 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006883 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006884 mutex_unlock(&fs_devices->device_list_mutex);
6885
6886 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006887 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006888 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006889 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006890 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006891 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006892 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006893 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6894 if (stats->nr_items > i)
6895 stats->values[i] =
6896 btrfs_dev_stat_read_and_reset(dev, i);
6897 else
6898 btrfs_dev_stat_reset(dev, i);
6899 }
6900 } else {
6901 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6902 if (stats->nr_items > i)
6903 stats->values[i] = btrfs_dev_stat_read(dev, i);
6904 }
6905 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6906 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6907 return 0;
6908}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006909
Anand Jain12b1c262015-08-14 18:32:59 +08006910void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006911{
6912 struct buffer_head *bh;
6913 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08006914 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006915
Anand Jain12b1c262015-08-14 18:32:59 +08006916 if (!bdev)
6917 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006918
Anand Jain12b1c262015-08-14 18:32:59 +08006919 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6920 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006921
Anand Jain12b1c262015-08-14 18:32:59 +08006922 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6923 continue;
6924
6925 disk_super = (struct btrfs_super_block *)bh->b_data;
6926
6927 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6928 set_buffer_dirty(bh);
6929 sync_dirty_buffer(bh);
6930 brelse(bh);
6931 }
6932
6933 /* Notify udev that device has changed */
6934 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6935
6936 /* Update ctime/mtime for device path for libblkid */
6937 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006938}
Miao Xie935e5cc2014-09-03 21:35:33 +08006939
6940/*
6941 * Update the size of all devices, which is used for writing out the
6942 * super blocks.
6943 */
6944void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6945{
6946 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6947 struct btrfs_device *curr, *next;
6948
6949 if (list_empty(&fs_devices->resized_devices))
6950 return;
6951
6952 mutex_lock(&fs_devices->device_list_mutex);
6953 lock_chunks(fs_info->dev_root);
6954 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6955 resized_list) {
6956 list_del_init(&curr->resized_list);
6957 curr->commit_total_bytes = curr->disk_total_bytes;
6958 }
6959 unlock_chunks(fs_info->dev_root);
6960 mutex_unlock(&fs_devices->device_list_mutex);
6961}
Miao Xiece7213c2014-09-03 21:35:34 +08006962
6963/* Must be invoked during the transaction commit */
6964void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6965 struct btrfs_transaction *transaction)
6966{
6967 struct extent_map *em;
6968 struct map_lookup *map;
6969 struct btrfs_device *dev;
6970 int i;
6971
6972 if (list_empty(&transaction->pending_chunks))
6973 return;
6974
6975 /* In order to kick the device replace finish process */
6976 lock_chunks(root);
6977 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04006978 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08006979
6980 for (i = 0; i < map->num_stripes; i++) {
6981 dev = map->stripes[i].dev;
6982 dev->commit_bytes_used = dev->bytes_used;
6983 }
6984 }
6985 unlock_chunks(root);
6986}
Anand Jain5a13f432015-03-10 06:38:31 +08006987
6988void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
6989{
6990 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6991 while (fs_devices) {
6992 fs_devices->fs_info = fs_info;
6993 fs_devices = fs_devices->seed;
6994 }
6995}
6996
6997void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
6998{
6999 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7000 while (fs_devices) {
7001 fs_devices->fs_info = NULL;
7002 fs_devices = fs_devices->seed;
7003 }
7004}
Anand Jainf190aa42015-08-14 18:33:05 +08007005
David Sterba87ad58c2015-11-27 18:49:39 +01007006static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf190aa42015-08-14 18:33:05 +08007007{
7008 struct btrfs_fs_devices *fs_devices = device->fs_devices;
7009 struct btrfs_device *new_device;
7010 struct rcu_string *name;
7011
7012 if (device->bdev)
7013 fs_devices->open_devices--;
7014
7015 if (device->writeable &&
7016 device->devid != BTRFS_DEV_REPLACE_DEVID) {
7017 list_del_init(&device->dev_alloc_list);
7018 fs_devices->rw_devices--;
7019 }
7020
7021 if (device->missing)
7022 fs_devices->missing_devices--;
7023
7024 new_device = btrfs_alloc_device(NULL, &device->devid,
7025 device->uuid);
7026 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
7027
7028 /* Safe because we are under uuid_mutex */
7029 if (device->name) {
7030 name = rcu_string_strdup(device->name->str, GFP_NOFS);
7031 BUG_ON(!name); /* -ENOMEM */
7032 rcu_assign_pointer(new_device->name, name);
7033 }
7034
7035 list_replace_rcu(&device->dev_list, &new_device->dev_list);
7036 new_device->fs_devices = device->fs_devices;
7037
7038 call_rcu(&device->rcu, free_device);
7039}