blob: ed685991b2c1ec80708f6a989225417921bb1e1f [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 Mason4b4e25f2008-11-20 10:22:27 -050031#include "compat.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "ctree.h"
33#include "extent_map.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "print-tree.h"
37#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050038#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040039#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010040#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040041#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060042#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010043#include "dev-replace.h"
Chris Mason0b86a832008-03-24 15:01:56 -040044
Yan Zheng2b820322008-11-17 21:11:30 -050045static int init_first_rw_device(struct btrfs_trans_handle *trans,
46 struct btrfs_root *root,
47 struct btrfs_device *device);
48static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
Stefan Behrens733f4fb2012-05-25 16:06:10 +020049static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +000050static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +020051static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Yan Zheng2b820322008-11-17 21:11:30 -050052
Chris Mason8a4b83c2008-03-24 15:02:07 -040053static DEFINE_MUTEX(uuid_mutex);
54static LIST_HEAD(fs_uuids);
55
Chris Mason7d9eb122008-07-08 14:19:17 -040056static void lock_chunks(struct btrfs_root *root)
57{
Chris Mason7d9eb122008-07-08 14:19:17 -040058 mutex_lock(&root->fs_info->chunk_mutex);
59}
60
61static void unlock_chunks(struct btrfs_root *root)
62{
Chris Mason7d9eb122008-07-08 14:19:17 -040063 mutex_unlock(&root->fs_info->chunk_mutex);
64}
65
Ilya Dryomov2208a372013-08-12 14:33:03 +030066static struct btrfs_fs_devices *__alloc_fs_devices(void)
67{
68 struct btrfs_fs_devices *fs_devs;
69
70 fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS);
71 if (!fs_devs)
72 return ERR_PTR(-ENOMEM);
73
74 mutex_init(&fs_devs->device_list_mutex);
75
76 INIT_LIST_HEAD(&fs_devs->devices);
77 INIT_LIST_HEAD(&fs_devs->alloc_list);
78 INIT_LIST_HEAD(&fs_devs->list);
79
80 return fs_devs;
81}
82
83/**
84 * alloc_fs_devices - allocate struct btrfs_fs_devices
85 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
86 * generated.
87 *
88 * Return: a pointer to a new &struct btrfs_fs_devices on success;
89 * ERR_PTR() on error. Returned struct is not linked onto any lists and
90 * can be destroyed with kfree() right away.
91 */
92static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
93{
94 struct btrfs_fs_devices *fs_devs;
95
96 fs_devs = __alloc_fs_devices();
97 if (IS_ERR(fs_devs))
98 return fs_devs;
99
100 if (fsid)
101 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
102 else
103 generate_random_uuid(fs_devs->fsid);
104
105 return fs_devs;
106}
107
Yan Zhenge4404d62008-12-12 10:03:26 -0500108static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
109{
110 struct btrfs_device *device;
111 WARN_ON(fs_devices->opened);
112 while (!list_empty(&fs_devices->devices)) {
113 device = list_entry(fs_devices->devices.next,
114 struct btrfs_device, dev_list);
115 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400116 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500117 kfree(device);
118 }
119 kfree(fs_devices);
120}
121
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000122static void btrfs_kobject_uevent(struct block_device *bdev,
123 enum kobject_action action)
124{
125 int ret;
126
127 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
128 if (ret)
129 pr_warn("Sending event '%d' to kobject: '%s' (%p): failed\n",
130 action,
131 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
132 &disk_to_dev(bdev->bd_disk)->kobj);
133}
134
Jeff Mahoney143bede2012-03-01 14:56:26 +0100135void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400136{
137 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400138
Yan Zheng2b820322008-11-17 21:11:30 -0500139 while (!list_empty(&fs_uuids)) {
140 fs_devices = list_entry(fs_uuids.next,
141 struct btrfs_fs_devices, list);
142 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500143 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400144 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400145}
146
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300147static struct btrfs_device *__alloc_device(void)
148{
149 struct btrfs_device *dev;
150
151 dev = kzalloc(sizeof(*dev), GFP_NOFS);
152 if (!dev)
153 return ERR_PTR(-ENOMEM);
154
155 INIT_LIST_HEAD(&dev->dev_list);
156 INIT_LIST_HEAD(&dev->dev_alloc_list);
157
158 spin_lock_init(&dev->io_lock);
159
160 spin_lock_init(&dev->reada_lock);
161 atomic_set(&dev->reada_in_flight, 0);
162 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_WAIT);
163 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_WAIT);
164
165 return dev;
166}
167
Chris Masona1b32a52008-09-05 16:09:51 -0400168static noinline struct btrfs_device *__find_device(struct list_head *head,
169 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400170{
171 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400172
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500173 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400174 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400175 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400176 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400177 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400178 }
179 return NULL;
180}
181
Chris Masona1b32a52008-09-05 16:09:51 -0400182static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400183{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400184 struct btrfs_fs_devices *fs_devices;
185
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500186 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400187 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
188 return fs_devices;
189 }
190 return NULL;
191}
192
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100193static int
194btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
195 int flush, struct block_device **bdev,
196 struct buffer_head **bh)
197{
198 int ret;
199
200 *bdev = blkdev_get_by_path(device_path, flags, holder);
201
202 if (IS_ERR(*bdev)) {
203 ret = PTR_ERR(*bdev);
204 printk(KERN_INFO "btrfs: open %s failed\n", device_path);
205 goto error;
206 }
207
208 if (flush)
209 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
210 ret = set_blocksize(*bdev, 4096);
211 if (ret) {
212 blkdev_put(*bdev, flags);
213 goto error;
214 }
215 invalidate_bdev(*bdev);
216 *bh = btrfs_read_dev_super(*bdev);
217 if (!*bh) {
218 ret = -EINVAL;
219 blkdev_put(*bdev, flags);
220 goto error;
221 }
222
223 return 0;
224
225error:
226 *bdev = NULL;
227 *bh = NULL;
228 return ret;
229}
230
Chris Masonffbd5172009-04-20 15:50:09 -0400231static void requeue_list(struct btrfs_pending_bios *pending_bios,
232 struct bio *head, struct bio *tail)
233{
234
235 struct bio *old_head;
236
237 old_head = pending_bios->head;
238 pending_bios->head = head;
239 if (pending_bios->tail)
240 tail->bi_next = old_head;
241 else
242 pending_bios->tail = tail;
243}
244
Chris Mason8b712842008-06-11 16:50:36 -0400245/*
246 * we try to collect pending bios for a device so we don't get a large
247 * number of procs sending bios down to the same device. This greatly
248 * improves the schedulers ability to collect and merge the bios.
249 *
250 * But, it also turns into a long list of bios to process and that is sure
251 * to eventually make the worker thread block. The solution here is to
252 * make some progress and then put this work struct back at the end of
253 * the list if the block device is congested. This way, multiple devices
254 * can make progress from a single worker thread.
255 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100256static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400257{
258 struct bio *pending;
259 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400260 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400261 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400262 struct bio *tail;
263 struct bio *cur;
264 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400265 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400266 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400267 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400268 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400269 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000270 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400271 struct blk_plug plug;
272
273 /*
274 * this function runs all the bios we've collected for
275 * a particular device. We don't want to wander off to
276 * another device without first sending all of these down.
277 * So, setup a plug here and finish it off before we return
278 */
279 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400280
Chris Masonbedf7622009-04-03 10:32:58 -0400281 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400282 fs_info = device->dev_root->fs_info;
283 limit = btrfs_async_submit_limit(fs_info);
284 limit = limit * 2 / 3;
285
Chris Mason8b712842008-06-11 16:50:36 -0400286loop:
287 spin_lock(&device->io_lock);
288
Chris Masona6837052009-02-04 09:19:41 -0500289loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400290 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400291
Chris Mason8b712842008-06-11 16:50:36 -0400292 /* take all the bios off the list at once and process them
293 * later on (without the lock held). But, remember the
294 * tail and other pointers so the bios can be properly reinserted
295 * into the list if we hit congestion
296 */
Chris Masond84275c2009-06-09 15:39:08 -0400297 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400298 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400299 force_reg = 1;
300 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400301 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400302 force_reg = 0;
303 }
Chris Masonffbd5172009-04-20 15:50:09 -0400304
305 pending = pending_bios->head;
306 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400307 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400308
309 /*
310 * if pending was null this time around, no bios need processing
311 * at all and we can stop. Otherwise it'll loop back up again
312 * and do an additional check so no bios are missed.
313 *
314 * device->running_pending is used to synchronize with the
315 * schedule_bio code.
316 */
Chris Masonffbd5172009-04-20 15:50:09 -0400317 if (device->pending_sync_bios.head == NULL &&
318 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400319 again = 0;
320 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400321 } else {
322 again = 1;
323 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400324 }
Chris Masonffbd5172009-04-20 15:50:09 -0400325
326 pending_bios->head = NULL;
327 pending_bios->tail = NULL;
328
Chris Mason8b712842008-06-11 16:50:36 -0400329 spin_unlock(&device->io_lock);
330
Chris Masond3977122009-01-05 21:25:51 -0500331 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400332
333 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400334 /* we want to work on both lists, but do more bios on the
335 * sync list than the regular list
336 */
337 if ((num_run > 32 &&
338 pending_bios != &device->pending_sync_bios &&
339 device->pending_sync_bios.head) ||
340 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
341 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400342 spin_lock(&device->io_lock);
343 requeue_list(pending_bios, pending, tail);
344 goto loop_lock;
345 }
346
Chris Mason8b712842008-06-11 16:50:36 -0400347 cur = pending;
348 pending = pending->bi_next;
349 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400350
Josef Bacik66657b32012-08-01 15:36:24 -0400351 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400352 waitqueue_active(&fs_info->async_submit_wait))
353 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400354
355 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400356
Chris Mason2ab1ba62011-08-04 14:28:36 -0400357 /*
358 * if we're doing the sync list, record that our
359 * plug has some sync requests on it
360 *
361 * If we're doing the regular list and there are
362 * sync requests sitting around, unplug before
363 * we add more
364 */
365 if (pending_bios == &device->pending_sync_bios) {
366 sync_pending = 1;
367 } else if (sync_pending) {
368 blk_finish_plug(&plug);
369 blk_start_plug(&plug);
370 sync_pending = 0;
371 }
372
Stefan Behrens21adbd52011-11-09 13:44:05 +0100373 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400374 num_run++;
375 batch_run++;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100376 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400377 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400378
379 /*
380 * we made progress, there is more work to do and the bdi
381 * is now congested. Back off and let other work structs
382 * run instead
383 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400384 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500385 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400386 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400387
Chris Masonb765ead2009-04-03 10:27:10 -0400388 ioc = current->io_context;
389
390 /*
391 * the main goal here is that we don't want to
392 * block if we're going to be able to submit
393 * more requests without blocking.
394 *
395 * This code does two great things, it pokes into
396 * the elevator code from a filesystem _and_
397 * it makes assumptions about how batching works.
398 */
399 if (ioc && ioc->nr_batch_requests > 0 &&
400 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
401 (last_waited == 0 ||
402 ioc->last_waited == last_waited)) {
403 /*
404 * we want to go through our batch of
405 * requests and stop. So, we copy out
406 * the ioc->last_waited time and test
407 * against it before looping
408 */
409 last_waited = ioc->last_waited;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100410 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400411 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400412 continue;
413 }
Chris Mason8b712842008-06-11 16:50:36 -0400414 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400415 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500416 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400417
418 spin_unlock(&device->io_lock);
419 btrfs_requeue_work(&device->work);
420 goto done;
421 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500422 /* unplug every 64 requests just for good measure */
423 if (batch_run % 64 == 0) {
424 blk_finish_plug(&plug);
425 blk_start_plug(&plug);
426 sync_pending = 0;
427 }
Chris Mason8b712842008-06-11 16:50:36 -0400428 }
Chris Masonffbd5172009-04-20 15:50:09 -0400429
Chris Mason51684082010-03-10 15:33:32 -0500430 cond_resched();
431 if (again)
432 goto loop;
433
434 spin_lock(&device->io_lock);
435 if (device->pending_bios.head || device->pending_sync_bios.head)
436 goto loop_lock;
437 spin_unlock(&device->io_lock);
438
Chris Mason8b712842008-06-11 16:50:36 -0400439done:
Chris Mason211588a2011-04-19 20:12:40 -0400440 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400441}
442
Christoph Hellwigb2950862008-12-02 09:54:17 -0500443static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400444{
445 struct btrfs_device *device;
446
447 device = container_of(work, struct btrfs_device, work);
448 run_scheduled_bios(device);
449}
450
Chris Masona1b32a52008-09-05 16:09:51 -0400451static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400452 struct btrfs_super_block *disk_super,
453 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
454{
455 struct btrfs_device *device;
456 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400457 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400458 u64 found_transid = btrfs_super_generation(disk_super);
459
460 fs_devices = find_fsid(disk_super->fsid);
461 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300462 fs_devices = alloc_fs_devices(disk_super->fsid);
463 if (IS_ERR(fs_devices))
464 return PTR_ERR(fs_devices);
465
Chris Mason8a4b83c2008-03-24 15:02:07 -0400466 list_add(&fs_devices->list, &fs_uuids);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400467 fs_devices->latest_devid = devid;
468 fs_devices->latest_trans = found_transid;
Ilya Dryomov2208a372013-08-12 14:33:03 +0300469
Chris Mason8a4b83c2008-03-24 15:02:07 -0400470 device = NULL;
471 } else {
Chris Masona4437552008-04-18 10:29:38 -0400472 device = __find_device(&fs_devices->devices, devid,
473 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400474 }
475 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500476 if (fs_devices->opened)
477 return -EBUSY;
478
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300479 device = btrfs_alloc_device(NULL, &devid,
480 disk_super->dev_item.uuid);
481 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400482 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300483 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400484 }
Josef Bacik606686e2012-06-04 14:03:51 -0400485
486 name = rcu_string_strdup(path, GFP_NOFS);
487 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400488 kfree(device);
489 return -ENOMEM;
490 }
Josef Bacik606686e2012-06-04 14:03:51 -0400491 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200492
Chris Masone5e9a522009-06-10 15:17:02 -0400493 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000494 list_add_rcu(&device->dev_list, &fs_devices->devices);
Chris Masone5e9a522009-06-10 15:17:02 -0400495 mutex_unlock(&fs_devices->device_list_mutex);
496
Yan Zheng2b820322008-11-17 21:11:30 -0500497 device->fs_devices = fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400498 fs_devices->num_devices++;
Josef Bacik606686e2012-06-04 14:03:51 -0400499 } else if (!device->name || strcmp(device->name->str, path)) {
500 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000501 if (!name)
502 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400503 rcu_string_free(device->name);
504 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500505 if (device->missing) {
506 fs_devices->missing_devices--;
507 device->missing = 0;
508 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400509 }
510
511 if (found_transid > fs_devices->latest_trans) {
512 fs_devices->latest_devid = devid;
513 fs_devices->latest_trans = found_transid;
514 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400515 *fs_devices_ret = fs_devices;
516 return 0;
517}
518
Yan Zhenge4404d62008-12-12 10:03:26 -0500519static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
520{
521 struct btrfs_fs_devices *fs_devices;
522 struct btrfs_device *device;
523 struct btrfs_device *orig_dev;
524
Ilya Dryomov2208a372013-08-12 14:33:03 +0300525 fs_devices = alloc_fs_devices(orig->fsid);
526 if (IS_ERR(fs_devices))
527 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500528
Yan Zhenge4404d62008-12-12 10:03:26 -0500529 fs_devices->latest_devid = orig->latest_devid;
530 fs_devices->latest_trans = orig->latest_trans;
Josef Bacik02db0842012-06-21 16:03:58 -0400531 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500532
Xiao Guangrong46224702011-04-20 10:08:47 +0000533 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500534 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400535 struct rcu_string *name;
536
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300537 device = btrfs_alloc_device(NULL, &orig_dev->devid,
538 orig_dev->uuid);
539 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500540 goto error;
541
Josef Bacik606686e2012-06-04 14:03:51 -0400542 /*
543 * This is ok to do without rcu read locked because we hold the
544 * uuid mutex so nothing we touch in here is going to disappear.
545 */
546 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
547 if (!name) {
Julia Lawallfd2696f2009-09-29 13:51:04 -0400548 kfree(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500549 goto error;
Julia Lawallfd2696f2009-09-29 13:51:04 -0400550 }
Josef Bacik606686e2012-06-04 14:03:51 -0400551 rcu_assign_pointer(device->name, name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500552
Yan Zhenge4404d62008-12-12 10:03:26 -0500553 list_add(&device->dev_list, &fs_devices->devices);
554 device->fs_devices = fs_devices;
555 fs_devices->num_devices++;
556 }
557 return fs_devices;
558error:
559 free_fs_devices(fs_devices);
560 return ERR_PTR(-ENOMEM);
561}
562
Stefan Behrens8dabb742012-11-06 13:15:27 +0100563void btrfs_close_extra_devices(struct btrfs_fs_info *fs_info,
564 struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400565{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500566 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400567
Chris Masona6b0d5c2012-02-20 20:53:43 -0500568 struct block_device *latest_bdev = NULL;
569 u64 latest_devid = 0;
570 u64 latest_transid = 0;
571
Chris Masondfe25022008-05-13 13:46:40 -0400572 mutex_lock(&uuid_mutex);
573again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000574 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500575 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500576 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100577 if (!device->is_tgtdev_for_dev_replace &&
578 (!latest_transid ||
579 device->generation > latest_transid)) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500580 latest_devid = device->devid;
581 latest_transid = device->generation;
582 latest_bdev = device->bdev;
583 }
Yan Zheng2b820322008-11-17 21:11:30 -0500584 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500585 }
Yan Zheng2b820322008-11-17 21:11:30 -0500586
Stefan Behrens8dabb742012-11-06 13:15:27 +0100587 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
588 /*
589 * In the first step, keep the device which has
590 * the correct fsid and the devid that is used
591 * for the dev_replace procedure.
592 * In the second step, the dev_replace state is
593 * read from the device tree and it is known
594 * whether the procedure is really active or
595 * not, which means whether this device is
596 * used or whether it should be removed.
597 */
598 if (step == 0 || device->is_tgtdev_for_dev_replace) {
599 continue;
600 }
601 }
Yan Zheng2b820322008-11-17 21:11:30 -0500602 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100603 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500604 device->bdev = NULL;
605 fs_devices->open_devices--;
606 }
607 if (device->writeable) {
608 list_del_init(&device->dev_alloc_list);
609 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100610 if (!device->is_tgtdev_for_dev_replace)
611 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500612 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500613 list_del_init(&device->dev_list);
614 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400615 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500616 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400617 }
Yan Zheng2b820322008-11-17 21:11:30 -0500618
619 if (fs_devices->seed) {
620 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500621 goto again;
622 }
623
Chris Masona6b0d5c2012-02-20 20:53:43 -0500624 fs_devices->latest_bdev = latest_bdev;
625 fs_devices->latest_devid = latest_devid;
626 fs_devices->latest_trans = latest_transid;
627
Chris Masondfe25022008-05-13 13:46:40 -0400628 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400629}
Chris Masona0af4692008-05-13 16:03:06 -0400630
Xiao Guangrong1f781602011-04-20 10:09:16 +0000631static void __free_device(struct work_struct *work)
632{
633 struct btrfs_device *device;
634
635 device = container_of(work, struct btrfs_device, rcu_work);
636
637 if (device->bdev)
638 blkdev_put(device->bdev, device->mode);
639
Josef Bacik606686e2012-06-04 14:03:51 -0400640 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000641 kfree(device);
642}
643
644static void free_device(struct rcu_head *head)
645{
646 struct btrfs_device *device;
647
648 device = container_of(head, struct btrfs_device, rcu);
649
650 INIT_WORK(&device->rcu_work, __free_device);
651 schedule_work(&device->rcu_work);
652}
653
Yan Zheng2b820322008-11-17 21:11:30 -0500654static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400655{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400656 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500657
Yan Zheng2b820322008-11-17 21:11:30 -0500658 if (--fs_devices->opened > 0)
659 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400660
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000661 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500662 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Xiao Guangrong1f781602011-04-20 10:09:16 +0000663 struct btrfs_device *new_device;
Josef Bacik606686e2012-06-04 14:03:51 -0400664 struct rcu_string *name;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000665
666 if (device->bdev)
Chris Masona0af4692008-05-13 16:03:06 -0400667 fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000668
Stefan Behrens8dabb742012-11-06 13:15:27 +0100669 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -0500670 list_del_init(&device->dev_alloc_list);
671 fs_devices->rw_devices--;
672 }
673
Josef Bacikd5e20032011-08-04 14:52:27 +0000674 if (device->can_discard)
675 fs_devices->num_can_discard--;
676
Ilya Dryomova1e87802013-08-12 14:33:04 +0300677 new_device = btrfs_alloc_device(NULL, &device->devid,
678 device->uuid);
679 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
Josef Bacik606686e2012-06-04 14:03:51 -0400680
681 /* Safe because we are under uuid_mutex */
Josef Bacik99f59442012-08-02 10:23:59 -0400682 if (device->name) {
683 name = rcu_string_strdup(device->name->str, GFP_NOFS);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300684 BUG_ON(!name); /* -ENOMEM */
Josef Bacik99f59442012-08-02 10:23:59 -0400685 rcu_assign_pointer(new_device->name, name);
686 }
Ilya Dryomova1e87802013-08-12 14:33:04 +0300687
Xiao Guangrong1f781602011-04-20 10:09:16 +0000688 list_replace_rcu(&device->dev_list, &new_device->dev_list);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300689 new_device->fs_devices = device->fs_devices;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000690
691 call_rcu(&device->rcu, free_device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400692 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000693 mutex_unlock(&fs_devices->device_list_mutex);
694
Yan Zhenge4404d62008-12-12 10:03:26 -0500695 WARN_ON(fs_devices->open_devices);
696 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500697 fs_devices->opened = 0;
698 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500699
Chris Mason8a4b83c2008-03-24 15:02:07 -0400700 return 0;
701}
702
Yan Zheng2b820322008-11-17 21:11:30 -0500703int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
704{
Yan Zhenge4404d62008-12-12 10:03:26 -0500705 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500706 int ret;
707
708 mutex_lock(&uuid_mutex);
709 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500710 if (!fs_devices->opened) {
711 seed_devices = fs_devices->seed;
712 fs_devices->seed = NULL;
713 }
Yan Zheng2b820322008-11-17 21:11:30 -0500714 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500715
716 while (seed_devices) {
717 fs_devices = seed_devices;
718 seed_devices = fs_devices->seed;
719 __btrfs_close_devices(fs_devices);
720 free_fs_devices(fs_devices);
721 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000722 /*
723 * Wait for rcu kworkers under __btrfs_close_devices
724 * to finish all blkdev_puts so device is really
725 * free when umount is done.
726 */
727 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500728 return ret;
729}
730
Yan Zhenge4404d62008-12-12 10:03:26 -0500731static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
732 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400733{
Josef Bacikd5e20032011-08-04 14:52:27 +0000734 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400735 struct block_device *bdev;
736 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400737 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400738 struct block_device *latest_bdev = NULL;
739 struct buffer_head *bh;
740 struct btrfs_super_block *disk_super;
741 u64 latest_devid = 0;
742 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400743 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500744 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400745 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400746
Tejun Heod4d77622010-11-13 11:55:18 +0100747 flags |= FMODE_EXCL;
748
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500749 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400750 if (device->bdev)
751 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400752 if (!device->name)
753 continue;
754
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000755 /* Just open everything we can; ignore failures here */
756 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
757 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100758 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400759
760 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000761 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400762 if (devid != device->devid)
763 goto error_brelse;
764
Yan Zheng2b820322008-11-17 21:11:30 -0500765 if (memcmp(device->uuid, disk_super->dev_item.uuid,
766 BTRFS_UUID_SIZE))
767 goto error_brelse;
768
769 device->generation = btrfs_super_generation(disk_super);
770 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400771 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500772 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400773 latest_bdev = bdev;
774 }
775
Yan Zheng2b820322008-11-17 21:11:30 -0500776 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
777 device->writeable = 0;
778 } else {
779 device->writeable = !bdev_read_only(bdev);
780 seeding = 0;
781 }
782
Josef Bacikd5e20032011-08-04 14:52:27 +0000783 q = bdev_get_queue(bdev);
784 if (blk_queue_discard(q)) {
785 device->can_discard = 1;
786 fs_devices->num_can_discard++;
787 }
788
Chris Mason8a4b83c2008-03-24 15:02:07 -0400789 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400790 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500791 device->mode = flags;
792
Chris Masonc2898112009-06-10 09:51:32 -0400793 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
794 fs_devices->rotating = 1;
795
Chris Masona0af4692008-05-13 16:03:06 -0400796 fs_devices->open_devices++;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100797 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -0500798 fs_devices->rw_devices++;
799 list_add(&device->dev_alloc_list,
800 &fs_devices->alloc_list);
801 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000802 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400803 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400804
Chris Masona0af4692008-05-13 16:03:06 -0400805error_brelse:
806 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100807 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400808 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400809 }
Chris Masona0af4692008-05-13 16:03:06 -0400810 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300811 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400812 goto out;
813 }
Yan Zheng2b820322008-11-17 21:11:30 -0500814 fs_devices->seeding = seeding;
815 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400816 fs_devices->latest_bdev = latest_bdev;
817 fs_devices->latest_devid = latest_devid;
818 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500819 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400820out:
Yan Zheng2b820322008-11-17 21:11:30 -0500821 return ret;
822}
823
824int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500825 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500826{
827 int ret;
828
829 mutex_lock(&uuid_mutex);
830 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500831 fs_devices->opened++;
832 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500833 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500834 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500835 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400836 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400837 return ret;
838}
839
David Sterba6f60cbd2013-02-15 11:31:02 -0700840/*
841 * Look for a btrfs signature on a device. This may be called out of the mount path
842 * and we are not allowed to call set_blocksize during the scan. The superblock
843 * is read via pagecache
844 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500845int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400846 struct btrfs_fs_devices **fs_devices_ret)
847{
848 struct btrfs_super_block *disk_super;
849 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -0700850 struct page *page;
851 void *p;
852 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400853 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400854 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -0400855 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700856 u64 bytenr;
857 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400858
David Sterba6f60cbd2013-02-15 11:31:02 -0700859 /*
860 * we would like to check all the supers, but that would make
861 * a btrfs mount succeed after a mkfs from a different FS.
862 * So, we need to add a special mount option to scan for
863 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
864 */
865 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +0100866 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -0500867 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -0700868
869 bdev = blkdev_get_by_path(path, flags, holder);
870
871 if (IS_ERR(bdev)) {
872 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100873 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -0700874 }
875
876 /* make sure our super fits in the device */
877 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
878 goto error_bdev_put;
879
880 /* make sure our super fits in the page */
881 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
882 goto error_bdev_put;
883
884 /* make sure our super doesn't straddle pages on disk */
885 index = bytenr >> PAGE_CACHE_SHIFT;
886 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
887 goto error_bdev_put;
888
889 /* pull in the page with our super */
890 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
891 index, GFP_NOFS);
892
893 if (IS_ERR_OR_NULL(page))
894 goto error_bdev_put;
895
896 p = kmap(page);
897
898 /* align our pointer to the offset of the super block */
899 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
900
901 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +0800902 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -0700903 goto error_unmap;
904
Xiao Guangronga3438322010-01-06 11:48:18 +0000905 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400906 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -0400907 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -0700908
Stefan Behrensd03f9182012-11-05 13:10:49 +0000909 if (disk_super->label[0]) {
910 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
911 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
Chris Masond3977122009-01-05 21:25:51 -0500912 printk(KERN_INFO "device label %s ", disk_super->label);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000913 } else {
Ilya Dryomov22b63a22011-02-09 16:05:31 +0200914 printk(KERN_INFO "device fsid %pU ", disk_super->fsid);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000915 }
David Sterba6f60cbd2013-02-15 11:31:02 -0700916
Roland Dreier119e10c2009-01-21 10:49:16 -0500917 printk(KERN_CONT "devid %llu transid %llu %s\n",
Chris Masond3977122009-01-05 21:25:51 -0500918 (unsigned long long)devid, (unsigned long long)transid, path);
David Sterba6f60cbd2013-02-15 11:31:02 -0700919
Chris Mason8a4b83c2008-03-24 15:02:07 -0400920 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
Josef Bacik02db0842012-06-21 16:03:58 -0400921 if (!ret && fs_devices_ret)
922 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700923
924error_unmap:
925 kunmap(page);
926 page_cache_release(page);
927
928error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +0100929 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400930error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100931 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400932 return ret;
933}
Chris Mason0b86a832008-03-24 15:01:56 -0400934
Miao Xie6d07bce2011-01-05 10:07:31 +0000935/* helper to account the used device space in the range */
936int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
937 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -0400938{
939 struct btrfs_key key;
940 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +0000941 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500942 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +0000943 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400944 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +0000945 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400946 struct extent_buffer *l;
947
Miao Xie6d07bce2011-01-05 10:07:31 +0000948 *length = 0;
949
Stefan Behrens63a212a2012-11-05 18:29:28 +0100950 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +0000951 return 0;
952
Yan Zheng2b820322008-11-17 21:11:30 -0500953 path = btrfs_alloc_path();
954 if (!path)
955 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400956 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -0400957
Chris Mason0b86a832008-03-24 15:01:56 -0400958 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +0000959 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400960 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +0000961
962 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -0400963 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000964 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400965 if (ret > 0) {
966 ret = btrfs_previous_item(root, path, key.objectid, key.type);
967 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000968 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400969 }
Miao Xie6d07bce2011-01-05 10:07:31 +0000970
Chris Mason0b86a832008-03-24 15:01:56 -0400971 while (1) {
972 l = path->nodes[0];
973 slot = path->slots[0];
974 if (slot >= btrfs_header_nritems(l)) {
975 ret = btrfs_next_leaf(root, path);
976 if (ret == 0)
977 continue;
978 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000979 goto out;
980
981 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400982 }
983 btrfs_item_key_to_cpu(l, &key, slot);
984
985 if (key.objectid < device->devid)
986 goto next;
987
988 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +0000989 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400990
Chris Masond3977122009-01-05 21:25:51 -0500991 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400992 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400993
Chris Mason0b86a832008-03-24 15:01:56 -0400994 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +0000995 extent_end = key.offset + btrfs_dev_extent_length(l,
996 dev_extent);
997 if (key.offset <= start && extent_end > end) {
998 *length = end - start + 1;
999 break;
1000 } else if (key.offset <= start && extent_end > start)
1001 *length += extent_end - start;
1002 else if (key.offset > start && extent_end <= end)
1003 *length += extent_end - key.offset;
1004 else if (key.offset > start && key.offset <= end) {
1005 *length += end - key.offset + 1;
1006 break;
1007 } else if (key.offset > end)
1008 break;
1009
1010next:
1011 path->slots[0]++;
1012 }
1013 ret = 0;
1014out:
1015 btrfs_free_path(path);
1016 return ret;
1017}
1018
Josef Bacik6df9a952013-06-27 13:22:46 -04001019static int contains_pending_extent(struct btrfs_trans_handle *trans,
1020 struct btrfs_device *device,
1021 u64 *start, u64 len)
1022{
1023 struct extent_map *em;
1024 int ret = 0;
1025
1026 list_for_each_entry(em, &trans->transaction->pending_chunks, list) {
1027 struct map_lookup *map;
1028 int i;
1029
1030 map = (struct map_lookup *)em->bdev;
1031 for (i = 0; i < map->num_stripes; i++) {
1032 if (map->stripes[i].dev != device)
1033 continue;
1034 if (map->stripes[i].physical >= *start + len ||
1035 map->stripes[i].physical + em->orig_block_len <=
1036 *start)
1037 continue;
1038 *start = map->stripes[i].physical +
1039 em->orig_block_len;
1040 ret = 1;
1041 }
1042 }
1043
1044 return ret;
1045}
1046
1047
Chris Mason0b86a832008-03-24 15:01:56 -04001048/*
Miao Xie7bfc8372011-01-05 10:07:26 +00001049 * find_free_dev_extent - find free space in the specified device
Miao Xie7bfc8372011-01-05 10:07:26 +00001050 * @device: the device which we search the free space in
1051 * @num_bytes: the size of the free space that we need
1052 * @start: store the start of the free space.
1053 * @len: the size of the free space. that we find, or the size of the max
1054 * free space if we don't find suitable free space
1055 *
Chris Mason0b86a832008-03-24 15:01:56 -04001056 * this uses a pretty simple search, the expectation is that it is
1057 * called very infrequently and that a given device has a small number
1058 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001059 *
1060 * @start is used to store the start of the free space if we find. But if we
1061 * don't find suitable free space, it will be used to store the start position
1062 * of the max free space.
1063 *
1064 * @len is used to store the size of the free space that we find.
1065 * But if we don't find suitable free space, it is used to store the size of
1066 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001067 */
Josef Bacik6df9a952013-06-27 13:22:46 -04001068int find_free_dev_extent(struct btrfs_trans_handle *trans,
1069 struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +00001070 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001071{
1072 struct btrfs_key key;
1073 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001074 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001075 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001076 u64 hole_size;
1077 u64 max_hole_start;
1078 u64 max_hole_size;
1079 u64 extent_end;
1080 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001081 u64 search_end = device->total_bytes;
1082 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001083 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001084 struct extent_buffer *l;
1085
Chris Mason0b86a832008-03-24 15:01:56 -04001086 /* FIXME use last free of some kind */
1087
1088 /* we don't want to overwrite the superblock on the drive,
1089 * so we make sure to start at an offset of at least 1MB
1090 */
Arne Jansena9c9bf62011-04-12 11:01:20 +02001091 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
Chris Mason0b86a832008-03-24 15:01:56 -04001092
Josef Bacik6df9a952013-06-27 13:22:46 -04001093 path = btrfs_alloc_path();
1094 if (!path)
1095 return -ENOMEM;
1096again:
Miao Xie7bfc8372011-01-05 10:07:26 +00001097 max_hole_start = search_start;
1098 max_hole_size = 0;
liubo38c01b92011-08-02 02:39:03 +00001099 hole_size = 0;
Miao Xie7bfc8372011-01-05 10:07:26 +00001100
Stefan Behrens63a212a2012-11-05 18:29:28 +01001101 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001102 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001103 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001104 }
1105
Miao Xie7bfc8372011-01-05 10:07:26 +00001106 path->reada = 2;
Josef Bacik6df9a952013-06-27 13:22:46 -04001107 path->search_commit_root = 1;
1108 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001109
Chris Mason0b86a832008-03-24 15:01:56 -04001110 key.objectid = device->devid;
1111 key.offset = search_start;
1112 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001113
Li Zefan125ccb02011-12-08 15:07:24 +08001114 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001115 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001116 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001117 if (ret > 0) {
1118 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1119 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001120 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001121 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001122
Chris Mason0b86a832008-03-24 15:01:56 -04001123 while (1) {
1124 l = path->nodes[0];
1125 slot = path->slots[0];
1126 if (slot >= btrfs_header_nritems(l)) {
1127 ret = btrfs_next_leaf(root, path);
1128 if (ret == 0)
1129 continue;
1130 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001131 goto out;
1132
1133 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001134 }
1135 btrfs_item_key_to_cpu(l, &key, slot);
1136
1137 if (key.objectid < device->devid)
1138 goto next;
1139
1140 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001141 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001142
Chris Mason0b86a832008-03-24 15:01:56 -04001143 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
1144 goto next;
1145
Miao Xie7bfc8372011-01-05 10:07:26 +00001146 if (key.offset > search_start) {
1147 hole_size = key.offset - search_start;
1148
Josef Bacik6df9a952013-06-27 13:22:46 -04001149 /*
1150 * Have to check before we set max_hole_start, otherwise
1151 * we could end up sending back this offset anyway.
1152 */
1153 if (contains_pending_extent(trans, device,
1154 &search_start,
1155 hole_size))
1156 hole_size = 0;
1157
Miao Xie7bfc8372011-01-05 10:07:26 +00001158 if (hole_size > max_hole_size) {
1159 max_hole_start = search_start;
1160 max_hole_size = hole_size;
1161 }
1162
1163 /*
1164 * If this free space is greater than which we need,
1165 * it must be the max free space that we have found
1166 * until now, so max_hole_start must point to the start
1167 * of this free space and the length of this free space
1168 * is stored in max_hole_size. Thus, we return
1169 * max_hole_start and max_hole_size and go back to the
1170 * caller.
1171 */
1172 if (hole_size >= num_bytes) {
1173 ret = 0;
1174 goto out;
1175 }
1176 }
1177
Chris Mason0b86a832008-03-24 15:01:56 -04001178 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001179 extent_end = key.offset + btrfs_dev_extent_length(l,
1180 dev_extent);
1181 if (extent_end > search_start)
1182 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001183next:
1184 path->slots[0]++;
1185 cond_resched();
1186 }
Chris Mason0b86a832008-03-24 15:01:56 -04001187
liubo38c01b92011-08-02 02:39:03 +00001188 /*
1189 * At this point, search_start should be the end of
1190 * allocated dev extents, and when shrinking the device,
1191 * search_end may be smaller than search_start.
1192 */
1193 if (search_end > search_start)
1194 hole_size = search_end - search_start;
1195
Miao Xie7bfc8372011-01-05 10:07:26 +00001196 if (hole_size > max_hole_size) {
1197 max_hole_start = search_start;
1198 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001199 }
Chris Mason0b86a832008-03-24 15:01:56 -04001200
Josef Bacik6df9a952013-06-27 13:22:46 -04001201 if (contains_pending_extent(trans, device, &search_start, hole_size)) {
1202 btrfs_release_path(path);
1203 goto again;
1204 }
1205
Miao Xie7bfc8372011-01-05 10:07:26 +00001206 /* See above. */
1207 if (hole_size < num_bytes)
1208 ret = -ENOSPC;
1209 else
1210 ret = 0;
1211
1212out:
Yan Zheng2b820322008-11-17 21:11:30 -05001213 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001214 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001215 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001216 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001217 return ret;
1218}
1219
Christoph Hellwigb2950862008-12-02 09:54:17 -05001220static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001221 struct btrfs_device *device,
1222 u64 start)
1223{
1224 int ret;
1225 struct btrfs_path *path;
1226 struct btrfs_root *root = device->dev_root;
1227 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001228 struct btrfs_key found_key;
1229 struct extent_buffer *leaf = NULL;
1230 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001231
1232 path = btrfs_alloc_path();
1233 if (!path)
1234 return -ENOMEM;
1235
1236 key.objectid = device->devid;
1237 key.offset = start;
1238 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001239again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001240 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001241 if (ret > 0) {
1242 ret = btrfs_previous_item(root, path, key.objectid,
1243 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001244 if (ret)
1245 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001246 leaf = path->nodes[0];
1247 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1248 extent = btrfs_item_ptr(leaf, path->slots[0],
1249 struct btrfs_dev_extent);
1250 BUG_ON(found_key.offset > start || found_key.offset +
1251 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001252 key = found_key;
1253 btrfs_release_path(path);
1254 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001255 } else if (ret == 0) {
1256 leaf = path->nodes[0];
1257 extent = btrfs_item_ptr(leaf, path->slots[0],
1258 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001259 } else {
1260 btrfs_error(root->fs_info, ret, "Slot search failed");
1261 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001262 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001263
Josef Bacik2bf64752011-09-26 17:12:22 -04001264 if (device->bytes_used > 0) {
1265 u64 len = btrfs_dev_extent_length(leaf, extent);
1266 device->bytes_used -= len;
1267 spin_lock(&root->fs_info->free_chunk_lock);
1268 root->fs_info->free_chunk_space += len;
1269 spin_unlock(&root->fs_info->free_chunk_lock);
1270 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001271 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001272 if (ret) {
1273 btrfs_error(root->fs_info, ret,
1274 "Failed to remove dev extent item");
1275 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001276out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001277 btrfs_free_path(path);
1278 return ret;
1279}
1280
Eric Sandeen48a3b632013-04-25 20:41:01 +00001281static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1282 struct btrfs_device *device,
1283 u64 chunk_tree, u64 chunk_objectid,
1284 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001285{
1286 int ret;
1287 struct btrfs_path *path;
1288 struct btrfs_root *root = device->dev_root;
1289 struct btrfs_dev_extent *extent;
1290 struct extent_buffer *leaf;
1291 struct btrfs_key key;
1292
Chris Masondfe25022008-05-13 13:46:40 -04001293 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001294 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001295 path = btrfs_alloc_path();
1296 if (!path)
1297 return -ENOMEM;
1298
Chris Mason0b86a832008-03-24 15:01:56 -04001299 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001300 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001301 key.type = BTRFS_DEV_EXTENT_KEY;
1302 ret = btrfs_insert_empty_item(trans, root, path, &key,
1303 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001304 if (ret)
1305 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001306
1307 leaf = path->nodes[0];
1308 extent = btrfs_item_ptr(leaf, path->slots[0],
1309 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001310 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1311 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1312 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1313
1314 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
1315 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
1316 BTRFS_UUID_SIZE);
1317
Chris Mason0b86a832008-03-24 15:01:56 -04001318 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1319 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001320out:
Chris Mason0b86a832008-03-24 15:01:56 -04001321 btrfs_free_path(path);
1322 return ret;
1323}
1324
Josef Bacik6df9a952013-06-27 13:22:46 -04001325static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001326{
Josef Bacik6df9a952013-06-27 13:22:46 -04001327 struct extent_map_tree *em_tree;
1328 struct extent_map *em;
1329 struct rb_node *n;
1330 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001331
Josef Bacik6df9a952013-06-27 13:22:46 -04001332 em_tree = &fs_info->mapping_tree.map_tree;
1333 read_lock(&em_tree->lock);
1334 n = rb_last(&em_tree->map);
1335 if (n) {
1336 em = rb_entry(n, struct extent_map, rb_node);
1337 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001338 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001339 read_unlock(&em_tree->lock);
1340
Chris Mason0b86a832008-03-24 15:01:56 -04001341 return ret;
1342}
1343
Ilya Dryomov53f10652013-08-12 14:33:01 +03001344static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1345 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001346{
1347 int ret;
1348 struct btrfs_key key;
1349 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001350 struct btrfs_path *path;
1351
Yan Zheng2b820322008-11-17 21:11:30 -05001352 path = btrfs_alloc_path();
1353 if (!path)
1354 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001355
1356 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1357 key.type = BTRFS_DEV_ITEM_KEY;
1358 key.offset = (u64)-1;
1359
Ilya Dryomov53f10652013-08-12 14:33:01 +03001360 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001361 if (ret < 0)
1362 goto error;
1363
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001364 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001365
Ilya Dryomov53f10652013-08-12 14:33:01 +03001366 ret = btrfs_previous_item(fs_info->chunk_root, path,
1367 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001368 BTRFS_DEV_ITEM_KEY);
1369 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001370 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001371 } else {
1372 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1373 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001374 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001375 }
1376 ret = 0;
1377error:
Yan Zheng2b820322008-11-17 21:11:30 -05001378 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001379 return ret;
1380}
1381
1382/*
1383 * the device information is stored in the chunk root
1384 * the btrfs_device struct should be fully filled in
1385 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001386static int btrfs_add_device(struct btrfs_trans_handle *trans,
1387 struct btrfs_root *root,
1388 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001389{
1390 int ret;
1391 struct btrfs_path *path;
1392 struct btrfs_dev_item *dev_item;
1393 struct extent_buffer *leaf;
1394 struct btrfs_key key;
1395 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001396
1397 root = root->fs_info->chunk_root;
1398
1399 path = btrfs_alloc_path();
1400 if (!path)
1401 return -ENOMEM;
1402
Chris Mason0b86a832008-03-24 15:01:56 -04001403 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1404 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001405 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001406
1407 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001408 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001409 if (ret)
1410 goto out;
1411
1412 leaf = path->nodes[0];
1413 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1414
1415 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001416 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001417 btrfs_set_device_type(leaf, dev_item, device->type);
1418 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1419 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1420 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001421 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1422 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001423 btrfs_set_device_group(leaf, dev_item, 0);
1424 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1425 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001426 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001427
Chris Mason0b86a832008-03-24 15:01:56 -04001428 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001429 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05001430 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1431 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001432 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001433
Yan Zheng2b820322008-11-17 21:11:30 -05001434 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001435out:
1436 btrfs_free_path(path);
1437 return ret;
1438}
Chris Mason8f18cf12008-04-25 16:53:30 -04001439
Chris Masona061fc82008-05-07 11:43:44 -04001440static int btrfs_rm_dev_item(struct btrfs_root *root,
1441 struct btrfs_device *device)
1442{
1443 int ret;
1444 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001445 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001446 struct btrfs_trans_handle *trans;
1447
1448 root = root->fs_info->chunk_root;
1449
1450 path = btrfs_alloc_path();
1451 if (!path)
1452 return -ENOMEM;
1453
Yan, Zhenga22285a2010-05-16 10:48:46 -04001454 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001455 if (IS_ERR(trans)) {
1456 btrfs_free_path(path);
1457 return PTR_ERR(trans);
1458 }
Chris Masona061fc82008-05-07 11:43:44 -04001459 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1460 key.type = BTRFS_DEV_ITEM_KEY;
1461 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001462 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001463
1464 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1465 if (ret < 0)
1466 goto out;
1467
1468 if (ret > 0) {
1469 ret = -ENOENT;
1470 goto out;
1471 }
1472
1473 ret = btrfs_del_item(trans, root, path);
1474 if (ret)
1475 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001476out:
1477 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001478 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001479 btrfs_commit_transaction(trans, root);
1480 return ret;
1481}
1482
1483int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1484{
1485 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001486 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001487 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001488 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001489 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001490 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001491 u64 all_avail;
1492 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001493 u64 num_devices;
1494 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001495 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001496 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001497 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001498
Chris Masona061fc82008-05-07 11:43:44 -04001499 mutex_lock(&uuid_mutex);
1500
Miao Xiede98ced2013-01-29 10:13:12 +00001501 do {
1502 seq = read_seqbegin(&root->fs_info->profiles_lock);
1503
1504 all_avail = root->fs_info->avail_data_alloc_bits |
1505 root->fs_info->avail_system_alloc_bits |
1506 root->fs_info->avail_metadata_alloc_bits;
1507 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001508
Stefan Behrens8dabb742012-11-06 13:15:27 +01001509 num_devices = root->fs_info->fs_devices->num_devices;
1510 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1511 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1512 WARN_ON(num_devices < 1);
1513 num_devices--;
1514 }
1515 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1516
1517 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001518 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001519 goto out;
1520 }
1521
Stefan Behrens8dabb742012-11-06 13:15:27 +01001522 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001523 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001524 goto out;
1525 }
1526
David Woodhouse53b381b2013-01-29 18:40:14 -05001527 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1528 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001529 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001530 goto out;
1531 }
1532 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1533 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001534 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001535 goto out;
1536 }
1537
Chris Masondfe25022008-05-13 13:46:40 -04001538 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001539 struct list_head *devices;
1540 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001541
Chris Masondfe25022008-05-13 13:46:40 -04001542 device = NULL;
1543 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001544 /*
1545 * It is safe to read the devices since the volume_mutex
1546 * is held.
1547 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001548 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001549 if (tmp->in_fs_metadata &&
1550 !tmp->is_tgtdev_for_dev_replace &&
1551 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001552 device = tmp;
1553 break;
1554 }
1555 }
1556 bdev = NULL;
1557 bh = NULL;
1558 disk_super = NULL;
1559 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001560 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001561 goto out;
1562 }
Chris Masondfe25022008-05-13 13:46:40 -04001563 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001564 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001565 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001566 root->fs_info->bdev_holder, 0,
1567 &bdev, &bh);
1568 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001569 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001570 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001571 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001572 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001573 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001574 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001575 if (!device) {
1576 ret = -ENOENT;
1577 goto error_brelse;
1578 }
Chris Masondfe25022008-05-13 13:46:40 -04001579 }
Yan Zheng2b820322008-11-17 21:11:30 -05001580
Stefan Behrens63a212a2012-11-05 18:29:28 +01001581 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001582 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001583 goto error_brelse;
1584 }
1585
Yan Zheng2b820322008-11-17 21:11:30 -05001586 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001587 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001588 goto error_brelse;
1589 }
1590
1591 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001592 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001593 list_del_init(&device->dev_alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001594 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001595 root->fs_info->fs_devices->rw_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001596 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001597 }
Chris Masona061fc82008-05-07 11:43:44 -04001598
Carey Underwoodd7901552013-03-04 16:37:06 -06001599 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001600 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001601 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001602 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001603 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001604
Stefan Behrens63a212a2012-11-05 18:29:28 +01001605 /*
1606 * TODO: the superblock still includes this device in its num_devices
1607 * counter although write_all_supers() is not locked out. This
1608 * could give a filesystem state which requires a degraded mount.
1609 */
Chris Masona061fc82008-05-07 11:43:44 -04001610 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1611 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001612 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001613
Josef Bacik2bf64752011-09-26 17:12:22 -04001614 spin_lock(&root->fs_info->free_chunk_lock);
1615 root->fs_info->free_chunk_space = device->total_bytes -
1616 device->bytes_used;
1617 spin_unlock(&root->fs_info->free_chunk_lock);
1618
Yan Zheng2b820322008-11-17 21:11:30 -05001619 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001620 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001621
1622 /*
1623 * the device list mutex makes sure that we don't change
1624 * the device list while someone else is writing out all
1625 * the device supers.
1626 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001627
1628 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001629 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001630 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001631
Yan Zhenge4404d62008-12-12 10:03:26 -05001632 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001633 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001634
Chris Masoncd02dca2010-12-13 14:56:23 -05001635 if (device->missing)
1636 root->fs_info->fs_devices->missing_devices--;
1637
Yan Zheng2b820322008-11-17 21:11:30 -05001638 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1639 struct btrfs_device, dev_list);
1640 if (device->bdev == root->fs_info->sb->s_bdev)
1641 root->fs_info->sb->s_bdev = next_device->bdev;
1642 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1643 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1644
Xiao Guangrong1f781602011-04-20 10:09:16 +00001645 if (device->bdev)
Yan Zhenge4404d62008-12-12 10:03:26 -05001646 device->fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001647
1648 call_rcu(&device->rcu, free_device);
1649 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001650
David Sterba6c417612011-04-13 15:41:04 +02001651 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1652 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001653
Xiao Guangrong1f781602011-04-20 10:09:16 +00001654 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001655 struct btrfs_fs_devices *fs_devices;
1656 fs_devices = root->fs_info->fs_devices;
1657 while (fs_devices) {
Xiao Guangrong1f781602011-04-20 10:09:16 +00001658 if (fs_devices->seed == cur_devices)
Yan Zhenge4404d62008-12-12 10:03:26 -05001659 break;
1660 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001661 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001662 fs_devices->seed = cur_devices->seed;
1663 cur_devices->seed = NULL;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001664 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001665 __btrfs_close_devices(cur_devices);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001666 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001667 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001668 }
1669
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001670 root->fs_info->num_tolerated_disk_barrier_failures =
1671 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1672
Yan Zheng2b820322008-11-17 21:11:30 -05001673 /*
1674 * at this point, the device is zero sized. We want to
1675 * remove it from the devices list and zero out the old super
1676 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001677 if (clear_super && disk_super) {
Chris Masondfe25022008-05-13 13:46:40 -04001678 /* make sure this device isn't detected as part of
1679 * the FS anymore
1680 */
1681 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1682 set_buffer_dirty(bh);
1683 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001684 }
Chris Masona061fc82008-05-07 11:43:44 -04001685
Chris Masona061fc82008-05-07 11:43:44 -04001686 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001687
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001688 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001689 if (bdev)
1690 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001691
Chris Masona061fc82008-05-07 11:43:44 -04001692error_brelse:
1693 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001694 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001695 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001696out:
1697 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001698 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001699error_undo:
1700 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001701 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001702 list_add(&device->dev_alloc_list,
1703 &root->fs_info->fs_devices->alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001704 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001705 root->fs_info->fs_devices->rw_devices++;
1706 }
1707 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001708}
1709
Stefan Behrense93c89c2012-11-05 17:33:06 +01001710void btrfs_rm_dev_replace_srcdev(struct btrfs_fs_info *fs_info,
1711 struct btrfs_device *srcdev)
1712{
1713 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
1714 list_del_rcu(&srcdev->dev_list);
1715 list_del_rcu(&srcdev->dev_alloc_list);
1716 fs_info->fs_devices->num_devices--;
1717 if (srcdev->missing) {
1718 fs_info->fs_devices->missing_devices--;
1719 fs_info->fs_devices->rw_devices++;
1720 }
1721 if (srcdev->can_discard)
1722 fs_info->fs_devices->num_can_discard--;
1723 if (srcdev->bdev)
1724 fs_info->fs_devices->open_devices--;
1725
1726 call_rcu(&srcdev->rcu, free_device);
1727}
1728
1729void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1730 struct btrfs_device *tgtdev)
1731{
1732 struct btrfs_device *next_device;
1733
1734 WARN_ON(!tgtdev);
1735 mutex_lock(&fs_info->fs_devices->device_list_mutex);
1736 if (tgtdev->bdev) {
1737 btrfs_scratch_superblock(tgtdev);
1738 fs_info->fs_devices->open_devices--;
1739 }
1740 fs_info->fs_devices->num_devices--;
1741 if (tgtdev->can_discard)
1742 fs_info->fs_devices->num_can_discard++;
1743
1744 next_device = list_entry(fs_info->fs_devices->devices.next,
1745 struct btrfs_device, dev_list);
1746 if (tgtdev->bdev == fs_info->sb->s_bdev)
1747 fs_info->sb->s_bdev = next_device->bdev;
1748 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
1749 fs_info->fs_devices->latest_bdev = next_device->bdev;
1750 list_del_rcu(&tgtdev->dev_list);
1751
1752 call_rcu(&tgtdev->rcu, free_device);
1753
1754 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
1755}
1756
Eric Sandeen48a3b632013-04-25 20:41:01 +00001757static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
1758 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001759{
1760 int ret = 0;
1761 struct btrfs_super_block *disk_super;
1762 u64 devid;
1763 u8 *dev_uuid;
1764 struct block_device *bdev;
1765 struct buffer_head *bh;
1766
1767 *device = NULL;
1768 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
1769 root->fs_info->bdev_holder, 0, &bdev, &bh);
1770 if (ret)
1771 return ret;
1772 disk_super = (struct btrfs_super_block *)bh->b_data;
1773 devid = btrfs_stack_device_id(&disk_super->dev_item);
1774 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001775 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001776 disk_super->fsid);
1777 brelse(bh);
1778 if (!*device)
1779 ret = -ENOENT;
1780 blkdev_put(bdev, FMODE_READ);
1781 return ret;
1782}
1783
1784int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
1785 char *device_path,
1786 struct btrfs_device **device)
1787{
1788 *device = NULL;
1789 if (strcmp(device_path, "missing") == 0) {
1790 struct list_head *devices;
1791 struct btrfs_device *tmp;
1792
1793 devices = &root->fs_info->fs_devices->devices;
1794 /*
1795 * It is safe to read the devices since the volume_mutex
1796 * is held by the caller.
1797 */
1798 list_for_each_entry(tmp, devices, dev_list) {
1799 if (tmp->in_fs_metadata && !tmp->bdev) {
1800 *device = tmp;
1801 break;
1802 }
1803 }
1804
1805 if (!*device) {
1806 pr_err("btrfs: no missing device found\n");
1807 return -ENOENT;
1808 }
1809
1810 return 0;
1811 } else {
1812 return btrfs_find_device_by_path(root, device_path, device);
1813 }
1814}
1815
Yan Zheng2b820322008-11-17 21:11:30 -05001816/*
1817 * does all the dirty work required for changing file system's UUID.
1818 */
Li Zefan125ccb02011-12-08 15:07:24 +08001819static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05001820{
1821 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1822 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001823 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02001824 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05001825 struct btrfs_device *device;
1826 u64 super_flags;
1827
1828 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001829 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001830 return -EINVAL;
1831
Ilya Dryomov2208a372013-08-12 14:33:03 +03001832 seed_devices = __alloc_fs_devices();
1833 if (IS_ERR(seed_devices))
1834 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001835
Yan Zhenge4404d62008-12-12 10:03:26 -05001836 old_devices = clone_fs_devices(fs_devices);
1837 if (IS_ERR(old_devices)) {
1838 kfree(seed_devices);
1839 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001840 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001841
Yan Zheng2b820322008-11-17 21:11:30 -05001842 list_add(&old_devices->list, &fs_uuids);
1843
Yan Zhenge4404d62008-12-12 10:03:26 -05001844 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1845 seed_devices->opened = 1;
1846 INIT_LIST_HEAD(&seed_devices->devices);
1847 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001848 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001849
1850 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001851 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1852 synchronize_rcu);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001853 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1854
Yan Zhenge4404d62008-12-12 10:03:26 -05001855 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1856 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1857 device->fs_devices = seed_devices;
1858 }
1859
Yan Zheng2b820322008-11-17 21:11:30 -05001860 fs_devices->seeding = 0;
1861 fs_devices->num_devices = 0;
1862 fs_devices->open_devices = 0;
Josef Bacik02db0842012-06-21 16:03:58 -04001863 fs_devices->total_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001864 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001865
1866 generate_random_uuid(fs_devices->fsid);
1867 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1868 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1869 super_flags = btrfs_super_flags(disk_super) &
1870 ~BTRFS_SUPER_FLAG_SEEDING;
1871 btrfs_set_super_flags(disk_super, super_flags);
1872
1873 return 0;
1874}
1875
1876/*
1877 * strore the expected generation for seed devices in device items.
1878 */
1879static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1880 struct btrfs_root *root)
1881{
1882 struct btrfs_path *path;
1883 struct extent_buffer *leaf;
1884 struct btrfs_dev_item *dev_item;
1885 struct btrfs_device *device;
1886 struct btrfs_key key;
1887 u8 fs_uuid[BTRFS_UUID_SIZE];
1888 u8 dev_uuid[BTRFS_UUID_SIZE];
1889 u64 devid;
1890 int ret;
1891
1892 path = btrfs_alloc_path();
1893 if (!path)
1894 return -ENOMEM;
1895
1896 root = root->fs_info->chunk_root;
1897 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1898 key.offset = 0;
1899 key.type = BTRFS_DEV_ITEM_KEY;
1900
1901 while (1) {
1902 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1903 if (ret < 0)
1904 goto error;
1905
1906 leaf = path->nodes[0];
1907next_slot:
1908 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1909 ret = btrfs_next_leaf(root, path);
1910 if (ret > 0)
1911 break;
1912 if (ret < 0)
1913 goto error;
1914 leaf = path->nodes[0];
1915 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001916 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05001917 continue;
1918 }
1919
1920 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1921 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1922 key.type != BTRFS_DEV_ITEM_KEY)
1923 break;
1924
1925 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1926 struct btrfs_dev_item);
1927 devid = btrfs_device_id(leaf, dev_item);
1928 read_extent_buffer(leaf, dev_uuid,
1929 (unsigned long)btrfs_device_uuid(dev_item),
1930 BTRFS_UUID_SIZE);
1931 read_extent_buffer(leaf, fs_uuid,
1932 (unsigned long)btrfs_device_fsid(dev_item),
1933 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001934 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
1935 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001936 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05001937
1938 if (device->fs_devices->seeding) {
1939 btrfs_set_device_generation(leaf, dev_item,
1940 device->generation);
1941 btrfs_mark_buffer_dirty(leaf);
1942 }
1943
1944 path->slots[0]++;
1945 goto next_slot;
1946 }
1947 ret = 0;
1948error:
1949 btrfs_free_path(path);
1950 return ret;
1951}
1952
Chris Mason788f20e2008-04-28 15:29:42 -04001953int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1954{
Josef Bacikd5e20032011-08-04 14:52:27 +00001955 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04001956 struct btrfs_trans_handle *trans;
1957 struct btrfs_device *device;
1958 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001959 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001960 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04001961 struct rcu_string *name;
Chris Mason788f20e2008-04-28 15:29:42 -04001962 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001963 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001964 int ret = 0;
1965
Yan Zheng2b820322008-11-17 21:11:30 -05001966 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08001967 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04001968
Li Zefana5d16332011-12-07 20:08:40 -05001969 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01001970 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001971 if (IS_ERR(bdev))
1972 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001973
Yan Zheng2b820322008-11-17 21:11:30 -05001974 if (root->fs_info->fs_devices->seeding) {
1975 seeding_dev = 1;
1976 down_write(&sb->s_umount);
1977 mutex_lock(&uuid_mutex);
1978 }
1979
Chris Mason8c8bee12008-09-29 11:19:10 -04001980 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04001981
Chris Mason788f20e2008-04-28 15:29:42 -04001982 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00001983
1984 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001985 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001986 if (device->bdev == bdev) {
1987 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00001988 mutex_unlock(
1989 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001990 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001991 }
1992 }
Liu Bod25628b2012-11-14 14:35:30 +00001993 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001994
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001995 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
1996 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04001997 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001998 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05001999 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002000 }
2001
Josef Bacik606686e2012-06-04 14:03:51 -04002002 name = rcu_string_strdup(device_path, GFP_NOFS);
2003 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002004 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002005 ret = -ENOMEM;
2006 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002007 }
Josef Bacik606686e2012-06-04 14:03:51 -04002008 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002009
Yan, Zhenga22285a2010-05-16 10:48:46 -04002010 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002011 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002012 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002013 kfree(device);
2014 ret = PTR_ERR(trans);
2015 goto error;
2016 }
2017
Yan Zheng2b820322008-11-17 21:11:30 -05002018 lock_chunks(root);
2019
Josef Bacikd5e20032011-08-04 14:52:27 +00002020 q = bdev_get_queue(bdev);
2021 if (blk_queue_discard(q))
2022 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002023 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002024 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002025 device->io_width = root->sectorsize;
2026 device->io_align = root->sectorsize;
2027 device->sector_size = root->sectorsize;
2028 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002029 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002030 device->dev_root = root->fs_info->dev_root;
2031 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002032 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002033 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002034 device->mode = FMODE_EXCL;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002035 set_blocksize(device->bdev, 4096);
2036
Yan Zheng2b820322008-11-17 21:11:30 -05002037 if (seeding_dev) {
2038 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002039 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002040 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002041 }
2042
2043 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002044
Chris Masone5e9a522009-06-10 15:17:02 -04002045 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002046 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002047 list_add(&device->dev_alloc_list,
2048 &root->fs_info->fs_devices->alloc_list);
2049 root->fs_info->fs_devices->num_devices++;
2050 root->fs_info->fs_devices->open_devices++;
2051 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002052 root->fs_info->fs_devices->total_devices++;
Josef Bacikd5e20032011-08-04 14:52:27 +00002053 if (device->can_discard)
2054 root->fs_info->fs_devices->num_can_discard++;
Yan Zheng2b820322008-11-17 21:11:30 -05002055 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2056
Josef Bacik2bf64752011-09-26 17:12:22 -04002057 spin_lock(&root->fs_info->free_chunk_lock);
2058 root->fs_info->free_chunk_space += device->total_bytes;
2059 spin_unlock(&root->fs_info->free_chunk_lock);
2060
Chris Masonc2898112009-06-10 09:51:32 -04002061 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2062 root->fs_info->fs_devices->rotating = 1;
2063
David Sterba6c417612011-04-13 15:41:04 +02002064 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
2065 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002066 total_bytes + device->total_bytes);
2067
David Sterba6c417612011-04-13 15:41:04 +02002068 total_bytes = btrfs_super_num_devices(root->fs_info->super_copy);
2069 btrfs_set_super_num_devices(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002070 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04002071 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002072
Yan Zheng2b820322008-11-17 21:11:30 -05002073 if (seeding_dev) {
2074 ret = init_first_rw_device(trans, root, device);
David Sterba005d6422012-09-18 07:52:32 -06002075 if (ret) {
2076 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002077 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002078 }
Yan Zheng2b820322008-11-17 21:11:30 -05002079 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002080 if (ret) {
2081 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002082 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002083 }
Yan Zheng2b820322008-11-17 21:11:30 -05002084 } else {
2085 ret = btrfs_add_device(trans, root, device);
David Sterba005d6422012-09-18 07:52:32 -06002086 if (ret) {
2087 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002088 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002089 }
Yan Zheng2b820322008-11-17 21:11:30 -05002090 }
2091
Chris Mason913d9522009-03-10 13:17:18 -04002092 /*
2093 * we've got more storage, clear any full flags on the space
2094 * infos
2095 */
2096 btrfs_clear_space_info_full(root->fs_info);
2097
Chris Mason7d9eb122008-07-08 14:19:17 -04002098 unlock_chunks(root);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002099 root->fs_info->num_tolerated_disk_barrier_failures =
2100 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002101 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002102
2103 if (seeding_dev) {
2104 mutex_unlock(&uuid_mutex);
2105 up_write(&sb->s_umount);
2106
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002107 if (ret) /* transaction commit */
2108 return ret;
2109
Yan Zheng2b820322008-11-17 21:11:30 -05002110 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002111 if (ret < 0)
2112 btrfs_error(root->fs_info, ret,
2113 "Failed to relocate sys chunks after "
2114 "device initialization. This can be fixed "
2115 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002116 trans = btrfs_attach_transaction(root);
2117 if (IS_ERR(trans)) {
2118 if (PTR_ERR(trans) == -ENOENT)
2119 return 0;
2120 return PTR_ERR(trans);
2121 }
2122 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002123 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002124
Chris Mason788f20e2008-04-28 15:29:42 -04002125 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002126
2127error_trans:
2128 unlock_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002129 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002130 rcu_string_free(device->name);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002131 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002132error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002133 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002134 if (seeding_dev) {
2135 mutex_unlock(&uuid_mutex);
2136 up_write(&sb->s_umount);
2137 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002138 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002139}
2140
Stefan Behrense93c89c2012-11-05 17:33:06 +01002141int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
2142 struct btrfs_device **device_out)
2143{
2144 struct request_queue *q;
2145 struct btrfs_device *device;
2146 struct block_device *bdev;
2147 struct btrfs_fs_info *fs_info = root->fs_info;
2148 struct list_head *devices;
2149 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002150 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002151 int ret = 0;
2152
2153 *device_out = NULL;
2154 if (fs_info->fs_devices->seeding)
2155 return -EINVAL;
2156
2157 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2158 fs_info->bdev_holder);
2159 if (IS_ERR(bdev))
2160 return PTR_ERR(bdev);
2161
2162 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2163
2164 devices = &fs_info->fs_devices->devices;
2165 list_for_each_entry(device, devices, dev_list) {
2166 if (device->bdev == bdev) {
2167 ret = -EEXIST;
2168 goto error;
2169 }
2170 }
2171
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002172 device = btrfs_alloc_device(NULL, &devid, NULL);
2173 if (IS_ERR(device)) {
2174 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002175 goto error;
2176 }
2177
2178 name = rcu_string_strdup(device_path, GFP_NOFS);
2179 if (!name) {
2180 kfree(device);
2181 ret = -ENOMEM;
2182 goto error;
2183 }
2184 rcu_assign_pointer(device->name, name);
2185
2186 q = bdev_get_queue(bdev);
2187 if (blk_queue_discard(q))
2188 device->can_discard = 1;
2189 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2190 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002191 device->generation = 0;
2192 device->io_width = root->sectorsize;
2193 device->io_align = root->sectorsize;
2194 device->sector_size = root->sectorsize;
2195 device->total_bytes = i_size_read(bdev->bd_inode);
2196 device->disk_total_bytes = device->total_bytes;
2197 device->dev_root = fs_info->dev_root;
2198 device->bdev = bdev;
2199 device->in_fs_metadata = 1;
2200 device->is_tgtdev_for_dev_replace = 1;
2201 device->mode = FMODE_EXCL;
2202 set_blocksize(device->bdev, 4096);
2203 device->fs_devices = fs_info->fs_devices;
2204 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2205 fs_info->fs_devices->num_devices++;
2206 fs_info->fs_devices->open_devices++;
2207 if (device->can_discard)
2208 fs_info->fs_devices->num_can_discard++;
2209 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2210
2211 *device_out = device;
2212 return ret;
2213
2214error:
2215 blkdev_put(bdev, FMODE_EXCL);
2216 return ret;
2217}
2218
2219void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2220 struct btrfs_device *tgtdev)
2221{
2222 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2223 tgtdev->io_width = fs_info->dev_root->sectorsize;
2224 tgtdev->io_align = fs_info->dev_root->sectorsize;
2225 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2226 tgtdev->dev_root = fs_info->dev_root;
2227 tgtdev->in_fs_metadata = 1;
2228}
2229
Chris Masond3977122009-01-05 21:25:51 -05002230static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2231 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002232{
2233 int ret;
2234 struct btrfs_path *path;
2235 struct btrfs_root *root;
2236 struct btrfs_dev_item *dev_item;
2237 struct extent_buffer *leaf;
2238 struct btrfs_key key;
2239
2240 root = device->dev_root->fs_info->chunk_root;
2241
2242 path = btrfs_alloc_path();
2243 if (!path)
2244 return -ENOMEM;
2245
2246 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2247 key.type = BTRFS_DEV_ITEM_KEY;
2248 key.offset = device->devid;
2249
2250 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2251 if (ret < 0)
2252 goto out;
2253
2254 if (ret > 0) {
2255 ret = -ENOENT;
2256 goto out;
2257 }
2258
2259 leaf = path->nodes[0];
2260 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2261
2262 btrfs_set_device_id(leaf, dev_item, device->devid);
2263 btrfs_set_device_type(leaf, dev_item, device->type);
2264 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2265 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2266 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04002267 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04002268 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
2269 btrfs_mark_buffer_dirty(leaf);
2270
2271out:
2272 btrfs_free_path(path);
2273 return ret;
2274}
2275
Chris Mason7d9eb122008-07-08 14:19:17 -04002276static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002277 struct btrfs_device *device, u64 new_size)
2278{
2279 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002280 device->dev_root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002281 u64 old_total = btrfs_super_total_bytes(super_copy);
2282 u64 diff = new_size - device->total_bytes;
2283
Yan Zheng2b820322008-11-17 21:11:30 -05002284 if (!device->writeable)
2285 return -EACCES;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002286 if (new_size <= device->total_bytes ||
2287 device->is_tgtdev_for_dev_replace)
Yan Zheng2b820322008-11-17 21:11:30 -05002288 return -EINVAL;
2289
Chris Mason8f18cf12008-04-25 16:53:30 -04002290 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002291 device->fs_devices->total_rw_bytes += diff;
2292
2293 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04002294 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04002295 btrfs_clear_space_info_full(device->dev_root->fs_info);
2296
Chris Mason8f18cf12008-04-25 16:53:30 -04002297 return btrfs_update_device(trans, device);
2298}
2299
Chris Mason7d9eb122008-07-08 14:19:17 -04002300int btrfs_grow_device(struct btrfs_trans_handle *trans,
2301 struct btrfs_device *device, u64 new_size)
2302{
2303 int ret;
2304 lock_chunks(device->dev_root);
2305 ret = __btrfs_grow_device(trans, device, new_size);
2306 unlock_chunks(device->dev_root);
2307 return ret;
2308}
2309
Chris Mason8f18cf12008-04-25 16:53:30 -04002310static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
2311 struct btrfs_root *root,
2312 u64 chunk_tree, u64 chunk_objectid,
2313 u64 chunk_offset)
2314{
2315 int ret;
2316 struct btrfs_path *path;
2317 struct btrfs_key key;
2318
2319 root = root->fs_info->chunk_root;
2320 path = btrfs_alloc_path();
2321 if (!path)
2322 return -ENOMEM;
2323
2324 key.objectid = chunk_objectid;
2325 key.offset = chunk_offset;
2326 key.type = BTRFS_CHUNK_ITEM_KEY;
2327
2328 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002329 if (ret < 0)
2330 goto out;
2331 else if (ret > 0) { /* Logic error or corruption */
2332 btrfs_error(root->fs_info, -ENOENT,
2333 "Failed lookup while freeing chunk.");
2334 ret = -ENOENT;
2335 goto out;
2336 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002337
2338 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002339 if (ret < 0)
2340 btrfs_error(root->fs_info, ret,
2341 "Failed to delete chunk item.");
2342out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002343 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002344 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002345}
2346
Christoph Hellwigb2950862008-12-02 09:54:17 -05002347static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002348 chunk_offset)
2349{
David Sterba6c417612011-04-13 15:41:04 +02002350 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002351 struct btrfs_disk_key *disk_key;
2352 struct btrfs_chunk *chunk;
2353 u8 *ptr;
2354 int ret = 0;
2355 u32 num_stripes;
2356 u32 array_size;
2357 u32 len = 0;
2358 u32 cur;
2359 struct btrfs_key key;
2360
2361 array_size = btrfs_super_sys_array_size(super_copy);
2362
2363 ptr = super_copy->sys_chunk_array;
2364 cur = 0;
2365
2366 while (cur < array_size) {
2367 disk_key = (struct btrfs_disk_key *)ptr;
2368 btrfs_disk_key_to_cpu(&key, disk_key);
2369
2370 len = sizeof(*disk_key);
2371
2372 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2373 chunk = (struct btrfs_chunk *)(ptr + len);
2374 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2375 len += btrfs_chunk_item_size(num_stripes);
2376 } else {
2377 ret = -EIO;
2378 break;
2379 }
2380 if (key.objectid == chunk_objectid &&
2381 key.offset == chunk_offset) {
2382 memmove(ptr, ptr + len, array_size - (cur + len));
2383 array_size -= len;
2384 btrfs_set_super_sys_array_size(super_copy, array_size);
2385 } else {
2386 ptr += len;
2387 cur += len;
2388 }
2389 }
2390 return ret;
2391}
2392
Christoph Hellwigb2950862008-12-02 09:54:17 -05002393static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04002394 u64 chunk_tree, u64 chunk_objectid,
2395 u64 chunk_offset)
2396{
2397 struct extent_map_tree *em_tree;
2398 struct btrfs_root *extent_root;
2399 struct btrfs_trans_handle *trans;
2400 struct extent_map *em;
2401 struct map_lookup *map;
2402 int ret;
2403 int i;
2404
2405 root = root->fs_info->chunk_root;
2406 extent_root = root->fs_info->extent_root;
2407 em_tree = &root->fs_info->mapping_tree.map_tree;
2408
Josef Bacikba1bf482009-09-11 16:11:19 -04002409 ret = btrfs_can_relocate(extent_root, chunk_offset);
2410 if (ret)
2411 return -ENOSPC;
2412
Chris Mason8f18cf12008-04-25 16:53:30 -04002413 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04002414 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002415 if (ret)
2416 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002417
Yan, Zhenga22285a2010-05-16 10:48:46 -04002418 trans = btrfs_start_transaction(root, 0);
Liu Bo0f788c52013-03-04 16:25:40 +00002419 if (IS_ERR(trans)) {
2420 ret = PTR_ERR(trans);
2421 btrfs_std_error(root->fs_info, ret);
2422 return ret;
2423 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002424
Chris Mason7d9eb122008-07-08 14:19:17 -04002425 lock_chunks(root);
2426
Chris Mason8f18cf12008-04-25 16:53:30 -04002427 /*
2428 * step two, delete the device extents and the
2429 * chunk tree entries
2430 */
Chris Mason890871b2009-09-02 16:24:52 -04002431 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002432 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002433 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002434
Tsutomu Itoh285190d2012-02-16 16:23:58 +09002435 BUG_ON(!em || em->start > chunk_offset ||
Chris Masona061fc82008-05-07 11:43:44 -04002436 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002437 map = (struct map_lookup *)em->bdev;
2438
2439 for (i = 0; i < map->num_stripes; i++) {
2440 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
2441 map->stripes[i].physical);
2442 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04002443
Chris Masondfe25022008-05-13 13:46:40 -04002444 if (map->stripes[i].dev) {
2445 ret = btrfs_update_device(trans, map->stripes[i].dev);
2446 BUG_ON(ret);
2447 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002448 }
2449 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
2450 chunk_offset);
2451
2452 BUG_ON(ret);
2453
liubo1abe9b82011-03-24 11:18:59 +00002454 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2455
Chris Mason8f18cf12008-04-25 16:53:30 -04002456 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2457 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2458 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04002459 }
2460
Zheng Yan1a40e232008-09-26 10:09:34 -04002461 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
2462 BUG_ON(ret);
2463
Chris Mason890871b2009-09-02 16:24:52 -04002464 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002465 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002466 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04002467
Chris Mason8f18cf12008-04-25 16:53:30 -04002468 kfree(map);
2469 em->bdev = NULL;
2470
2471 /* once for the tree */
2472 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002473 /* once for us */
2474 free_extent_map(em);
2475
Chris Mason7d9eb122008-07-08 14:19:17 -04002476 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002477 btrfs_end_transaction(trans, root);
2478 return 0;
2479}
2480
Yan Zheng2b820322008-11-17 21:11:30 -05002481static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2482{
2483 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2484 struct btrfs_path *path;
2485 struct extent_buffer *leaf;
2486 struct btrfs_chunk *chunk;
2487 struct btrfs_key key;
2488 struct btrfs_key found_key;
2489 u64 chunk_tree = chunk_root->root_key.objectid;
2490 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002491 bool retried = false;
2492 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002493 int ret;
2494
2495 path = btrfs_alloc_path();
2496 if (!path)
2497 return -ENOMEM;
2498
Josef Bacikba1bf482009-09-11 16:11:19 -04002499again:
Yan Zheng2b820322008-11-17 21:11:30 -05002500 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2501 key.offset = (u64)-1;
2502 key.type = BTRFS_CHUNK_ITEM_KEY;
2503
2504 while (1) {
2505 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2506 if (ret < 0)
2507 goto error;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002508 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002509
2510 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2511 key.type);
2512 if (ret < 0)
2513 goto error;
2514 if (ret > 0)
2515 break;
2516
2517 leaf = path->nodes[0];
2518 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2519
2520 chunk = btrfs_item_ptr(leaf, path->slots[0],
2521 struct btrfs_chunk);
2522 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002523 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002524
2525 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
2526 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
2527 found_key.objectid,
2528 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002529 if (ret == -ENOSPC)
2530 failed++;
2531 else if (ret)
2532 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05002533 }
2534
2535 if (found_key.offset == 0)
2536 break;
2537 key.offset = found_key.offset - 1;
2538 }
2539 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002540 if (failed && !retried) {
2541 failed = 0;
2542 retried = true;
2543 goto again;
2544 } else if (failed && retried) {
2545 WARN_ON(1);
2546 ret = -ENOSPC;
2547 }
Yan Zheng2b820322008-11-17 21:11:30 -05002548error:
2549 btrfs_free_path(path);
2550 return ret;
2551}
2552
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002553static int insert_balance_item(struct btrfs_root *root,
2554 struct btrfs_balance_control *bctl)
2555{
2556 struct btrfs_trans_handle *trans;
2557 struct btrfs_balance_item *item;
2558 struct btrfs_disk_balance_args disk_bargs;
2559 struct btrfs_path *path;
2560 struct extent_buffer *leaf;
2561 struct btrfs_key key;
2562 int ret, err;
2563
2564 path = btrfs_alloc_path();
2565 if (!path)
2566 return -ENOMEM;
2567
2568 trans = btrfs_start_transaction(root, 0);
2569 if (IS_ERR(trans)) {
2570 btrfs_free_path(path);
2571 return PTR_ERR(trans);
2572 }
2573
2574 key.objectid = BTRFS_BALANCE_OBJECTID;
2575 key.type = BTRFS_BALANCE_ITEM_KEY;
2576 key.offset = 0;
2577
2578 ret = btrfs_insert_empty_item(trans, root, path, &key,
2579 sizeof(*item));
2580 if (ret)
2581 goto out;
2582
2583 leaf = path->nodes[0];
2584 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2585
2586 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2587
2588 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2589 btrfs_set_balance_data(leaf, item, &disk_bargs);
2590 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2591 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2592 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2593 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2594
2595 btrfs_set_balance_flags(leaf, item, bctl->flags);
2596
2597 btrfs_mark_buffer_dirty(leaf);
2598out:
2599 btrfs_free_path(path);
2600 err = btrfs_commit_transaction(trans, root);
2601 if (err && !ret)
2602 ret = err;
2603 return ret;
2604}
2605
2606static int del_balance_item(struct btrfs_root *root)
2607{
2608 struct btrfs_trans_handle *trans;
2609 struct btrfs_path *path;
2610 struct btrfs_key key;
2611 int ret, err;
2612
2613 path = btrfs_alloc_path();
2614 if (!path)
2615 return -ENOMEM;
2616
2617 trans = btrfs_start_transaction(root, 0);
2618 if (IS_ERR(trans)) {
2619 btrfs_free_path(path);
2620 return PTR_ERR(trans);
2621 }
2622
2623 key.objectid = BTRFS_BALANCE_OBJECTID;
2624 key.type = BTRFS_BALANCE_ITEM_KEY;
2625 key.offset = 0;
2626
2627 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2628 if (ret < 0)
2629 goto out;
2630 if (ret > 0) {
2631 ret = -ENOENT;
2632 goto out;
2633 }
2634
2635 ret = btrfs_del_item(trans, root, path);
2636out:
2637 btrfs_free_path(path);
2638 err = btrfs_commit_transaction(trans, root);
2639 if (err && !ret)
2640 ret = err;
2641 return ret;
2642}
2643
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002644/*
Ilya Dryomov59641012012-01-16 22:04:48 +02002645 * This is a heuristic used to reduce the number of chunks balanced on
2646 * resume after balance was interrupted.
2647 */
2648static void update_balance_args(struct btrfs_balance_control *bctl)
2649{
2650 /*
2651 * Turn on soft mode for chunk types that were being converted.
2652 */
2653 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
2654 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
2655 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
2656 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
2657 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
2658 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
2659
2660 /*
2661 * Turn on usage filter if is not already used. The idea is
2662 * that chunks that we have already balanced should be
2663 * reasonably full. Don't do it for chunks that are being
2664 * converted - that will keep us from relocating unconverted
2665 * (albeit full) chunks.
2666 */
2667 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2668 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2669 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
2670 bctl->data.usage = 90;
2671 }
2672 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2673 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2674 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
2675 bctl->sys.usage = 90;
2676 }
2677 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2678 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2679 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
2680 bctl->meta.usage = 90;
2681 }
2682}
2683
2684/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002685 * Should be called with both balance and volume mutexes held to
2686 * serialize other volume operations (add_dev/rm_dev/resize) with
2687 * restriper. Same goes for unset_balance_control.
2688 */
2689static void set_balance_control(struct btrfs_balance_control *bctl)
2690{
2691 struct btrfs_fs_info *fs_info = bctl->fs_info;
2692
2693 BUG_ON(fs_info->balance_ctl);
2694
2695 spin_lock(&fs_info->balance_lock);
2696 fs_info->balance_ctl = bctl;
2697 spin_unlock(&fs_info->balance_lock);
2698}
2699
2700static void unset_balance_control(struct btrfs_fs_info *fs_info)
2701{
2702 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
2703
2704 BUG_ON(!fs_info->balance_ctl);
2705
2706 spin_lock(&fs_info->balance_lock);
2707 fs_info->balance_ctl = NULL;
2708 spin_unlock(&fs_info->balance_lock);
2709
2710 kfree(bctl);
2711}
2712
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002713/*
2714 * Balance filters. Return 1 if chunk should be filtered out
2715 * (should not be balanced).
2716 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002717static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002718 struct btrfs_balance_args *bargs)
2719{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002720 chunk_type = chunk_to_extended(chunk_type) &
2721 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002722
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002723 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002724 return 0;
2725
2726 return 1;
2727}
2728
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002729static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
2730 struct btrfs_balance_args *bargs)
2731{
2732 struct btrfs_block_group_cache *cache;
2733 u64 chunk_used, user_thresh;
2734 int ret = 1;
2735
2736 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2737 chunk_used = btrfs_block_group_used(&cache->item);
2738
Ilya Dryomova105bb82013-01-21 15:15:56 +02002739 if (bargs->usage == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00002740 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02002741 else if (bargs->usage > 100)
2742 user_thresh = cache->key.offset;
2743 else
2744 user_thresh = div_factor_fine(cache->key.offset,
2745 bargs->usage);
2746
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002747 if (chunk_used < user_thresh)
2748 ret = 0;
2749
2750 btrfs_put_block_group(cache);
2751 return ret;
2752}
2753
Ilya Dryomov409d4042012-01-16 22:04:47 +02002754static int chunk_devid_filter(struct extent_buffer *leaf,
2755 struct btrfs_chunk *chunk,
2756 struct btrfs_balance_args *bargs)
2757{
2758 struct btrfs_stripe *stripe;
2759 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2760 int i;
2761
2762 for (i = 0; i < num_stripes; i++) {
2763 stripe = btrfs_stripe_nr(chunk, i);
2764 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
2765 return 0;
2766 }
2767
2768 return 1;
2769}
2770
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002771/* [pstart, pend) */
2772static int chunk_drange_filter(struct extent_buffer *leaf,
2773 struct btrfs_chunk *chunk,
2774 u64 chunk_offset,
2775 struct btrfs_balance_args *bargs)
2776{
2777 struct btrfs_stripe *stripe;
2778 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2779 u64 stripe_offset;
2780 u64 stripe_length;
2781 int factor;
2782 int i;
2783
2784 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
2785 return 0;
2786
2787 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05002788 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
2789 factor = num_stripes / 2;
2790 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
2791 factor = num_stripes - 1;
2792 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
2793 factor = num_stripes - 2;
2794 } else {
2795 factor = num_stripes;
2796 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002797
2798 for (i = 0; i < num_stripes; i++) {
2799 stripe = btrfs_stripe_nr(chunk, i);
2800 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
2801 continue;
2802
2803 stripe_offset = btrfs_stripe_offset(leaf, stripe);
2804 stripe_length = btrfs_chunk_length(leaf, chunk);
2805 do_div(stripe_length, factor);
2806
2807 if (stripe_offset < bargs->pend &&
2808 stripe_offset + stripe_length > bargs->pstart)
2809 return 0;
2810 }
2811
2812 return 1;
2813}
2814
Ilya Dryomovea671762012-01-16 22:04:48 +02002815/* [vstart, vend) */
2816static int chunk_vrange_filter(struct extent_buffer *leaf,
2817 struct btrfs_chunk *chunk,
2818 u64 chunk_offset,
2819 struct btrfs_balance_args *bargs)
2820{
2821 if (chunk_offset < bargs->vend &&
2822 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
2823 /* at least part of the chunk is inside this vrange */
2824 return 0;
2825
2826 return 1;
2827}
2828
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002829static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002830 struct btrfs_balance_args *bargs)
2831{
2832 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
2833 return 0;
2834
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002835 chunk_type = chunk_to_extended(chunk_type) &
2836 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002837
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002838 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002839 return 1;
2840
2841 return 0;
2842}
2843
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002844static int should_balance_chunk(struct btrfs_root *root,
2845 struct extent_buffer *leaf,
2846 struct btrfs_chunk *chunk, u64 chunk_offset)
2847{
2848 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
2849 struct btrfs_balance_args *bargs = NULL;
2850 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
2851
2852 /* type filter */
2853 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
2854 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
2855 return 0;
2856 }
2857
2858 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
2859 bargs = &bctl->data;
2860 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
2861 bargs = &bctl->sys;
2862 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
2863 bargs = &bctl->meta;
2864
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002865 /* profiles filter */
2866 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
2867 chunk_profiles_filter(chunk_type, bargs)) {
2868 return 0;
2869 }
2870
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002871 /* usage filter */
2872 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
2873 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
2874 return 0;
2875 }
2876
Ilya Dryomov409d4042012-01-16 22:04:47 +02002877 /* devid filter */
2878 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
2879 chunk_devid_filter(leaf, chunk, bargs)) {
2880 return 0;
2881 }
2882
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002883 /* drange filter, makes sense only with devid filter */
2884 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
2885 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
2886 return 0;
2887 }
2888
Ilya Dryomovea671762012-01-16 22:04:48 +02002889 /* vrange filter */
2890 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
2891 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
2892 return 0;
2893 }
2894
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002895 /* soft profile changing mode */
2896 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
2897 chunk_soft_convert_filter(chunk_type, bargs)) {
2898 return 0;
2899 }
2900
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002901 return 1;
2902}
2903
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002904static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04002905{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002906 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002907 struct btrfs_root *chunk_root = fs_info->chunk_root;
2908 struct btrfs_root *dev_root = fs_info->dev_root;
2909 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04002910 struct btrfs_device *device;
2911 u64 old_size;
2912 u64 size_to_free;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002913 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04002914 struct btrfs_path *path;
2915 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04002916 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002917 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002918 struct extent_buffer *leaf;
2919 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002920 int ret;
2921 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002922 bool counting = true;
Chris Masonec44a352008-04-28 15:29:52 -04002923
Chris Masonec44a352008-04-28 15:29:52 -04002924 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002925 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002926 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04002927 old_size = device->total_bytes;
2928 size_to_free = div_factor(old_size, 1);
2929 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05002930 if (!device->writeable ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01002931 device->total_bytes - device->bytes_used > size_to_free ||
2932 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04002933 continue;
2934
2935 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04002936 if (ret == -ENOSPC)
2937 break;
Chris Masonec44a352008-04-28 15:29:52 -04002938 BUG_ON(ret);
2939
Yan, Zhenga22285a2010-05-16 10:48:46 -04002940 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002941 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04002942
2943 ret = btrfs_grow_device(trans, device, old_size);
2944 BUG_ON(ret);
2945
2946 btrfs_end_transaction(trans, dev_root);
2947 }
2948
2949 /* step two, relocate all the chunks */
2950 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07002951 if (!path) {
2952 ret = -ENOMEM;
2953 goto error;
2954 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002955
2956 /* zero out stat counters */
2957 spin_lock(&fs_info->balance_lock);
2958 memset(&bctl->stat, 0, sizeof(bctl->stat));
2959 spin_unlock(&fs_info->balance_lock);
2960again:
Chris Masonec44a352008-04-28 15:29:52 -04002961 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2962 key.offset = (u64)-1;
2963 key.type = BTRFS_CHUNK_ITEM_KEY;
2964
Chris Masond3977122009-01-05 21:25:51 -05002965 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002966 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002967 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002968 ret = -ECANCELED;
2969 goto error;
2970 }
2971
Chris Masonec44a352008-04-28 15:29:52 -04002972 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2973 if (ret < 0)
2974 goto error;
2975
2976 /*
2977 * this shouldn't happen, it means the last relocate
2978 * failed
2979 */
2980 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002981 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04002982
2983 ret = btrfs_previous_item(chunk_root, path, 0,
2984 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002985 if (ret) {
2986 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04002987 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002988 }
Chris Mason7d9eb122008-07-08 14:19:17 -04002989
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002990 leaf = path->nodes[0];
2991 slot = path->slots[0];
2992 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2993
Chris Masonec44a352008-04-28 15:29:52 -04002994 if (found_key.objectid != key.objectid)
2995 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04002996
Chris Masonec44a352008-04-28 15:29:52 -04002997 /* chunk zero is special */
Josef Bacikba1bf482009-09-11 16:11:19 -04002998 if (found_key.offset == 0)
Chris Masonec44a352008-04-28 15:29:52 -04002999 break;
3000
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003001 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3002
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003003 if (!counting) {
3004 spin_lock(&fs_info->balance_lock);
3005 bctl->stat.considered++;
3006 spin_unlock(&fs_info->balance_lock);
3007 }
3008
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003009 ret = should_balance_chunk(chunk_root, leaf, chunk,
3010 found_key.offset);
David Sterbab3b4aa72011-04-21 01:20:15 +02003011 btrfs_release_path(path);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003012 if (!ret)
3013 goto loop;
3014
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003015 if (counting) {
3016 spin_lock(&fs_info->balance_lock);
3017 bctl->stat.expected++;
3018 spin_unlock(&fs_info->balance_lock);
3019 goto loop;
3020 }
3021
Chris Masonec44a352008-04-28 15:29:52 -04003022 ret = btrfs_relocate_chunk(chunk_root,
3023 chunk_root->root_key.objectid,
3024 found_key.objectid,
3025 found_key.offset);
Josef Bacik508794e2011-07-02 21:24:41 +00003026 if (ret && ret != -ENOSPC)
3027 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003028 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003029 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003030 } else {
3031 spin_lock(&fs_info->balance_lock);
3032 bctl->stat.completed++;
3033 spin_unlock(&fs_info->balance_lock);
3034 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003035loop:
Josef Bacikba1bf482009-09-11 16:11:19 -04003036 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003037 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003038
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003039 if (counting) {
3040 btrfs_release_path(path);
3041 counting = false;
3042 goto again;
3043 }
Chris Masonec44a352008-04-28 15:29:52 -04003044error:
3045 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003046 if (enospc_errors) {
3047 printk(KERN_INFO "btrfs: %d enospc errors during balance\n",
3048 enospc_errors);
3049 if (!ret)
3050 ret = -ENOSPC;
3051 }
3052
Chris Masonec44a352008-04-28 15:29:52 -04003053 return ret;
3054}
3055
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003056/**
3057 * alloc_profile_is_valid - see if a given profile is valid and reduced
3058 * @flags: profile to validate
3059 * @extended: if true @flags is treated as an extended profile
3060 */
3061static int alloc_profile_is_valid(u64 flags, int extended)
3062{
3063 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3064 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3065
3066 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3067
3068 /* 1) check that all other bits are zeroed */
3069 if (flags & ~mask)
3070 return 0;
3071
3072 /* 2) see if profile is reduced */
3073 if (flags == 0)
3074 return !extended; /* "0" is valid for usual profiles */
3075
3076 /* true if exactly one bit set */
3077 return (flags & (flags - 1)) == 0;
3078}
3079
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003080static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3081{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003082 /* cancel requested || normal exit path */
3083 return atomic_read(&fs_info->balance_cancel_req) ||
3084 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3085 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003086}
3087
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003088static void __cancel_balance(struct btrfs_fs_info *fs_info)
3089{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003090 int ret;
3091
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003092 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003093 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003094 if (ret)
3095 btrfs_std_error(fs_info, ret);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003096
3097 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003098}
3099
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003100/*
3101 * Should be called with both balance and volume mutexes held
3102 */
3103int btrfs_balance(struct btrfs_balance_control *bctl,
3104 struct btrfs_ioctl_balance_args *bargs)
3105{
3106 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003107 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003108 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003109 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003110 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003111 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003112
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003113 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003114 atomic_read(&fs_info->balance_pause_req) ||
3115 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003116 ret = -EINVAL;
3117 goto out;
3118 }
3119
Ilya Dryomove4837f82012-03-27 17:09:17 +03003120 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3121 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3122 mixed = 1;
3123
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003124 /*
3125 * In case of mixed groups both data and meta should be picked,
3126 * and identical options should be given for both of them.
3127 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003128 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3129 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003130 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3131 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3132 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
3133 printk(KERN_ERR "btrfs: with mixed groups data and "
3134 "metadata balance options must be the same\n");
3135 ret = -EINVAL;
3136 goto out;
3137 }
3138 }
3139
Stefan Behrens8dabb742012-11-06 13:15:27 +01003140 num_devices = fs_info->fs_devices->num_devices;
3141 btrfs_dev_replace_lock(&fs_info->dev_replace);
3142 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3143 BUG_ON(num_devices < 1);
3144 num_devices--;
3145 }
3146 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003147 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003148 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003149 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003150 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003151 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003152 if (num_devices > 2)
3153 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3154 if (num_devices > 3)
3155 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3156 BTRFS_BLOCK_GROUP_RAID6);
Ilya Dryomov6728b192012-03-27 17:09:17 +03003157 if ((bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3158 (!alloc_profile_is_valid(bctl->data.target, 1) ||
3159 (bctl->data.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003160 printk(KERN_ERR "btrfs: unable to start balance with target "
3161 "data profile %llu\n",
3162 (unsigned long long)bctl->data.target);
3163 ret = -EINVAL;
3164 goto out;
3165 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003166 if ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3167 (!alloc_profile_is_valid(bctl->meta.target, 1) ||
3168 (bctl->meta.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003169 printk(KERN_ERR "btrfs: unable to start balance with target "
3170 "metadata profile %llu\n",
3171 (unsigned long long)bctl->meta.target);
3172 ret = -EINVAL;
3173 goto out;
3174 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003175 if ((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3176 (!alloc_profile_is_valid(bctl->sys.target, 1) ||
3177 (bctl->sys.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003178 printk(KERN_ERR "btrfs: unable to start balance with target "
3179 "system profile %llu\n",
3180 (unsigned long long)bctl->sys.target);
3181 ret = -EINVAL;
3182 goto out;
3183 }
3184
Ilya Dryomove4837f82012-03-27 17:09:17 +03003185 /* allow dup'ed data chunks only in mixed mode */
3186 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
Ilya Dryomov6728b192012-03-27 17:09:17 +03003187 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003188 printk(KERN_ERR "btrfs: dup for data is not allowed\n");
3189 ret = -EINVAL;
3190 goto out;
3191 }
3192
3193 /* allow to reduce meta or sys integrity only if force set */
3194 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003195 BTRFS_BLOCK_GROUP_RAID10 |
3196 BTRFS_BLOCK_GROUP_RAID5 |
3197 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003198 do {
3199 seq = read_seqbegin(&fs_info->profiles_lock);
3200
3201 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3202 (fs_info->avail_system_alloc_bits & allowed) &&
3203 !(bctl->sys.target & allowed)) ||
3204 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3205 (fs_info->avail_metadata_alloc_bits & allowed) &&
3206 !(bctl->meta.target & allowed))) {
3207 if (bctl->flags & BTRFS_BALANCE_FORCE) {
3208 printk(KERN_INFO "btrfs: force reducing metadata "
3209 "integrity\n");
3210 } else {
3211 printk(KERN_ERR "btrfs: balance will reduce metadata "
3212 "integrity, use force if you want this\n");
3213 ret = -EINVAL;
3214 goto out;
3215 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003216 }
Miao Xiede98ced2013-01-29 10:13:12 +00003217 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003218
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003219 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3220 int num_tolerated_disk_barrier_failures;
3221 u64 target = bctl->sys.target;
3222
3223 num_tolerated_disk_barrier_failures =
3224 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3225 if (num_tolerated_disk_barrier_failures > 0 &&
3226 (target &
3227 (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3228 BTRFS_AVAIL_ALLOC_BIT_SINGLE)))
3229 num_tolerated_disk_barrier_failures = 0;
3230 else if (num_tolerated_disk_barrier_failures > 1 &&
3231 (target &
3232 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)))
3233 num_tolerated_disk_barrier_failures = 1;
3234
3235 fs_info->num_tolerated_disk_barrier_failures =
3236 num_tolerated_disk_barrier_failures;
3237 }
3238
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003239 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003240 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003241 goto out;
3242
Ilya Dryomov59641012012-01-16 22:04:48 +02003243 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3244 BUG_ON(ret == -EEXIST);
3245 set_balance_control(bctl);
3246 } else {
3247 BUG_ON(ret != -EEXIST);
3248 spin_lock(&fs_info->balance_lock);
3249 update_balance_args(bctl);
3250 spin_unlock(&fs_info->balance_lock);
3251 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003252
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003253 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003254 mutex_unlock(&fs_info->balance_mutex);
3255
3256 ret = __btrfs_balance(fs_info);
3257
3258 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003259 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003260
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003261 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3262 fs_info->num_tolerated_disk_barrier_failures =
3263 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3264 }
3265
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003266 if (bargs) {
3267 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003268 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003269 }
3270
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003271 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3272 balance_need_close(fs_info)) {
3273 __cancel_balance(fs_info);
3274 }
3275
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003276 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003277
3278 return ret;
3279out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003280 if (bctl->flags & BTRFS_BALANCE_RESUME)
3281 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003282 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003283 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003284 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3285 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003286 return ret;
3287}
3288
3289static int balance_kthread(void *data)
3290{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003291 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003292 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003293
3294 mutex_lock(&fs_info->volume_mutex);
3295 mutex_lock(&fs_info->balance_mutex);
3296
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003297 if (fs_info->balance_ctl) {
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003298 printk(KERN_INFO "btrfs: continuing balance\n");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003299 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003300 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003301
3302 mutex_unlock(&fs_info->balance_mutex);
3303 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003304
Ilya Dryomov59641012012-01-16 22:04:48 +02003305 return ret;
3306}
3307
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003308int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3309{
3310 struct task_struct *tsk;
3311
3312 spin_lock(&fs_info->balance_lock);
3313 if (!fs_info->balance_ctl) {
3314 spin_unlock(&fs_info->balance_lock);
3315 return 0;
3316 }
3317 spin_unlock(&fs_info->balance_lock);
3318
3319 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
3320 printk(KERN_INFO "btrfs: force skipping balance\n");
3321 return 0;
3322 }
3323
3324 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Thomas Meyer97a184f2013-06-01 09:45:35 +00003325 return PTR_RET(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003326}
3327
Ilya Dryomov68310a52012-06-22 12:24:12 -06003328int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003329{
Ilya Dryomov59641012012-01-16 22:04:48 +02003330 struct btrfs_balance_control *bctl;
3331 struct btrfs_balance_item *item;
3332 struct btrfs_disk_balance_args disk_bargs;
3333 struct btrfs_path *path;
3334 struct extent_buffer *leaf;
3335 struct btrfs_key key;
3336 int ret;
3337
3338 path = btrfs_alloc_path();
3339 if (!path)
3340 return -ENOMEM;
3341
Ilya Dryomov68310a52012-06-22 12:24:12 -06003342 key.objectid = BTRFS_BALANCE_OBJECTID;
3343 key.type = BTRFS_BALANCE_ITEM_KEY;
3344 key.offset = 0;
3345
3346 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3347 if (ret < 0)
3348 goto out;
3349 if (ret > 0) { /* ret = -ENOENT; */
3350 ret = 0;
3351 goto out;
3352 }
3353
Ilya Dryomov59641012012-01-16 22:04:48 +02003354 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3355 if (!bctl) {
3356 ret = -ENOMEM;
3357 goto out;
3358 }
3359
Ilya Dryomov59641012012-01-16 22:04:48 +02003360 leaf = path->nodes[0];
3361 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3362
Ilya Dryomov68310a52012-06-22 12:24:12 -06003363 bctl->fs_info = fs_info;
3364 bctl->flags = btrfs_balance_flags(leaf, item);
3365 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003366
3367 btrfs_balance_data(leaf, item, &disk_bargs);
3368 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3369 btrfs_balance_meta(leaf, item, &disk_bargs);
3370 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3371 btrfs_balance_sys(leaf, item, &disk_bargs);
3372 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3373
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003374 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3375
Ilya Dryomov68310a52012-06-22 12:24:12 -06003376 mutex_lock(&fs_info->volume_mutex);
3377 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003378
Ilya Dryomov68310a52012-06-22 12:24:12 -06003379 set_balance_control(bctl);
3380
3381 mutex_unlock(&fs_info->balance_mutex);
3382 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003383out:
3384 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003385 return ret;
3386}
3387
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003388int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3389{
3390 int ret = 0;
3391
3392 mutex_lock(&fs_info->balance_mutex);
3393 if (!fs_info->balance_ctl) {
3394 mutex_unlock(&fs_info->balance_mutex);
3395 return -ENOTCONN;
3396 }
3397
3398 if (atomic_read(&fs_info->balance_running)) {
3399 atomic_inc(&fs_info->balance_pause_req);
3400 mutex_unlock(&fs_info->balance_mutex);
3401
3402 wait_event(fs_info->balance_wait_q,
3403 atomic_read(&fs_info->balance_running) == 0);
3404
3405 mutex_lock(&fs_info->balance_mutex);
3406 /* we are good with balance_ctl ripped off from under us */
3407 BUG_ON(atomic_read(&fs_info->balance_running));
3408 atomic_dec(&fs_info->balance_pause_req);
3409 } else {
3410 ret = -ENOTCONN;
3411 }
3412
3413 mutex_unlock(&fs_info->balance_mutex);
3414 return ret;
3415}
3416
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003417int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3418{
3419 mutex_lock(&fs_info->balance_mutex);
3420 if (!fs_info->balance_ctl) {
3421 mutex_unlock(&fs_info->balance_mutex);
3422 return -ENOTCONN;
3423 }
3424
3425 atomic_inc(&fs_info->balance_cancel_req);
3426 /*
3427 * if we are running just wait and return, balance item is
3428 * deleted in btrfs_balance in this case
3429 */
3430 if (atomic_read(&fs_info->balance_running)) {
3431 mutex_unlock(&fs_info->balance_mutex);
3432 wait_event(fs_info->balance_wait_q,
3433 atomic_read(&fs_info->balance_running) == 0);
3434 mutex_lock(&fs_info->balance_mutex);
3435 } else {
3436 /* __cancel_balance needs volume_mutex */
3437 mutex_unlock(&fs_info->balance_mutex);
3438 mutex_lock(&fs_info->volume_mutex);
3439 mutex_lock(&fs_info->balance_mutex);
3440
3441 if (fs_info->balance_ctl)
3442 __cancel_balance(fs_info);
3443
3444 mutex_unlock(&fs_info->volume_mutex);
3445 }
3446
3447 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3448 atomic_dec(&fs_info->balance_cancel_req);
3449 mutex_unlock(&fs_info->balance_mutex);
3450 return 0;
3451}
3452
Stefan Behrens803b2f52013-08-15 17:11:21 +02003453static int btrfs_uuid_scan_kthread(void *data)
3454{
3455 struct btrfs_fs_info *fs_info = data;
3456 struct btrfs_root *root = fs_info->tree_root;
3457 struct btrfs_key key;
3458 struct btrfs_key max_key;
3459 struct btrfs_path *path = NULL;
3460 int ret = 0;
3461 struct extent_buffer *eb;
3462 int slot;
3463 struct btrfs_root_item root_item;
3464 u32 item_size;
3465 struct btrfs_trans_handle *trans;
3466
3467 path = btrfs_alloc_path();
3468 if (!path) {
3469 ret = -ENOMEM;
3470 goto out;
3471 }
3472
3473 key.objectid = 0;
3474 key.type = BTRFS_ROOT_ITEM_KEY;
3475 key.offset = 0;
3476
3477 max_key.objectid = (u64)-1;
3478 max_key.type = BTRFS_ROOT_ITEM_KEY;
3479 max_key.offset = (u64)-1;
3480
3481 path->keep_locks = 1;
3482
3483 while (1) {
3484 ret = btrfs_search_forward(root, &key, &max_key, path, 0);
3485 if (ret) {
3486 if (ret > 0)
3487 ret = 0;
3488 break;
3489 }
3490
3491 if (key.type != BTRFS_ROOT_ITEM_KEY ||
3492 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
3493 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
3494 key.objectid > BTRFS_LAST_FREE_OBJECTID)
3495 goto skip;
3496
3497 eb = path->nodes[0];
3498 slot = path->slots[0];
3499 item_size = btrfs_item_size_nr(eb, slot);
3500 if (item_size < sizeof(root_item))
3501 goto skip;
3502
3503 trans = NULL;
3504 read_extent_buffer(eb, &root_item,
3505 btrfs_item_ptr_offset(eb, slot),
3506 (int)sizeof(root_item));
3507 if (btrfs_root_refs(&root_item) == 0)
3508 goto skip;
3509 if (!btrfs_is_empty_uuid(root_item.uuid)) {
3510 /*
3511 * 1 - subvol uuid item
3512 * 1 - received_subvol uuid item
3513 */
3514 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
3515 if (IS_ERR(trans)) {
3516 ret = PTR_ERR(trans);
3517 break;
3518 }
3519 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3520 root_item.uuid,
3521 BTRFS_UUID_KEY_SUBVOL,
3522 key.objectid);
3523 if (ret < 0) {
3524 pr_warn("btrfs: uuid_tree_add failed %d\n",
3525 ret);
3526 btrfs_end_transaction(trans,
3527 fs_info->uuid_root);
3528 break;
3529 }
3530 }
3531
3532 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
3533 if (!trans) {
3534 /* 1 - received_subvol uuid item */
3535 trans = btrfs_start_transaction(
3536 fs_info->uuid_root, 1);
3537 if (IS_ERR(trans)) {
3538 ret = PTR_ERR(trans);
3539 break;
3540 }
3541 }
3542 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3543 root_item.received_uuid,
3544 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
3545 key.objectid);
3546 if (ret < 0) {
3547 pr_warn("btrfs: uuid_tree_add failed %d\n",
3548 ret);
3549 btrfs_end_transaction(trans,
3550 fs_info->uuid_root);
3551 break;
3552 }
3553 }
3554
3555 if (trans) {
3556 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
3557 if (ret)
3558 break;
3559 }
3560
3561skip:
3562 btrfs_release_path(path);
3563 if (key.offset < (u64)-1) {
3564 key.offset++;
3565 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
3566 key.offset = 0;
3567 key.type = BTRFS_ROOT_ITEM_KEY;
3568 } else if (key.objectid < (u64)-1) {
3569 key.offset = 0;
3570 key.type = BTRFS_ROOT_ITEM_KEY;
3571 key.objectid++;
3572 } else {
3573 break;
3574 }
3575 cond_resched();
3576 }
3577
3578out:
3579 btrfs_free_path(path);
3580 if (ret)
3581 pr_warn("btrfs: btrfs_uuid_scan_kthread failed %d\n", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02003582 else
3583 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003584 up(&fs_info->uuid_tree_rescan_sem);
3585 return 0;
3586}
3587
Stefan Behrens70f80172013-08-15 17:11:23 +02003588/*
3589 * Callback for btrfs_uuid_tree_iterate().
3590 * returns:
3591 * 0 check succeeded, the entry is not outdated.
3592 * < 0 if an error occured.
3593 * > 0 if the check failed, which means the caller shall remove the entry.
3594 */
3595static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
3596 u8 *uuid, u8 type, u64 subid)
3597{
3598 struct btrfs_key key;
3599 int ret = 0;
3600 struct btrfs_root *subvol_root;
3601
3602 if (type != BTRFS_UUID_KEY_SUBVOL &&
3603 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
3604 goto out;
3605
3606 key.objectid = subid;
3607 key.type = BTRFS_ROOT_ITEM_KEY;
3608 key.offset = (u64)-1;
3609 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
3610 if (IS_ERR(subvol_root)) {
3611 ret = PTR_ERR(subvol_root);
3612 if (ret == -ENOENT)
3613 ret = 1;
3614 goto out;
3615 }
3616
3617 switch (type) {
3618 case BTRFS_UUID_KEY_SUBVOL:
3619 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
3620 ret = 1;
3621 break;
3622 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
3623 if (memcmp(uuid, subvol_root->root_item.received_uuid,
3624 BTRFS_UUID_SIZE))
3625 ret = 1;
3626 break;
3627 }
3628
3629out:
3630 return ret;
3631}
3632
3633static int btrfs_uuid_rescan_kthread(void *data)
3634{
3635 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
3636 int ret;
3637
3638 /*
3639 * 1st step is to iterate through the existing UUID tree and
3640 * to delete all entries that contain outdated data.
3641 * 2nd step is to add all missing entries to the UUID tree.
3642 */
3643 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
3644 if (ret < 0) {
3645 pr_warn("btrfs: iterating uuid_tree failed %d\n", ret);
3646 up(&fs_info->uuid_tree_rescan_sem);
3647 return ret;
3648 }
3649 return btrfs_uuid_scan_kthread(data);
3650}
3651
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003652int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
3653{
3654 struct btrfs_trans_handle *trans;
3655 struct btrfs_root *tree_root = fs_info->tree_root;
3656 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003657 struct task_struct *task;
3658 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003659
3660 /*
3661 * 1 - root node
3662 * 1 - root item
3663 */
3664 trans = btrfs_start_transaction(tree_root, 2);
3665 if (IS_ERR(trans))
3666 return PTR_ERR(trans);
3667
3668 uuid_root = btrfs_create_tree(trans, fs_info,
3669 BTRFS_UUID_TREE_OBJECTID);
3670 if (IS_ERR(uuid_root)) {
3671 btrfs_abort_transaction(trans, tree_root,
3672 PTR_ERR(uuid_root));
3673 return PTR_ERR(uuid_root);
3674 }
3675
3676 fs_info->uuid_root = uuid_root;
3677
Stefan Behrens803b2f52013-08-15 17:11:21 +02003678 ret = btrfs_commit_transaction(trans, tree_root);
3679 if (ret)
3680 return ret;
3681
3682 down(&fs_info->uuid_tree_rescan_sem);
3683 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
3684 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02003685 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Stefan Behrens803b2f52013-08-15 17:11:21 +02003686 pr_warn("btrfs: failed to start uuid_scan task\n");
3687 up(&fs_info->uuid_tree_rescan_sem);
3688 return PTR_ERR(task);
3689 }
3690
3691 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003692}
Stefan Behrens803b2f52013-08-15 17:11:21 +02003693
Stefan Behrens70f80172013-08-15 17:11:23 +02003694int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
3695{
3696 struct task_struct *task;
3697
3698 down(&fs_info->uuid_tree_rescan_sem);
3699 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
3700 if (IS_ERR(task)) {
3701 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
3702 pr_warn("btrfs: failed to start uuid_rescan task\n");
3703 up(&fs_info->uuid_tree_rescan_sem);
3704 return PTR_ERR(task);
3705 }
3706
3707 return 0;
3708}
3709
Chris Mason8f18cf12008-04-25 16:53:30 -04003710/*
3711 * shrinking a device means finding all of the device extents past
3712 * the new size, and then following the back refs to the chunks.
3713 * The chunk relocation code actually frees the device extent
3714 */
3715int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
3716{
3717 struct btrfs_trans_handle *trans;
3718 struct btrfs_root *root = device->dev_root;
3719 struct btrfs_dev_extent *dev_extent = NULL;
3720 struct btrfs_path *path;
3721 u64 length;
3722 u64 chunk_tree;
3723 u64 chunk_objectid;
3724 u64 chunk_offset;
3725 int ret;
3726 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04003727 int failed = 0;
3728 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04003729 struct extent_buffer *l;
3730 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02003731 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04003732 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04003733 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04003734 u64 diff = device->total_bytes - new_size;
3735
Stefan Behrens63a212a2012-11-05 18:29:28 +01003736 if (device->is_tgtdev_for_dev_replace)
3737 return -EINVAL;
3738
Chris Mason8f18cf12008-04-25 16:53:30 -04003739 path = btrfs_alloc_path();
3740 if (!path)
3741 return -ENOMEM;
3742
Chris Mason8f18cf12008-04-25 16:53:30 -04003743 path->reada = 2;
3744
Chris Mason7d9eb122008-07-08 14:19:17 -04003745 lock_chunks(root);
3746
Chris Mason8f18cf12008-04-25 16:53:30 -04003747 device->total_bytes = new_size;
Josef Bacik2bf64752011-09-26 17:12:22 -04003748 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05003749 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003750 spin_lock(&root->fs_info->free_chunk_lock);
3751 root->fs_info->free_chunk_space -= diff;
3752 spin_unlock(&root->fs_info->free_chunk_lock);
3753 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003754 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003755
Josef Bacikba1bf482009-09-11 16:11:19 -04003756again:
Chris Mason8f18cf12008-04-25 16:53:30 -04003757 key.objectid = device->devid;
3758 key.offset = (u64)-1;
3759 key.type = BTRFS_DEV_EXTENT_KEY;
3760
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003761 do {
Chris Mason8f18cf12008-04-25 16:53:30 -04003762 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3763 if (ret < 0)
3764 goto done;
3765
3766 ret = btrfs_previous_item(root, path, 0, key.type);
3767 if (ret < 0)
3768 goto done;
3769 if (ret) {
3770 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003771 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003772 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04003773 }
3774
3775 l = path->nodes[0];
3776 slot = path->slots[0];
3777 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
3778
Josef Bacikba1bf482009-09-11 16:11:19 -04003779 if (key.objectid != device->devid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003780 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003781 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003782 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003783
3784 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3785 length = btrfs_dev_extent_length(l, dev_extent);
3786
Josef Bacikba1bf482009-09-11 16:11:19 -04003787 if (key.offset + length <= new_size) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003788 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04003789 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003790 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003791
3792 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
3793 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
3794 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02003795 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003796
3797 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
3798 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003799 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04003800 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04003801 if (ret == -ENOSPC)
3802 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003803 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04003804
3805 if (failed && !retried) {
3806 failed = 0;
3807 retried = true;
3808 goto again;
3809 } else if (failed && retried) {
3810 ret = -ENOSPC;
3811 lock_chunks(root);
3812
3813 device->total_bytes = old_size;
3814 if (device->writeable)
3815 device->fs_devices->total_rw_bytes += diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003816 spin_lock(&root->fs_info->free_chunk_lock);
3817 root->fs_info->free_chunk_space += diff;
3818 spin_unlock(&root->fs_info->free_chunk_lock);
Josef Bacikba1bf482009-09-11 16:11:19 -04003819 unlock_chunks(root);
3820 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04003821 }
3822
Chris Balld6397ba2009-04-27 07:29:03 -04003823 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003824 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003825 if (IS_ERR(trans)) {
3826 ret = PTR_ERR(trans);
3827 goto done;
3828 }
3829
Chris Balld6397ba2009-04-27 07:29:03 -04003830 lock_chunks(root);
3831
3832 device->disk_total_bytes = new_size;
3833 /* Now btrfs_update_device() will change the on-disk size. */
3834 ret = btrfs_update_device(trans, device);
3835 if (ret) {
3836 unlock_chunks(root);
3837 btrfs_end_transaction(trans, root);
3838 goto done;
3839 }
3840 WARN_ON(diff > old_total);
3841 btrfs_set_super_total_bytes(super_copy, old_total - diff);
3842 unlock_chunks(root);
3843 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003844done:
3845 btrfs_free_path(path);
3846 return ret;
3847}
3848
Li Zefan125ccb02011-12-08 15:07:24 +08003849static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003850 struct btrfs_key *key,
3851 struct btrfs_chunk *chunk, int item_size)
3852{
David Sterba6c417612011-04-13 15:41:04 +02003853 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04003854 struct btrfs_disk_key disk_key;
3855 u32 array_size;
3856 u8 *ptr;
3857
3858 array_size = btrfs_super_sys_array_size(super_copy);
3859 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
3860 return -EFBIG;
3861
3862 ptr = super_copy->sys_chunk_array + array_size;
3863 btrfs_cpu_key_to_disk(&disk_key, key);
3864 memcpy(ptr, &disk_key, sizeof(disk_key));
3865 ptr += sizeof(disk_key);
3866 memcpy(ptr, chunk, item_size);
3867 item_size += sizeof(disk_key);
3868 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
3869 return 0;
3870}
3871
Miao Xieb2117a32011-01-05 10:07:28 +00003872/*
Arne Jansen73c5de02011-04-12 12:07:57 +02003873 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00003874 */
Arne Jansen73c5de02011-04-12 12:07:57 +02003875static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00003876{
Arne Jansen73c5de02011-04-12 12:07:57 +02003877 const struct btrfs_device_info *di_a = a;
3878 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00003879
Arne Jansen73c5de02011-04-12 12:07:57 +02003880 if (di_a->max_avail > di_b->max_avail)
3881 return -1;
3882 if (di_a->max_avail < di_b->max_avail)
3883 return 1;
3884 if (di_a->total_avail > di_b->total_avail)
3885 return -1;
3886 if (di_a->total_avail < di_b->total_avail)
3887 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00003888 return 0;
3889}
3890
Eric Sandeen48a3b632013-04-25 20:41:01 +00003891static struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
Miao Xiee6ec7162013-01-17 05:38:51 +00003892 [BTRFS_RAID_RAID10] = {
3893 .sub_stripes = 2,
3894 .dev_stripes = 1,
3895 .devs_max = 0, /* 0 == as many as possible */
3896 .devs_min = 4,
3897 .devs_increment = 2,
3898 .ncopies = 2,
3899 },
3900 [BTRFS_RAID_RAID1] = {
3901 .sub_stripes = 1,
3902 .dev_stripes = 1,
3903 .devs_max = 2,
3904 .devs_min = 2,
3905 .devs_increment = 2,
3906 .ncopies = 2,
3907 },
3908 [BTRFS_RAID_DUP] = {
3909 .sub_stripes = 1,
3910 .dev_stripes = 2,
3911 .devs_max = 1,
3912 .devs_min = 1,
3913 .devs_increment = 1,
3914 .ncopies = 2,
3915 },
3916 [BTRFS_RAID_RAID0] = {
3917 .sub_stripes = 1,
3918 .dev_stripes = 1,
3919 .devs_max = 0,
3920 .devs_min = 2,
3921 .devs_increment = 1,
3922 .ncopies = 1,
3923 },
3924 [BTRFS_RAID_SINGLE] = {
3925 .sub_stripes = 1,
3926 .dev_stripes = 1,
3927 .devs_max = 1,
3928 .devs_min = 1,
3929 .devs_increment = 1,
3930 .ncopies = 1,
3931 },
Chris Masone942f882013-02-20 14:06:05 -05003932 [BTRFS_RAID_RAID5] = {
3933 .sub_stripes = 1,
3934 .dev_stripes = 1,
3935 .devs_max = 0,
3936 .devs_min = 2,
3937 .devs_increment = 1,
3938 .ncopies = 2,
3939 },
3940 [BTRFS_RAID_RAID6] = {
3941 .sub_stripes = 1,
3942 .dev_stripes = 1,
3943 .devs_max = 0,
3944 .devs_min = 3,
3945 .devs_increment = 1,
3946 .ncopies = 3,
3947 },
Liu Bo31e50222012-11-21 14:18:10 +00003948};
3949
David Woodhouse53b381b2013-01-29 18:40:14 -05003950static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
3951{
3952 /* TODO allow them to set a preferred stripe size */
3953 return 64 * 1024;
3954}
3955
3956static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
3957{
David Woodhouse53b381b2013-01-29 18:40:14 -05003958 if (!(type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)))
3959 return;
3960
Miao Xieceda0862013-04-11 10:30:16 +00003961 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05003962}
3963
Miao Xieb2117a32011-01-05 10:07:28 +00003964static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04003965 struct btrfs_root *extent_root, u64 start,
3966 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00003967{
3968 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00003969 struct btrfs_fs_devices *fs_devices = info->fs_devices;
3970 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02003971 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00003972 struct extent_map_tree *em_tree;
3973 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02003974 struct btrfs_device_info *devices_info = NULL;
3975 u64 total_avail;
3976 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05003977 int data_stripes; /* number of stripes that count for
3978 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02003979 int sub_stripes; /* sub_stripes info for map */
3980 int dev_stripes; /* stripes per dev */
3981 int devs_max; /* max devs to use */
3982 int devs_min; /* min devs needed */
3983 int devs_increment; /* ndevs has to be a multiple of this */
3984 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00003985 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02003986 u64 max_stripe_size;
3987 u64 max_chunk_size;
3988 u64 stripe_size;
3989 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05003990 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02003991 int ndevs;
3992 int i;
3993 int j;
Liu Bo31e50222012-11-21 14:18:10 +00003994 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00003995
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003996 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02003997
Miao Xieb2117a32011-01-05 10:07:28 +00003998 if (list_empty(&fs_devices->alloc_list))
3999 return -ENOSPC;
4000
Liu Bo31e50222012-11-21 14:18:10 +00004001 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004002
Liu Bo31e50222012-11-21 14:18:10 +00004003 sub_stripes = btrfs_raid_array[index].sub_stripes;
4004 dev_stripes = btrfs_raid_array[index].dev_stripes;
4005 devs_max = btrfs_raid_array[index].devs_max;
4006 devs_min = btrfs_raid_array[index].devs_min;
4007 devs_increment = btrfs_raid_array[index].devs_increment;
4008 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004009
4010 if (type & BTRFS_BLOCK_GROUP_DATA) {
4011 max_stripe_size = 1024 * 1024 * 1024;
4012 max_chunk_size = 10 * max_stripe_size;
4013 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004014 /* for larger filesystems, use larger metadata chunks */
4015 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
4016 max_stripe_size = 1024 * 1024 * 1024;
4017 else
4018 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004019 max_chunk_size = max_stripe_size;
4020 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05004021 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004022 max_chunk_size = 2 * max_stripe_size;
4023 } else {
4024 printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
4025 type);
4026 BUG_ON(1);
4027 }
4028
4029 /* we don't want a chunk larger than 10% of writeable space */
4030 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4031 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004032
4033 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
4034 GFP_NOFS);
4035 if (!devices_info)
4036 return -ENOMEM;
4037
Arne Jansen73c5de02011-04-12 12:07:57 +02004038 cur = fs_devices->alloc_list.next;
4039
4040 /*
4041 * in the first pass through the devices list, we gather information
4042 * about the available holes on each device.
4043 */
4044 ndevs = 0;
4045 while (cur != &fs_devices->alloc_list) {
4046 struct btrfs_device *device;
4047 u64 max_avail;
4048 u64 dev_offset;
4049
4050 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4051
4052 cur = cur->next;
4053
4054 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004055 WARN(1, KERN_ERR
Arne Jansen73c5de02011-04-12 12:07:57 +02004056 "btrfs: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004057 continue;
4058 }
4059
Stefan Behrens63a212a2012-11-05 18:29:28 +01004060 if (!device->in_fs_metadata ||
4061 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004062 continue;
4063
4064 if (device->total_bytes > device->bytes_used)
4065 total_avail = device->total_bytes - device->bytes_used;
4066 else
4067 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004068
4069 /* If there is no space on this device, skip it. */
4070 if (total_avail == 0)
4071 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004072
Josef Bacik6df9a952013-06-27 13:22:46 -04004073 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004074 max_stripe_size * dev_stripes,
4075 &dev_offset, &max_avail);
4076 if (ret && ret != -ENOSPC)
4077 goto error;
4078
4079 if (ret == 0)
4080 max_avail = max_stripe_size * dev_stripes;
4081
4082 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4083 continue;
4084
Eric Sandeen063d0062013-01-31 00:55:01 +00004085 if (ndevs == fs_devices->rw_devices) {
4086 WARN(1, "%s: found more than %llu devices\n",
4087 __func__, fs_devices->rw_devices);
4088 break;
4089 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004090 devices_info[ndevs].dev_offset = dev_offset;
4091 devices_info[ndevs].max_avail = max_avail;
4092 devices_info[ndevs].total_avail = total_avail;
4093 devices_info[ndevs].dev = device;
4094 ++ndevs;
4095 }
4096
4097 /*
4098 * now sort the devices by hole size / available space
4099 */
4100 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4101 btrfs_cmp_device_info, NULL);
4102
4103 /* round down to number of usable stripes */
4104 ndevs -= ndevs % devs_increment;
4105
4106 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4107 ret = -ENOSPC;
4108 goto error;
4109 }
4110
4111 if (devs_max && ndevs > devs_max)
4112 ndevs = devs_max;
4113 /*
4114 * the primary goal is to maximize the number of stripes, so use as many
4115 * devices as possible, even if the stripes are not maximum sized.
4116 */
4117 stripe_size = devices_info[ndevs-1].max_avail;
4118 num_stripes = ndevs * dev_stripes;
4119
David Woodhouse53b381b2013-01-29 18:40:14 -05004120 /*
4121 * this will have to be fixed for RAID1 and RAID10 over
4122 * more drives
4123 */
4124 data_stripes = num_stripes / ncopies;
4125
David Woodhouse53b381b2013-01-29 18:40:14 -05004126 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4127 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4128 btrfs_super_stripesize(info->super_copy));
4129 data_stripes = num_stripes - 1;
4130 }
4131 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4132 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4133 btrfs_super_stripesize(info->super_copy));
4134 data_stripes = num_stripes - 2;
4135 }
Chris Mason86db2572013-02-20 16:23:40 -05004136
4137 /*
4138 * Use the number of data stripes to figure out how big this chunk
4139 * is really going to be in terms of logical address space,
4140 * and compare that answer with the max chunk size
4141 */
4142 if (stripe_size * data_stripes > max_chunk_size) {
4143 u64 mask = (1ULL << 24) - 1;
4144 stripe_size = max_chunk_size;
4145 do_div(stripe_size, data_stripes);
4146
4147 /* bump the answer up to a 16MB boundary */
4148 stripe_size = (stripe_size + mask) & ~mask;
4149
4150 /* but don't go higher than the limits we found
4151 * while searching for free extents
4152 */
4153 if (stripe_size > devices_info[ndevs-1].max_avail)
4154 stripe_size = devices_info[ndevs-1].max_avail;
4155 }
4156
Arne Jansen73c5de02011-04-12 12:07:57 +02004157 do_div(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004158
4159 /* align to BTRFS_STRIPE_LEN */
David Woodhouse53b381b2013-01-29 18:40:14 -05004160 do_div(stripe_size, raid_stripe_len);
4161 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004162
Miao Xieb2117a32011-01-05 10:07:28 +00004163 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4164 if (!map) {
4165 ret = -ENOMEM;
4166 goto error;
4167 }
4168 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004169
Arne Jansen73c5de02011-04-12 12:07:57 +02004170 for (i = 0; i < ndevs; ++i) {
4171 for (j = 0; j < dev_stripes; ++j) {
4172 int s = i * dev_stripes + j;
4173 map->stripes[s].dev = devices_info[i].dev;
4174 map->stripes[s].physical = devices_info[i].dev_offset +
4175 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004176 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004177 }
Chris Mason593060d2008-03-25 16:50:33 -04004178 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004179 map->stripe_len = raid_stripe_len;
4180 map->io_align = raid_stripe_len;
4181 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004182 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004183 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004184
David Woodhouse53b381b2013-01-29 18:40:14 -05004185 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004186
Arne Jansen73c5de02011-04-12 12:07:57 +02004187 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004188
David Sterba172ddd62011-04-21 00:48:27 +02004189 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004190 if (!em) {
Miao Xieb2117a32011-01-05 10:07:28 +00004191 ret = -ENOMEM;
4192 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004193 }
Chris Mason0b86a832008-03-24 15:01:56 -04004194 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05004195 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004196 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004197 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004198 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004199 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004200
Chris Mason0b86a832008-03-24 15:01:56 -04004201 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004202 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004203 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004204 if (!ret) {
4205 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4206 atomic_inc(&em->refs);
4207 }
Chris Mason890871b2009-09-02 16:24:52 -04004208 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004209 if (ret) {
4210 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004211 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004212 }
Yan Zheng2b820322008-11-17 21:11:30 -05004213
Josef Bacik04487482013-01-29 15:03:37 -05004214 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4215 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4216 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004217 if (ret)
4218 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004219
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004220 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004221 check_raid56_incompat_flag(extent_root->fs_info, type);
4222
Miao Xieb2117a32011-01-05 10:07:28 +00004223 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004224 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004225
Josef Bacik6df9a952013-06-27 13:22:46 -04004226error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004227 write_lock(&em_tree->lock);
4228 remove_extent_mapping(em_tree, em);
4229 write_unlock(&em_tree->lock);
4230
4231 /* One for our allocation */
4232 free_extent_map(em);
4233 /* One for the tree reference */
4234 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004235error:
4236 kfree(map);
4237 kfree(devices_info);
4238 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004239}
4240
Josef Bacik6df9a952013-06-27 13:22:46 -04004241int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004242 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004243 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004244{
Yan Zheng2b820322008-11-17 21:11:30 -05004245 struct btrfs_key key;
4246 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4247 struct btrfs_device *device;
4248 struct btrfs_chunk *chunk;
4249 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004250 struct extent_map_tree *em_tree;
4251 struct extent_map *em;
4252 struct map_lookup *map;
4253 size_t item_size;
4254 u64 dev_offset;
4255 u64 stripe_size;
4256 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004257 int ret;
4258
Josef Bacik6df9a952013-06-27 13:22:46 -04004259 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4260 read_lock(&em_tree->lock);
4261 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4262 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004263
Josef Bacik6df9a952013-06-27 13:22:46 -04004264 if (!em) {
4265 btrfs_crit(extent_root->fs_info, "unable to find logical "
4266 "%Lu len %Lu", chunk_offset, chunk_size);
4267 return -EINVAL;
4268 }
4269
4270 if (em->start != chunk_offset || em->len != chunk_size) {
4271 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
4272 " %Lu-%Lu, found %Lu-%Lu\n", chunk_offset,
4273 chunk_size, em->start, em->len);
4274 free_extent_map(em);
4275 return -EINVAL;
4276 }
4277
4278 map = (struct map_lookup *)em->bdev;
4279 item_size = btrfs_chunk_item_size(map->num_stripes);
4280 stripe_size = em->orig_block_len;
4281
4282 chunk = kzalloc(item_size, GFP_NOFS);
4283 if (!chunk) {
4284 ret = -ENOMEM;
4285 goto out;
4286 }
4287
4288 for (i = 0; i < map->num_stripes; i++) {
4289 device = map->stripes[i].dev;
4290 dev_offset = map->stripes[i].physical;
4291
Yan Zheng2b820322008-11-17 21:11:30 -05004292 device->bytes_used += stripe_size;
4293 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004294 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004295 goto out;
4296 ret = btrfs_alloc_dev_extent(trans, device,
4297 chunk_root->root_key.objectid,
4298 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4299 chunk_offset, dev_offset,
4300 stripe_size);
4301 if (ret)
4302 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004303 }
4304
Josef Bacik2bf64752011-09-26 17:12:22 -04004305 spin_lock(&extent_root->fs_info->free_chunk_lock);
4306 extent_root->fs_info->free_chunk_space -= (stripe_size *
4307 map->num_stripes);
4308 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4309
Yan Zheng2b820322008-11-17 21:11:30 -05004310 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004311 for (i = 0; i < map->num_stripes; i++) {
4312 device = map->stripes[i].dev;
4313 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004314
4315 btrfs_set_stack_stripe_devid(stripe, device->devid);
4316 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4317 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4318 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004319 }
4320
4321 btrfs_set_stack_chunk_length(chunk, chunk_size);
4322 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4323 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4324 btrfs_set_stack_chunk_type(chunk, map->type);
4325 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4326 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4327 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4328 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4329 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4330
4331 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4332 key.type = BTRFS_CHUNK_ITEM_KEY;
4333 key.offset = chunk_offset;
4334
4335 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004336 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4337 /*
4338 * TODO: Cleanup of inserted chunk root in case of
4339 * failure.
4340 */
Li Zefan125ccb02011-12-08 15:07:24 +08004341 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004342 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004343 }
liubo1abe9b82011-03-24 11:18:59 +00004344
Josef Bacik6df9a952013-06-27 13:22:46 -04004345out:
Yan Zheng2b820322008-11-17 21:11:30 -05004346 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004347 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004348 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004349}
4350
4351/*
4352 * Chunk allocation falls into two parts. The first part does works
4353 * that make the new allocated chunk useable, but not do any operation
4354 * that modifies the chunk tree. The second part does the works that
4355 * require modifying the chunk tree. This division is important for the
4356 * bootstrap process of adding storage to a seed btrfs.
4357 */
4358int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4359 struct btrfs_root *extent_root, u64 type)
4360{
4361 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004362
Josef Bacik6df9a952013-06-27 13:22:46 -04004363 chunk_offset = find_next_chunk(extent_root->fs_info);
4364 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004365}
4366
Chris Masond3977122009-01-05 21:25:51 -05004367static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004368 struct btrfs_root *root,
4369 struct btrfs_device *device)
4370{
4371 u64 chunk_offset;
4372 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004373 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004374 struct btrfs_fs_info *fs_info = root->fs_info;
4375 struct btrfs_root *extent_root = fs_info->extent_root;
4376 int ret;
4377
Josef Bacik6df9a952013-06-27 13:22:46 -04004378 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004379 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004380 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4381 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004382 if (ret)
4383 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004384
Josef Bacik6df9a952013-06-27 13:22:46 -04004385 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004386 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004387 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4388 alloc_profile);
David Sterba005d6422012-09-18 07:52:32 -06004389 if (ret) {
4390 btrfs_abort_transaction(trans, root, ret);
4391 goto out;
4392 }
Yan Zheng2b820322008-11-17 21:11:30 -05004393
4394 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004395 if (ret)
David Sterba005d6422012-09-18 07:52:32 -06004396 btrfs_abort_transaction(trans, root, ret);
David Sterba005d6422012-09-18 07:52:32 -06004397out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004398 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004399}
4400
4401int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4402{
4403 struct extent_map *em;
4404 struct map_lookup *map;
4405 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4406 int readonly = 0;
4407 int i;
4408
Chris Mason890871b2009-09-02 16:24:52 -04004409 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004410 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004411 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004412 if (!em)
4413 return 1;
4414
Josef Bacikf48b9072010-01-27 02:07:59 +00004415 if (btrfs_test_opt(root, DEGRADED)) {
4416 free_extent_map(em);
4417 return 0;
4418 }
4419
Yan Zheng2b820322008-11-17 21:11:30 -05004420 map = (struct map_lookup *)em->bdev;
4421 for (i = 0; i < map->num_stripes; i++) {
4422 if (!map->stripes[i].dev->writeable) {
4423 readonly = 1;
4424 break;
4425 }
4426 }
4427 free_extent_map(em);
4428 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004429}
4430
4431void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4432{
David Sterbaa8067e02011-04-21 00:34:43 +02004433 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004434}
4435
4436void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4437{
4438 struct extent_map *em;
4439
Chris Masond3977122009-01-05 21:25:51 -05004440 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004441 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004442 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4443 if (em)
4444 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004445 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004446 if (!em)
4447 break;
4448 kfree(em->bdev);
4449 /* once for us */
4450 free_extent_map(em);
4451 /* once for the tree */
4452 free_extent_map(em);
4453 }
4454}
4455
Stefan Behrens5d964052012-11-05 14:59:07 +01004456int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04004457{
Stefan Behrens5d964052012-11-05 14:59:07 +01004458 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04004459 struct extent_map *em;
4460 struct map_lookup *map;
4461 struct extent_map_tree *em_tree = &map_tree->map_tree;
4462 int ret;
4463
Chris Mason890871b2009-09-02 16:24:52 -04004464 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004465 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04004466 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004467
Josef Bacikfb7669b2013-04-23 10:53:18 -04004468 /*
4469 * We could return errors for these cases, but that could get ugly and
4470 * we'd probably do the same thing which is just not do anything else
4471 * and exit, so return 1 so the callers don't try to use other copies.
4472 */
4473 if (!em) {
David Sterbaccf39f92013-07-11 15:41:11 +02004474 btrfs_crit(fs_info, "No mapping for %Lu-%Lu\n", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004475 logical+len);
4476 return 1;
4477 }
4478
4479 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02004480 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
Josef Bacikfb7669b2013-04-23 10:53:18 -04004481 "%Lu-%Lu\n", logical, logical+len, em->start,
4482 em->start + em->len);
4483 return 1;
4484 }
4485
Chris Masonf1885912008-04-09 16:28:12 -04004486 map = (struct map_lookup *)em->bdev;
4487 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
4488 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004489 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4490 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004491 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
4492 ret = 2;
4493 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4494 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04004495 else
4496 ret = 1;
4497 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004498
4499 btrfs_dev_replace_lock(&fs_info->dev_replace);
4500 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
4501 ret++;
4502 btrfs_dev_replace_unlock(&fs_info->dev_replace);
4503
Chris Masonf1885912008-04-09 16:28:12 -04004504 return ret;
4505}
4506
David Woodhouse53b381b2013-01-29 18:40:14 -05004507unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
4508 struct btrfs_mapping_tree *map_tree,
4509 u64 logical)
4510{
4511 struct extent_map *em;
4512 struct map_lookup *map;
4513 struct extent_map_tree *em_tree = &map_tree->map_tree;
4514 unsigned long len = root->sectorsize;
4515
4516 read_lock(&em_tree->lock);
4517 em = lookup_extent_mapping(em_tree, logical, len);
4518 read_unlock(&em_tree->lock);
4519 BUG_ON(!em);
4520
4521 BUG_ON(em->start > logical || em->start + em->len < logical);
4522 map = (struct map_lookup *)em->bdev;
4523 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4524 BTRFS_BLOCK_GROUP_RAID6)) {
4525 len = map->stripe_len * nr_data_stripes(map);
4526 }
4527 free_extent_map(em);
4528 return len;
4529}
4530
4531int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
4532 u64 logical, u64 len, int mirror_num)
4533{
4534 struct extent_map *em;
4535 struct map_lookup *map;
4536 struct extent_map_tree *em_tree = &map_tree->map_tree;
4537 int ret = 0;
4538
4539 read_lock(&em_tree->lock);
4540 em = lookup_extent_mapping(em_tree, logical, len);
4541 read_unlock(&em_tree->lock);
4542 BUG_ON(!em);
4543
4544 BUG_ON(em->start > logical || em->start + em->len < logical);
4545 map = (struct map_lookup *)em->bdev;
4546 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4547 BTRFS_BLOCK_GROUP_RAID6))
4548 ret = 1;
4549 free_extent_map(em);
4550 return ret;
4551}
4552
Stefan Behrens30d98612012-11-06 14:52:18 +01004553static int find_live_mirror(struct btrfs_fs_info *fs_info,
4554 struct map_lookup *map, int first, int num,
4555 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04004556{
4557 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01004558 int tolerance;
4559 struct btrfs_device *srcdev;
4560
4561 if (dev_replace_is_ongoing &&
4562 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
4563 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
4564 srcdev = fs_info->dev_replace.srcdev;
4565 else
4566 srcdev = NULL;
4567
4568 /*
4569 * try to avoid the drive that is the source drive for a
4570 * dev-replace procedure, only choose it if no other non-missing
4571 * mirror is available
4572 */
4573 for (tolerance = 0; tolerance < 2; tolerance++) {
4574 if (map->stripes[optimal].dev->bdev &&
4575 (tolerance || map->stripes[optimal].dev != srcdev))
4576 return optimal;
4577 for (i = first; i < first + num; i++) {
4578 if (map->stripes[i].dev->bdev &&
4579 (tolerance || map->stripes[i].dev != srcdev))
4580 return i;
4581 }
Chris Masondfe25022008-05-13 13:46:40 -04004582 }
Stefan Behrens30d98612012-11-06 14:52:18 +01004583
Chris Masondfe25022008-05-13 13:46:40 -04004584 /* we couldn't find one that doesn't fail. Just return something
4585 * and the io error handling code will clean up eventually
4586 */
4587 return optimal;
4588}
4589
David Woodhouse53b381b2013-01-29 18:40:14 -05004590static inline int parity_smaller(u64 a, u64 b)
4591{
4592 return a > b;
4593}
4594
4595/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
4596static void sort_parity_stripes(struct btrfs_bio *bbio, u64 *raid_map)
4597{
4598 struct btrfs_bio_stripe s;
4599 int i;
4600 u64 l;
4601 int again = 1;
4602
4603 while (again) {
4604 again = 0;
4605 for (i = 0; i < bbio->num_stripes - 1; i++) {
4606 if (parity_smaller(raid_map[i], raid_map[i+1])) {
4607 s = bbio->stripes[i];
4608 l = raid_map[i];
4609 bbio->stripes[i] = bbio->stripes[i+1];
4610 raid_map[i] = raid_map[i+1];
4611 bbio->stripes[i+1] = s;
4612 raid_map[i+1] = l;
4613 again = 1;
4614 }
4615 }
4616 }
4617}
4618
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004619static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04004620 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02004621 struct btrfs_bio **bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05004622 int mirror_num, u64 **raid_map_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04004623{
4624 struct extent_map *em;
4625 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004626 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04004627 struct extent_map_tree *em_tree = &map_tree->map_tree;
4628 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04004629 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004630 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04004631 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004632 u64 stripe_nr_orig;
4633 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05004634 u64 stripe_len;
4635 u64 *raid_map = NULL;
Chris Mason593060d2008-03-25 16:50:33 -04004636 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04004637 int i;
Li Zefande11cc12011-12-01 12:55:47 +08004638 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04004639 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04004640 int max_errors = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004641 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01004642 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
4643 int dev_replace_is_ongoing = 0;
4644 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004645 int patch_the_first_stripe_for_dev_replace = 0;
4646 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05004647 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04004648
Chris Mason890871b2009-09-02 16:24:52 -04004649 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004650 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04004651 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04004652
Chris Mason3b951512008-04-17 11:29:12 -04004653 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004654 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
4655 (unsigned long long)logical,
4656 (unsigned long long)*length);
Josef Bacik9bb91872013-04-19 23:45:33 -04004657 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04004658 }
Chris Mason0b86a832008-03-24 15:01:56 -04004659
Josef Bacik9bb91872013-04-19 23:45:33 -04004660 if (em->start > logical || em->start + em->len < logical) {
4661 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
4662 "found %Lu-%Lu\n", logical, em->start,
4663 em->start + em->len);
4664 return -EINVAL;
4665 }
4666
Chris Mason0b86a832008-03-24 15:01:56 -04004667 map = (struct map_lookup *)em->bdev;
4668 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04004669
David Woodhouse53b381b2013-01-29 18:40:14 -05004670 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004671 stripe_nr = offset;
4672 /*
4673 * stripe_nr counts the total number of stripes we have to stride
4674 * to get to this block
4675 */
David Woodhouse53b381b2013-01-29 18:40:14 -05004676 do_div(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04004677
David Woodhouse53b381b2013-01-29 18:40:14 -05004678 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004679 BUG_ON(offset < stripe_offset);
4680
4681 /* stripe_offset is the offset of this block in its stripe*/
4682 stripe_offset = offset - stripe_offset;
4683
David Woodhouse53b381b2013-01-29 18:40:14 -05004684 /* if we're here for raid56, we need to know the stripe aligned start */
4685 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4686 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
4687 raid56_full_stripe_start = offset;
4688
4689 /* allow a write of a full stripe, but make sure we don't
4690 * allow straddling of stripes
4691 */
4692 do_div(raid56_full_stripe_start, full_stripe_len);
4693 raid56_full_stripe_start *= full_stripe_len;
4694 }
4695
4696 if (rw & REQ_DISCARD) {
4697 /* we don't discard raid56 yet */
4698 if (map->type &
4699 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4700 ret = -EOPNOTSUPP;
4701 goto out;
4702 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00004703 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004704 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
4705 u64 max_len;
4706 /* For writes to RAID[56], allow a full stripeset across all disks.
4707 For other RAID types and for RAID[56] reads, just allow a single
4708 stripe (on a single disk). */
4709 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6) &&
4710 (rw & REQ_WRITE)) {
4711 max_len = stripe_len * nr_data_stripes(map) -
4712 (offset - raid56_full_stripe_start);
4713 } else {
4714 /* we limit the length of each bio to what fits in a stripe */
4715 max_len = stripe_len - stripe_offset;
4716 }
4717 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04004718 } else {
4719 *length = em->len - offset;
4720 }
Chris Masonf2d8d742008-04-21 10:03:05 -04004721
David Woodhouse53b381b2013-01-29 18:40:14 -05004722 /* This is for when we're called from btrfs_merge_bio_hook() and all
4723 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02004724 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04004725 goto out;
4726
Stefan Behrens472262f2012-11-06 14:43:46 +01004727 btrfs_dev_replace_lock(dev_replace);
4728 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
4729 if (!dev_replace_is_ongoing)
4730 btrfs_dev_replace_unlock(dev_replace);
4731
Stefan Behrensad6d6202012-11-06 15:06:47 +01004732 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
4733 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
4734 dev_replace->tgtdev != NULL) {
4735 /*
4736 * in dev-replace case, for repair case (that's the only
4737 * case where the mirror is selected explicitly when
4738 * calling btrfs_map_block), blocks left of the left cursor
4739 * can also be read from the target drive.
4740 * For REQ_GET_READ_MIRRORS, the target drive is added as
4741 * the last one to the array of stripes. For READ, it also
4742 * needs to be supported using the same mirror number.
4743 * If the requested block is not left of the left cursor,
4744 * EIO is returned. This can happen because btrfs_num_copies()
4745 * returns one more in the dev-replace case.
4746 */
4747 u64 tmp_length = *length;
4748 struct btrfs_bio *tmp_bbio = NULL;
4749 int tmp_num_stripes;
4750 u64 srcdev_devid = dev_replace->srcdev->devid;
4751 int index_srcdev = 0;
4752 int found = 0;
4753 u64 physical_of_found = 0;
4754
4755 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
David Woodhouse53b381b2013-01-29 18:40:14 -05004756 logical, &tmp_length, &tmp_bbio, 0, NULL);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004757 if (ret) {
4758 WARN_ON(tmp_bbio != NULL);
4759 goto out;
4760 }
4761
4762 tmp_num_stripes = tmp_bbio->num_stripes;
4763 if (mirror_num > tmp_num_stripes) {
4764 /*
4765 * REQ_GET_READ_MIRRORS does not contain this
4766 * mirror, that means that the requested area
4767 * is not left of the left cursor
4768 */
4769 ret = -EIO;
4770 kfree(tmp_bbio);
4771 goto out;
4772 }
4773
4774 /*
4775 * process the rest of the function using the mirror_num
4776 * of the source drive. Therefore look it up first.
4777 * At the end, patch the device pointer to the one of the
4778 * target drive.
4779 */
4780 for (i = 0; i < tmp_num_stripes; i++) {
4781 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
4782 /*
4783 * In case of DUP, in order to keep it
4784 * simple, only add the mirror with the
4785 * lowest physical address
4786 */
4787 if (found &&
4788 physical_of_found <=
4789 tmp_bbio->stripes[i].physical)
4790 continue;
4791 index_srcdev = i;
4792 found = 1;
4793 physical_of_found =
4794 tmp_bbio->stripes[i].physical;
4795 }
4796 }
4797
4798 if (found) {
4799 mirror_num = index_srcdev + 1;
4800 patch_the_first_stripe_for_dev_replace = 1;
4801 physical_to_patch_in_first_stripe = physical_of_found;
4802 } else {
4803 WARN_ON(1);
4804 ret = -EIO;
4805 kfree(tmp_bbio);
4806 goto out;
4807 }
4808
4809 kfree(tmp_bbio);
4810 } else if (mirror_num > map->num_stripes) {
4811 mirror_num = 0;
4812 }
4813
Chris Masonf2d8d742008-04-21 10:03:05 -04004814 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04004815 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004816 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00004817 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00004818 do_div(stripe_nr_end, map->stripe_len);
4819 stripe_end_offset = stripe_nr_end * map->stripe_len -
4820 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004821
Li Dongyangfce3bb92011-03-24 10:24:26 +00004822 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
4823 if (rw & REQ_DISCARD)
4824 num_stripes = min_t(u64, map->num_stripes,
4825 stripe_nr_end - stripe_nr_orig);
4826 stripe_index = do_div(stripe_nr, map->num_stripes);
4827 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004828 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004829 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04004830 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04004831 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004832 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01004833 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04004834 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01004835 current->pid % map->num_stripes,
4836 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004837 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004838 }
Chris Mason2fff7342008-04-29 14:12:09 -04004839
Chris Mason611f0e02008-04-03 16:29:03 -04004840 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004841 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04004842 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004843 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04004844 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004845 } else {
4846 mirror_num = 1;
4847 }
Chris Mason2fff7342008-04-29 14:12:09 -04004848
Chris Mason321aecc2008-04-16 10:49:51 -04004849 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
4850 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004851
4852 stripe_index = do_div(stripe_nr, factor);
4853 stripe_index *= map->sub_stripes;
4854
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004855 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004856 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004857 else if (rw & REQ_DISCARD)
4858 num_stripes = min_t(u64, map->sub_stripes *
4859 (stripe_nr_end - stripe_nr_orig),
4860 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04004861 else if (mirror_num)
4862 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004863 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04004864 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01004865 stripe_index = find_live_mirror(fs_info, map,
4866 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04004867 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01004868 current->pid % map->sub_stripes,
4869 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04004870 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004871 }
David Woodhouse53b381b2013-01-29 18:40:14 -05004872
4873 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4874 BTRFS_BLOCK_GROUP_RAID6)) {
4875 u64 tmp;
4876
4877 if (bbio_ret && ((rw & REQ_WRITE) || mirror_num > 1)
4878 && raid_map_ret) {
4879 int i, rot;
4880
4881 /* push stripe_nr back to the start of the full stripe */
4882 stripe_nr = raid56_full_stripe_start;
4883 do_div(stripe_nr, stripe_len);
4884
4885 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4886
4887 /* RAID[56] write or recovery. Return all stripes */
4888 num_stripes = map->num_stripes;
4889 max_errors = nr_parity_stripes(map);
4890
4891 raid_map = kmalloc(sizeof(u64) * num_stripes,
4892 GFP_NOFS);
4893 if (!raid_map) {
4894 ret = -ENOMEM;
4895 goto out;
4896 }
4897
4898 /* Work out the disk rotation on this stripe-set */
4899 tmp = stripe_nr;
4900 rot = do_div(tmp, num_stripes);
4901
4902 /* Fill in the logical address of each stripe */
4903 tmp = stripe_nr * nr_data_stripes(map);
4904 for (i = 0; i < nr_data_stripes(map); i++)
4905 raid_map[(i+rot) % num_stripes] =
4906 em->start + (tmp + i) * map->stripe_len;
4907
4908 raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
4909 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4910 raid_map[(i+rot+1) % num_stripes] =
4911 RAID6_Q_STRIPE;
4912
4913 *length = map->stripe_len;
4914 stripe_index = 0;
4915 stripe_offset = 0;
4916 } else {
4917 /*
4918 * Mirror #0 or #1 means the original data block.
4919 * Mirror #2 is RAID5 parity block.
4920 * Mirror #3 is RAID6 Q block.
4921 */
4922 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4923 if (mirror_num > 1)
4924 stripe_index = nr_data_stripes(map) +
4925 mirror_num - 2;
4926
4927 /* We distribute the parity blocks across stripes */
4928 tmp = stripe_nr + stripe_index;
4929 stripe_index = do_div(tmp, map->num_stripes);
4930 }
Chris Mason8790d502008-04-03 16:29:03 -04004931 } else {
4932 /*
4933 * after this do_div call, stripe_nr is the number of stripes
4934 * on this device we have to walk to find the data, and
4935 * stripe_index is the number of our device in the stripe array
4936 */
4937 stripe_index = do_div(stripe_nr, map->num_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004938 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04004939 }
Chris Mason593060d2008-03-25 16:50:33 -04004940 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04004941
Stefan Behrens472262f2012-11-06 14:43:46 +01004942 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004943 if (dev_replace_is_ongoing) {
4944 if (rw & (REQ_WRITE | REQ_DISCARD))
4945 num_alloc_stripes <<= 1;
4946 if (rw & REQ_GET_READ_MIRRORS)
4947 num_alloc_stripes++;
4948 }
Stefan Behrens472262f2012-11-06 14:43:46 +01004949 bbio = kzalloc(btrfs_bio_size(num_alloc_stripes), GFP_NOFS);
Li Zefande11cc12011-12-01 12:55:47 +08004950 if (!bbio) {
Dave Joneseb2067f2013-07-30 13:42:17 -04004951 kfree(raid_map);
Li Zefande11cc12011-12-01 12:55:47 +08004952 ret = -ENOMEM;
4953 goto out;
4954 }
4955 atomic_set(&bbio->error, 0);
4956
Li Dongyangfce3bb92011-03-24 10:24:26 +00004957 if (rw & REQ_DISCARD) {
Li Zefanec9ef7a2011-12-01 14:06:42 +08004958 int factor = 0;
4959 int sub_stripes = 0;
4960 u64 stripes_per_dev = 0;
4961 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04004962 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004963
4964 if (map->type &
4965 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
4966 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
4967 sub_stripes = 1;
4968 else
4969 sub_stripes = map->sub_stripes;
4970
4971 factor = map->num_stripes / sub_stripes;
4972 stripes_per_dev = div_u64_rem(stripe_nr_end -
4973 stripe_nr_orig,
4974 factor,
4975 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04004976 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
4977 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004978 }
4979
Li Dongyangfce3bb92011-03-24 10:24:26 +00004980 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02004981 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04004982 map->stripes[stripe_index].physical +
4983 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004984 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004985
Li Zefanec9ef7a2011-12-01 14:06:42 +08004986 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
4987 BTRFS_BLOCK_GROUP_RAID10)) {
4988 bbio->stripes[i].length = stripes_per_dev *
4989 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04004990
Li Zefanec9ef7a2011-12-01 14:06:42 +08004991 if (i / sub_stripes < remaining_stripes)
4992 bbio->stripes[i].length +=
4993 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04004994
4995 /*
4996 * Special for the first stripe and
4997 * the last stripe:
4998 *
4999 * |-------|...|-------|
5000 * |----------|
5001 * off end_off
5002 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005003 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005004 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005005 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005006
5007 if (stripe_index >= last_stripe &&
5008 stripe_index <= (last_stripe +
5009 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005010 bbio->stripes[i].length -=
5011 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005012
Li Zefanec9ef7a2011-12-01 14:06:42 +08005013 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005014 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005015 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005016 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005017
5018 stripe_index++;
5019 if (stripe_index == map->num_stripes) {
5020 /* This could only happen for RAID0/10 */
5021 stripe_index = 0;
5022 stripe_nr++;
5023 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005024 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005025 } else {
5026 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005027 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005028 map->stripes[stripe_index].physical +
5029 stripe_offset +
5030 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005031 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005032 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005033 stripe_index++;
5034 }
Chris Mason593060d2008-03-25 16:50:33 -04005035 }
Li Zefande11cc12011-12-01 12:55:47 +08005036
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005037 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) {
Li Zefande11cc12011-12-01 12:55:47 +08005038 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5039 BTRFS_BLOCK_GROUP_RAID10 |
David Woodhouse53b381b2013-01-29 18:40:14 -05005040 BTRFS_BLOCK_GROUP_RAID5 |
Li Zefande11cc12011-12-01 12:55:47 +08005041 BTRFS_BLOCK_GROUP_DUP)) {
5042 max_errors = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005043 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5044 max_errors = 2;
Li Zefande11cc12011-12-01 12:55:47 +08005045 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005046 }
Li Zefande11cc12011-12-01 12:55:47 +08005047
Stefan Behrens472262f2012-11-06 14:43:46 +01005048 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5049 dev_replace->tgtdev != NULL) {
5050 int index_where_to_add;
5051 u64 srcdev_devid = dev_replace->srcdev->devid;
5052
5053 /*
5054 * duplicate the write operations while the dev replace
5055 * procedure is running. Since the copying of the old disk
5056 * to the new disk takes place at run time while the
5057 * filesystem is mounted writable, the regular write
5058 * operations to the old disk have to be duplicated to go
5059 * to the new disk as well.
5060 * Note that device->missing is handled by the caller, and
5061 * that the write to the old disk is already set up in the
5062 * stripes array.
5063 */
5064 index_where_to_add = num_stripes;
5065 for (i = 0; i < num_stripes; i++) {
5066 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5067 /* write to new disk, too */
5068 struct btrfs_bio_stripe *new =
5069 bbio->stripes + index_where_to_add;
5070 struct btrfs_bio_stripe *old =
5071 bbio->stripes + i;
5072
5073 new->physical = old->physical;
5074 new->length = old->length;
5075 new->dev = dev_replace->tgtdev;
5076 index_where_to_add++;
5077 max_errors++;
5078 }
5079 }
5080 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005081 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5082 dev_replace->tgtdev != NULL) {
5083 u64 srcdev_devid = dev_replace->srcdev->devid;
5084 int index_srcdev = 0;
5085 int found = 0;
5086 u64 physical_of_found = 0;
5087
5088 /*
5089 * During the dev-replace procedure, the target drive can
5090 * also be used to read data in case it is needed to repair
5091 * a corrupt block elsewhere. This is possible if the
5092 * requested area is left of the left cursor. In this area,
5093 * the target drive is a full copy of the source drive.
5094 */
5095 for (i = 0; i < num_stripes; i++) {
5096 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5097 /*
5098 * In case of DUP, in order to keep it
5099 * simple, only add the mirror with the
5100 * lowest physical address
5101 */
5102 if (found &&
5103 physical_of_found <=
5104 bbio->stripes[i].physical)
5105 continue;
5106 index_srcdev = i;
5107 found = 1;
5108 physical_of_found = bbio->stripes[i].physical;
5109 }
5110 }
5111 if (found) {
5112 u64 length = map->stripe_len;
5113
5114 if (physical_of_found + length <=
5115 dev_replace->cursor_left) {
5116 struct btrfs_bio_stripe *tgtdev_stripe =
5117 bbio->stripes + num_stripes;
5118
5119 tgtdev_stripe->physical = physical_of_found;
5120 tgtdev_stripe->length =
5121 bbio->stripes[index_srcdev].length;
5122 tgtdev_stripe->dev = dev_replace->tgtdev;
5123
5124 num_stripes++;
5125 }
5126 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005127 }
5128
Li Zefande11cc12011-12-01 12:55:47 +08005129 *bbio_ret = bbio;
5130 bbio->num_stripes = num_stripes;
5131 bbio->max_errors = max_errors;
5132 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005133
5134 /*
5135 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5136 * mirror_num == num_stripes + 1 && dev_replace target drive is
5137 * available as a mirror
5138 */
5139 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5140 WARN_ON(num_stripes > 1);
5141 bbio->stripes[0].dev = dev_replace->tgtdev;
5142 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5143 bbio->mirror_num = map->num_stripes + 1;
5144 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005145 if (raid_map) {
5146 sort_parity_stripes(bbio, raid_map);
5147 *raid_map_ret = raid_map;
5148 }
Chris Masoncea9e442008-04-09 16:28:12 -04005149out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005150 if (dev_replace_is_ongoing)
5151 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005152 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005153 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005154}
5155
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005156int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005157 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005158 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005159{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005160 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05005161 mirror_num, NULL);
Chris Masonf2d8d742008-04-21 10:03:05 -04005162}
5163
Yan Zhenga512bbf2008-12-08 16:46:26 -05005164int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5165 u64 chunk_start, u64 physical, u64 devid,
5166 u64 **logical, int *naddrs, int *stripe_len)
5167{
5168 struct extent_map_tree *em_tree = &map_tree->map_tree;
5169 struct extent_map *em;
5170 struct map_lookup *map;
5171 u64 *buf;
5172 u64 bytenr;
5173 u64 length;
5174 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005175 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005176 int i, j, nr = 0;
5177
Chris Mason890871b2009-09-02 16:24:52 -04005178 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005179 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005180 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005181
Josef Bacik835d9742013-03-19 12:13:25 -04005182 if (!em) {
5183 printk(KERN_ERR "btrfs: couldn't find em for chunk %Lu\n",
5184 chunk_start);
5185 return -EIO;
5186 }
5187
5188 if (em->start != chunk_start) {
5189 printk(KERN_ERR "btrfs: bad chunk start, em=%Lu, wanted=%Lu\n",
5190 em->start, chunk_start);
5191 free_extent_map(em);
5192 return -EIO;
5193 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005194 map = (struct map_lookup *)em->bdev;
5195
5196 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005197 rmap_len = map->stripe_len;
5198
Yan Zhenga512bbf2008-12-08 16:46:26 -05005199 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5200 do_div(length, map->num_stripes / map->sub_stripes);
5201 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5202 do_div(length, map->num_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05005203 else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
5204 BTRFS_BLOCK_GROUP_RAID6)) {
5205 do_div(length, nr_data_stripes(map));
5206 rmap_len = map->stripe_len * nr_data_stripes(map);
5207 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005208
5209 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005210 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005211
5212 for (i = 0; i < map->num_stripes; i++) {
5213 if (devid && map->stripes[i].dev->devid != devid)
5214 continue;
5215 if (map->stripes[i].physical > physical ||
5216 map->stripes[i].physical + length <= physical)
5217 continue;
5218
5219 stripe_nr = physical - map->stripes[i].physical;
5220 do_div(stripe_nr, map->stripe_len);
5221
5222 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5223 stripe_nr = stripe_nr * map->num_stripes + i;
5224 do_div(stripe_nr, map->sub_stripes);
5225 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5226 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005227 } /* else if RAID[56], multiply by nr_data_stripes().
5228 * Alternatively, just use rmap_len below instead of
5229 * map->stripe_len */
5230
5231 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005232 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005233 for (j = 0; j < nr; j++) {
5234 if (buf[j] == bytenr)
5235 break;
5236 }
Chris Mason934d3752008-12-08 16:43:10 -05005237 if (j == nr) {
5238 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005239 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005240 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005241 }
5242
Yan Zhenga512bbf2008-12-08 16:46:26 -05005243 *logical = buf;
5244 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005245 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005246
5247 free_extent_map(em);
5248 return 0;
5249}
5250
Jan Schmidta1d3c472011-08-04 17:15:33 +02005251static void btrfs_end_bio(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04005252{
Chris Mason9be33952013-05-17 18:30:14 -04005253 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005254 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005255
Stefan Behrens442a4f62012-05-25 16:06:08 +02005256 if (err) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005257 atomic_inc(&bbio->error);
Stefan Behrens442a4f62012-05-25 16:06:08 +02005258 if (err == -EIO || err == -EREMOTEIO) {
5259 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005260 btrfs_io_bio(bio)->stripe_index;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005261 struct btrfs_device *dev;
5262
5263 BUG_ON(stripe_index >= bbio->num_stripes);
5264 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005265 if (dev->bdev) {
5266 if (bio->bi_rw & WRITE)
5267 btrfs_dev_stat_inc(dev,
5268 BTRFS_DEV_STAT_WRITE_ERRS);
5269 else
5270 btrfs_dev_stat_inc(dev,
5271 BTRFS_DEV_STAT_READ_ERRS);
5272 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5273 btrfs_dev_stat_inc(dev,
5274 BTRFS_DEV_STAT_FLUSH_ERRS);
5275 btrfs_dev_stat_print_on_error(dev);
5276 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005277 }
5278 }
Chris Mason8790d502008-04-03 16:29:03 -04005279
Jan Schmidta1d3c472011-08-04 17:15:33 +02005280 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005281 is_orig_bio = 1;
5282
Jan Schmidta1d3c472011-08-04 17:15:33 +02005283 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005284 if (!is_orig_bio) {
5285 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005286 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005287 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005288 bio->bi_private = bbio->private;
5289 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005290 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005291 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005292 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005293 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005294 if (atomic_read(&bbio->error) > bbio->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04005295 err = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005296 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005297 /*
5298 * this bio is actually up to date, we didn't
5299 * go over the max number of errors
5300 */
5301 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04005302 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005303 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005304 kfree(bbio);
Chris Mason8790d502008-04-03 16:29:03 -04005305
5306 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005307 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005308 bio_put(bio);
5309 }
Chris Mason8790d502008-04-03 16:29:03 -04005310}
5311
Chris Mason8b712842008-06-11 16:50:36 -04005312struct async_sched {
5313 struct bio *bio;
5314 int rw;
5315 struct btrfs_fs_info *info;
5316 struct btrfs_work work;
5317};
5318
5319/*
5320 * see run_scheduled_bios for a description of why bios are collected for
5321 * async submit.
5322 *
5323 * This will add one bio to the pending list for a device and make sure
5324 * the work struct is scheduled.
5325 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005326static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5327 struct btrfs_device *device,
5328 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005329{
5330 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005331 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005332
David Woodhouse53b381b2013-01-29 18:40:14 -05005333 if (device->missing || !device->bdev) {
5334 bio_endio(bio, -EIO);
5335 return;
5336 }
5337
Chris Mason8b712842008-06-11 16:50:36 -04005338 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005339 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005340 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005341 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005342 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005343 return;
Chris Mason8b712842008-06-11 16:50:36 -04005344 }
5345
5346 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005347 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005348 * higher layers. Otherwise, the async bio makes it appear we have
5349 * made progress against dirty pages when we've really just put it
5350 * on a queue for later
5351 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005352 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005353 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005354 bio->bi_next = NULL;
5355 bio->bi_rw |= rw;
5356
5357 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005358 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005359 pending_bios = &device->pending_sync_bios;
5360 else
5361 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005362
Chris Masonffbd5172009-04-20 15:50:09 -04005363 if (pending_bios->tail)
5364 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005365
Chris Masonffbd5172009-04-20 15:50:09 -04005366 pending_bios->tail = bio;
5367 if (!pending_bios->head)
5368 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005369 if (device->running_pending)
5370 should_queue = 0;
5371
5372 spin_unlock(&device->io_lock);
5373
5374 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04005375 btrfs_queue_worker(&root->fs_info->submit_workers,
5376 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005377}
5378
Josef Bacikde1ee922012-10-19 16:50:56 -04005379static int bio_size_ok(struct block_device *bdev, struct bio *bio,
5380 sector_t sector)
5381{
5382 struct bio_vec *prev;
5383 struct request_queue *q = bdev_get_queue(bdev);
5384 unsigned short max_sectors = queue_max_sectors(q);
5385 struct bvec_merge_data bvm = {
5386 .bi_bdev = bdev,
5387 .bi_sector = sector,
5388 .bi_rw = bio->bi_rw,
5389 };
5390
5391 if (bio->bi_vcnt == 0) {
5392 WARN_ON(1);
5393 return 1;
5394 }
5395
5396 prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08005397 if (bio_sectors(bio) > max_sectors)
Josef Bacikde1ee922012-10-19 16:50:56 -04005398 return 0;
5399
5400 if (!q->merge_bvec_fn)
5401 return 1;
5402
5403 bvm.bi_size = bio->bi_size - prev->bv_len;
5404 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len)
5405 return 0;
5406 return 1;
5407}
5408
5409static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5410 struct bio *bio, u64 physical, int dev_nr,
5411 int rw, int async)
5412{
5413 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5414
5415 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005416 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005417 bio->bi_end_io = btrfs_end_bio;
5418 bio->bi_sector = physical >> 9;
5419#ifdef DEBUG
5420 {
5421 struct rcu_string *name;
5422
5423 rcu_read_lock();
5424 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005425 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005426 "(%s id %llu), size=%u\n", rw,
5427 (u64)bio->bi_sector, (u_long)dev->bdev->bd_dev,
5428 name->str, dev->devid, bio->bi_size);
5429 rcu_read_unlock();
5430 }
5431#endif
5432 bio->bi_bdev = dev->bdev;
5433 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05005434 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005435 else
5436 btrfsic_submit_bio(rw, bio);
5437}
5438
5439static int breakup_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5440 struct bio *first_bio, struct btrfs_device *dev,
5441 int dev_nr, int rw, int async)
5442{
5443 struct bio_vec *bvec = first_bio->bi_io_vec;
5444 struct bio *bio;
5445 int nr_vecs = bio_get_nr_vecs(dev->bdev);
5446 u64 physical = bbio->stripes[dev_nr].physical;
5447
5448again:
5449 bio = btrfs_bio_alloc(dev->bdev, physical >> 9, nr_vecs, GFP_NOFS);
5450 if (!bio)
5451 return -ENOMEM;
5452
5453 while (bvec <= (first_bio->bi_io_vec + first_bio->bi_vcnt - 1)) {
5454 if (bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5455 bvec->bv_offset) < bvec->bv_len) {
5456 u64 len = bio->bi_size;
5457
5458 atomic_inc(&bbio->stripes_pending);
5459 submit_stripe_bio(root, bbio, bio, physical, dev_nr,
5460 rw, async);
5461 physical += len;
5462 goto again;
5463 }
5464 bvec++;
5465 }
5466
5467 submit_stripe_bio(root, bbio, bio, physical, dev_nr, rw, async);
5468 return 0;
5469}
5470
5471static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
5472{
5473 atomic_inc(&bbio->error);
5474 if (atomic_dec_and_test(&bbio->stripes_pending)) {
5475 bio->bi_private = bbio->private;
5476 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005477 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Josef Bacikde1ee922012-10-19 16:50:56 -04005478 bio->bi_sector = logical >> 9;
5479 kfree(bbio);
5480 bio_endio(bio, -EIO);
5481 }
5482}
5483
Chris Masonf1885912008-04-09 16:28:12 -04005484int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04005485 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04005486{
Chris Mason0b86a832008-03-24 15:01:56 -04005487 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04005488 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04005489 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04005490 u64 length = 0;
5491 u64 map_length;
David Woodhouse53b381b2013-01-29 18:40:14 -05005492 u64 *raid_map = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005493 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04005494 int dev_nr = 0;
5495 int total_devs = 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005496 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005497
Chris Masonf2d8d742008-04-21 10:03:05 -04005498 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04005499 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04005500
David Woodhouse53b381b2013-01-29 18:40:14 -05005501 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
5502 mirror_num, &raid_map);
5503 if (ret) /* -ENOMEM */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005504 return ret;
Chris Masoncea9e442008-04-09 16:28:12 -04005505
Jan Schmidta1d3c472011-08-04 17:15:33 +02005506 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005507 bbio->orig_bio = first_bio;
5508 bbio->private = first_bio->bi_private;
5509 bbio->end_io = first_bio->bi_end_io;
5510 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
5511
5512 if (raid_map) {
5513 /* In this case, map_length has been set to the length of
5514 a single stripe; not the whole write */
5515 if (rw & WRITE) {
5516 return raid56_parity_write(root, bio, bbio,
5517 raid_map, map_length);
5518 } else {
5519 return raid56_parity_recover(root, bio, bbio,
5520 raid_map, map_length,
5521 mirror_num);
5522 }
5523 }
5524
Chris Masoncea9e442008-04-09 16:28:12 -04005525 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005526 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
5527 (unsigned long long)logical,
5528 (unsigned long long)length,
5529 (unsigned long long)map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04005530 BUG();
5531 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005532
Chris Masond3977122009-01-05 21:25:51 -05005533 while (dev_nr < total_devs) {
Josef Bacikde1ee922012-10-19 16:50:56 -04005534 dev = bbio->stripes[dev_nr].dev;
5535 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
5536 bbio_error(bbio, first_bio, logical);
5537 dev_nr++;
5538 continue;
5539 }
5540
5541 /*
5542 * Check and see if we're ok with this bio based on it's size
5543 * and offset with the given device.
5544 */
5545 if (!bio_size_ok(dev->bdev, first_bio,
5546 bbio->stripes[dev_nr].physical >> 9)) {
5547 ret = breakup_stripe_bio(root, bbio, first_bio, dev,
5548 dev_nr, rw, async_submit);
5549 BUG_ON(ret);
5550 dev_nr++;
5551 continue;
5552 }
5553
Jan Schmidta1d3c472011-08-04 17:15:33 +02005554 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04005555 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005556 BUG_ON(!bio); /* -ENOMEM */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005557 } else {
5558 bio = first_bio;
Chris Mason8790d502008-04-03 16:29:03 -04005559 }
Josef Bacik606686e2012-06-04 14:03:51 -04005560
Josef Bacikde1ee922012-10-19 16:50:56 -04005561 submit_stripe_bio(root, bbio, bio,
5562 bbio->stripes[dev_nr].physical, dev_nr, rw,
5563 async_submit);
Chris Mason8790d502008-04-03 16:29:03 -04005564 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04005565 }
Chris Mason0b86a832008-03-24 15:01:56 -04005566 return 0;
5567}
5568
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005569struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05005570 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04005571{
Yan Zheng2b820322008-11-17 21:11:30 -05005572 struct btrfs_device *device;
5573 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04005574
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005575 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005576 while (cur_devices) {
5577 if (!fsid ||
5578 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5579 device = __find_device(&cur_devices->devices,
5580 devid, uuid);
5581 if (device)
5582 return device;
5583 }
5584 cur_devices = cur_devices->seed;
5585 }
5586 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005587}
5588
Chris Masondfe25022008-05-13 13:46:40 -04005589static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
5590 u64 devid, u8 *dev_uuid)
5591{
5592 struct btrfs_device *device;
5593 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
5594
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005595 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
5596 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05005597 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005598
5599 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005600 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04005601 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005602
5603 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05005604 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005605
Chris Masondfe25022008-05-13 13:46:40 -04005606 return device;
5607}
5608
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005609/**
5610 * btrfs_alloc_device - allocate struct btrfs_device
5611 * @fs_info: used only for generating a new devid, can be NULL if
5612 * devid is provided (i.e. @devid != NULL).
5613 * @devid: a pointer to devid for this device. If NULL a new devid
5614 * is generated.
5615 * @uuid: a pointer to UUID for this device. If NULL a new UUID
5616 * is generated.
5617 *
5618 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
5619 * on error. Returned struct is not linked onto any lists and can be
5620 * destroyed with kfree() right away.
5621 */
5622struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
5623 const u64 *devid,
5624 const u8 *uuid)
5625{
5626 struct btrfs_device *dev;
5627 u64 tmp;
5628
5629 if (!devid && !fs_info) {
5630 WARN_ON(1);
5631 return ERR_PTR(-EINVAL);
5632 }
5633
5634 dev = __alloc_device();
5635 if (IS_ERR(dev))
5636 return dev;
5637
5638 if (devid)
5639 tmp = *devid;
5640 else {
5641 int ret;
5642
5643 ret = find_next_devid(fs_info, &tmp);
5644 if (ret) {
5645 kfree(dev);
5646 return ERR_PTR(ret);
5647 }
5648 }
5649 dev->devid = tmp;
5650
5651 if (uuid)
5652 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
5653 else
5654 generate_random_uuid(dev->uuid);
5655
5656 dev->work.func = pending_bios_fn;
5657
5658 return dev;
5659}
5660
Chris Mason0b86a832008-03-24 15:01:56 -04005661static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
5662 struct extent_buffer *leaf,
5663 struct btrfs_chunk *chunk)
5664{
5665 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5666 struct map_lookup *map;
5667 struct extent_map *em;
5668 u64 logical;
5669 u64 length;
5670 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04005671 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04005672 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04005673 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04005674 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04005675
Chris Masone17cade2008-04-15 15:41:47 -04005676 logical = key->offset;
5677 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04005678
Chris Mason890871b2009-09-02 16:24:52 -04005679 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005680 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005681 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005682
5683 /* already mapped? */
5684 if (em && em->start <= logical && em->start + em->len > logical) {
5685 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04005686 return 0;
5687 } else if (em) {
5688 free_extent_map(em);
5689 }
Chris Mason0b86a832008-03-24 15:01:56 -04005690
David Sterba172ddd62011-04-21 00:48:27 +02005691 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04005692 if (!em)
5693 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04005694 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
5695 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04005696 if (!map) {
5697 free_extent_map(em);
5698 return -ENOMEM;
5699 }
5700
5701 em->bdev = (struct block_device *)map;
5702 em->start = logical;
5703 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04005704 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005705 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04005706 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04005707
Chris Mason593060d2008-03-25 16:50:33 -04005708 map->num_stripes = num_stripes;
5709 map->io_width = btrfs_chunk_io_width(leaf, chunk);
5710 map->io_align = btrfs_chunk_io_align(leaf, chunk);
5711 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
5712 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
5713 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04005714 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04005715 for (i = 0; i < num_stripes; i++) {
5716 map->stripes[i].physical =
5717 btrfs_stripe_offset_nr(leaf, chunk, i);
5718 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04005719 read_extent_buffer(leaf, uuid, (unsigned long)
5720 btrfs_stripe_dev_uuid_nr(chunk, i),
5721 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005722 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
5723 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04005724 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04005725 kfree(map);
5726 free_extent_map(em);
5727 return -EIO;
5728 }
Chris Masondfe25022008-05-13 13:46:40 -04005729 if (!map->stripes[i].dev) {
5730 map->stripes[i].dev =
5731 add_missing_dev(root, devid, uuid);
5732 if (!map->stripes[i].dev) {
5733 kfree(map);
5734 free_extent_map(em);
5735 return -EIO;
5736 }
5737 }
5738 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04005739 }
5740
Chris Mason890871b2009-09-02 16:24:52 -04005741 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005742 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04005743 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005744 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04005745 free_extent_map(em);
5746
5747 return 0;
5748}
5749
Jeff Mahoney143bede2012-03-01 14:56:26 +01005750static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04005751 struct btrfs_dev_item *dev_item,
5752 struct btrfs_device *device)
5753{
5754 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04005755
5756 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04005757 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
5758 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04005759 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
5760 device->type = btrfs_device_type(leaf, dev_item);
5761 device->io_align = btrfs_device_io_align(leaf, dev_item);
5762 device->io_width = btrfs_device_io_width(leaf, dev_item);
5763 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01005764 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01005765 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005766
5767 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04005768 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005769}
5770
Yan Zheng2b820322008-11-17 21:11:30 -05005771static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
5772{
5773 struct btrfs_fs_devices *fs_devices;
5774 int ret;
5775
Li Zefanb367e472011-12-07 11:38:24 +08005776 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05005777
5778 fs_devices = root->fs_info->fs_devices->seed;
5779 while (fs_devices) {
5780 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5781 ret = 0;
5782 goto out;
5783 }
5784 fs_devices = fs_devices->seed;
5785 }
5786
5787 fs_devices = find_fsid(fsid);
5788 if (!fs_devices) {
5789 ret = -ENOENT;
5790 goto out;
5791 }
Yan Zhenge4404d62008-12-12 10:03:26 -05005792
5793 fs_devices = clone_fs_devices(fs_devices);
5794 if (IS_ERR(fs_devices)) {
5795 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005796 goto out;
5797 }
5798
Christoph Hellwig97288f22008-12-02 06:36:09 -05005799 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05005800 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02005801 if (ret) {
5802 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005803 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02005804 }
Yan Zheng2b820322008-11-17 21:11:30 -05005805
5806 if (!fs_devices->seeding) {
5807 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005808 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005809 ret = -EINVAL;
5810 goto out;
5811 }
5812
5813 fs_devices->seed = root->fs_info->fs_devices->seed;
5814 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005815out:
Yan Zheng2b820322008-11-17 21:11:30 -05005816 return ret;
5817}
5818
Chris Mason0d81ba52008-03-24 15:02:07 -04005819static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04005820 struct extent_buffer *leaf,
5821 struct btrfs_dev_item *dev_item)
5822{
5823 struct btrfs_device *device;
5824 u64 devid;
5825 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005826 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04005827 u8 dev_uuid[BTRFS_UUID_SIZE];
5828
Chris Mason0b86a832008-03-24 15:01:56 -04005829 devid = btrfs_device_id(leaf, dev_item);
Chris Masona4437552008-04-18 10:29:38 -04005830 read_extent_buffer(leaf, dev_uuid,
5831 (unsigned long)btrfs_device_uuid(dev_item),
5832 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05005833 read_extent_buffer(leaf, fs_uuid,
5834 (unsigned long)btrfs_device_fsid(dev_item),
5835 BTRFS_UUID_SIZE);
5836
5837 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
5838 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05005839 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005840 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005841 }
5842
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005843 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05005844 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05005845 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005846 return -EIO;
5847
5848 if (!device) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005849 btrfs_warn(root->fs_info, "devid %llu missing",
5850 (unsigned long long)devid);
Yan Zheng2b820322008-11-17 21:11:30 -05005851 device = add_missing_dev(root, devid, dev_uuid);
5852 if (!device)
5853 return -ENOMEM;
Chris Masoncd02dca2010-12-13 14:56:23 -05005854 } else if (!device->missing) {
5855 /*
5856 * this happens when a device that was properly setup
5857 * in the device info lists suddenly goes bad.
5858 * device->bdev is NULL, and so we have to set
5859 * device->missing to one here
5860 */
5861 root->fs_info->fs_devices->missing_devices++;
5862 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05005863 }
5864 }
5865
5866 if (device->fs_devices != root->fs_info->fs_devices) {
5867 BUG_ON(device->writeable);
5868 if (device->generation !=
5869 btrfs_device_generation(leaf, dev_item))
5870 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04005871 }
Chris Mason0b86a832008-03-24 15:01:56 -04005872
5873 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04005874 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01005875 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05005876 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04005877 spin_lock(&root->fs_info->free_chunk_lock);
5878 root->fs_info->free_chunk_space += device->total_bytes -
5879 device->bytes_used;
5880 spin_unlock(&root->fs_info->free_chunk_lock);
5881 }
Chris Mason0b86a832008-03-24 15:01:56 -04005882 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005883 return ret;
5884}
5885
Yan Zhenge4404d62008-12-12 10:03:26 -05005886int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04005887{
David Sterba6c417612011-04-13 15:41:04 +02005888 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04005889 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04005890 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04005891 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04005892 u8 *ptr;
5893 unsigned long sb_ptr;
5894 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005895 u32 num_stripes;
5896 u32 array_size;
5897 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005898 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04005899 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04005900
Yan Zhenge4404d62008-12-12 10:03:26 -05005901 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04005902 BTRFS_SUPER_INFO_SIZE);
5903 if (!sb)
5904 return -ENOMEM;
5905 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04005906 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02005907 /*
5908 * The sb extent buffer is artifical and just used to read the system array.
5909 * btrfs_set_buffer_uptodate() call does not properly mark all it's
5910 * pages up-to-date when the page is larger: extent does not cover the
5911 * whole page and consequently check_page_uptodate does not find all
5912 * the page's extents up-to-date (the hole beyond sb),
5913 * write_extent_buffer then triggers a WARN_ON.
5914 *
5915 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
5916 * but sb spans only this function. Add an explicit SetPageUptodate call
5917 * to silence the warning eg. on PowerPC 64.
5918 */
5919 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04005920 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05005921
Chris Masona061fc82008-05-07 11:43:44 -04005922 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005923 array_size = btrfs_super_sys_array_size(super_copy);
5924
Chris Mason0b86a832008-03-24 15:01:56 -04005925 ptr = super_copy->sys_chunk_array;
5926 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
5927 cur = 0;
5928
5929 while (cur < array_size) {
5930 disk_key = (struct btrfs_disk_key *)ptr;
5931 btrfs_disk_key_to_cpu(&key, disk_key);
5932
Chris Masona061fc82008-05-07 11:43:44 -04005933 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04005934 sb_ptr += len;
5935 cur += len;
5936
Chris Mason0d81ba52008-03-24 15:02:07 -04005937 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04005938 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04005939 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04005940 if (ret)
5941 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005942 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
5943 len = btrfs_chunk_item_size(num_stripes);
5944 } else {
Chris Mason84eed902008-04-25 09:04:37 -04005945 ret = -EIO;
5946 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005947 }
5948 ptr += len;
5949 sb_ptr += len;
5950 cur += len;
5951 }
Chris Masona061fc82008-05-07 11:43:44 -04005952 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04005953 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005954}
5955
5956int btrfs_read_chunk_tree(struct btrfs_root *root)
5957{
5958 struct btrfs_path *path;
5959 struct extent_buffer *leaf;
5960 struct btrfs_key key;
5961 struct btrfs_key found_key;
5962 int ret;
5963 int slot;
5964
5965 root = root->fs_info->chunk_root;
5966
5967 path = btrfs_alloc_path();
5968 if (!path)
5969 return -ENOMEM;
5970
Li Zefanb367e472011-12-07 11:38:24 +08005971 mutex_lock(&uuid_mutex);
5972 lock_chunks(root);
5973
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005974 /*
5975 * Read all device items, and then all the chunk items. All
5976 * device items are found before any chunk item (their object id
5977 * is smaller than the lowest possible object id for a chunk
5978 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04005979 */
5980 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
5981 key.offset = 0;
5982 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005983 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00005984 if (ret < 0)
5985 goto error;
Chris Masond3977122009-01-05 21:25:51 -05005986 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005987 leaf = path->nodes[0];
5988 slot = path->slots[0];
5989 if (slot >= btrfs_header_nritems(leaf)) {
5990 ret = btrfs_next_leaf(root, path);
5991 if (ret == 0)
5992 continue;
5993 if (ret < 0)
5994 goto error;
5995 break;
5996 }
5997 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005998 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
5999 struct btrfs_dev_item *dev_item;
6000 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006001 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006002 ret = read_one_dev(root, leaf, dev_item);
6003 if (ret)
6004 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006005 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6006 struct btrfs_chunk *chunk;
6007 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6008 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006009 if (ret)
6010 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006011 }
6012 path->slots[0]++;
6013 }
Chris Mason0b86a832008-03-24 15:01:56 -04006014 ret = 0;
6015error:
Li Zefanb367e472011-12-07 11:38:24 +08006016 unlock_chunks(root);
6017 mutex_unlock(&uuid_mutex);
6018
Yan Zheng2b820322008-11-17 21:11:30 -05006019 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006020 return ret;
6021}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006022
Miao Xiecb517ea2013-05-15 07:48:19 +00006023void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6024{
6025 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6026 struct btrfs_device *device;
6027
6028 mutex_lock(&fs_devices->device_list_mutex);
6029 list_for_each_entry(device, &fs_devices->devices, dev_list)
6030 device->dev_root = fs_info->dev_root;
6031 mutex_unlock(&fs_devices->device_list_mutex);
6032}
6033
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006034static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6035{
6036 int i;
6037
6038 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6039 btrfs_dev_stat_reset(dev, i);
6040}
6041
6042int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6043{
6044 struct btrfs_key key;
6045 struct btrfs_key found_key;
6046 struct btrfs_root *dev_root = fs_info->dev_root;
6047 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6048 struct extent_buffer *eb;
6049 int slot;
6050 int ret = 0;
6051 struct btrfs_device *device;
6052 struct btrfs_path *path = NULL;
6053 int i;
6054
6055 path = btrfs_alloc_path();
6056 if (!path) {
6057 ret = -ENOMEM;
6058 goto out;
6059 }
6060
6061 mutex_lock(&fs_devices->device_list_mutex);
6062 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6063 int item_size;
6064 struct btrfs_dev_stats_item *ptr;
6065
6066 key.objectid = 0;
6067 key.type = BTRFS_DEV_STATS_KEY;
6068 key.offset = device->devid;
6069 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6070 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006071 __btrfs_reset_dev_stats(device);
6072 device->dev_stats_valid = 1;
6073 btrfs_release_path(path);
6074 continue;
6075 }
6076 slot = path->slots[0];
6077 eb = path->nodes[0];
6078 btrfs_item_key_to_cpu(eb, &found_key, slot);
6079 item_size = btrfs_item_size_nr(eb, slot);
6080
6081 ptr = btrfs_item_ptr(eb, slot,
6082 struct btrfs_dev_stats_item);
6083
6084 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6085 if (item_size >= (1 + i) * sizeof(__le64))
6086 btrfs_dev_stat_set(device, i,
6087 btrfs_dev_stats_value(eb, ptr, i));
6088 else
6089 btrfs_dev_stat_reset(device, i);
6090 }
6091
6092 device->dev_stats_valid = 1;
6093 btrfs_dev_stat_print_on_load(device);
6094 btrfs_release_path(path);
6095 }
6096 mutex_unlock(&fs_devices->device_list_mutex);
6097
6098out:
6099 btrfs_free_path(path);
6100 return ret < 0 ? ret : 0;
6101}
6102
6103static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6104 struct btrfs_root *dev_root,
6105 struct btrfs_device *device)
6106{
6107 struct btrfs_path *path;
6108 struct btrfs_key key;
6109 struct extent_buffer *eb;
6110 struct btrfs_dev_stats_item *ptr;
6111 int ret;
6112 int i;
6113
6114 key.objectid = 0;
6115 key.type = BTRFS_DEV_STATS_KEY;
6116 key.offset = device->devid;
6117
6118 path = btrfs_alloc_path();
6119 BUG_ON(!path);
6120 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6121 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006122 printk_in_rcu(KERN_WARNING "btrfs: error %d while searching for dev_stats item for device %s!\n",
6123 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006124 goto out;
6125 }
6126
6127 if (ret == 0 &&
6128 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6129 /* need to delete old one and insert a new one */
6130 ret = btrfs_del_item(trans, dev_root, path);
6131 if (ret != 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006132 printk_in_rcu(KERN_WARNING "btrfs: delete too small dev_stats item for device %s failed %d!\n",
6133 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006134 goto out;
6135 }
6136 ret = 1;
6137 }
6138
6139 if (ret == 1) {
6140 /* need to insert a new item */
6141 btrfs_release_path(path);
6142 ret = btrfs_insert_empty_item(trans, dev_root, path,
6143 &key, sizeof(*ptr));
6144 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006145 printk_in_rcu(KERN_WARNING "btrfs: insert dev_stats item for device %s failed %d!\n",
6146 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006147 goto out;
6148 }
6149 }
6150
6151 eb = path->nodes[0];
6152 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6153 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6154 btrfs_set_dev_stats_value(eb, ptr, i,
6155 btrfs_dev_stat_read(device, i));
6156 btrfs_mark_buffer_dirty(eb);
6157
6158out:
6159 btrfs_free_path(path);
6160 return ret;
6161}
6162
6163/*
6164 * called from commit_transaction. Writes all changed device stats to disk.
6165 */
6166int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6167 struct btrfs_fs_info *fs_info)
6168{
6169 struct btrfs_root *dev_root = fs_info->dev_root;
6170 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6171 struct btrfs_device *device;
6172 int ret = 0;
6173
6174 mutex_lock(&fs_devices->device_list_mutex);
6175 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6176 if (!device->dev_stats_valid || !device->dev_stats_dirty)
6177 continue;
6178
6179 ret = update_dev_stat_item(trans, dev_root, device);
6180 if (!ret)
6181 device->dev_stats_dirty = 0;
6182 }
6183 mutex_unlock(&fs_devices->device_list_mutex);
6184
6185 return ret;
6186}
6187
Stefan Behrens442a4f62012-05-25 16:06:08 +02006188void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6189{
6190 btrfs_dev_stat_inc(dev, index);
6191 btrfs_dev_stat_print_on_error(dev);
6192}
6193
Eric Sandeen48a3b632013-04-25 20:41:01 +00006194static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006195{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006196 if (!dev->dev_stats_valid)
6197 return;
Josef Bacik606686e2012-06-04 14:03:51 -04006198 printk_ratelimited_in_rcu(KERN_ERR
Stefan Behrens442a4f62012-05-25 16:06:08 +02006199 "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006200 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006201 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6202 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6203 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6204 btrfs_dev_stat_read(dev,
6205 BTRFS_DEV_STAT_CORRUPTION_ERRS),
6206 btrfs_dev_stat_read(dev,
6207 BTRFS_DEV_STAT_GENERATION_ERRS));
6208}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006209
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006210static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6211{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006212 int i;
6213
6214 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6215 if (btrfs_dev_stat_read(dev, i) != 0)
6216 break;
6217 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6218 return; /* all values == 0, suppress message */
6219
Josef Bacik606686e2012-06-04 14:03:51 -04006220 printk_in_rcu(KERN_INFO "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
6221 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006222 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6223 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6224 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6225 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6226 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6227}
6228
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006229int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006230 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006231{
6232 struct btrfs_device *dev;
6233 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6234 int i;
6235
6236 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006237 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006238 mutex_unlock(&fs_devices->device_list_mutex);
6239
6240 if (!dev) {
6241 printk(KERN_WARNING
6242 "btrfs: get dev_stats failed, device not found\n");
6243 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006244 } else if (!dev->dev_stats_valid) {
6245 printk(KERN_WARNING
6246 "btrfs: get dev_stats failed, not yet valid\n");
6247 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006248 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006249 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6250 if (stats->nr_items > i)
6251 stats->values[i] =
6252 btrfs_dev_stat_read_and_reset(dev, i);
6253 else
6254 btrfs_dev_stat_reset(dev, i);
6255 }
6256 } else {
6257 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6258 if (stats->nr_items > i)
6259 stats->values[i] = btrfs_dev_stat_read(dev, i);
6260 }
6261 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6262 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6263 return 0;
6264}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006265
6266int btrfs_scratch_superblock(struct btrfs_device *device)
6267{
6268 struct buffer_head *bh;
6269 struct btrfs_super_block *disk_super;
6270
6271 bh = btrfs_read_dev_super(device->bdev);
6272 if (!bh)
6273 return -EINVAL;
6274 disk_super = (struct btrfs_super_block *)bh->b_data;
6275
6276 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6277 set_buffer_dirty(bh);
6278 sync_dirty_buffer(bh);
6279 brelse(bh);
6280
6281 return 0;
6282}