blob: 9dfe038015f7530bf74f1a960fd060f2afd94043 [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);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100495 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400496 mutex_unlock(&fs_devices->device_list_mutex);
497
Yan Zheng2b820322008-11-17 21:11:30 -0500498 device->fs_devices = fs_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
Ilya Dryomovf747cab2013-10-10 20:37:29 +0300669 if (device->writeable &&
670 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500671 list_del_init(&device->dev_alloc_list);
672 fs_devices->rw_devices--;
673 }
674
Josef Bacikd5e20032011-08-04 14:52:27 +0000675 if (device->can_discard)
676 fs_devices->num_can_discard--;
Josef Bacik726551e2013-08-26 13:45:53 -0400677 if (device->missing)
678 fs_devices->missing_devices--;
Josef Bacikd5e20032011-08-04 14:52:27 +0000679
Ilya Dryomova1e87802013-08-12 14:33:04 +0300680 new_device = btrfs_alloc_device(NULL, &device->devid,
681 device->uuid);
682 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
Josef Bacik606686e2012-06-04 14:03:51 -0400683
684 /* Safe because we are under uuid_mutex */
Josef Bacik99f59442012-08-02 10:23:59 -0400685 if (device->name) {
686 name = rcu_string_strdup(device->name->str, GFP_NOFS);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300687 BUG_ON(!name); /* -ENOMEM */
Josef Bacik99f59442012-08-02 10:23:59 -0400688 rcu_assign_pointer(new_device->name, name);
689 }
Ilya Dryomova1e87802013-08-12 14:33:04 +0300690
Xiao Guangrong1f781602011-04-20 10:09:16 +0000691 list_replace_rcu(&device->dev_list, &new_device->dev_list);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300692 new_device->fs_devices = device->fs_devices;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000693
694 call_rcu(&device->rcu, free_device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400695 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000696 mutex_unlock(&fs_devices->device_list_mutex);
697
Yan Zhenge4404d62008-12-12 10:03:26 -0500698 WARN_ON(fs_devices->open_devices);
699 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500700 fs_devices->opened = 0;
701 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500702
Chris Mason8a4b83c2008-03-24 15:02:07 -0400703 return 0;
704}
705
Yan Zheng2b820322008-11-17 21:11:30 -0500706int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
707{
Yan Zhenge4404d62008-12-12 10:03:26 -0500708 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500709 int ret;
710
711 mutex_lock(&uuid_mutex);
712 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500713 if (!fs_devices->opened) {
714 seed_devices = fs_devices->seed;
715 fs_devices->seed = NULL;
716 }
Yan Zheng2b820322008-11-17 21:11:30 -0500717 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500718
719 while (seed_devices) {
720 fs_devices = seed_devices;
721 seed_devices = fs_devices->seed;
722 __btrfs_close_devices(fs_devices);
723 free_fs_devices(fs_devices);
724 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000725 /*
726 * Wait for rcu kworkers under __btrfs_close_devices
727 * to finish all blkdev_puts so device is really
728 * free when umount is done.
729 */
730 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500731 return ret;
732}
733
Yan Zhenge4404d62008-12-12 10:03:26 -0500734static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
735 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400736{
Josef Bacikd5e20032011-08-04 14:52:27 +0000737 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400738 struct block_device *bdev;
739 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400740 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400741 struct block_device *latest_bdev = NULL;
742 struct buffer_head *bh;
743 struct btrfs_super_block *disk_super;
744 u64 latest_devid = 0;
745 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400746 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500747 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400748 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400749
Tejun Heod4d77622010-11-13 11:55:18 +0100750 flags |= FMODE_EXCL;
751
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500752 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400753 if (device->bdev)
754 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400755 if (!device->name)
756 continue;
757
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000758 /* Just open everything we can; ignore failures here */
759 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
760 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100761 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400762
763 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000764 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400765 if (devid != device->devid)
766 goto error_brelse;
767
Yan Zheng2b820322008-11-17 21:11:30 -0500768 if (memcmp(device->uuid, disk_super->dev_item.uuid,
769 BTRFS_UUID_SIZE))
770 goto error_brelse;
771
772 device->generation = btrfs_super_generation(disk_super);
773 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400774 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500775 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400776 latest_bdev = bdev;
777 }
778
Yan Zheng2b820322008-11-17 21:11:30 -0500779 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
780 device->writeable = 0;
781 } else {
782 device->writeable = !bdev_read_only(bdev);
783 seeding = 0;
784 }
785
Josef Bacikd5e20032011-08-04 14:52:27 +0000786 q = bdev_get_queue(bdev);
787 if (blk_queue_discard(q)) {
788 device->can_discard = 1;
789 fs_devices->num_can_discard++;
790 }
791
Chris Mason8a4b83c2008-03-24 15:02:07 -0400792 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400793 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500794 device->mode = flags;
795
Chris Masonc2898112009-06-10 09:51:32 -0400796 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
797 fs_devices->rotating = 1;
798
Chris Masona0af4692008-05-13 16:03:06 -0400799 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +0300800 if (device->writeable &&
801 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500802 fs_devices->rw_devices++;
803 list_add(&device->dev_alloc_list,
804 &fs_devices->alloc_list);
805 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000806 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400807 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400808
Chris Masona0af4692008-05-13 16:03:06 -0400809error_brelse:
810 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100811 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400812 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400813 }
Chris Masona0af4692008-05-13 16:03:06 -0400814 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300815 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400816 goto out;
817 }
Yan Zheng2b820322008-11-17 21:11:30 -0500818 fs_devices->seeding = seeding;
819 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400820 fs_devices->latest_bdev = latest_bdev;
821 fs_devices->latest_devid = latest_devid;
822 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500823 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400824out:
Yan Zheng2b820322008-11-17 21:11:30 -0500825 return ret;
826}
827
828int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500829 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500830{
831 int ret;
832
833 mutex_lock(&uuid_mutex);
834 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500835 fs_devices->opened++;
836 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500837 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500838 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500839 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400840 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400841 return ret;
842}
843
David Sterba6f60cbd2013-02-15 11:31:02 -0700844/*
845 * Look for a btrfs signature on a device. This may be called out of the mount path
846 * and we are not allowed to call set_blocksize during the scan. The superblock
847 * is read via pagecache
848 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500849int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400850 struct btrfs_fs_devices **fs_devices_ret)
851{
852 struct btrfs_super_block *disk_super;
853 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -0700854 struct page *page;
855 void *p;
856 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400857 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400858 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -0400859 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700860 u64 bytenr;
861 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400862
David Sterba6f60cbd2013-02-15 11:31:02 -0700863 /*
864 * we would like to check all the supers, but that would make
865 * a btrfs mount succeed after a mkfs from a different FS.
866 * So, we need to add a special mount option to scan for
867 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
868 */
869 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +0100870 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -0500871 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -0700872
873 bdev = blkdev_get_by_path(path, flags, holder);
874
875 if (IS_ERR(bdev)) {
876 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100877 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -0700878 }
879
880 /* make sure our super fits in the device */
881 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
882 goto error_bdev_put;
883
884 /* make sure our super fits in the page */
885 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
886 goto error_bdev_put;
887
888 /* make sure our super doesn't straddle pages on disk */
889 index = bytenr >> PAGE_CACHE_SHIFT;
890 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
891 goto error_bdev_put;
892
893 /* pull in the page with our super */
894 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
895 index, GFP_NOFS);
896
897 if (IS_ERR_OR_NULL(page))
898 goto error_bdev_put;
899
900 p = kmap(page);
901
902 /* align our pointer to the offset of the super block */
903 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
904
905 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +0800906 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -0700907 goto error_unmap;
908
Xiao Guangronga3438322010-01-06 11:48:18 +0000909 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400910 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -0400911 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -0700912
Stefan Behrensd03f9182012-11-05 13:10:49 +0000913 if (disk_super->label[0]) {
914 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
915 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
Frank Holton5138ccc2013-09-13 11:46:50 -0400916 printk(KERN_INFO "btrfs: device label %s ", disk_super->label);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000917 } else {
Frank Holton5138ccc2013-09-13 11:46:50 -0400918 printk(KERN_INFO "btrfs: device fsid %pU ", disk_super->fsid);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000919 }
David Sterba6f60cbd2013-02-15 11:31:02 -0700920
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200921 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
David Sterba6f60cbd2013-02-15 11:31:02 -0700922
Chris Mason8a4b83c2008-03-24 15:02:07 -0400923 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
Josef Bacik02db0842012-06-21 16:03:58 -0400924 if (!ret && fs_devices_ret)
925 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700926
927error_unmap:
928 kunmap(page);
929 page_cache_release(page);
930
931error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +0100932 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400933error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100934 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400935 return ret;
936}
Chris Mason0b86a832008-03-24 15:01:56 -0400937
Miao Xie6d07bce2011-01-05 10:07:31 +0000938/* helper to account the used device space in the range */
939int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
940 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -0400941{
942 struct btrfs_key key;
943 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +0000944 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500945 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +0000946 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400947 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +0000948 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400949 struct extent_buffer *l;
950
Miao Xie6d07bce2011-01-05 10:07:31 +0000951 *length = 0;
952
Stefan Behrens63a212a2012-11-05 18:29:28 +0100953 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +0000954 return 0;
955
Yan Zheng2b820322008-11-17 21:11:30 -0500956 path = btrfs_alloc_path();
957 if (!path)
958 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400959 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -0400960
Chris Mason0b86a832008-03-24 15:01:56 -0400961 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +0000962 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400963 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +0000964
965 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -0400966 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000967 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400968 if (ret > 0) {
969 ret = btrfs_previous_item(root, path, key.objectid, key.type);
970 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000971 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400972 }
Miao Xie6d07bce2011-01-05 10:07:31 +0000973
Chris Mason0b86a832008-03-24 15:01:56 -0400974 while (1) {
975 l = path->nodes[0];
976 slot = path->slots[0];
977 if (slot >= btrfs_header_nritems(l)) {
978 ret = btrfs_next_leaf(root, path);
979 if (ret == 0)
980 continue;
981 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000982 goto out;
983
984 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400985 }
986 btrfs_item_key_to_cpu(l, &key, slot);
987
988 if (key.objectid < device->devid)
989 goto next;
990
991 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +0000992 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400993
Chris Masond3977122009-01-05 21:25:51 -0500994 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400995 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400996
Chris Mason0b86a832008-03-24 15:01:56 -0400997 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +0000998 extent_end = key.offset + btrfs_dev_extent_length(l,
999 dev_extent);
1000 if (key.offset <= start && extent_end > end) {
1001 *length = end - start + 1;
1002 break;
1003 } else if (key.offset <= start && extent_end > start)
1004 *length += extent_end - start;
1005 else if (key.offset > start && extent_end <= end)
1006 *length += extent_end - key.offset;
1007 else if (key.offset > start && key.offset <= end) {
1008 *length += end - key.offset + 1;
1009 break;
1010 } else if (key.offset > end)
1011 break;
1012
1013next:
1014 path->slots[0]++;
1015 }
1016 ret = 0;
1017out:
1018 btrfs_free_path(path);
1019 return ret;
1020}
1021
Josef Bacik6df9a952013-06-27 13:22:46 -04001022static int contains_pending_extent(struct btrfs_trans_handle *trans,
1023 struct btrfs_device *device,
1024 u64 *start, u64 len)
1025{
1026 struct extent_map *em;
1027 int ret = 0;
1028
1029 list_for_each_entry(em, &trans->transaction->pending_chunks, list) {
1030 struct map_lookup *map;
1031 int i;
1032
1033 map = (struct map_lookup *)em->bdev;
1034 for (i = 0; i < map->num_stripes; i++) {
1035 if (map->stripes[i].dev != device)
1036 continue;
1037 if (map->stripes[i].physical >= *start + len ||
1038 map->stripes[i].physical + em->orig_block_len <=
1039 *start)
1040 continue;
1041 *start = map->stripes[i].physical +
1042 em->orig_block_len;
1043 ret = 1;
1044 }
1045 }
1046
1047 return ret;
1048}
1049
1050
Chris Mason0b86a832008-03-24 15:01:56 -04001051/*
Miao Xie7bfc8372011-01-05 10:07:26 +00001052 * find_free_dev_extent - find free space in the specified device
Miao Xie7bfc8372011-01-05 10:07:26 +00001053 * @device: the device which we search the free space in
1054 * @num_bytes: the size of the free space that we need
1055 * @start: store the start of the free space.
1056 * @len: the size of the free space. that we find, or the size of the max
1057 * free space if we don't find suitable free space
1058 *
Chris Mason0b86a832008-03-24 15:01:56 -04001059 * this uses a pretty simple search, the expectation is that it is
1060 * called very infrequently and that a given device has a small number
1061 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001062 *
1063 * @start is used to store the start of the free space if we find. But if we
1064 * don't find suitable free space, it will be used to store the start position
1065 * of the max free space.
1066 *
1067 * @len is used to store the size of the free space that we find.
1068 * But if we don't find suitable free space, it is used to store the size of
1069 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001070 */
Josef Bacik6df9a952013-06-27 13:22:46 -04001071int find_free_dev_extent(struct btrfs_trans_handle *trans,
1072 struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +00001073 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001074{
1075 struct btrfs_key key;
1076 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001077 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001078 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001079 u64 hole_size;
1080 u64 max_hole_start;
1081 u64 max_hole_size;
1082 u64 extent_end;
1083 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001084 u64 search_end = device->total_bytes;
1085 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001086 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001087 struct extent_buffer *l;
1088
Chris Mason0b86a832008-03-24 15:01:56 -04001089 /* FIXME use last free of some kind */
1090
1091 /* we don't want to overwrite the superblock on the drive,
1092 * so we make sure to start at an offset of at least 1MB
1093 */
Arne Jansena9c9bf62011-04-12 11:01:20 +02001094 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
Chris Mason0b86a832008-03-24 15:01:56 -04001095
Josef Bacik6df9a952013-06-27 13:22:46 -04001096 path = btrfs_alloc_path();
1097 if (!path)
1098 return -ENOMEM;
1099again:
Miao Xie7bfc8372011-01-05 10:07:26 +00001100 max_hole_start = search_start;
1101 max_hole_size = 0;
liubo38c01b92011-08-02 02:39:03 +00001102 hole_size = 0;
Miao Xie7bfc8372011-01-05 10:07:26 +00001103
Stefan Behrens63a212a2012-11-05 18:29:28 +01001104 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001105 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001106 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001107 }
1108
Miao Xie7bfc8372011-01-05 10:07:26 +00001109 path->reada = 2;
Josef Bacik6df9a952013-06-27 13:22:46 -04001110 path->search_commit_root = 1;
1111 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001112
Chris Mason0b86a832008-03-24 15:01:56 -04001113 key.objectid = device->devid;
1114 key.offset = search_start;
1115 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001116
Li Zefan125ccb02011-12-08 15:07:24 +08001117 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001118 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001119 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001120 if (ret > 0) {
1121 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1122 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001123 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001124 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001125
Chris Mason0b86a832008-03-24 15:01:56 -04001126 while (1) {
1127 l = path->nodes[0];
1128 slot = path->slots[0];
1129 if (slot >= btrfs_header_nritems(l)) {
1130 ret = btrfs_next_leaf(root, path);
1131 if (ret == 0)
1132 continue;
1133 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001134 goto out;
1135
1136 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001137 }
1138 btrfs_item_key_to_cpu(l, &key, slot);
1139
1140 if (key.objectid < device->devid)
1141 goto next;
1142
1143 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001144 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001145
Chris Mason0b86a832008-03-24 15:01:56 -04001146 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
1147 goto next;
1148
Miao Xie7bfc8372011-01-05 10:07:26 +00001149 if (key.offset > search_start) {
1150 hole_size = key.offset - search_start;
1151
Josef Bacik6df9a952013-06-27 13:22:46 -04001152 /*
1153 * Have to check before we set max_hole_start, otherwise
1154 * we could end up sending back this offset anyway.
1155 */
1156 if (contains_pending_extent(trans, device,
1157 &search_start,
1158 hole_size))
1159 hole_size = 0;
1160
Miao Xie7bfc8372011-01-05 10:07:26 +00001161 if (hole_size > max_hole_size) {
1162 max_hole_start = search_start;
1163 max_hole_size = hole_size;
1164 }
1165
1166 /*
1167 * If this free space is greater than which we need,
1168 * it must be the max free space that we have found
1169 * until now, so max_hole_start must point to the start
1170 * of this free space and the length of this free space
1171 * is stored in max_hole_size. Thus, we return
1172 * max_hole_start and max_hole_size and go back to the
1173 * caller.
1174 */
1175 if (hole_size >= num_bytes) {
1176 ret = 0;
1177 goto out;
1178 }
1179 }
1180
Chris Mason0b86a832008-03-24 15:01:56 -04001181 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001182 extent_end = key.offset + btrfs_dev_extent_length(l,
1183 dev_extent);
1184 if (extent_end > search_start)
1185 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001186next:
1187 path->slots[0]++;
1188 cond_resched();
1189 }
Chris Mason0b86a832008-03-24 15:01:56 -04001190
liubo38c01b92011-08-02 02:39:03 +00001191 /*
1192 * At this point, search_start should be the end of
1193 * allocated dev extents, and when shrinking the device,
1194 * search_end may be smaller than search_start.
1195 */
1196 if (search_end > search_start)
1197 hole_size = search_end - search_start;
1198
Miao Xie7bfc8372011-01-05 10:07:26 +00001199 if (hole_size > max_hole_size) {
1200 max_hole_start = search_start;
1201 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001202 }
Chris Mason0b86a832008-03-24 15:01:56 -04001203
Josef Bacik6df9a952013-06-27 13:22:46 -04001204 if (contains_pending_extent(trans, device, &search_start, hole_size)) {
1205 btrfs_release_path(path);
1206 goto again;
1207 }
1208
Miao Xie7bfc8372011-01-05 10:07:26 +00001209 /* See above. */
1210 if (hole_size < num_bytes)
1211 ret = -ENOSPC;
1212 else
1213 ret = 0;
1214
1215out:
Yan Zheng2b820322008-11-17 21:11:30 -05001216 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001217 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001218 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001219 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001220 return ret;
1221}
1222
Christoph Hellwigb2950862008-12-02 09:54:17 -05001223static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001224 struct btrfs_device *device,
1225 u64 start)
1226{
1227 int ret;
1228 struct btrfs_path *path;
1229 struct btrfs_root *root = device->dev_root;
1230 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001231 struct btrfs_key found_key;
1232 struct extent_buffer *leaf = NULL;
1233 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001234
1235 path = btrfs_alloc_path();
1236 if (!path)
1237 return -ENOMEM;
1238
1239 key.objectid = device->devid;
1240 key.offset = start;
1241 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001242again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001243 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001244 if (ret > 0) {
1245 ret = btrfs_previous_item(root, path, key.objectid,
1246 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001247 if (ret)
1248 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001249 leaf = path->nodes[0];
1250 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1251 extent = btrfs_item_ptr(leaf, path->slots[0],
1252 struct btrfs_dev_extent);
1253 BUG_ON(found_key.offset > start || found_key.offset +
1254 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001255 key = found_key;
1256 btrfs_release_path(path);
1257 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001258 } else if (ret == 0) {
1259 leaf = path->nodes[0];
1260 extent = btrfs_item_ptr(leaf, path->slots[0],
1261 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001262 } else {
1263 btrfs_error(root->fs_info, ret, "Slot search failed");
1264 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001265 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001266
Josef Bacik2bf64752011-09-26 17:12:22 -04001267 if (device->bytes_used > 0) {
1268 u64 len = btrfs_dev_extent_length(leaf, extent);
1269 device->bytes_used -= len;
1270 spin_lock(&root->fs_info->free_chunk_lock);
1271 root->fs_info->free_chunk_space += len;
1272 spin_unlock(&root->fs_info->free_chunk_lock);
1273 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001274 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001275 if (ret) {
1276 btrfs_error(root->fs_info, ret,
1277 "Failed to remove dev extent item");
1278 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001279out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001280 btrfs_free_path(path);
1281 return ret;
1282}
1283
Eric Sandeen48a3b632013-04-25 20:41:01 +00001284static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1285 struct btrfs_device *device,
1286 u64 chunk_tree, u64 chunk_objectid,
1287 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001288{
1289 int ret;
1290 struct btrfs_path *path;
1291 struct btrfs_root *root = device->dev_root;
1292 struct btrfs_dev_extent *extent;
1293 struct extent_buffer *leaf;
1294 struct btrfs_key key;
1295
Chris Masondfe25022008-05-13 13:46:40 -04001296 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001297 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001298 path = btrfs_alloc_path();
1299 if (!path)
1300 return -ENOMEM;
1301
Chris Mason0b86a832008-03-24 15:01:56 -04001302 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001303 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001304 key.type = BTRFS_DEV_EXTENT_KEY;
1305 ret = btrfs_insert_empty_item(trans, root, path, &key,
1306 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001307 if (ret)
1308 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001309
1310 leaf = path->nodes[0];
1311 extent = btrfs_item_ptr(leaf, path->slots[0],
1312 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001313 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1314 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1315 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1316
1317 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001318 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001319
Chris Mason0b86a832008-03-24 15:01:56 -04001320 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1321 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001322out:
Chris Mason0b86a832008-03-24 15:01:56 -04001323 btrfs_free_path(path);
1324 return ret;
1325}
1326
Josef Bacik6df9a952013-06-27 13:22:46 -04001327static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001328{
Josef Bacik6df9a952013-06-27 13:22:46 -04001329 struct extent_map_tree *em_tree;
1330 struct extent_map *em;
1331 struct rb_node *n;
1332 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001333
Josef Bacik6df9a952013-06-27 13:22:46 -04001334 em_tree = &fs_info->mapping_tree.map_tree;
1335 read_lock(&em_tree->lock);
1336 n = rb_last(&em_tree->map);
1337 if (n) {
1338 em = rb_entry(n, struct extent_map, rb_node);
1339 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001340 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001341 read_unlock(&em_tree->lock);
1342
Chris Mason0b86a832008-03-24 15:01:56 -04001343 return ret;
1344}
1345
Ilya Dryomov53f10652013-08-12 14:33:01 +03001346static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1347 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001348{
1349 int ret;
1350 struct btrfs_key key;
1351 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001352 struct btrfs_path *path;
1353
Yan Zheng2b820322008-11-17 21:11:30 -05001354 path = btrfs_alloc_path();
1355 if (!path)
1356 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001357
1358 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1359 key.type = BTRFS_DEV_ITEM_KEY;
1360 key.offset = (u64)-1;
1361
Ilya Dryomov53f10652013-08-12 14:33:01 +03001362 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001363 if (ret < 0)
1364 goto error;
1365
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001366 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001367
Ilya Dryomov53f10652013-08-12 14:33:01 +03001368 ret = btrfs_previous_item(fs_info->chunk_root, path,
1369 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001370 BTRFS_DEV_ITEM_KEY);
1371 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001372 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001373 } else {
1374 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1375 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001376 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001377 }
1378 ret = 0;
1379error:
Yan Zheng2b820322008-11-17 21:11:30 -05001380 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001381 return ret;
1382}
1383
1384/*
1385 * the device information is stored in the chunk root
1386 * the btrfs_device struct should be fully filled in
1387 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001388static int btrfs_add_device(struct btrfs_trans_handle *trans,
1389 struct btrfs_root *root,
1390 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001391{
1392 int ret;
1393 struct btrfs_path *path;
1394 struct btrfs_dev_item *dev_item;
1395 struct extent_buffer *leaf;
1396 struct btrfs_key key;
1397 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001398
1399 root = root->fs_info->chunk_root;
1400
1401 path = btrfs_alloc_path();
1402 if (!path)
1403 return -ENOMEM;
1404
Chris Mason0b86a832008-03-24 15:01:56 -04001405 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1406 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001407 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001408
1409 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001410 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001411 if (ret)
1412 goto out;
1413
1414 leaf = path->nodes[0];
1415 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1416
1417 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001418 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001419 btrfs_set_device_type(leaf, dev_item, device->type);
1420 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1421 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1422 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001423 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1424 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001425 btrfs_set_device_group(leaf, dev_item, 0);
1426 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1427 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001428 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001429
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001430 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001431 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001432 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001433 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001434 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001435
Yan Zheng2b820322008-11-17 21:11:30 -05001436 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001437out:
1438 btrfs_free_path(path);
1439 return ret;
1440}
Chris Mason8f18cf12008-04-25 16:53:30 -04001441
Chris Masona061fc82008-05-07 11:43:44 -04001442static int btrfs_rm_dev_item(struct btrfs_root *root,
1443 struct btrfs_device *device)
1444{
1445 int ret;
1446 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001447 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001448 struct btrfs_trans_handle *trans;
1449
1450 root = root->fs_info->chunk_root;
1451
1452 path = btrfs_alloc_path();
1453 if (!path)
1454 return -ENOMEM;
1455
Yan, Zhenga22285a2010-05-16 10:48:46 -04001456 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001457 if (IS_ERR(trans)) {
1458 btrfs_free_path(path);
1459 return PTR_ERR(trans);
1460 }
Chris Masona061fc82008-05-07 11:43:44 -04001461 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1462 key.type = BTRFS_DEV_ITEM_KEY;
1463 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001464 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001465
1466 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1467 if (ret < 0)
1468 goto out;
1469
1470 if (ret > 0) {
1471 ret = -ENOENT;
1472 goto out;
1473 }
1474
1475 ret = btrfs_del_item(trans, root, path);
1476 if (ret)
1477 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001478out:
1479 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001480 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001481 btrfs_commit_transaction(trans, root);
1482 return ret;
1483}
1484
1485int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1486{
1487 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001488 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001489 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001490 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001491 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001492 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001493 u64 all_avail;
1494 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001495 u64 num_devices;
1496 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001497 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001498 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001499 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001500
Chris Masona061fc82008-05-07 11:43:44 -04001501 mutex_lock(&uuid_mutex);
1502
Miao Xiede98ced2013-01-29 10:13:12 +00001503 do {
1504 seq = read_seqbegin(&root->fs_info->profiles_lock);
1505
1506 all_avail = root->fs_info->avail_data_alloc_bits |
1507 root->fs_info->avail_system_alloc_bits |
1508 root->fs_info->avail_metadata_alloc_bits;
1509 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001510
Stefan Behrens8dabb742012-11-06 13:15:27 +01001511 num_devices = root->fs_info->fs_devices->num_devices;
1512 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1513 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1514 WARN_ON(num_devices < 1);
1515 num_devices--;
1516 }
1517 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1518
1519 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001520 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001521 goto out;
1522 }
1523
Stefan Behrens8dabb742012-11-06 13:15:27 +01001524 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001525 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001526 goto out;
1527 }
1528
David Woodhouse53b381b2013-01-29 18:40:14 -05001529 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1530 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001531 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001532 goto out;
1533 }
1534 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1535 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001536 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001537 goto out;
1538 }
1539
Chris Masondfe25022008-05-13 13:46:40 -04001540 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001541 struct list_head *devices;
1542 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001543
Chris Masondfe25022008-05-13 13:46:40 -04001544 device = NULL;
1545 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001546 /*
1547 * It is safe to read the devices since the volume_mutex
1548 * is held.
1549 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001550 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001551 if (tmp->in_fs_metadata &&
1552 !tmp->is_tgtdev_for_dev_replace &&
1553 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001554 device = tmp;
1555 break;
1556 }
1557 }
1558 bdev = NULL;
1559 bh = NULL;
1560 disk_super = NULL;
1561 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001562 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001563 goto out;
1564 }
Chris Masondfe25022008-05-13 13:46:40 -04001565 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001566 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001567 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001568 root->fs_info->bdev_holder, 0,
1569 &bdev, &bh);
1570 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001571 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001572 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001573 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001574 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001575 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001576 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001577 if (!device) {
1578 ret = -ENOENT;
1579 goto error_brelse;
1580 }
Chris Masondfe25022008-05-13 13:46:40 -04001581 }
Yan Zheng2b820322008-11-17 21:11:30 -05001582
Stefan Behrens63a212a2012-11-05 18:29:28 +01001583 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001584 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001585 goto error_brelse;
1586 }
1587
Yan Zheng2b820322008-11-17 21:11:30 -05001588 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001589 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001590 goto error_brelse;
1591 }
1592
1593 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001594 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001595 list_del_init(&device->dev_alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001596 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001597 root->fs_info->fs_devices->rw_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001598 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001599 }
Chris Masona061fc82008-05-07 11:43:44 -04001600
Carey Underwoodd7901552013-03-04 16:37:06 -06001601 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001602 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001603 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001604 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001605 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001606
Stefan Behrens63a212a2012-11-05 18:29:28 +01001607 /*
1608 * TODO: the superblock still includes this device in its num_devices
1609 * counter although write_all_supers() is not locked out. This
1610 * could give a filesystem state which requires a degraded mount.
1611 */
Chris Masona061fc82008-05-07 11:43:44 -04001612 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1613 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001614 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001615
Josef Bacik2bf64752011-09-26 17:12:22 -04001616 spin_lock(&root->fs_info->free_chunk_lock);
1617 root->fs_info->free_chunk_space = device->total_bytes -
1618 device->bytes_used;
1619 spin_unlock(&root->fs_info->free_chunk_lock);
1620
Yan Zheng2b820322008-11-17 21:11:30 -05001621 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001622 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001623
1624 /*
1625 * the device list mutex makes sure that we don't change
1626 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001627 * the device supers. Whoever is writing all supers, should
1628 * lock the device list mutex before getting the number of
1629 * devices in the super block (super_copy). Conversely,
1630 * whoever updates the number of devices in the super block
1631 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001632 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001633
1634 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001635 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001636 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001637
Yan Zhenge4404d62008-12-12 10:03:26 -05001638 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001639 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001640
Chris Masoncd02dca2010-12-13 14:56:23 -05001641 if (device->missing)
1642 root->fs_info->fs_devices->missing_devices--;
1643
Yan Zheng2b820322008-11-17 21:11:30 -05001644 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1645 struct btrfs_device, dev_list);
1646 if (device->bdev == root->fs_info->sb->s_bdev)
1647 root->fs_info->sb->s_bdev = next_device->bdev;
1648 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1649 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1650
Xiao Guangrong1f781602011-04-20 10:09:16 +00001651 if (device->bdev)
Yan Zhenge4404d62008-12-12 10:03:26 -05001652 device->fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001653
1654 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001655
David Sterba6c417612011-04-13 15:41:04 +02001656 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1657 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001658 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001659
Xiao Guangrong1f781602011-04-20 10:09:16 +00001660 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001661 struct btrfs_fs_devices *fs_devices;
1662 fs_devices = root->fs_info->fs_devices;
1663 while (fs_devices) {
Xiao Guangrong1f781602011-04-20 10:09:16 +00001664 if (fs_devices->seed == cur_devices)
Yan Zhenge4404d62008-12-12 10:03:26 -05001665 break;
1666 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001667 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001668 fs_devices->seed = cur_devices->seed;
1669 cur_devices->seed = NULL;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001670 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001671 __btrfs_close_devices(cur_devices);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001672 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001673 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001674 }
1675
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001676 root->fs_info->num_tolerated_disk_barrier_failures =
1677 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1678
Yan Zheng2b820322008-11-17 21:11:30 -05001679 /*
1680 * at this point, the device is zero sized. We want to
1681 * remove it from the devices list and zero out the old super
1682 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001683 if (clear_super && disk_super) {
Chris Masondfe25022008-05-13 13:46:40 -04001684 /* make sure this device isn't detected as part of
1685 * the FS anymore
1686 */
1687 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1688 set_buffer_dirty(bh);
1689 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001690 }
Chris Masona061fc82008-05-07 11:43:44 -04001691
Chris Masona061fc82008-05-07 11:43:44 -04001692 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001693
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001694 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001695 if (bdev)
1696 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001697
Chris Masona061fc82008-05-07 11:43:44 -04001698error_brelse:
1699 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001700 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001701 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001702out:
1703 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001704 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001705error_undo:
1706 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001707 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001708 list_add(&device->dev_alloc_list,
1709 &root->fs_info->fs_devices->alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001710 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001711 root->fs_info->fs_devices->rw_devices++;
1712 }
1713 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001714}
1715
Stefan Behrense93c89c2012-11-05 17:33:06 +01001716void btrfs_rm_dev_replace_srcdev(struct btrfs_fs_info *fs_info,
1717 struct btrfs_device *srcdev)
1718{
1719 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001720
Stefan Behrense93c89c2012-11-05 17:33:06 +01001721 list_del_rcu(&srcdev->dev_list);
1722 list_del_rcu(&srcdev->dev_alloc_list);
1723 fs_info->fs_devices->num_devices--;
1724 if (srcdev->missing) {
1725 fs_info->fs_devices->missing_devices--;
1726 fs_info->fs_devices->rw_devices++;
1727 }
1728 if (srcdev->can_discard)
1729 fs_info->fs_devices->num_can_discard--;
Ilya Dryomov13572722013-10-02 20:41:01 +03001730 if (srcdev->bdev) {
Stefan Behrense93c89c2012-11-05 17:33:06 +01001731 fs_info->fs_devices->open_devices--;
1732
Ilya Dryomov13572722013-10-02 20:41:01 +03001733 /* zero out the old super */
1734 btrfs_scratch_superblock(srcdev);
1735 }
1736
Stefan Behrense93c89c2012-11-05 17:33:06 +01001737 call_rcu(&srcdev->rcu, free_device);
1738}
1739
1740void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1741 struct btrfs_device *tgtdev)
1742{
1743 struct btrfs_device *next_device;
1744
1745 WARN_ON(!tgtdev);
1746 mutex_lock(&fs_info->fs_devices->device_list_mutex);
1747 if (tgtdev->bdev) {
1748 btrfs_scratch_superblock(tgtdev);
1749 fs_info->fs_devices->open_devices--;
1750 }
1751 fs_info->fs_devices->num_devices--;
1752 if (tgtdev->can_discard)
1753 fs_info->fs_devices->num_can_discard++;
1754
1755 next_device = list_entry(fs_info->fs_devices->devices.next,
1756 struct btrfs_device, dev_list);
1757 if (tgtdev->bdev == fs_info->sb->s_bdev)
1758 fs_info->sb->s_bdev = next_device->bdev;
1759 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
1760 fs_info->fs_devices->latest_bdev = next_device->bdev;
1761 list_del_rcu(&tgtdev->dev_list);
1762
1763 call_rcu(&tgtdev->rcu, free_device);
1764
1765 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
1766}
1767
Eric Sandeen48a3b632013-04-25 20:41:01 +00001768static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
1769 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001770{
1771 int ret = 0;
1772 struct btrfs_super_block *disk_super;
1773 u64 devid;
1774 u8 *dev_uuid;
1775 struct block_device *bdev;
1776 struct buffer_head *bh;
1777
1778 *device = NULL;
1779 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
1780 root->fs_info->bdev_holder, 0, &bdev, &bh);
1781 if (ret)
1782 return ret;
1783 disk_super = (struct btrfs_super_block *)bh->b_data;
1784 devid = btrfs_stack_device_id(&disk_super->dev_item);
1785 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001786 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001787 disk_super->fsid);
1788 brelse(bh);
1789 if (!*device)
1790 ret = -ENOENT;
1791 blkdev_put(bdev, FMODE_READ);
1792 return ret;
1793}
1794
1795int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
1796 char *device_path,
1797 struct btrfs_device **device)
1798{
1799 *device = NULL;
1800 if (strcmp(device_path, "missing") == 0) {
1801 struct list_head *devices;
1802 struct btrfs_device *tmp;
1803
1804 devices = &root->fs_info->fs_devices->devices;
1805 /*
1806 * It is safe to read the devices since the volume_mutex
1807 * is held by the caller.
1808 */
1809 list_for_each_entry(tmp, devices, dev_list) {
1810 if (tmp->in_fs_metadata && !tmp->bdev) {
1811 *device = tmp;
1812 break;
1813 }
1814 }
1815
1816 if (!*device) {
1817 pr_err("btrfs: no missing device found\n");
1818 return -ENOENT;
1819 }
1820
1821 return 0;
1822 } else {
1823 return btrfs_find_device_by_path(root, device_path, device);
1824 }
1825}
1826
Yan Zheng2b820322008-11-17 21:11:30 -05001827/*
1828 * does all the dirty work required for changing file system's UUID.
1829 */
Li Zefan125ccb02011-12-08 15:07:24 +08001830static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05001831{
1832 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1833 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001834 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02001835 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05001836 struct btrfs_device *device;
1837 u64 super_flags;
1838
1839 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001840 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001841 return -EINVAL;
1842
Ilya Dryomov2208a372013-08-12 14:33:03 +03001843 seed_devices = __alloc_fs_devices();
1844 if (IS_ERR(seed_devices))
1845 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001846
Yan Zhenge4404d62008-12-12 10:03:26 -05001847 old_devices = clone_fs_devices(fs_devices);
1848 if (IS_ERR(old_devices)) {
1849 kfree(seed_devices);
1850 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001851 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001852
Yan Zheng2b820322008-11-17 21:11:30 -05001853 list_add(&old_devices->list, &fs_uuids);
1854
Yan Zhenge4404d62008-12-12 10:03:26 -05001855 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1856 seed_devices->opened = 1;
1857 INIT_LIST_HEAD(&seed_devices->devices);
1858 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001859 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001860
1861 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001862 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1863 synchronize_rcu);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001864
Yan Zhenge4404d62008-12-12 10:03:26 -05001865 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1866 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1867 device->fs_devices = seed_devices;
1868 }
1869
Yan Zheng2b820322008-11-17 21:11:30 -05001870 fs_devices->seeding = 0;
1871 fs_devices->num_devices = 0;
1872 fs_devices->open_devices = 0;
Josef Bacik02db0842012-06-21 16:03:58 -04001873 fs_devices->total_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001874 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001875
1876 generate_random_uuid(fs_devices->fsid);
1877 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1878 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01001879 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1880
Yan Zheng2b820322008-11-17 21:11:30 -05001881 super_flags = btrfs_super_flags(disk_super) &
1882 ~BTRFS_SUPER_FLAG_SEEDING;
1883 btrfs_set_super_flags(disk_super, super_flags);
1884
1885 return 0;
1886}
1887
1888/*
1889 * strore the expected generation for seed devices in device items.
1890 */
1891static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1892 struct btrfs_root *root)
1893{
1894 struct btrfs_path *path;
1895 struct extent_buffer *leaf;
1896 struct btrfs_dev_item *dev_item;
1897 struct btrfs_device *device;
1898 struct btrfs_key key;
1899 u8 fs_uuid[BTRFS_UUID_SIZE];
1900 u8 dev_uuid[BTRFS_UUID_SIZE];
1901 u64 devid;
1902 int ret;
1903
1904 path = btrfs_alloc_path();
1905 if (!path)
1906 return -ENOMEM;
1907
1908 root = root->fs_info->chunk_root;
1909 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1910 key.offset = 0;
1911 key.type = BTRFS_DEV_ITEM_KEY;
1912
1913 while (1) {
1914 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1915 if (ret < 0)
1916 goto error;
1917
1918 leaf = path->nodes[0];
1919next_slot:
1920 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1921 ret = btrfs_next_leaf(root, path);
1922 if (ret > 0)
1923 break;
1924 if (ret < 0)
1925 goto error;
1926 leaf = path->nodes[0];
1927 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001928 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05001929 continue;
1930 }
1931
1932 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1933 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1934 key.type != BTRFS_DEV_ITEM_KEY)
1935 break;
1936
1937 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1938 struct btrfs_dev_item);
1939 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001940 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05001941 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001942 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05001943 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001944 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
1945 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001946 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05001947
1948 if (device->fs_devices->seeding) {
1949 btrfs_set_device_generation(leaf, dev_item,
1950 device->generation);
1951 btrfs_mark_buffer_dirty(leaf);
1952 }
1953
1954 path->slots[0]++;
1955 goto next_slot;
1956 }
1957 ret = 0;
1958error:
1959 btrfs_free_path(path);
1960 return ret;
1961}
1962
Chris Mason788f20e2008-04-28 15:29:42 -04001963int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1964{
Josef Bacikd5e20032011-08-04 14:52:27 +00001965 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04001966 struct btrfs_trans_handle *trans;
1967 struct btrfs_device *device;
1968 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001969 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001970 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04001971 struct rcu_string *name;
Chris Mason788f20e2008-04-28 15:29:42 -04001972 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001973 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001974 int ret = 0;
1975
Yan Zheng2b820322008-11-17 21:11:30 -05001976 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08001977 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04001978
Li Zefana5d16332011-12-07 20:08:40 -05001979 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01001980 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001981 if (IS_ERR(bdev))
1982 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001983
Yan Zheng2b820322008-11-17 21:11:30 -05001984 if (root->fs_info->fs_devices->seeding) {
1985 seeding_dev = 1;
1986 down_write(&sb->s_umount);
1987 mutex_lock(&uuid_mutex);
1988 }
1989
Chris Mason8c8bee12008-09-29 11:19:10 -04001990 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04001991
Chris Mason788f20e2008-04-28 15:29:42 -04001992 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00001993
1994 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001995 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001996 if (device->bdev == bdev) {
1997 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00001998 mutex_unlock(
1999 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002000 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002001 }
2002 }
Liu Bod25628b2012-11-14 14:35:30 +00002003 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002004
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002005 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2006 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002007 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002008 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002009 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002010 }
2011
Josef Bacik606686e2012-06-04 14:03:51 -04002012 name = rcu_string_strdup(device_path, GFP_NOFS);
2013 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002014 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002015 ret = -ENOMEM;
2016 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002017 }
Josef Bacik606686e2012-06-04 14:03:51 -04002018 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002019
Yan, Zhenga22285a2010-05-16 10:48:46 -04002020 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002021 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002022 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002023 kfree(device);
2024 ret = PTR_ERR(trans);
2025 goto error;
2026 }
2027
Yan Zheng2b820322008-11-17 21:11:30 -05002028 lock_chunks(root);
2029
Josef Bacikd5e20032011-08-04 14:52:27 +00002030 q = bdev_get_queue(bdev);
2031 if (blk_queue_discard(q))
2032 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002033 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002034 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002035 device->io_width = root->sectorsize;
2036 device->io_align = root->sectorsize;
2037 device->sector_size = root->sectorsize;
2038 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002039 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002040 device->dev_root = root->fs_info->dev_root;
2041 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002042 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002043 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002044 device->mode = FMODE_EXCL;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002045 set_blocksize(device->bdev, 4096);
2046
Yan Zheng2b820322008-11-17 21:11:30 -05002047 if (seeding_dev) {
2048 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002049 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002050 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002051 }
2052
2053 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002054
Chris Masone5e9a522009-06-10 15:17:02 -04002055 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002056 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002057 list_add(&device->dev_alloc_list,
2058 &root->fs_info->fs_devices->alloc_list);
2059 root->fs_info->fs_devices->num_devices++;
2060 root->fs_info->fs_devices->open_devices++;
2061 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002062 root->fs_info->fs_devices->total_devices++;
Josef Bacikd5e20032011-08-04 14:52:27 +00002063 if (device->can_discard)
2064 root->fs_info->fs_devices->num_can_discard++;
Yan Zheng2b820322008-11-17 21:11:30 -05002065 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2066
Josef Bacik2bf64752011-09-26 17:12:22 -04002067 spin_lock(&root->fs_info->free_chunk_lock);
2068 root->fs_info->free_chunk_space += device->total_bytes;
2069 spin_unlock(&root->fs_info->free_chunk_lock);
2070
Chris Masonc2898112009-06-10 09:51:32 -04002071 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2072 root->fs_info->fs_devices->rotating = 1;
2073
David Sterba6c417612011-04-13 15:41:04 +02002074 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
2075 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002076 total_bytes + device->total_bytes);
2077
David Sterba6c417612011-04-13 15:41:04 +02002078 total_bytes = btrfs_super_num_devices(root->fs_info->super_copy);
2079 btrfs_set_super_num_devices(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002080 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04002081 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002082
Yan Zheng2b820322008-11-17 21:11:30 -05002083 if (seeding_dev) {
2084 ret = init_first_rw_device(trans, root, device);
David Sterba005d6422012-09-18 07:52:32 -06002085 if (ret) {
2086 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002087 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002088 }
Yan Zheng2b820322008-11-17 21:11:30 -05002089 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002090 if (ret) {
2091 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002092 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002093 }
Yan Zheng2b820322008-11-17 21:11:30 -05002094 } else {
2095 ret = btrfs_add_device(trans, root, device);
David Sterba005d6422012-09-18 07:52:32 -06002096 if (ret) {
2097 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002098 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002099 }
Yan Zheng2b820322008-11-17 21:11:30 -05002100 }
2101
Chris Mason913d9522009-03-10 13:17:18 -04002102 /*
2103 * we've got more storage, clear any full flags on the space
2104 * infos
2105 */
2106 btrfs_clear_space_info_full(root->fs_info);
2107
Chris Mason7d9eb122008-07-08 14:19:17 -04002108 unlock_chunks(root);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002109 root->fs_info->num_tolerated_disk_barrier_failures =
2110 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002111 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002112
2113 if (seeding_dev) {
2114 mutex_unlock(&uuid_mutex);
2115 up_write(&sb->s_umount);
2116
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002117 if (ret) /* transaction commit */
2118 return ret;
2119
Yan Zheng2b820322008-11-17 21:11:30 -05002120 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002121 if (ret < 0)
2122 btrfs_error(root->fs_info, ret,
2123 "Failed to relocate sys chunks after "
2124 "device initialization. This can be fixed "
2125 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002126 trans = btrfs_attach_transaction(root);
2127 if (IS_ERR(trans)) {
2128 if (PTR_ERR(trans) == -ENOENT)
2129 return 0;
2130 return PTR_ERR(trans);
2131 }
2132 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002133 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002134
Chris Mason788f20e2008-04-28 15:29:42 -04002135 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002136
2137error_trans:
2138 unlock_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002139 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002140 rcu_string_free(device->name);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002141 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002142error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002143 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002144 if (seeding_dev) {
2145 mutex_unlock(&uuid_mutex);
2146 up_write(&sb->s_umount);
2147 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002148 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002149}
2150
Stefan Behrense93c89c2012-11-05 17:33:06 +01002151int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
2152 struct btrfs_device **device_out)
2153{
2154 struct request_queue *q;
2155 struct btrfs_device *device;
2156 struct block_device *bdev;
2157 struct btrfs_fs_info *fs_info = root->fs_info;
2158 struct list_head *devices;
2159 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002160 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002161 int ret = 0;
2162
2163 *device_out = NULL;
2164 if (fs_info->fs_devices->seeding)
2165 return -EINVAL;
2166
2167 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2168 fs_info->bdev_holder);
2169 if (IS_ERR(bdev))
2170 return PTR_ERR(bdev);
2171
2172 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2173
2174 devices = &fs_info->fs_devices->devices;
2175 list_for_each_entry(device, devices, dev_list) {
2176 if (device->bdev == bdev) {
2177 ret = -EEXIST;
2178 goto error;
2179 }
2180 }
2181
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002182 device = btrfs_alloc_device(NULL, &devid, NULL);
2183 if (IS_ERR(device)) {
2184 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002185 goto error;
2186 }
2187
2188 name = rcu_string_strdup(device_path, GFP_NOFS);
2189 if (!name) {
2190 kfree(device);
2191 ret = -ENOMEM;
2192 goto error;
2193 }
2194 rcu_assign_pointer(device->name, name);
2195
2196 q = bdev_get_queue(bdev);
2197 if (blk_queue_discard(q))
2198 device->can_discard = 1;
2199 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2200 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002201 device->generation = 0;
2202 device->io_width = root->sectorsize;
2203 device->io_align = root->sectorsize;
2204 device->sector_size = root->sectorsize;
2205 device->total_bytes = i_size_read(bdev->bd_inode);
2206 device->disk_total_bytes = device->total_bytes;
2207 device->dev_root = fs_info->dev_root;
2208 device->bdev = bdev;
2209 device->in_fs_metadata = 1;
2210 device->is_tgtdev_for_dev_replace = 1;
2211 device->mode = FMODE_EXCL;
2212 set_blocksize(device->bdev, 4096);
2213 device->fs_devices = fs_info->fs_devices;
2214 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2215 fs_info->fs_devices->num_devices++;
2216 fs_info->fs_devices->open_devices++;
2217 if (device->can_discard)
2218 fs_info->fs_devices->num_can_discard++;
2219 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2220
2221 *device_out = device;
2222 return ret;
2223
2224error:
2225 blkdev_put(bdev, FMODE_EXCL);
2226 return ret;
2227}
2228
2229void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2230 struct btrfs_device *tgtdev)
2231{
2232 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2233 tgtdev->io_width = fs_info->dev_root->sectorsize;
2234 tgtdev->io_align = fs_info->dev_root->sectorsize;
2235 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2236 tgtdev->dev_root = fs_info->dev_root;
2237 tgtdev->in_fs_metadata = 1;
2238}
2239
Chris Masond3977122009-01-05 21:25:51 -05002240static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2241 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002242{
2243 int ret;
2244 struct btrfs_path *path;
2245 struct btrfs_root *root;
2246 struct btrfs_dev_item *dev_item;
2247 struct extent_buffer *leaf;
2248 struct btrfs_key key;
2249
2250 root = device->dev_root->fs_info->chunk_root;
2251
2252 path = btrfs_alloc_path();
2253 if (!path)
2254 return -ENOMEM;
2255
2256 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2257 key.type = BTRFS_DEV_ITEM_KEY;
2258 key.offset = device->devid;
2259
2260 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2261 if (ret < 0)
2262 goto out;
2263
2264 if (ret > 0) {
2265 ret = -ENOENT;
2266 goto out;
2267 }
2268
2269 leaf = path->nodes[0];
2270 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2271
2272 btrfs_set_device_id(leaf, dev_item, device->devid);
2273 btrfs_set_device_type(leaf, dev_item, device->type);
2274 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2275 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2276 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04002277 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04002278 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
2279 btrfs_mark_buffer_dirty(leaf);
2280
2281out:
2282 btrfs_free_path(path);
2283 return ret;
2284}
2285
Chris Mason7d9eb122008-07-08 14:19:17 -04002286static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002287 struct btrfs_device *device, u64 new_size)
2288{
2289 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002290 device->dev_root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002291 u64 old_total = btrfs_super_total_bytes(super_copy);
2292 u64 diff = new_size - device->total_bytes;
2293
Yan Zheng2b820322008-11-17 21:11:30 -05002294 if (!device->writeable)
2295 return -EACCES;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002296 if (new_size <= device->total_bytes ||
2297 device->is_tgtdev_for_dev_replace)
Yan Zheng2b820322008-11-17 21:11:30 -05002298 return -EINVAL;
2299
Chris Mason8f18cf12008-04-25 16:53:30 -04002300 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002301 device->fs_devices->total_rw_bytes += diff;
2302
2303 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04002304 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04002305 btrfs_clear_space_info_full(device->dev_root->fs_info);
2306
Chris Mason8f18cf12008-04-25 16:53:30 -04002307 return btrfs_update_device(trans, device);
2308}
2309
Chris Mason7d9eb122008-07-08 14:19:17 -04002310int btrfs_grow_device(struct btrfs_trans_handle *trans,
2311 struct btrfs_device *device, u64 new_size)
2312{
2313 int ret;
2314 lock_chunks(device->dev_root);
2315 ret = __btrfs_grow_device(trans, device, new_size);
2316 unlock_chunks(device->dev_root);
2317 return ret;
2318}
2319
Chris Mason8f18cf12008-04-25 16:53:30 -04002320static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
2321 struct btrfs_root *root,
2322 u64 chunk_tree, u64 chunk_objectid,
2323 u64 chunk_offset)
2324{
2325 int ret;
2326 struct btrfs_path *path;
2327 struct btrfs_key key;
2328
2329 root = root->fs_info->chunk_root;
2330 path = btrfs_alloc_path();
2331 if (!path)
2332 return -ENOMEM;
2333
2334 key.objectid = chunk_objectid;
2335 key.offset = chunk_offset;
2336 key.type = BTRFS_CHUNK_ITEM_KEY;
2337
2338 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002339 if (ret < 0)
2340 goto out;
2341 else if (ret > 0) { /* Logic error or corruption */
2342 btrfs_error(root->fs_info, -ENOENT,
2343 "Failed lookup while freeing chunk.");
2344 ret = -ENOENT;
2345 goto out;
2346 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002347
2348 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002349 if (ret < 0)
2350 btrfs_error(root->fs_info, ret,
2351 "Failed to delete chunk item.");
2352out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002353 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002354 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002355}
2356
Christoph Hellwigb2950862008-12-02 09:54:17 -05002357static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002358 chunk_offset)
2359{
David Sterba6c417612011-04-13 15:41:04 +02002360 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002361 struct btrfs_disk_key *disk_key;
2362 struct btrfs_chunk *chunk;
2363 u8 *ptr;
2364 int ret = 0;
2365 u32 num_stripes;
2366 u32 array_size;
2367 u32 len = 0;
2368 u32 cur;
2369 struct btrfs_key key;
2370
2371 array_size = btrfs_super_sys_array_size(super_copy);
2372
2373 ptr = super_copy->sys_chunk_array;
2374 cur = 0;
2375
2376 while (cur < array_size) {
2377 disk_key = (struct btrfs_disk_key *)ptr;
2378 btrfs_disk_key_to_cpu(&key, disk_key);
2379
2380 len = sizeof(*disk_key);
2381
2382 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2383 chunk = (struct btrfs_chunk *)(ptr + len);
2384 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2385 len += btrfs_chunk_item_size(num_stripes);
2386 } else {
2387 ret = -EIO;
2388 break;
2389 }
2390 if (key.objectid == chunk_objectid &&
2391 key.offset == chunk_offset) {
2392 memmove(ptr, ptr + len, array_size - (cur + len));
2393 array_size -= len;
2394 btrfs_set_super_sys_array_size(super_copy, array_size);
2395 } else {
2396 ptr += len;
2397 cur += len;
2398 }
2399 }
2400 return ret;
2401}
2402
Christoph Hellwigb2950862008-12-02 09:54:17 -05002403static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04002404 u64 chunk_tree, u64 chunk_objectid,
2405 u64 chunk_offset)
2406{
2407 struct extent_map_tree *em_tree;
2408 struct btrfs_root *extent_root;
2409 struct btrfs_trans_handle *trans;
2410 struct extent_map *em;
2411 struct map_lookup *map;
2412 int ret;
2413 int i;
2414
2415 root = root->fs_info->chunk_root;
2416 extent_root = root->fs_info->extent_root;
2417 em_tree = &root->fs_info->mapping_tree.map_tree;
2418
Josef Bacikba1bf482009-09-11 16:11:19 -04002419 ret = btrfs_can_relocate(extent_root, chunk_offset);
2420 if (ret)
2421 return -ENOSPC;
2422
Chris Mason8f18cf12008-04-25 16:53:30 -04002423 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04002424 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002425 if (ret)
2426 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002427
Yan, Zhenga22285a2010-05-16 10:48:46 -04002428 trans = btrfs_start_transaction(root, 0);
Liu Bo0f788c52013-03-04 16:25:40 +00002429 if (IS_ERR(trans)) {
2430 ret = PTR_ERR(trans);
2431 btrfs_std_error(root->fs_info, ret);
2432 return ret;
2433 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002434
Chris Mason7d9eb122008-07-08 14:19:17 -04002435 lock_chunks(root);
2436
Chris Mason8f18cf12008-04-25 16:53:30 -04002437 /*
2438 * step two, delete the device extents and the
2439 * chunk tree entries
2440 */
Chris Mason890871b2009-09-02 16:24:52 -04002441 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002442 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002443 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002444
Tsutomu Itoh285190d2012-02-16 16:23:58 +09002445 BUG_ON(!em || em->start > chunk_offset ||
Chris Masona061fc82008-05-07 11:43:44 -04002446 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002447 map = (struct map_lookup *)em->bdev;
2448
2449 for (i = 0; i < map->num_stripes; i++) {
2450 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
2451 map->stripes[i].physical);
2452 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04002453
Chris Masondfe25022008-05-13 13:46:40 -04002454 if (map->stripes[i].dev) {
2455 ret = btrfs_update_device(trans, map->stripes[i].dev);
2456 BUG_ON(ret);
2457 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002458 }
2459 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
2460 chunk_offset);
2461
2462 BUG_ON(ret);
2463
liubo1abe9b82011-03-24 11:18:59 +00002464 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2465
Chris Mason8f18cf12008-04-25 16:53:30 -04002466 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2467 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2468 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04002469 }
2470
Zheng Yan1a40e232008-09-26 10:09:34 -04002471 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
2472 BUG_ON(ret);
2473
Chris Mason890871b2009-09-02 16:24:52 -04002474 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002475 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002476 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04002477
Chris Mason8f18cf12008-04-25 16:53:30 -04002478 kfree(map);
2479 em->bdev = NULL;
2480
2481 /* once for the tree */
2482 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002483 /* once for us */
2484 free_extent_map(em);
2485
Chris Mason7d9eb122008-07-08 14:19:17 -04002486 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002487 btrfs_end_transaction(trans, root);
2488 return 0;
2489}
2490
Yan Zheng2b820322008-11-17 21:11:30 -05002491static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2492{
2493 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2494 struct btrfs_path *path;
2495 struct extent_buffer *leaf;
2496 struct btrfs_chunk *chunk;
2497 struct btrfs_key key;
2498 struct btrfs_key found_key;
2499 u64 chunk_tree = chunk_root->root_key.objectid;
2500 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002501 bool retried = false;
2502 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002503 int ret;
2504
2505 path = btrfs_alloc_path();
2506 if (!path)
2507 return -ENOMEM;
2508
Josef Bacikba1bf482009-09-11 16:11:19 -04002509again:
Yan Zheng2b820322008-11-17 21:11:30 -05002510 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2511 key.offset = (u64)-1;
2512 key.type = BTRFS_CHUNK_ITEM_KEY;
2513
2514 while (1) {
2515 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2516 if (ret < 0)
2517 goto error;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002518 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002519
2520 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2521 key.type);
2522 if (ret < 0)
2523 goto error;
2524 if (ret > 0)
2525 break;
2526
2527 leaf = path->nodes[0];
2528 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2529
2530 chunk = btrfs_item_ptr(leaf, path->slots[0],
2531 struct btrfs_chunk);
2532 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002533 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002534
2535 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
2536 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
2537 found_key.objectid,
2538 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002539 if (ret == -ENOSPC)
2540 failed++;
2541 else if (ret)
2542 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05002543 }
2544
2545 if (found_key.offset == 0)
2546 break;
2547 key.offset = found_key.offset - 1;
2548 }
2549 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002550 if (failed && !retried) {
2551 failed = 0;
2552 retried = true;
2553 goto again;
2554 } else if (failed && retried) {
2555 WARN_ON(1);
2556 ret = -ENOSPC;
2557 }
Yan Zheng2b820322008-11-17 21:11:30 -05002558error:
2559 btrfs_free_path(path);
2560 return ret;
2561}
2562
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002563static int insert_balance_item(struct btrfs_root *root,
2564 struct btrfs_balance_control *bctl)
2565{
2566 struct btrfs_trans_handle *trans;
2567 struct btrfs_balance_item *item;
2568 struct btrfs_disk_balance_args disk_bargs;
2569 struct btrfs_path *path;
2570 struct extent_buffer *leaf;
2571 struct btrfs_key key;
2572 int ret, err;
2573
2574 path = btrfs_alloc_path();
2575 if (!path)
2576 return -ENOMEM;
2577
2578 trans = btrfs_start_transaction(root, 0);
2579 if (IS_ERR(trans)) {
2580 btrfs_free_path(path);
2581 return PTR_ERR(trans);
2582 }
2583
2584 key.objectid = BTRFS_BALANCE_OBJECTID;
2585 key.type = BTRFS_BALANCE_ITEM_KEY;
2586 key.offset = 0;
2587
2588 ret = btrfs_insert_empty_item(trans, root, path, &key,
2589 sizeof(*item));
2590 if (ret)
2591 goto out;
2592
2593 leaf = path->nodes[0];
2594 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2595
2596 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2597
2598 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2599 btrfs_set_balance_data(leaf, item, &disk_bargs);
2600 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2601 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2602 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2603 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2604
2605 btrfs_set_balance_flags(leaf, item, bctl->flags);
2606
2607 btrfs_mark_buffer_dirty(leaf);
2608out:
2609 btrfs_free_path(path);
2610 err = btrfs_commit_transaction(trans, root);
2611 if (err && !ret)
2612 ret = err;
2613 return ret;
2614}
2615
2616static int del_balance_item(struct btrfs_root *root)
2617{
2618 struct btrfs_trans_handle *trans;
2619 struct btrfs_path *path;
2620 struct btrfs_key key;
2621 int ret, err;
2622
2623 path = btrfs_alloc_path();
2624 if (!path)
2625 return -ENOMEM;
2626
2627 trans = btrfs_start_transaction(root, 0);
2628 if (IS_ERR(trans)) {
2629 btrfs_free_path(path);
2630 return PTR_ERR(trans);
2631 }
2632
2633 key.objectid = BTRFS_BALANCE_OBJECTID;
2634 key.type = BTRFS_BALANCE_ITEM_KEY;
2635 key.offset = 0;
2636
2637 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2638 if (ret < 0)
2639 goto out;
2640 if (ret > 0) {
2641 ret = -ENOENT;
2642 goto out;
2643 }
2644
2645 ret = btrfs_del_item(trans, root, path);
2646out:
2647 btrfs_free_path(path);
2648 err = btrfs_commit_transaction(trans, root);
2649 if (err && !ret)
2650 ret = err;
2651 return ret;
2652}
2653
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002654/*
Ilya Dryomov59641012012-01-16 22:04:48 +02002655 * This is a heuristic used to reduce the number of chunks balanced on
2656 * resume after balance was interrupted.
2657 */
2658static void update_balance_args(struct btrfs_balance_control *bctl)
2659{
2660 /*
2661 * Turn on soft mode for chunk types that were being converted.
2662 */
2663 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
2664 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
2665 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
2666 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
2667 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
2668 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
2669
2670 /*
2671 * Turn on usage filter if is not already used. The idea is
2672 * that chunks that we have already balanced should be
2673 * reasonably full. Don't do it for chunks that are being
2674 * converted - that will keep us from relocating unconverted
2675 * (albeit full) chunks.
2676 */
2677 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2678 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2679 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
2680 bctl->data.usage = 90;
2681 }
2682 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2683 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2684 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
2685 bctl->sys.usage = 90;
2686 }
2687 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2688 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2689 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
2690 bctl->meta.usage = 90;
2691 }
2692}
2693
2694/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002695 * Should be called with both balance and volume mutexes held to
2696 * serialize other volume operations (add_dev/rm_dev/resize) with
2697 * restriper. Same goes for unset_balance_control.
2698 */
2699static void set_balance_control(struct btrfs_balance_control *bctl)
2700{
2701 struct btrfs_fs_info *fs_info = bctl->fs_info;
2702
2703 BUG_ON(fs_info->balance_ctl);
2704
2705 spin_lock(&fs_info->balance_lock);
2706 fs_info->balance_ctl = bctl;
2707 spin_unlock(&fs_info->balance_lock);
2708}
2709
2710static void unset_balance_control(struct btrfs_fs_info *fs_info)
2711{
2712 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
2713
2714 BUG_ON(!fs_info->balance_ctl);
2715
2716 spin_lock(&fs_info->balance_lock);
2717 fs_info->balance_ctl = NULL;
2718 spin_unlock(&fs_info->balance_lock);
2719
2720 kfree(bctl);
2721}
2722
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002723/*
2724 * Balance filters. Return 1 if chunk should be filtered out
2725 * (should not be balanced).
2726 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002727static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002728 struct btrfs_balance_args *bargs)
2729{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002730 chunk_type = chunk_to_extended(chunk_type) &
2731 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002732
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002733 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002734 return 0;
2735
2736 return 1;
2737}
2738
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002739static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
2740 struct btrfs_balance_args *bargs)
2741{
2742 struct btrfs_block_group_cache *cache;
2743 u64 chunk_used, user_thresh;
2744 int ret = 1;
2745
2746 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2747 chunk_used = btrfs_block_group_used(&cache->item);
2748
Ilya Dryomova105bb82013-01-21 15:15:56 +02002749 if (bargs->usage == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00002750 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02002751 else if (bargs->usage > 100)
2752 user_thresh = cache->key.offset;
2753 else
2754 user_thresh = div_factor_fine(cache->key.offset,
2755 bargs->usage);
2756
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002757 if (chunk_used < user_thresh)
2758 ret = 0;
2759
2760 btrfs_put_block_group(cache);
2761 return ret;
2762}
2763
Ilya Dryomov409d4042012-01-16 22:04:47 +02002764static int chunk_devid_filter(struct extent_buffer *leaf,
2765 struct btrfs_chunk *chunk,
2766 struct btrfs_balance_args *bargs)
2767{
2768 struct btrfs_stripe *stripe;
2769 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2770 int i;
2771
2772 for (i = 0; i < num_stripes; i++) {
2773 stripe = btrfs_stripe_nr(chunk, i);
2774 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
2775 return 0;
2776 }
2777
2778 return 1;
2779}
2780
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002781/* [pstart, pend) */
2782static int chunk_drange_filter(struct extent_buffer *leaf,
2783 struct btrfs_chunk *chunk,
2784 u64 chunk_offset,
2785 struct btrfs_balance_args *bargs)
2786{
2787 struct btrfs_stripe *stripe;
2788 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2789 u64 stripe_offset;
2790 u64 stripe_length;
2791 int factor;
2792 int i;
2793
2794 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
2795 return 0;
2796
2797 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05002798 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
2799 factor = num_stripes / 2;
2800 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
2801 factor = num_stripes - 1;
2802 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
2803 factor = num_stripes - 2;
2804 } else {
2805 factor = num_stripes;
2806 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002807
2808 for (i = 0; i < num_stripes; i++) {
2809 stripe = btrfs_stripe_nr(chunk, i);
2810 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
2811 continue;
2812
2813 stripe_offset = btrfs_stripe_offset(leaf, stripe);
2814 stripe_length = btrfs_chunk_length(leaf, chunk);
2815 do_div(stripe_length, factor);
2816
2817 if (stripe_offset < bargs->pend &&
2818 stripe_offset + stripe_length > bargs->pstart)
2819 return 0;
2820 }
2821
2822 return 1;
2823}
2824
Ilya Dryomovea671762012-01-16 22:04:48 +02002825/* [vstart, vend) */
2826static int chunk_vrange_filter(struct extent_buffer *leaf,
2827 struct btrfs_chunk *chunk,
2828 u64 chunk_offset,
2829 struct btrfs_balance_args *bargs)
2830{
2831 if (chunk_offset < bargs->vend &&
2832 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
2833 /* at least part of the chunk is inside this vrange */
2834 return 0;
2835
2836 return 1;
2837}
2838
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002839static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002840 struct btrfs_balance_args *bargs)
2841{
2842 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
2843 return 0;
2844
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002845 chunk_type = chunk_to_extended(chunk_type) &
2846 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002847
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002848 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002849 return 1;
2850
2851 return 0;
2852}
2853
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002854static int should_balance_chunk(struct btrfs_root *root,
2855 struct extent_buffer *leaf,
2856 struct btrfs_chunk *chunk, u64 chunk_offset)
2857{
2858 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
2859 struct btrfs_balance_args *bargs = NULL;
2860 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
2861
2862 /* type filter */
2863 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
2864 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
2865 return 0;
2866 }
2867
2868 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
2869 bargs = &bctl->data;
2870 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
2871 bargs = &bctl->sys;
2872 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
2873 bargs = &bctl->meta;
2874
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002875 /* profiles filter */
2876 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
2877 chunk_profiles_filter(chunk_type, bargs)) {
2878 return 0;
2879 }
2880
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002881 /* usage filter */
2882 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
2883 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
2884 return 0;
2885 }
2886
Ilya Dryomov409d4042012-01-16 22:04:47 +02002887 /* devid filter */
2888 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
2889 chunk_devid_filter(leaf, chunk, bargs)) {
2890 return 0;
2891 }
2892
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002893 /* drange filter, makes sense only with devid filter */
2894 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
2895 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
2896 return 0;
2897 }
2898
Ilya Dryomovea671762012-01-16 22:04:48 +02002899 /* vrange filter */
2900 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
2901 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
2902 return 0;
2903 }
2904
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002905 /* soft profile changing mode */
2906 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
2907 chunk_soft_convert_filter(chunk_type, bargs)) {
2908 return 0;
2909 }
2910
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002911 return 1;
2912}
2913
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002914static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04002915{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002916 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002917 struct btrfs_root *chunk_root = fs_info->chunk_root;
2918 struct btrfs_root *dev_root = fs_info->dev_root;
2919 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04002920 struct btrfs_device *device;
2921 u64 old_size;
2922 u64 size_to_free;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002923 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04002924 struct btrfs_path *path;
2925 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04002926 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002927 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002928 struct extent_buffer *leaf;
2929 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002930 int ret;
2931 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002932 bool counting = true;
Chris Masonec44a352008-04-28 15:29:52 -04002933
Chris Masonec44a352008-04-28 15:29:52 -04002934 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002935 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002936 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04002937 old_size = device->total_bytes;
2938 size_to_free = div_factor(old_size, 1);
2939 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05002940 if (!device->writeable ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01002941 device->total_bytes - device->bytes_used > size_to_free ||
2942 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04002943 continue;
2944
2945 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04002946 if (ret == -ENOSPC)
2947 break;
Chris Masonec44a352008-04-28 15:29:52 -04002948 BUG_ON(ret);
2949
Yan, Zhenga22285a2010-05-16 10:48:46 -04002950 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002951 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04002952
2953 ret = btrfs_grow_device(trans, device, old_size);
2954 BUG_ON(ret);
2955
2956 btrfs_end_transaction(trans, dev_root);
2957 }
2958
2959 /* step two, relocate all the chunks */
2960 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07002961 if (!path) {
2962 ret = -ENOMEM;
2963 goto error;
2964 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002965
2966 /* zero out stat counters */
2967 spin_lock(&fs_info->balance_lock);
2968 memset(&bctl->stat, 0, sizeof(bctl->stat));
2969 spin_unlock(&fs_info->balance_lock);
2970again:
Chris Masonec44a352008-04-28 15:29:52 -04002971 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2972 key.offset = (u64)-1;
2973 key.type = BTRFS_CHUNK_ITEM_KEY;
2974
Chris Masond3977122009-01-05 21:25:51 -05002975 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002976 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002977 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002978 ret = -ECANCELED;
2979 goto error;
2980 }
2981
Chris Masonec44a352008-04-28 15:29:52 -04002982 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2983 if (ret < 0)
2984 goto error;
2985
2986 /*
2987 * this shouldn't happen, it means the last relocate
2988 * failed
2989 */
2990 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002991 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04002992
2993 ret = btrfs_previous_item(chunk_root, path, 0,
2994 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002995 if (ret) {
2996 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04002997 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002998 }
Chris Mason7d9eb122008-07-08 14:19:17 -04002999
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003000 leaf = path->nodes[0];
3001 slot = path->slots[0];
3002 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3003
Chris Masonec44a352008-04-28 15:29:52 -04003004 if (found_key.objectid != key.objectid)
3005 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04003006
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003007 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3008
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003009 if (!counting) {
3010 spin_lock(&fs_info->balance_lock);
3011 bctl->stat.considered++;
3012 spin_unlock(&fs_info->balance_lock);
3013 }
3014
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003015 ret = should_balance_chunk(chunk_root, leaf, chunk,
3016 found_key.offset);
David Sterbab3b4aa72011-04-21 01:20:15 +02003017 btrfs_release_path(path);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003018 if (!ret)
3019 goto loop;
3020
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003021 if (counting) {
3022 spin_lock(&fs_info->balance_lock);
3023 bctl->stat.expected++;
3024 spin_unlock(&fs_info->balance_lock);
3025 goto loop;
3026 }
3027
Chris Masonec44a352008-04-28 15:29:52 -04003028 ret = btrfs_relocate_chunk(chunk_root,
3029 chunk_root->root_key.objectid,
3030 found_key.objectid,
3031 found_key.offset);
Josef Bacik508794e2011-07-02 21:24:41 +00003032 if (ret && ret != -ENOSPC)
3033 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003034 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003035 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003036 } else {
3037 spin_lock(&fs_info->balance_lock);
3038 bctl->stat.completed++;
3039 spin_unlock(&fs_info->balance_lock);
3040 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003041loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003042 if (found_key.offset == 0)
3043 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003044 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003045 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003046
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003047 if (counting) {
3048 btrfs_release_path(path);
3049 counting = false;
3050 goto again;
3051 }
Chris Masonec44a352008-04-28 15:29:52 -04003052error:
3053 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003054 if (enospc_errors) {
3055 printk(KERN_INFO "btrfs: %d enospc errors during balance\n",
3056 enospc_errors);
3057 if (!ret)
3058 ret = -ENOSPC;
3059 }
3060
Chris Masonec44a352008-04-28 15:29:52 -04003061 return ret;
3062}
3063
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003064/**
3065 * alloc_profile_is_valid - see if a given profile is valid and reduced
3066 * @flags: profile to validate
3067 * @extended: if true @flags is treated as an extended profile
3068 */
3069static int alloc_profile_is_valid(u64 flags, int extended)
3070{
3071 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3072 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3073
3074 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3075
3076 /* 1) check that all other bits are zeroed */
3077 if (flags & ~mask)
3078 return 0;
3079
3080 /* 2) see if profile is reduced */
3081 if (flags == 0)
3082 return !extended; /* "0" is valid for usual profiles */
3083
3084 /* true if exactly one bit set */
3085 return (flags & (flags - 1)) == 0;
3086}
3087
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003088static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3089{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003090 /* cancel requested || normal exit path */
3091 return atomic_read(&fs_info->balance_cancel_req) ||
3092 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3093 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003094}
3095
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003096static void __cancel_balance(struct btrfs_fs_info *fs_info)
3097{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003098 int ret;
3099
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003100 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003101 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003102 if (ret)
3103 btrfs_std_error(fs_info, ret);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003104
3105 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003106}
3107
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003108/*
3109 * Should be called with both balance and volume mutexes held
3110 */
3111int btrfs_balance(struct btrfs_balance_control *bctl,
3112 struct btrfs_ioctl_balance_args *bargs)
3113{
3114 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003115 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003116 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003117 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003118 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003119 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003120
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003121 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003122 atomic_read(&fs_info->balance_pause_req) ||
3123 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003124 ret = -EINVAL;
3125 goto out;
3126 }
3127
Ilya Dryomove4837f82012-03-27 17:09:17 +03003128 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3129 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3130 mixed = 1;
3131
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003132 /*
3133 * In case of mixed groups both data and meta should be picked,
3134 * and identical options should be given for both of them.
3135 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003136 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3137 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003138 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3139 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3140 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
3141 printk(KERN_ERR "btrfs: with mixed groups data and "
3142 "metadata balance options must be the same\n");
3143 ret = -EINVAL;
3144 goto out;
3145 }
3146 }
3147
Stefan Behrens8dabb742012-11-06 13:15:27 +01003148 num_devices = fs_info->fs_devices->num_devices;
3149 btrfs_dev_replace_lock(&fs_info->dev_replace);
3150 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3151 BUG_ON(num_devices < 1);
3152 num_devices--;
3153 }
3154 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003155 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003156 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003157 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003158 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003159 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003160 if (num_devices > 2)
3161 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3162 if (num_devices > 3)
3163 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3164 BTRFS_BLOCK_GROUP_RAID6);
Ilya Dryomov6728b192012-03-27 17:09:17 +03003165 if ((bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3166 (!alloc_profile_is_valid(bctl->data.target, 1) ||
3167 (bctl->data.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003168 printk(KERN_ERR "btrfs: unable to start balance with target "
3169 "data profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003170 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003171 ret = -EINVAL;
3172 goto out;
3173 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003174 if ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3175 (!alloc_profile_is_valid(bctl->meta.target, 1) ||
3176 (bctl->meta.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003177 printk(KERN_ERR "btrfs: unable to start balance with target "
3178 "metadata profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003179 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003180 ret = -EINVAL;
3181 goto out;
3182 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003183 if ((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3184 (!alloc_profile_is_valid(bctl->sys.target, 1) ||
3185 (bctl->sys.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003186 printk(KERN_ERR "btrfs: unable to start balance with target "
3187 "system profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003188 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003189 ret = -EINVAL;
3190 goto out;
3191 }
3192
Ilya Dryomove4837f82012-03-27 17:09:17 +03003193 /* allow dup'ed data chunks only in mixed mode */
3194 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
Ilya Dryomov6728b192012-03-27 17:09:17 +03003195 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003196 printk(KERN_ERR "btrfs: dup for data is not allowed\n");
3197 ret = -EINVAL;
3198 goto out;
3199 }
3200
3201 /* allow to reduce meta or sys integrity only if force set */
3202 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003203 BTRFS_BLOCK_GROUP_RAID10 |
3204 BTRFS_BLOCK_GROUP_RAID5 |
3205 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003206 do {
3207 seq = read_seqbegin(&fs_info->profiles_lock);
3208
3209 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3210 (fs_info->avail_system_alloc_bits & allowed) &&
3211 !(bctl->sys.target & allowed)) ||
3212 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3213 (fs_info->avail_metadata_alloc_bits & allowed) &&
3214 !(bctl->meta.target & allowed))) {
3215 if (bctl->flags & BTRFS_BALANCE_FORCE) {
3216 printk(KERN_INFO "btrfs: force reducing metadata "
3217 "integrity\n");
3218 } else {
3219 printk(KERN_ERR "btrfs: balance will reduce metadata "
3220 "integrity, use force if you want this\n");
3221 ret = -EINVAL;
3222 goto out;
3223 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003224 }
Miao Xiede98ced2013-01-29 10:13:12 +00003225 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003226
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003227 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3228 int num_tolerated_disk_barrier_failures;
3229 u64 target = bctl->sys.target;
3230
3231 num_tolerated_disk_barrier_failures =
3232 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3233 if (num_tolerated_disk_barrier_failures > 0 &&
3234 (target &
3235 (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3236 BTRFS_AVAIL_ALLOC_BIT_SINGLE)))
3237 num_tolerated_disk_barrier_failures = 0;
3238 else if (num_tolerated_disk_barrier_failures > 1 &&
3239 (target &
3240 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)))
3241 num_tolerated_disk_barrier_failures = 1;
3242
3243 fs_info->num_tolerated_disk_barrier_failures =
3244 num_tolerated_disk_barrier_failures;
3245 }
3246
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003247 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003248 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003249 goto out;
3250
Ilya Dryomov59641012012-01-16 22:04:48 +02003251 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3252 BUG_ON(ret == -EEXIST);
3253 set_balance_control(bctl);
3254 } else {
3255 BUG_ON(ret != -EEXIST);
3256 spin_lock(&fs_info->balance_lock);
3257 update_balance_args(bctl);
3258 spin_unlock(&fs_info->balance_lock);
3259 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003260
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003261 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003262 mutex_unlock(&fs_info->balance_mutex);
3263
3264 ret = __btrfs_balance(fs_info);
3265
3266 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003267 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003268
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003269 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3270 fs_info->num_tolerated_disk_barrier_failures =
3271 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3272 }
3273
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003274 if (bargs) {
3275 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003276 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003277 }
3278
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003279 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3280 balance_need_close(fs_info)) {
3281 __cancel_balance(fs_info);
3282 }
3283
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003284 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003285
3286 return ret;
3287out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003288 if (bctl->flags & BTRFS_BALANCE_RESUME)
3289 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003290 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003291 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003292 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3293 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003294 return ret;
3295}
3296
3297static int balance_kthread(void *data)
3298{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003299 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003300 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003301
3302 mutex_lock(&fs_info->volume_mutex);
3303 mutex_lock(&fs_info->balance_mutex);
3304
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003305 if (fs_info->balance_ctl) {
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003306 printk(KERN_INFO "btrfs: continuing balance\n");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003307 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003308 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003309
3310 mutex_unlock(&fs_info->balance_mutex);
3311 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003312
Ilya Dryomov59641012012-01-16 22:04:48 +02003313 return ret;
3314}
3315
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003316int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3317{
3318 struct task_struct *tsk;
3319
3320 spin_lock(&fs_info->balance_lock);
3321 if (!fs_info->balance_ctl) {
3322 spin_unlock(&fs_info->balance_lock);
3323 return 0;
3324 }
3325 spin_unlock(&fs_info->balance_lock);
3326
3327 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
3328 printk(KERN_INFO "btrfs: force skipping balance\n");
3329 return 0;
3330 }
3331
3332 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303333 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003334}
3335
Ilya Dryomov68310a52012-06-22 12:24:12 -06003336int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003337{
Ilya Dryomov59641012012-01-16 22:04:48 +02003338 struct btrfs_balance_control *bctl;
3339 struct btrfs_balance_item *item;
3340 struct btrfs_disk_balance_args disk_bargs;
3341 struct btrfs_path *path;
3342 struct extent_buffer *leaf;
3343 struct btrfs_key key;
3344 int ret;
3345
3346 path = btrfs_alloc_path();
3347 if (!path)
3348 return -ENOMEM;
3349
Ilya Dryomov68310a52012-06-22 12:24:12 -06003350 key.objectid = BTRFS_BALANCE_OBJECTID;
3351 key.type = BTRFS_BALANCE_ITEM_KEY;
3352 key.offset = 0;
3353
3354 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3355 if (ret < 0)
3356 goto out;
3357 if (ret > 0) { /* ret = -ENOENT; */
3358 ret = 0;
3359 goto out;
3360 }
3361
Ilya Dryomov59641012012-01-16 22:04:48 +02003362 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3363 if (!bctl) {
3364 ret = -ENOMEM;
3365 goto out;
3366 }
3367
Ilya Dryomov59641012012-01-16 22:04:48 +02003368 leaf = path->nodes[0];
3369 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3370
Ilya Dryomov68310a52012-06-22 12:24:12 -06003371 bctl->fs_info = fs_info;
3372 bctl->flags = btrfs_balance_flags(leaf, item);
3373 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003374
3375 btrfs_balance_data(leaf, item, &disk_bargs);
3376 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3377 btrfs_balance_meta(leaf, item, &disk_bargs);
3378 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3379 btrfs_balance_sys(leaf, item, &disk_bargs);
3380 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3381
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003382 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3383
Ilya Dryomov68310a52012-06-22 12:24:12 -06003384 mutex_lock(&fs_info->volume_mutex);
3385 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003386
Ilya Dryomov68310a52012-06-22 12:24:12 -06003387 set_balance_control(bctl);
3388
3389 mutex_unlock(&fs_info->balance_mutex);
3390 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003391out:
3392 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003393 return ret;
3394}
3395
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003396int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3397{
3398 int ret = 0;
3399
3400 mutex_lock(&fs_info->balance_mutex);
3401 if (!fs_info->balance_ctl) {
3402 mutex_unlock(&fs_info->balance_mutex);
3403 return -ENOTCONN;
3404 }
3405
3406 if (atomic_read(&fs_info->balance_running)) {
3407 atomic_inc(&fs_info->balance_pause_req);
3408 mutex_unlock(&fs_info->balance_mutex);
3409
3410 wait_event(fs_info->balance_wait_q,
3411 atomic_read(&fs_info->balance_running) == 0);
3412
3413 mutex_lock(&fs_info->balance_mutex);
3414 /* we are good with balance_ctl ripped off from under us */
3415 BUG_ON(atomic_read(&fs_info->balance_running));
3416 atomic_dec(&fs_info->balance_pause_req);
3417 } else {
3418 ret = -ENOTCONN;
3419 }
3420
3421 mutex_unlock(&fs_info->balance_mutex);
3422 return ret;
3423}
3424
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003425int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3426{
3427 mutex_lock(&fs_info->balance_mutex);
3428 if (!fs_info->balance_ctl) {
3429 mutex_unlock(&fs_info->balance_mutex);
3430 return -ENOTCONN;
3431 }
3432
3433 atomic_inc(&fs_info->balance_cancel_req);
3434 /*
3435 * if we are running just wait and return, balance item is
3436 * deleted in btrfs_balance in this case
3437 */
3438 if (atomic_read(&fs_info->balance_running)) {
3439 mutex_unlock(&fs_info->balance_mutex);
3440 wait_event(fs_info->balance_wait_q,
3441 atomic_read(&fs_info->balance_running) == 0);
3442 mutex_lock(&fs_info->balance_mutex);
3443 } else {
3444 /* __cancel_balance needs volume_mutex */
3445 mutex_unlock(&fs_info->balance_mutex);
3446 mutex_lock(&fs_info->volume_mutex);
3447 mutex_lock(&fs_info->balance_mutex);
3448
3449 if (fs_info->balance_ctl)
3450 __cancel_balance(fs_info);
3451
3452 mutex_unlock(&fs_info->volume_mutex);
3453 }
3454
3455 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3456 atomic_dec(&fs_info->balance_cancel_req);
3457 mutex_unlock(&fs_info->balance_mutex);
3458 return 0;
3459}
3460
Stefan Behrens803b2f52013-08-15 17:11:21 +02003461static int btrfs_uuid_scan_kthread(void *data)
3462{
3463 struct btrfs_fs_info *fs_info = data;
3464 struct btrfs_root *root = fs_info->tree_root;
3465 struct btrfs_key key;
3466 struct btrfs_key max_key;
3467 struct btrfs_path *path = NULL;
3468 int ret = 0;
3469 struct extent_buffer *eb;
3470 int slot;
3471 struct btrfs_root_item root_item;
3472 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003473 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003474
3475 path = btrfs_alloc_path();
3476 if (!path) {
3477 ret = -ENOMEM;
3478 goto out;
3479 }
3480
3481 key.objectid = 0;
3482 key.type = BTRFS_ROOT_ITEM_KEY;
3483 key.offset = 0;
3484
3485 max_key.objectid = (u64)-1;
3486 max_key.type = BTRFS_ROOT_ITEM_KEY;
3487 max_key.offset = (u64)-1;
3488
3489 path->keep_locks = 1;
3490
3491 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003492 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003493 if (ret) {
3494 if (ret > 0)
3495 ret = 0;
3496 break;
3497 }
3498
3499 if (key.type != BTRFS_ROOT_ITEM_KEY ||
3500 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
3501 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
3502 key.objectid > BTRFS_LAST_FREE_OBJECTID)
3503 goto skip;
3504
3505 eb = path->nodes[0];
3506 slot = path->slots[0];
3507 item_size = btrfs_item_size_nr(eb, slot);
3508 if (item_size < sizeof(root_item))
3509 goto skip;
3510
Stefan Behrens803b2f52013-08-15 17:11:21 +02003511 read_extent_buffer(eb, &root_item,
3512 btrfs_item_ptr_offset(eb, slot),
3513 (int)sizeof(root_item));
3514 if (btrfs_root_refs(&root_item) == 0)
3515 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003516
3517 if (!btrfs_is_empty_uuid(root_item.uuid) ||
3518 !btrfs_is_empty_uuid(root_item.received_uuid)) {
3519 if (trans)
3520 goto update_tree;
3521
3522 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003523 /*
3524 * 1 - subvol uuid item
3525 * 1 - received_subvol uuid item
3526 */
3527 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
3528 if (IS_ERR(trans)) {
3529 ret = PTR_ERR(trans);
3530 break;
3531 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003532 continue;
3533 } else {
3534 goto skip;
3535 }
3536update_tree:
3537 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02003538 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3539 root_item.uuid,
3540 BTRFS_UUID_KEY_SUBVOL,
3541 key.objectid);
3542 if (ret < 0) {
3543 pr_warn("btrfs: uuid_tree_add failed %d\n",
3544 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003545 break;
3546 }
3547 }
3548
3549 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02003550 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3551 root_item.received_uuid,
3552 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
3553 key.objectid);
3554 if (ret < 0) {
3555 pr_warn("btrfs: uuid_tree_add failed %d\n",
3556 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003557 break;
3558 }
3559 }
3560
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003561skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02003562 if (trans) {
3563 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003564 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003565 if (ret)
3566 break;
3567 }
3568
Stefan Behrens803b2f52013-08-15 17:11:21 +02003569 btrfs_release_path(path);
3570 if (key.offset < (u64)-1) {
3571 key.offset++;
3572 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
3573 key.offset = 0;
3574 key.type = BTRFS_ROOT_ITEM_KEY;
3575 } else if (key.objectid < (u64)-1) {
3576 key.offset = 0;
3577 key.type = BTRFS_ROOT_ITEM_KEY;
3578 key.objectid++;
3579 } else {
3580 break;
3581 }
3582 cond_resched();
3583 }
3584
3585out:
3586 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003587 if (trans && !IS_ERR(trans))
3588 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003589 if (ret)
3590 pr_warn("btrfs: btrfs_uuid_scan_kthread failed %d\n", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02003591 else
3592 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003593 up(&fs_info->uuid_tree_rescan_sem);
3594 return 0;
3595}
3596
Stefan Behrens70f80172013-08-15 17:11:23 +02003597/*
3598 * Callback for btrfs_uuid_tree_iterate().
3599 * returns:
3600 * 0 check succeeded, the entry is not outdated.
3601 * < 0 if an error occured.
3602 * > 0 if the check failed, which means the caller shall remove the entry.
3603 */
3604static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
3605 u8 *uuid, u8 type, u64 subid)
3606{
3607 struct btrfs_key key;
3608 int ret = 0;
3609 struct btrfs_root *subvol_root;
3610
3611 if (type != BTRFS_UUID_KEY_SUBVOL &&
3612 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
3613 goto out;
3614
3615 key.objectid = subid;
3616 key.type = BTRFS_ROOT_ITEM_KEY;
3617 key.offset = (u64)-1;
3618 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
3619 if (IS_ERR(subvol_root)) {
3620 ret = PTR_ERR(subvol_root);
3621 if (ret == -ENOENT)
3622 ret = 1;
3623 goto out;
3624 }
3625
3626 switch (type) {
3627 case BTRFS_UUID_KEY_SUBVOL:
3628 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
3629 ret = 1;
3630 break;
3631 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
3632 if (memcmp(uuid, subvol_root->root_item.received_uuid,
3633 BTRFS_UUID_SIZE))
3634 ret = 1;
3635 break;
3636 }
3637
3638out:
3639 return ret;
3640}
3641
3642static int btrfs_uuid_rescan_kthread(void *data)
3643{
3644 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
3645 int ret;
3646
3647 /*
3648 * 1st step is to iterate through the existing UUID tree and
3649 * to delete all entries that contain outdated data.
3650 * 2nd step is to add all missing entries to the UUID tree.
3651 */
3652 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
3653 if (ret < 0) {
3654 pr_warn("btrfs: iterating uuid_tree failed %d\n", ret);
3655 up(&fs_info->uuid_tree_rescan_sem);
3656 return ret;
3657 }
3658 return btrfs_uuid_scan_kthread(data);
3659}
3660
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003661int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
3662{
3663 struct btrfs_trans_handle *trans;
3664 struct btrfs_root *tree_root = fs_info->tree_root;
3665 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003666 struct task_struct *task;
3667 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003668
3669 /*
3670 * 1 - root node
3671 * 1 - root item
3672 */
3673 trans = btrfs_start_transaction(tree_root, 2);
3674 if (IS_ERR(trans))
3675 return PTR_ERR(trans);
3676
3677 uuid_root = btrfs_create_tree(trans, fs_info,
3678 BTRFS_UUID_TREE_OBJECTID);
3679 if (IS_ERR(uuid_root)) {
3680 btrfs_abort_transaction(trans, tree_root,
3681 PTR_ERR(uuid_root));
3682 return PTR_ERR(uuid_root);
3683 }
3684
3685 fs_info->uuid_root = uuid_root;
3686
Stefan Behrens803b2f52013-08-15 17:11:21 +02003687 ret = btrfs_commit_transaction(trans, tree_root);
3688 if (ret)
3689 return ret;
3690
3691 down(&fs_info->uuid_tree_rescan_sem);
3692 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
3693 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02003694 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Stefan Behrens803b2f52013-08-15 17:11:21 +02003695 pr_warn("btrfs: failed to start uuid_scan task\n");
3696 up(&fs_info->uuid_tree_rescan_sem);
3697 return PTR_ERR(task);
3698 }
3699
3700 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003701}
Stefan Behrens803b2f52013-08-15 17:11:21 +02003702
Stefan Behrens70f80172013-08-15 17:11:23 +02003703int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
3704{
3705 struct task_struct *task;
3706
3707 down(&fs_info->uuid_tree_rescan_sem);
3708 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
3709 if (IS_ERR(task)) {
3710 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
3711 pr_warn("btrfs: failed to start uuid_rescan task\n");
3712 up(&fs_info->uuid_tree_rescan_sem);
3713 return PTR_ERR(task);
3714 }
3715
3716 return 0;
3717}
3718
Chris Mason8f18cf12008-04-25 16:53:30 -04003719/*
3720 * shrinking a device means finding all of the device extents past
3721 * the new size, and then following the back refs to the chunks.
3722 * The chunk relocation code actually frees the device extent
3723 */
3724int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
3725{
3726 struct btrfs_trans_handle *trans;
3727 struct btrfs_root *root = device->dev_root;
3728 struct btrfs_dev_extent *dev_extent = NULL;
3729 struct btrfs_path *path;
3730 u64 length;
3731 u64 chunk_tree;
3732 u64 chunk_objectid;
3733 u64 chunk_offset;
3734 int ret;
3735 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04003736 int failed = 0;
3737 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04003738 struct extent_buffer *l;
3739 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02003740 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04003741 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04003742 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04003743 u64 diff = device->total_bytes - new_size;
3744
Stefan Behrens63a212a2012-11-05 18:29:28 +01003745 if (device->is_tgtdev_for_dev_replace)
3746 return -EINVAL;
3747
Chris Mason8f18cf12008-04-25 16:53:30 -04003748 path = btrfs_alloc_path();
3749 if (!path)
3750 return -ENOMEM;
3751
Chris Mason8f18cf12008-04-25 16:53:30 -04003752 path->reada = 2;
3753
Chris Mason7d9eb122008-07-08 14:19:17 -04003754 lock_chunks(root);
3755
Chris Mason8f18cf12008-04-25 16:53:30 -04003756 device->total_bytes = new_size;
Josef Bacik2bf64752011-09-26 17:12:22 -04003757 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05003758 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003759 spin_lock(&root->fs_info->free_chunk_lock);
3760 root->fs_info->free_chunk_space -= diff;
3761 spin_unlock(&root->fs_info->free_chunk_lock);
3762 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003763 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003764
Josef Bacikba1bf482009-09-11 16:11:19 -04003765again:
Chris Mason8f18cf12008-04-25 16:53:30 -04003766 key.objectid = device->devid;
3767 key.offset = (u64)-1;
3768 key.type = BTRFS_DEV_EXTENT_KEY;
3769
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003770 do {
Chris Mason8f18cf12008-04-25 16:53:30 -04003771 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3772 if (ret < 0)
3773 goto done;
3774
3775 ret = btrfs_previous_item(root, path, 0, key.type);
3776 if (ret < 0)
3777 goto done;
3778 if (ret) {
3779 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003780 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003781 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04003782 }
3783
3784 l = path->nodes[0];
3785 slot = path->slots[0];
3786 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
3787
Josef Bacikba1bf482009-09-11 16:11:19 -04003788 if (key.objectid != device->devid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003789 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003790 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003791 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003792
3793 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3794 length = btrfs_dev_extent_length(l, dev_extent);
3795
Josef Bacikba1bf482009-09-11 16:11:19 -04003796 if (key.offset + length <= new_size) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003797 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04003798 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003799 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003800
3801 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
3802 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
3803 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02003804 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003805
3806 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
3807 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003808 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04003809 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04003810 if (ret == -ENOSPC)
3811 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003812 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04003813
3814 if (failed && !retried) {
3815 failed = 0;
3816 retried = true;
3817 goto again;
3818 } else if (failed && retried) {
3819 ret = -ENOSPC;
3820 lock_chunks(root);
3821
3822 device->total_bytes = old_size;
3823 if (device->writeable)
3824 device->fs_devices->total_rw_bytes += diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003825 spin_lock(&root->fs_info->free_chunk_lock);
3826 root->fs_info->free_chunk_space += diff;
3827 spin_unlock(&root->fs_info->free_chunk_lock);
Josef Bacikba1bf482009-09-11 16:11:19 -04003828 unlock_chunks(root);
3829 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04003830 }
3831
Chris Balld6397ba2009-04-27 07:29:03 -04003832 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003833 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003834 if (IS_ERR(trans)) {
3835 ret = PTR_ERR(trans);
3836 goto done;
3837 }
3838
Chris Balld6397ba2009-04-27 07:29:03 -04003839 lock_chunks(root);
3840
3841 device->disk_total_bytes = new_size;
3842 /* Now btrfs_update_device() will change the on-disk size. */
3843 ret = btrfs_update_device(trans, device);
3844 if (ret) {
3845 unlock_chunks(root);
3846 btrfs_end_transaction(trans, root);
3847 goto done;
3848 }
3849 WARN_ON(diff > old_total);
3850 btrfs_set_super_total_bytes(super_copy, old_total - diff);
3851 unlock_chunks(root);
3852 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003853done:
3854 btrfs_free_path(path);
3855 return ret;
3856}
3857
Li Zefan125ccb02011-12-08 15:07:24 +08003858static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003859 struct btrfs_key *key,
3860 struct btrfs_chunk *chunk, int item_size)
3861{
David Sterba6c417612011-04-13 15:41:04 +02003862 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04003863 struct btrfs_disk_key disk_key;
3864 u32 array_size;
3865 u8 *ptr;
3866
3867 array_size = btrfs_super_sys_array_size(super_copy);
3868 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
3869 return -EFBIG;
3870
3871 ptr = super_copy->sys_chunk_array + array_size;
3872 btrfs_cpu_key_to_disk(&disk_key, key);
3873 memcpy(ptr, &disk_key, sizeof(disk_key));
3874 ptr += sizeof(disk_key);
3875 memcpy(ptr, chunk, item_size);
3876 item_size += sizeof(disk_key);
3877 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
3878 return 0;
3879}
3880
Miao Xieb2117a32011-01-05 10:07:28 +00003881/*
Arne Jansen73c5de02011-04-12 12:07:57 +02003882 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00003883 */
Arne Jansen73c5de02011-04-12 12:07:57 +02003884static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00003885{
Arne Jansen73c5de02011-04-12 12:07:57 +02003886 const struct btrfs_device_info *di_a = a;
3887 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00003888
Arne Jansen73c5de02011-04-12 12:07:57 +02003889 if (di_a->max_avail > di_b->max_avail)
3890 return -1;
3891 if (di_a->max_avail < di_b->max_avail)
3892 return 1;
3893 if (di_a->total_avail > di_b->total_avail)
3894 return -1;
3895 if (di_a->total_avail < di_b->total_avail)
3896 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00003897 return 0;
3898}
3899
Eric Sandeen48a3b632013-04-25 20:41:01 +00003900static struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
Miao Xiee6ec7162013-01-17 05:38:51 +00003901 [BTRFS_RAID_RAID10] = {
3902 .sub_stripes = 2,
3903 .dev_stripes = 1,
3904 .devs_max = 0, /* 0 == as many as possible */
3905 .devs_min = 4,
3906 .devs_increment = 2,
3907 .ncopies = 2,
3908 },
3909 [BTRFS_RAID_RAID1] = {
3910 .sub_stripes = 1,
3911 .dev_stripes = 1,
3912 .devs_max = 2,
3913 .devs_min = 2,
3914 .devs_increment = 2,
3915 .ncopies = 2,
3916 },
3917 [BTRFS_RAID_DUP] = {
3918 .sub_stripes = 1,
3919 .dev_stripes = 2,
3920 .devs_max = 1,
3921 .devs_min = 1,
3922 .devs_increment = 1,
3923 .ncopies = 2,
3924 },
3925 [BTRFS_RAID_RAID0] = {
3926 .sub_stripes = 1,
3927 .dev_stripes = 1,
3928 .devs_max = 0,
3929 .devs_min = 2,
3930 .devs_increment = 1,
3931 .ncopies = 1,
3932 },
3933 [BTRFS_RAID_SINGLE] = {
3934 .sub_stripes = 1,
3935 .dev_stripes = 1,
3936 .devs_max = 1,
3937 .devs_min = 1,
3938 .devs_increment = 1,
3939 .ncopies = 1,
3940 },
Chris Masone942f882013-02-20 14:06:05 -05003941 [BTRFS_RAID_RAID5] = {
3942 .sub_stripes = 1,
3943 .dev_stripes = 1,
3944 .devs_max = 0,
3945 .devs_min = 2,
3946 .devs_increment = 1,
3947 .ncopies = 2,
3948 },
3949 [BTRFS_RAID_RAID6] = {
3950 .sub_stripes = 1,
3951 .dev_stripes = 1,
3952 .devs_max = 0,
3953 .devs_min = 3,
3954 .devs_increment = 1,
3955 .ncopies = 3,
3956 },
Liu Bo31e50222012-11-21 14:18:10 +00003957};
3958
David Woodhouse53b381b2013-01-29 18:40:14 -05003959static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
3960{
3961 /* TODO allow them to set a preferred stripe size */
3962 return 64 * 1024;
3963}
3964
3965static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
3966{
David Woodhouse53b381b2013-01-29 18:40:14 -05003967 if (!(type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)))
3968 return;
3969
Miao Xieceda0862013-04-11 10:30:16 +00003970 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05003971}
3972
Miao Xieb2117a32011-01-05 10:07:28 +00003973static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04003974 struct btrfs_root *extent_root, u64 start,
3975 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00003976{
3977 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00003978 struct btrfs_fs_devices *fs_devices = info->fs_devices;
3979 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02003980 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00003981 struct extent_map_tree *em_tree;
3982 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02003983 struct btrfs_device_info *devices_info = NULL;
3984 u64 total_avail;
3985 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05003986 int data_stripes; /* number of stripes that count for
3987 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02003988 int sub_stripes; /* sub_stripes info for map */
3989 int dev_stripes; /* stripes per dev */
3990 int devs_max; /* max devs to use */
3991 int devs_min; /* min devs needed */
3992 int devs_increment; /* ndevs has to be a multiple of this */
3993 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00003994 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02003995 u64 max_stripe_size;
3996 u64 max_chunk_size;
3997 u64 stripe_size;
3998 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05003999 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004000 int ndevs;
4001 int i;
4002 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004003 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004004
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004005 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004006
Miao Xieb2117a32011-01-05 10:07:28 +00004007 if (list_empty(&fs_devices->alloc_list))
4008 return -ENOSPC;
4009
Liu Bo31e50222012-11-21 14:18:10 +00004010 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004011
Liu Bo31e50222012-11-21 14:18:10 +00004012 sub_stripes = btrfs_raid_array[index].sub_stripes;
4013 dev_stripes = btrfs_raid_array[index].dev_stripes;
4014 devs_max = btrfs_raid_array[index].devs_max;
4015 devs_min = btrfs_raid_array[index].devs_min;
4016 devs_increment = btrfs_raid_array[index].devs_increment;
4017 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004018
4019 if (type & BTRFS_BLOCK_GROUP_DATA) {
4020 max_stripe_size = 1024 * 1024 * 1024;
4021 max_chunk_size = 10 * max_stripe_size;
4022 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004023 /* for larger filesystems, use larger metadata chunks */
4024 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
4025 max_stripe_size = 1024 * 1024 * 1024;
4026 else
4027 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004028 max_chunk_size = max_stripe_size;
4029 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05004030 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004031 max_chunk_size = 2 * max_stripe_size;
4032 } else {
4033 printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
4034 type);
4035 BUG_ON(1);
4036 }
4037
4038 /* we don't want a chunk larger than 10% of writeable space */
4039 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4040 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004041
4042 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
4043 GFP_NOFS);
4044 if (!devices_info)
4045 return -ENOMEM;
4046
Arne Jansen73c5de02011-04-12 12:07:57 +02004047 cur = fs_devices->alloc_list.next;
4048
4049 /*
4050 * in the first pass through the devices list, we gather information
4051 * about the available holes on each device.
4052 */
4053 ndevs = 0;
4054 while (cur != &fs_devices->alloc_list) {
4055 struct btrfs_device *device;
4056 u64 max_avail;
4057 u64 dev_offset;
4058
4059 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4060
4061 cur = cur->next;
4062
4063 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004064 WARN(1, KERN_ERR
Arne Jansen73c5de02011-04-12 12:07:57 +02004065 "btrfs: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004066 continue;
4067 }
4068
Stefan Behrens63a212a2012-11-05 18:29:28 +01004069 if (!device->in_fs_metadata ||
4070 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004071 continue;
4072
4073 if (device->total_bytes > device->bytes_used)
4074 total_avail = device->total_bytes - device->bytes_used;
4075 else
4076 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004077
4078 /* If there is no space on this device, skip it. */
4079 if (total_avail == 0)
4080 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004081
Josef Bacik6df9a952013-06-27 13:22:46 -04004082 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004083 max_stripe_size * dev_stripes,
4084 &dev_offset, &max_avail);
4085 if (ret && ret != -ENOSPC)
4086 goto error;
4087
4088 if (ret == 0)
4089 max_avail = max_stripe_size * dev_stripes;
4090
4091 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4092 continue;
4093
Eric Sandeen063d0062013-01-31 00:55:01 +00004094 if (ndevs == fs_devices->rw_devices) {
4095 WARN(1, "%s: found more than %llu devices\n",
4096 __func__, fs_devices->rw_devices);
4097 break;
4098 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004099 devices_info[ndevs].dev_offset = dev_offset;
4100 devices_info[ndevs].max_avail = max_avail;
4101 devices_info[ndevs].total_avail = total_avail;
4102 devices_info[ndevs].dev = device;
4103 ++ndevs;
4104 }
4105
4106 /*
4107 * now sort the devices by hole size / available space
4108 */
4109 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4110 btrfs_cmp_device_info, NULL);
4111
4112 /* round down to number of usable stripes */
4113 ndevs -= ndevs % devs_increment;
4114
4115 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4116 ret = -ENOSPC;
4117 goto error;
4118 }
4119
4120 if (devs_max && ndevs > devs_max)
4121 ndevs = devs_max;
4122 /*
4123 * the primary goal is to maximize the number of stripes, so use as many
4124 * devices as possible, even if the stripes are not maximum sized.
4125 */
4126 stripe_size = devices_info[ndevs-1].max_avail;
4127 num_stripes = ndevs * dev_stripes;
4128
David Woodhouse53b381b2013-01-29 18:40:14 -05004129 /*
4130 * this will have to be fixed for RAID1 and RAID10 over
4131 * more drives
4132 */
4133 data_stripes = num_stripes / ncopies;
4134
David Woodhouse53b381b2013-01-29 18:40:14 -05004135 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4136 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4137 btrfs_super_stripesize(info->super_copy));
4138 data_stripes = num_stripes - 1;
4139 }
4140 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4141 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4142 btrfs_super_stripesize(info->super_copy));
4143 data_stripes = num_stripes - 2;
4144 }
Chris Mason86db2572013-02-20 16:23:40 -05004145
4146 /*
4147 * Use the number of data stripes to figure out how big this chunk
4148 * is really going to be in terms of logical address space,
4149 * and compare that answer with the max chunk size
4150 */
4151 if (stripe_size * data_stripes > max_chunk_size) {
4152 u64 mask = (1ULL << 24) - 1;
4153 stripe_size = max_chunk_size;
4154 do_div(stripe_size, data_stripes);
4155
4156 /* bump the answer up to a 16MB boundary */
4157 stripe_size = (stripe_size + mask) & ~mask;
4158
4159 /* but don't go higher than the limits we found
4160 * while searching for free extents
4161 */
4162 if (stripe_size > devices_info[ndevs-1].max_avail)
4163 stripe_size = devices_info[ndevs-1].max_avail;
4164 }
4165
Arne Jansen73c5de02011-04-12 12:07:57 +02004166 do_div(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004167
4168 /* align to BTRFS_STRIPE_LEN */
David Woodhouse53b381b2013-01-29 18:40:14 -05004169 do_div(stripe_size, raid_stripe_len);
4170 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004171
Miao Xieb2117a32011-01-05 10:07:28 +00004172 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4173 if (!map) {
4174 ret = -ENOMEM;
4175 goto error;
4176 }
4177 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004178
Arne Jansen73c5de02011-04-12 12:07:57 +02004179 for (i = 0; i < ndevs; ++i) {
4180 for (j = 0; j < dev_stripes; ++j) {
4181 int s = i * dev_stripes + j;
4182 map->stripes[s].dev = devices_info[i].dev;
4183 map->stripes[s].physical = devices_info[i].dev_offset +
4184 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004185 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004186 }
Chris Mason593060d2008-03-25 16:50:33 -04004187 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004188 map->stripe_len = raid_stripe_len;
4189 map->io_align = raid_stripe_len;
4190 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004191 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004192 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004193
David Woodhouse53b381b2013-01-29 18:40:14 -05004194 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004195
Arne Jansen73c5de02011-04-12 12:07:57 +02004196 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004197
David Sterba172ddd62011-04-21 00:48:27 +02004198 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004199 if (!em) {
Miao Xieb2117a32011-01-05 10:07:28 +00004200 ret = -ENOMEM;
4201 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004202 }
Chris Mason0b86a832008-03-24 15:01:56 -04004203 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05004204 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004205 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004206 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004207 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004208 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004209
Chris Mason0b86a832008-03-24 15:01:56 -04004210 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004211 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004212 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004213 if (!ret) {
4214 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4215 atomic_inc(&em->refs);
4216 }
Chris Mason890871b2009-09-02 16:24:52 -04004217 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004218 if (ret) {
4219 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004220 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004221 }
Yan Zheng2b820322008-11-17 21:11:30 -05004222
Josef Bacik04487482013-01-29 15:03:37 -05004223 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4224 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4225 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004226 if (ret)
4227 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004228
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004229 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004230 check_raid56_incompat_flag(extent_root->fs_info, type);
4231
Miao Xieb2117a32011-01-05 10:07:28 +00004232 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004233 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004234
Josef Bacik6df9a952013-06-27 13:22:46 -04004235error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004236 write_lock(&em_tree->lock);
4237 remove_extent_mapping(em_tree, em);
4238 write_unlock(&em_tree->lock);
4239
4240 /* One for our allocation */
4241 free_extent_map(em);
4242 /* One for the tree reference */
4243 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004244error:
4245 kfree(map);
4246 kfree(devices_info);
4247 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004248}
4249
Josef Bacik6df9a952013-06-27 13:22:46 -04004250int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004251 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004252 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004253{
Yan Zheng2b820322008-11-17 21:11:30 -05004254 struct btrfs_key key;
4255 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4256 struct btrfs_device *device;
4257 struct btrfs_chunk *chunk;
4258 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004259 struct extent_map_tree *em_tree;
4260 struct extent_map *em;
4261 struct map_lookup *map;
4262 size_t item_size;
4263 u64 dev_offset;
4264 u64 stripe_size;
4265 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004266 int ret;
4267
Josef Bacik6df9a952013-06-27 13:22:46 -04004268 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4269 read_lock(&em_tree->lock);
4270 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4271 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004272
Josef Bacik6df9a952013-06-27 13:22:46 -04004273 if (!em) {
4274 btrfs_crit(extent_root->fs_info, "unable to find logical "
4275 "%Lu len %Lu", chunk_offset, chunk_size);
4276 return -EINVAL;
4277 }
4278
4279 if (em->start != chunk_offset || em->len != chunk_size) {
4280 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
4281 " %Lu-%Lu, found %Lu-%Lu\n", chunk_offset,
4282 chunk_size, em->start, em->len);
4283 free_extent_map(em);
4284 return -EINVAL;
4285 }
4286
4287 map = (struct map_lookup *)em->bdev;
4288 item_size = btrfs_chunk_item_size(map->num_stripes);
4289 stripe_size = em->orig_block_len;
4290
4291 chunk = kzalloc(item_size, GFP_NOFS);
4292 if (!chunk) {
4293 ret = -ENOMEM;
4294 goto out;
4295 }
4296
4297 for (i = 0; i < map->num_stripes; i++) {
4298 device = map->stripes[i].dev;
4299 dev_offset = map->stripes[i].physical;
4300
Yan Zheng2b820322008-11-17 21:11:30 -05004301 device->bytes_used += stripe_size;
4302 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004303 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004304 goto out;
4305 ret = btrfs_alloc_dev_extent(trans, device,
4306 chunk_root->root_key.objectid,
4307 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4308 chunk_offset, dev_offset,
4309 stripe_size);
4310 if (ret)
4311 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004312 }
4313
Josef Bacik2bf64752011-09-26 17:12:22 -04004314 spin_lock(&extent_root->fs_info->free_chunk_lock);
4315 extent_root->fs_info->free_chunk_space -= (stripe_size *
4316 map->num_stripes);
4317 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4318
Yan Zheng2b820322008-11-17 21:11:30 -05004319 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004320 for (i = 0; i < map->num_stripes; i++) {
4321 device = map->stripes[i].dev;
4322 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004323
4324 btrfs_set_stack_stripe_devid(stripe, device->devid);
4325 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4326 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4327 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004328 }
4329
4330 btrfs_set_stack_chunk_length(chunk, chunk_size);
4331 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4332 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4333 btrfs_set_stack_chunk_type(chunk, map->type);
4334 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4335 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4336 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4337 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4338 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4339
4340 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4341 key.type = BTRFS_CHUNK_ITEM_KEY;
4342 key.offset = chunk_offset;
4343
4344 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004345 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4346 /*
4347 * TODO: Cleanup of inserted chunk root in case of
4348 * failure.
4349 */
Li Zefan125ccb02011-12-08 15:07:24 +08004350 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004351 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004352 }
liubo1abe9b82011-03-24 11:18:59 +00004353
Josef Bacik6df9a952013-06-27 13:22:46 -04004354out:
Yan Zheng2b820322008-11-17 21:11:30 -05004355 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004356 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004357 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004358}
4359
4360/*
4361 * Chunk allocation falls into two parts. The first part does works
4362 * that make the new allocated chunk useable, but not do any operation
4363 * that modifies the chunk tree. The second part does the works that
4364 * require modifying the chunk tree. This division is important for the
4365 * bootstrap process of adding storage to a seed btrfs.
4366 */
4367int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4368 struct btrfs_root *extent_root, u64 type)
4369{
4370 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004371
Josef Bacik6df9a952013-06-27 13:22:46 -04004372 chunk_offset = find_next_chunk(extent_root->fs_info);
4373 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004374}
4375
Chris Masond3977122009-01-05 21:25:51 -05004376static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004377 struct btrfs_root *root,
4378 struct btrfs_device *device)
4379{
4380 u64 chunk_offset;
4381 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004382 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004383 struct btrfs_fs_info *fs_info = root->fs_info;
4384 struct btrfs_root *extent_root = fs_info->extent_root;
4385 int ret;
4386
Josef Bacik6df9a952013-06-27 13:22:46 -04004387 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004388 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004389 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4390 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004391 if (ret)
4392 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004393
Josef Bacik6df9a952013-06-27 13:22:46 -04004394 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004395 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004396 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4397 alloc_profile);
David Sterba005d6422012-09-18 07:52:32 -06004398 if (ret) {
4399 btrfs_abort_transaction(trans, root, ret);
4400 goto out;
4401 }
Yan Zheng2b820322008-11-17 21:11:30 -05004402
4403 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004404 if (ret)
David Sterba005d6422012-09-18 07:52:32 -06004405 btrfs_abort_transaction(trans, root, ret);
David Sterba005d6422012-09-18 07:52:32 -06004406out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004407 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004408}
4409
4410int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4411{
4412 struct extent_map *em;
4413 struct map_lookup *map;
4414 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4415 int readonly = 0;
4416 int i;
4417
Chris Mason890871b2009-09-02 16:24:52 -04004418 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004419 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004420 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004421 if (!em)
4422 return 1;
4423
Josef Bacikf48b9072010-01-27 02:07:59 +00004424 if (btrfs_test_opt(root, DEGRADED)) {
4425 free_extent_map(em);
4426 return 0;
4427 }
4428
Yan Zheng2b820322008-11-17 21:11:30 -05004429 map = (struct map_lookup *)em->bdev;
4430 for (i = 0; i < map->num_stripes; i++) {
4431 if (!map->stripes[i].dev->writeable) {
4432 readonly = 1;
4433 break;
4434 }
4435 }
4436 free_extent_map(em);
4437 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004438}
4439
4440void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4441{
David Sterbaa8067e02011-04-21 00:34:43 +02004442 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004443}
4444
4445void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4446{
4447 struct extent_map *em;
4448
Chris Masond3977122009-01-05 21:25:51 -05004449 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004450 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004451 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4452 if (em)
4453 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004454 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004455 if (!em)
4456 break;
4457 kfree(em->bdev);
4458 /* once for us */
4459 free_extent_map(em);
4460 /* once for the tree */
4461 free_extent_map(em);
4462 }
4463}
4464
Stefan Behrens5d964052012-11-05 14:59:07 +01004465int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04004466{
Stefan Behrens5d964052012-11-05 14:59:07 +01004467 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04004468 struct extent_map *em;
4469 struct map_lookup *map;
4470 struct extent_map_tree *em_tree = &map_tree->map_tree;
4471 int ret;
4472
Chris Mason890871b2009-09-02 16:24:52 -04004473 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004474 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04004475 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004476
Josef Bacikfb7669b2013-04-23 10:53:18 -04004477 /*
4478 * We could return errors for these cases, but that could get ugly and
4479 * we'd probably do the same thing which is just not do anything else
4480 * and exit, so return 1 so the callers don't try to use other copies.
4481 */
4482 if (!em) {
David Sterbaccf39f92013-07-11 15:41:11 +02004483 btrfs_crit(fs_info, "No mapping for %Lu-%Lu\n", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004484 logical+len);
4485 return 1;
4486 }
4487
4488 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02004489 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
Josef Bacikfb7669b2013-04-23 10:53:18 -04004490 "%Lu-%Lu\n", logical, logical+len, em->start,
4491 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08004492 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04004493 return 1;
4494 }
4495
Chris Masonf1885912008-04-09 16:28:12 -04004496 map = (struct map_lookup *)em->bdev;
4497 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
4498 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004499 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4500 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004501 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
4502 ret = 2;
4503 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4504 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04004505 else
4506 ret = 1;
4507 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004508
4509 btrfs_dev_replace_lock(&fs_info->dev_replace);
4510 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
4511 ret++;
4512 btrfs_dev_replace_unlock(&fs_info->dev_replace);
4513
Chris Masonf1885912008-04-09 16:28:12 -04004514 return ret;
4515}
4516
David Woodhouse53b381b2013-01-29 18:40:14 -05004517unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
4518 struct btrfs_mapping_tree *map_tree,
4519 u64 logical)
4520{
4521 struct extent_map *em;
4522 struct map_lookup *map;
4523 struct extent_map_tree *em_tree = &map_tree->map_tree;
4524 unsigned long len = root->sectorsize;
4525
4526 read_lock(&em_tree->lock);
4527 em = lookup_extent_mapping(em_tree, logical, len);
4528 read_unlock(&em_tree->lock);
4529 BUG_ON(!em);
4530
4531 BUG_ON(em->start > logical || em->start + em->len < logical);
4532 map = (struct map_lookup *)em->bdev;
4533 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4534 BTRFS_BLOCK_GROUP_RAID6)) {
4535 len = map->stripe_len * nr_data_stripes(map);
4536 }
4537 free_extent_map(em);
4538 return len;
4539}
4540
4541int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
4542 u64 logical, u64 len, int mirror_num)
4543{
4544 struct extent_map *em;
4545 struct map_lookup *map;
4546 struct extent_map_tree *em_tree = &map_tree->map_tree;
4547 int ret = 0;
4548
4549 read_lock(&em_tree->lock);
4550 em = lookup_extent_mapping(em_tree, logical, len);
4551 read_unlock(&em_tree->lock);
4552 BUG_ON(!em);
4553
4554 BUG_ON(em->start > logical || em->start + em->len < logical);
4555 map = (struct map_lookup *)em->bdev;
4556 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4557 BTRFS_BLOCK_GROUP_RAID6))
4558 ret = 1;
4559 free_extent_map(em);
4560 return ret;
4561}
4562
Stefan Behrens30d98612012-11-06 14:52:18 +01004563static int find_live_mirror(struct btrfs_fs_info *fs_info,
4564 struct map_lookup *map, int first, int num,
4565 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04004566{
4567 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01004568 int tolerance;
4569 struct btrfs_device *srcdev;
4570
4571 if (dev_replace_is_ongoing &&
4572 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
4573 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
4574 srcdev = fs_info->dev_replace.srcdev;
4575 else
4576 srcdev = NULL;
4577
4578 /*
4579 * try to avoid the drive that is the source drive for a
4580 * dev-replace procedure, only choose it if no other non-missing
4581 * mirror is available
4582 */
4583 for (tolerance = 0; tolerance < 2; tolerance++) {
4584 if (map->stripes[optimal].dev->bdev &&
4585 (tolerance || map->stripes[optimal].dev != srcdev))
4586 return optimal;
4587 for (i = first; i < first + num; i++) {
4588 if (map->stripes[i].dev->bdev &&
4589 (tolerance || map->stripes[i].dev != srcdev))
4590 return i;
4591 }
Chris Masondfe25022008-05-13 13:46:40 -04004592 }
Stefan Behrens30d98612012-11-06 14:52:18 +01004593
Chris Masondfe25022008-05-13 13:46:40 -04004594 /* we couldn't find one that doesn't fail. Just return something
4595 * and the io error handling code will clean up eventually
4596 */
4597 return optimal;
4598}
4599
David Woodhouse53b381b2013-01-29 18:40:14 -05004600static inline int parity_smaller(u64 a, u64 b)
4601{
4602 return a > b;
4603}
4604
4605/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
4606static void sort_parity_stripes(struct btrfs_bio *bbio, u64 *raid_map)
4607{
4608 struct btrfs_bio_stripe s;
4609 int i;
4610 u64 l;
4611 int again = 1;
4612
4613 while (again) {
4614 again = 0;
4615 for (i = 0; i < bbio->num_stripes - 1; i++) {
4616 if (parity_smaller(raid_map[i], raid_map[i+1])) {
4617 s = bbio->stripes[i];
4618 l = raid_map[i];
4619 bbio->stripes[i] = bbio->stripes[i+1];
4620 raid_map[i] = raid_map[i+1];
4621 bbio->stripes[i+1] = s;
4622 raid_map[i+1] = l;
4623 again = 1;
4624 }
4625 }
4626 }
4627}
4628
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004629static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04004630 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02004631 struct btrfs_bio **bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05004632 int mirror_num, u64 **raid_map_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04004633{
4634 struct extent_map *em;
4635 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004636 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04004637 struct extent_map_tree *em_tree = &map_tree->map_tree;
4638 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04004639 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004640 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04004641 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004642 u64 stripe_nr_orig;
4643 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05004644 u64 stripe_len;
4645 u64 *raid_map = NULL;
Chris Mason593060d2008-03-25 16:50:33 -04004646 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04004647 int i;
Li Zefande11cc12011-12-01 12:55:47 +08004648 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04004649 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04004650 int max_errors = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004651 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01004652 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
4653 int dev_replace_is_ongoing = 0;
4654 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004655 int patch_the_first_stripe_for_dev_replace = 0;
4656 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05004657 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04004658
Chris Mason890871b2009-09-02 16:24:52 -04004659 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004660 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04004661 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04004662
Chris Mason3b951512008-04-17 11:29:12 -04004663 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004664 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004665 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04004666 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04004667 }
Chris Mason0b86a832008-03-24 15:01:56 -04004668
Josef Bacik9bb91872013-04-19 23:45:33 -04004669 if (em->start > logical || em->start + em->len < logical) {
4670 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
4671 "found %Lu-%Lu\n", logical, em->start,
4672 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08004673 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04004674 return -EINVAL;
4675 }
4676
Chris Mason0b86a832008-03-24 15:01:56 -04004677 map = (struct map_lookup *)em->bdev;
4678 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04004679
David Woodhouse53b381b2013-01-29 18:40:14 -05004680 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004681 stripe_nr = offset;
4682 /*
4683 * stripe_nr counts the total number of stripes we have to stride
4684 * to get to this block
4685 */
David Woodhouse53b381b2013-01-29 18:40:14 -05004686 do_div(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04004687
David Woodhouse53b381b2013-01-29 18:40:14 -05004688 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004689 BUG_ON(offset < stripe_offset);
4690
4691 /* stripe_offset is the offset of this block in its stripe*/
4692 stripe_offset = offset - stripe_offset;
4693
David Woodhouse53b381b2013-01-29 18:40:14 -05004694 /* if we're here for raid56, we need to know the stripe aligned start */
4695 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4696 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
4697 raid56_full_stripe_start = offset;
4698
4699 /* allow a write of a full stripe, but make sure we don't
4700 * allow straddling of stripes
4701 */
4702 do_div(raid56_full_stripe_start, full_stripe_len);
4703 raid56_full_stripe_start *= full_stripe_len;
4704 }
4705
4706 if (rw & REQ_DISCARD) {
4707 /* we don't discard raid56 yet */
4708 if (map->type &
4709 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4710 ret = -EOPNOTSUPP;
4711 goto out;
4712 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00004713 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004714 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
4715 u64 max_len;
4716 /* For writes to RAID[56], allow a full stripeset across all disks.
4717 For other RAID types and for RAID[56] reads, just allow a single
4718 stripe (on a single disk). */
4719 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6) &&
4720 (rw & REQ_WRITE)) {
4721 max_len = stripe_len * nr_data_stripes(map) -
4722 (offset - raid56_full_stripe_start);
4723 } else {
4724 /* we limit the length of each bio to what fits in a stripe */
4725 max_len = stripe_len - stripe_offset;
4726 }
4727 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04004728 } else {
4729 *length = em->len - offset;
4730 }
Chris Masonf2d8d742008-04-21 10:03:05 -04004731
David Woodhouse53b381b2013-01-29 18:40:14 -05004732 /* This is for when we're called from btrfs_merge_bio_hook() and all
4733 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02004734 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04004735 goto out;
4736
Stefan Behrens472262f2012-11-06 14:43:46 +01004737 btrfs_dev_replace_lock(dev_replace);
4738 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
4739 if (!dev_replace_is_ongoing)
4740 btrfs_dev_replace_unlock(dev_replace);
4741
Stefan Behrensad6d6202012-11-06 15:06:47 +01004742 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
4743 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
4744 dev_replace->tgtdev != NULL) {
4745 /*
4746 * in dev-replace case, for repair case (that's the only
4747 * case where the mirror is selected explicitly when
4748 * calling btrfs_map_block), blocks left of the left cursor
4749 * can also be read from the target drive.
4750 * For REQ_GET_READ_MIRRORS, the target drive is added as
4751 * the last one to the array of stripes. For READ, it also
4752 * needs to be supported using the same mirror number.
4753 * If the requested block is not left of the left cursor,
4754 * EIO is returned. This can happen because btrfs_num_copies()
4755 * returns one more in the dev-replace case.
4756 */
4757 u64 tmp_length = *length;
4758 struct btrfs_bio *tmp_bbio = NULL;
4759 int tmp_num_stripes;
4760 u64 srcdev_devid = dev_replace->srcdev->devid;
4761 int index_srcdev = 0;
4762 int found = 0;
4763 u64 physical_of_found = 0;
4764
4765 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
David Woodhouse53b381b2013-01-29 18:40:14 -05004766 logical, &tmp_length, &tmp_bbio, 0, NULL);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004767 if (ret) {
4768 WARN_ON(tmp_bbio != NULL);
4769 goto out;
4770 }
4771
4772 tmp_num_stripes = tmp_bbio->num_stripes;
4773 if (mirror_num > tmp_num_stripes) {
4774 /*
4775 * REQ_GET_READ_MIRRORS does not contain this
4776 * mirror, that means that the requested area
4777 * is not left of the left cursor
4778 */
4779 ret = -EIO;
4780 kfree(tmp_bbio);
4781 goto out;
4782 }
4783
4784 /*
4785 * process the rest of the function using the mirror_num
4786 * of the source drive. Therefore look it up first.
4787 * At the end, patch the device pointer to the one of the
4788 * target drive.
4789 */
4790 for (i = 0; i < tmp_num_stripes; i++) {
4791 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
4792 /*
4793 * In case of DUP, in order to keep it
4794 * simple, only add the mirror with the
4795 * lowest physical address
4796 */
4797 if (found &&
4798 physical_of_found <=
4799 tmp_bbio->stripes[i].physical)
4800 continue;
4801 index_srcdev = i;
4802 found = 1;
4803 physical_of_found =
4804 tmp_bbio->stripes[i].physical;
4805 }
4806 }
4807
4808 if (found) {
4809 mirror_num = index_srcdev + 1;
4810 patch_the_first_stripe_for_dev_replace = 1;
4811 physical_to_patch_in_first_stripe = physical_of_found;
4812 } else {
4813 WARN_ON(1);
4814 ret = -EIO;
4815 kfree(tmp_bbio);
4816 goto out;
4817 }
4818
4819 kfree(tmp_bbio);
4820 } else if (mirror_num > map->num_stripes) {
4821 mirror_num = 0;
4822 }
4823
Chris Masonf2d8d742008-04-21 10:03:05 -04004824 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04004825 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004826 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00004827 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00004828 do_div(stripe_nr_end, map->stripe_len);
4829 stripe_end_offset = stripe_nr_end * map->stripe_len -
4830 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004831
Li Dongyangfce3bb92011-03-24 10:24:26 +00004832 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
4833 if (rw & REQ_DISCARD)
4834 num_stripes = min_t(u64, map->num_stripes,
4835 stripe_nr_end - stripe_nr_orig);
4836 stripe_index = do_div(stripe_nr, map->num_stripes);
4837 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004838 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004839 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04004840 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04004841 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004842 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01004843 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04004844 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01004845 current->pid % map->num_stripes,
4846 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004847 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004848 }
Chris Mason2fff7342008-04-29 14:12:09 -04004849
Chris Mason611f0e02008-04-03 16:29:03 -04004850 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004851 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04004852 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004853 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04004854 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004855 } else {
4856 mirror_num = 1;
4857 }
Chris Mason2fff7342008-04-29 14:12:09 -04004858
Chris Mason321aecc2008-04-16 10:49:51 -04004859 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
4860 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004861
4862 stripe_index = do_div(stripe_nr, factor);
4863 stripe_index *= map->sub_stripes;
4864
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004865 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004866 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004867 else if (rw & REQ_DISCARD)
4868 num_stripes = min_t(u64, map->sub_stripes *
4869 (stripe_nr_end - stripe_nr_orig),
4870 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04004871 else if (mirror_num)
4872 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004873 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04004874 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01004875 stripe_index = find_live_mirror(fs_info, map,
4876 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04004877 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01004878 current->pid % map->sub_stripes,
4879 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04004880 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004881 }
David Woodhouse53b381b2013-01-29 18:40:14 -05004882
4883 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4884 BTRFS_BLOCK_GROUP_RAID6)) {
4885 u64 tmp;
4886
4887 if (bbio_ret && ((rw & REQ_WRITE) || mirror_num > 1)
4888 && raid_map_ret) {
4889 int i, rot;
4890
4891 /* push stripe_nr back to the start of the full stripe */
4892 stripe_nr = raid56_full_stripe_start;
4893 do_div(stripe_nr, stripe_len);
4894
4895 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4896
4897 /* RAID[56] write or recovery. Return all stripes */
4898 num_stripes = map->num_stripes;
4899 max_errors = nr_parity_stripes(map);
4900
4901 raid_map = kmalloc(sizeof(u64) * num_stripes,
4902 GFP_NOFS);
4903 if (!raid_map) {
4904 ret = -ENOMEM;
4905 goto out;
4906 }
4907
4908 /* Work out the disk rotation on this stripe-set */
4909 tmp = stripe_nr;
4910 rot = do_div(tmp, num_stripes);
4911
4912 /* Fill in the logical address of each stripe */
4913 tmp = stripe_nr * nr_data_stripes(map);
4914 for (i = 0; i < nr_data_stripes(map); i++)
4915 raid_map[(i+rot) % num_stripes] =
4916 em->start + (tmp + i) * map->stripe_len;
4917
4918 raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
4919 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4920 raid_map[(i+rot+1) % num_stripes] =
4921 RAID6_Q_STRIPE;
4922
4923 *length = map->stripe_len;
4924 stripe_index = 0;
4925 stripe_offset = 0;
4926 } else {
4927 /*
4928 * Mirror #0 or #1 means the original data block.
4929 * Mirror #2 is RAID5 parity block.
4930 * Mirror #3 is RAID6 Q block.
4931 */
4932 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4933 if (mirror_num > 1)
4934 stripe_index = nr_data_stripes(map) +
4935 mirror_num - 2;
4936
4937 /* We distribute the parity blocks across stripes */
4938 tmp = stripe_nr + stripe_index;
4939 stripe_index = do_div(tmp, map->num_stripes);
4940 }
Chris Mason8790d502008-04-03 16:29:03 -04004941 } else {
4942 /*
4943 * after this do_div call, stripe_nr is the number of stripes
4944 * on this device we have to walk to find the data, and
4945 * stripe_index is the number of our device in the stripe array
4946 */
4947 stripe_index = do_div(stripe_nr, map->num_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004948 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04004949 }
Chris Mason593060d2008-03-25 16:50:33 -04004950 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04004951
Stefan Behrens472262f2012-11-06 14:43:46 +01004952 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004953 if (dev_replace_is_ongoing) {
4954 if (rw & (REQ_WRITE | REQ_DISCARD))
4955 num_alloc_stripes <<= 1;
4956 if (rw & REQ_GET_READ_MIRRORS)
4957 num_alloc_stripes++;
4958 }
Stefan Behrens472262f2012-11-06 14:43:46 +01004959 bbio = kzalloc(btrfs_bio_size(num_alloc_stripes), GFP_NOFS);
Li Zefande11cc12011-12-01 12:55:47 +08004960 if (!bbio) {
Dave Joneseb2067f2013-07-30 13:42:17 -04004961 kfree(raid_map);
Li Zefande11cc12011-12-01 12:55:47 +08004962 ret = -ENOMEM;
4963 goto out;
4964 }
4965 atomic_set(&bbio->error, 0);
4966
Li Dongyangfce3bb92011-03-24 10:24:26 +00004967 if (rw & REQ_DISCARD) {
Li Zefanec9ef7a2011-12-01 14:06:42 +08004968 int factor = 0;
4969 int sub_stripes = 0;
4970 u64 stripes_per_dev = 0;
4971 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04004972 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004973
4974 if (map->type &
4975 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
4976 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
4977 sub_stripes = 1;
4978 else
4979 sub_stripes = map->sub_stripes;
4980
4981 factor = map->num_stripes / sub_stripes;
4982 stripes_per_dev = div_u64_rem(stripe_nr_end -
4983 stripe_nr_orig,
4984 factor,
4985 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04004986 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
4987 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004988 }
4989
Li Dongyangfce3bb92011-03-24 10:24:26 +00004990 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02004991 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04004992 map->stripes[stripe_index].physical +
4993 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004994 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004995
Li Zefanec9ef7a2011-12-01 14:06:42 +08004996 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
4997 BTRFS_BLOCK_GROUP_RAID10)) {
4998 bbio->stripes[i].length = stripes_per_dev *
4999 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005000
Li Zefanec9ef7a2011-12-01 14:06:42 +08005001 if (i / sub_stripes < remaining_stripes)
5002 bbio->stripes[i].length +=
5003 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005004
5005 /*
5006 * Special for the first stripe and
5007 * the last stripe:
5008 *
5009 * |-------|...|-------|
5010 * |----------|
5011 * off end_off
5012 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005013 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005014 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005015 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005016
5017 if (stripe_index >= last_stripe &&
5018 stripe_index <= (last_stripe +
5019 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005020 bbio->stripes[i].length -=
5021 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005022
Li Zefanec9ef7a2011-12-01 14:06:42 +08005023 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005024 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005025 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005026 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005027
5028 stripe_index++;
5029 if (stripe_index == map->num_stripes) {
5030 /* This could only happen for RAID0/10 */
5031 stripe_index = 0;
5032 stripe_nr++;
5033 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005034 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005035 } else {
5036 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005037 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005038 map->stripes[stripe_index].physical +
5039 stripe_offset +
5040 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005041 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005042 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005043 stripe_index++;
5044 }
Chris Mason593060d2008-03-25 16:50:33 -04005045 }
Li Zefande11cc12011-12-01 12:55:47 +08005046
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005047 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) {
Li Zefande11cc12011-12-01 12:55:47 +08005048 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5049 BTRFS_BLOCK_GROUP_RAID10 |
David Woodhouse53b381b2013-01-29 18:40:14 -05005050 BTRFS_BLOCK_GROUP_RAID5 |
Li Zefande11cc12011-12-01 12:55:47 +08005051 BTRFS_BLOCK_GROUP_DUP)) {
5052 max_errors = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005053 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5054 max_errors = 2;
Li Zefande11cc12011-12-01 12:55:47 +08005055 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005056 }
Li Zefande11cc12011-12-01 12:55:47 +08005057
Stefan Behrens472262f2012-11-06 14:43:46 +01005058 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5059 dev_replace->tgtdev != NULL) {
5060 int index_where_to_add;
5061 u64 srcdev_devid = dev_replace->srcdev->devid;
5062
5063 /*
5064 * duplicate the write operations while the dev replace
5065 * procedure is running. Since the copying of the old disk
5066 * to the new disk takes place at run time while the
5067 * filesystem is mounted writable, the regular write
5068 * operations to the old disk have to be duplicated to go
5069 * to the new disk as well.
5070 * Note that device->missing is handled by the caller, and
5071 * that the write to the old disk is already set up in the
5072 * stripes array.
5073 */
5074 index_where_to_add = num_stripes;
5075 for (i = 0; i < num_stripes; i++) {
5076 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5077 /* write to new disk, too */
5078 struct btrfs_bio_stripe *new =
5079 bbio->stripes + index_where_to_add;
5080 struct btrfs_bio_stripe *old =
5081 bbio->stripes + i;
5082
5083 new->physical = old->physical;
5084 new->length = old->length;
5085 new->dev = dev_replace->tgtdev;
5086 index_where_to_add++;
5087 max_errors++;
5088 }
5089 }
5090 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005091 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5092 dev_replace->tgtdev != NULL) {
5093 u64 srcdev_devid = dev_replace->srcdev->devid;
5094 int index_srcdev = 0;
5095 int found = 0;
5096 u64 physical_of_found = 0;
5097
5098 /*
5099 * During the dev-replace procedure, the target drive can
5100 * also be used to read data in case it is needed to repair
5101 * a corrupt block elsewhere. This is possible if the
5102 * requested area is left of the left cursor. In this area,
5103 * the target drive is a full copy of the source drive.
5104 */
5105 for (i = 0; i < num_stripes; i++) {
5106 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5107 /*
5108 * In case of DUP, in order to keep it
5109 * simple, only add the mirror with the
5110 * lowest physical address
5111 */
5112 if (found &&
5113 physical_of_found <=
5114 bbio->stripes[i].physical)
5115 continue;
5116 index_srcdev = i;
5117 found = 1;
5118 physical_of_found = bbio->stripes[i].physical;
5119 }
5120 }
5121 if (found) {
5122 u64 length = map->stripe_len;
5123
5124 if (physical_of_found + length <=
5125 dev_replace->cursor_left) {
5126 struct btrfs_bio_stripe *tgtdev_stripe =
5127 bbio->stripes + num_stripes;
5128
5129 tgtdev_stripe->physical = physical_of_found;
5130 tgtdev_stripe->length =
5131 bbio->stripes[index_srcdev].length;
5132 tgtdev_stripe->dev = dev_replace->tgtdev;
5133
5134 num_stripes++;
5135 }
5136 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005137 }
5138
Li Zefande11cc12011-12-01 12:55:47 +08005139 *bbio_ret = bbio;
5140 bbio->num_stripes = num_stripes;
5141 bbio->max_errors = max_errors;
5142 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005143
5144 /*
5145 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5146 * mirror_num == num_stripes + 1 && dev_replace target drive is
5147 * available as a mirror
5148 */
5149 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5150 WARN_ON(num_stripes > 1);
5151 bbio->stripes[0].dev = dev_replace->tgtdev;
5152 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5153 bbio->mirror_num = map->num_stripes + 1;
5154 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005155 if (raid_map) {
5156 sort_parity_stripes(bbio, raid_map);
5157 *raid_map_ret = raid_map;
5158 }
Chris Masoncea9e442008-04-09 16:28:12 -04005159out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005160 if (dev_replace_is_ongoing)
5161 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005162 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005163 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005164}
5165
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005166int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005167 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005168 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005169{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005170 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05005171 mirror_num, NULL);
Chris Masonf2d8d742008-04-21 10:03:05 -04005172}
5173
Yan Zhenga512bbf2008-12-08 16:46:26 -05005174int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5175 u64 chunk_start, u64 physical, u64 devid,
5176 u64 **logical, int *naddrs, int *stripe_len)
5177{
5178 struct extent_map_tree *em_tree = &map_tree->map_tree;
5179 struct extent_map *em;
5180 struct map_lookup *map;
5181 u64 *buf;
5182 u64 bytenr;
5183 u64 length;
5184 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005185 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005186 int i, j, nr = 0;
5187
Chris Mason890871b2009-09-02 16:24:52 -04005188 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005189 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005190 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005191
Josef Bacik835d9742013-03-19 12:13:25 -04005192 if (!em) {
5193 printk(KERN_ERR "btrfs: couldn't find em for chunk %Lu\n",
5194 chunk_start);
5195 return -EIO;
5196 }
5197
5198 if (em->start != chunk_start) {
5199 printk(KERN_ERR "btrfs: bad chunk start, em=%Lu, wanted=%Lu\n",
5200 em->start, chunk_start);
5201 free_extent_map(em);
5202 return -EIO;
5203 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005204 map = (struct map_lookup *)em->bdev;
5205
5206 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005207 rmap_len = map->stripe_len;
5208
Yan Zhenga512bbf2008-12-08 16:46:26 -05005209 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5210 do_div(length, map->num_stripes / map->sub_stripes);
5211 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5212 do_div(length, map->num_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05005213 else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
5214 BTRFS_BLOCK_GROUP_RAID6)) {
5215 do_div(length, nr_data_stripes(map));
5216 rmap_len = map->stripe_len * nr_data_stripes(map);
5217 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005218
5219 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005220 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005221
5222 for (i = 0; i < map->num_stripes; i++) {
5223 if (devid && map->stripes[i].dev->devid != devid)
5224 continue;
5225 if (map->stripes[i].physical > physical ||
5226 map->stripes[i].physical + length <= physical)
5227 continue;
5228
5229 stripe_nr = physical - map->stripes[i].physical;
5230 do_div(stripe_nr, map->stripe_len);
5231
5232 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5233 stripe_nr = stripe_nr * map->num_stripes + i;
5234 do_div(stripe_nr, map->sub_stripes);
5235 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5236 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005237 } /* else if RAID[56], multiply by nr_data_stripes().
5238 * Alternatively, just use rmap_len below instead of
5239 * map->stripe_len */
5240
5241 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005242 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005243 for (j = 0; j < nr; j++) {
5244 if (buf[j] == bytenr)
5245 break;
5246 }
Chris Mason934d3752008-12-08 16:43:10 -05005247 if (j == nr) {
5248 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005249 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005250 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005251 }
5252
Yan Zhenga512bbf2008-12-08 16:46:26 -05005253 *logical = buf;
5254 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005255 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005256
5257 free_extent_map(em);
5258 return 0;
5259}
5260
Jan Schmidta1d3c472011-08-04 17:15:33 +02005261static void btrfs_end_bio(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04005262{
Chris Mason9be33952013-05-17 18:30:14 -04005263 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005264 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005265
Stefan Behrens442a4f62012-05-25 16:06:08 +02005266 if (err) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005267 atomic_inc(&bbio->error);
Stefan Behrens442a4f62012-05-25 16:06:08 +02005268 if (err == -EIO || err == -EREMOTEIO) {
5269 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005270 btrfs_io_bio(bio)->stripe_index;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005271 struct btrfs_device *dev;
5272
5273 BUG_ON(stripe_index >= bbio->num_stripes);
5274 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005275 if (dev->bdev) {
5276 if (bio->bi_rw & WRITE)
5277 btrfs_dev_stat_inc(dev,
5278 BTRFS_DEV_STAT_WRITE_ERRS);
5279 else
5280 btrfs_dev_stat_inc(dev,
5281 BTRFS_DEV_STAT_READ_ERRS);
5282 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5283 btrfs_dev_stat_inc(dev,
5284 BTRFS_DEV_STAT_FLUSH_ERRS);
5285 btrfs_dev_stat_print_on_error(dev);
5286 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005287 }
5288 }
Chris Mason8790d502008-04-03 16:29:03 -04005289
Jan Schmidta1d3c472011-08-04 17:15:33 +02005290 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005291 is_orig_bio = 1;
5292
Jan Schmidta1d3c472011-08-04 17:15:33 +02005293 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005294 if (!is_orig_bio) {
5295 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005296 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005297 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005298 bio->bi_private = bbio->private;
5299 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005300 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005301 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005302 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005303 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005304 if (atomic_read(&bbio->error) > bbio->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04005305 err = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005306 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005307 /*
5308 * this bio is actually up to date, we didn't
5309 * go over the max number of errors
5310 */
5311 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04005312 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005313 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005314 kfree(bbio);
Chris Mason8790d502008-04-03 16:29:03 -04005315
5316 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005317 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005318 bio_put(bio);
5319 }
Chris Mason8790d502008-04-03 16:29:03 -04005320}
5321
Chris Mason8b712842008-06-11 16:50:36 -04005322struct async_sched {
5323 struct bio *bio;
5324 int rw;
5325 struct btrfs_fs_info *info;
5326 struct btrfs_work work;
5327};
5328
5329/*
5330 * see run_scheduled_bios for a description of why bios are collected for
5331 * async submit.
5332 *
5333 * This will add one bio to the pending list for a device and make sure
5334 * the work struct is scheduled.
5335 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005336static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5337 struct btrfs_device *device,
5338 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005339{
5340 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005341 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005342
David Woodhouse53b381b2013-01-29 18:40:14 -05005343 if (device->missing || !device->bdev) {
5344 bio_endio(bio, -EIO);
5345 return;
5346 }
5347
Chris Mason8b712842008-06-11 16:50:36 -04005348 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005349 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005350 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005351 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005352 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005353 return;
Chris Mason8b712842008-06-11 16:50:36 -04005354 }
5355
5356 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005357 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005358 * higher layers. Otherwise, the async bio makes it appear we have
5359 * made progress against dirty pages when we've really just put it
5360 * on a queue for later
5361 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005362 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005363 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005364 bio->bi_next = NULL;
5365 bio->bi_rw |= rw;
5366
5367 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005368 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005369 pending_bios = &device->pending_sync_bios;
5370 else
5371 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005372
Chris Masonffbd5172009-04-20 15:50:09 -04005373 if (pending_bios->tail)
5374 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005375
Chris Masonffbd5172009-04-20 15:50:09 -04005376 pending_bios->tail = bio;
5377 if (!pending_bios->head)
5378 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005379 if (device->running_pending)
5380 should_queue = 0;
5381
5382 spin_unlock(&device->io_lock);
5383
5384 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04005385 btrfs_queue_worker(&root->fs_info->submit_workers,
5386 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005387}
5388
Josef Bacikde1ee922012-10-19 16:50:56 -04005389static int bio_size_ok(struct block_device *bdev, struct bio *bio,
5390 sector_t sector)
5391{
5392 struct bio_vec *prev;
5393 struct request_queue *q = bdev_get_queue(bdev);
5394 unsigned short max_sectors = queue_max_sectors(q);
5395 struct bvec_merge_data bvm = {
5396 .bi_bdev = bdev,
5397 .bi_sector = sector,
5398 .bi_rw = bio->bi_rw,
5399 };
5400
5401 if (bio->bi_vcnt == 0) {
5402 WARN_ON(1);
5403 return 1;
5404 }
5405
5406 prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08005407 if (bio_sectors(bio) > max_sectors)
Josef Bacikde1ee922012-10-19 16:50:56 -04005408 return 0;
5409
5410 if (!q->merge_bvec_fn)
5411 return 1;
5412
5413 bvm.bi_size = bio->bi_size - prev->bv_len;
5414 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len)
5415 return 0;
5416 return 1;
5417}
5418
5419static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5420 struct bio *bio, u64 physical, int dev_nr,
5421 int rw, int async)
5422{
5423 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5424
5425 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005426 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005427 bio->bi_end_io = btrfs_end_bio;
5428 bio->bi_sector = physical >> 9;
5429#ifdef DEBUG
5430 {
5431 struct rcu_string *name;
5432
5433 rcu_read_lock();
5434 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005435 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005436 "(%s id %llu), size=%u\n", rw,
5437 (u64)bio->bi_sector, (u_long)dev->bdev->bd_dev,
5438 name->str, dev->devid, bio->bi_size);
5439 rcu_read_unlock();
5440 }
5441#endif
5442 bio->bi_bdev = dev->bdev;
5443 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05005444 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005445 else
5446 btrfsic_submit_bio(rw, bio);
5447}
5448
5449static int breakup_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5450 struct bio *first_bio, struct btrfs_device *dev,
5451 int dev_nr, int rw, int async)
5452{
5453 struct bio_vec *bvec = first_bio->bi_io_vec;
5454 struct bio *bio;
5455 int nr_vecs = bio_get_nr_vecs(dev->bdev);
5456 u64 physical = bbio->stripes[dev_nr].physical;
5457
5458again:
5459 bio = btrfs_bio_alloc(dev->bdev, physical >> 9, nr_vecs, GFP_NOFS);
5460 if (!bio)
5461 return -ENOMEM;
5462
5463 while (bvec <= (first_bio->bi_io_vec + first_bio->bi_vcnt - 1)) {
5464 if (bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5465 bvec->bv_offset) < bvec->bv_len) {
5466 u64 len = bio->bi_size;
5467
5468 atomic_inc(&bbio->stripes_pending);
5469 submit_stripe_bio(root, bbio, bio, physical, dev_nr,
5470 rw, async);
5471 physical += len;
5472 goto again;
5473 }
5474 bvec++;
5475 }
5476
5477 submit_stripe_bio(root, bbio, bio, physical, dev_nr, rw, async);
5478 return 0;
5479}
5480
5481static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
5482{
5483 atomic_inc(&bbio->error);
5484 if (atomic_dec_and_test(&bbio->stripes_pending)) {
5485 bio->bi_private = bbio->private;
5486 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005487 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Josef Bacikde1ee922012-10-19 16:50:56 -04005488 bio->bi_sector = logical >> 9;
5489 kfree(bbio);
5490 bio_endio(bio, -EIO);
5491 }
5492}
5493
Chris Masonf1885912008-04-09 16:28:12 -04005494int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04005495 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04005496{
Chris Mason0b86a832008-03-24 15:01:56 -04005497 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04005498 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04005499 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04005500 u64 length = 0;
5501 u64 map_length;
David Woodhouse53b381b2013-01-29 18:40:14 -05005502 u64 *raid_map = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005503 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04005504 int dev_nr = 0;
5505 int total_devs = 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005506 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005507
Chris Masonf2d8d742008-04-21 10:03:05 -04005508 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04005509 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04005510
David Woodhouse53b381b2013-01-29 18:40:14 -05005511 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
5512 mirror_num, &raid_map);
5513 if (ret) /* -ENOMEM */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005514 return ret;
Chris Masoncea9e442008-04-09 16:28:12 -04005515
Jan Schmidta1d3c472011-08-04 17:15:33 +02005516 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005517 bbio->orig_bio = first_bio;
5518 bbio->private = first_bio->bi_private;
5519 bbio->end_io = first_bio->bi_end_io;
5520 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
5521
5522 if (raid_map) {
5523 /* In this case, map_length has been set to the length of
5524 a single stripe; not the whole write */
5525 if (rw & WRITE) {
5526 return raid56_parity_write(root, bio, bbio,
5527 raid_map, map_length);
5528 } else {
5529 return raid56_parity_recover(root, bio, bbio,
5530 raid_map, map_length,
5531 mirror_num);
5532 }
5533 }
5534
Chris Masoncea9e442008-04-09 16:28:12 -04005535 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005536 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005537 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04005538 BUG();
5539 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005540
Chris Masond3977122009-01-05 21:25:51 -05005541 while (dev_nr < total_devs) {
Josef Bacikde1ee922012-10-19 16:50:56 -04005542 dev = bbio->stripes[dev_nr].dev;
5543 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
5544 bbio_error(bbio, first_bio, logical);
5545 dev_nr++;
5546 continue;
5547 }
5548
5549 /*
5550 * Check and see if we're ok with this bio based on it's size
5551 * and offset with the given device.
5552 */
5553 if (!bio_size_ok(dev->bdev, first_bio,
5554 bbio->stripes[dev_nr].physical >> 9)) {
5555 ret = breakup_stripe_bio(root, bbio, first_bio, dev,
5556 dev_nr, rw, async_submit);
5557 BUG_ON(ret);
5558 dev_nr++;
5559 continue;
5560 }
5561
Jan Schmidta1d3c472011-08-04 17:15:33 +02005562 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04005563 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005564 BUG_ON(!bio); /* -ENOMEM */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005565 } else {
5566 bio = first_bio;
Chris Mason8790d502008-04-03 16:29:03 -04005567 }
Josef Bacik606686e2012-06-04 14:03:51 -04005568
Josef Bacikde1ee922012-10-19 16:50:56 -04005569 submit_stripe_bio(root, bbio, bio,
5570 bbio->stripes[dev_nr].physical, dev_nr, rw,
5571 async_submit);
Chris Mason8790d502008-04-03 16:29:03 -04005572 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04005573 }
Chris Mason0b86a832008-03-24 15:01:56 -04005574 return 0;
5575}
5576
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005577struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05005578 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04005579{
Yan Zheng2b820322008-11-17 21:11:30 -05005580 struct btrfs_device *device;
5581 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04005582
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005583 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005584 while (cur_devices) {
5585 if (!fsid ||
5586 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5587 device = __find_device(&cur_devices->devices,
5588 devid, uuid);
5589 if (device)
5590 return device;
5591 }
5592 cur_devices = cur_devices->seed;
5593 }
5594 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005595}
5596
Chris Masondfe25022008-05-13 13:46:40 -04005597static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
5598 u64 devid, u8 *dev_uuid)
5599{
5600 struct btrfs_device *device;
5601 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
5602
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005603 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
5604 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05005605 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005606
5607 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005608 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04005609 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005610
5611 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05005612 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005613
Chris Masondfe25022008-05-13 13:46:40 -04005614 return device;
5615}
5616
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005617/**
5618 * btrfs_alloc_device - allocate struct btrfs_device
5619 * @fs_info: used only for generating a new devid, can be NULL if
5620 * devid is provided (i.e. @devid != NULL).
5621 * @devid: a pointer to devid for this device. If NULL a new devid
5622 * is generated.
5623 * @uuid: a pointer to UUID for this device. If NULL a new UUID
5624 * is generated.
5625 *
5626 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
5627 * on error. Returned struct is not linked onto any lists and can be
5628 * destroyed with kfree() right away.
5629 */
5630struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
5631 const u64 *devid,
5632 const u8 *uuid)
5633{
5634 struct btrfs_device *dev;
5635 u64 tmp;
5636
5637 if (!devid && !fs_info) {
5638 WARN_ON(1);
5639 return ERR_PTR(-EINVAL);
5640 }
5641
5642 dev = __alloc_device();
5643 if (IS_ERR(dev))
5644 return dev;
5645
5646 if (devid)
5647 tmp = *devid;
5648 else {
5649 int ret;
5650
5651 ret = find_next_devid(fs_info, &tmp);
5652 if (ret) {
5653 kfree(dev);
5654 return ERR_PTR(ret);
5655 }
5656 }
5657 dev->devid = tmp;
5658
5659 if (uuid)
5660 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
5661 else
5662 generate_random_uuid(dev->uuid);
5663
5664 dev->work.func = pending_bios_fn;
5665
5666 return dev;
5667}
5668
Chris Mason0b86a832008-03-24 15:01:56 -04005669static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
5670 struct extent_buffer *leaf,
5671 struct btrfs_chunk *chunk)
5672{
5673 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5674 struct map_lookup *map;
5675 struct extent_map *em;
5676 u64 logical;
5677 u64 length;
5678 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04005679 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04005680 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04005681 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04005682 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04005683
Chris Masone17cade2008-04-15 15:41:47 -04005684 logical = key->offset;
5685 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04005686
Chris Mason890871b2009-09-02 16:24:52 -04005687 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005688 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005689 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005690
5691 /* already mapped? */
5692 if (em && em->start <= logical && em->start + em->len > logical) {
5693 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04005694 return 0;
5695 } else if (em) {
5696 free_extent_map(em);
5697 }
Chris Mason0b86a832008-03-24 15:01:56 -04005698
David Sterba172ddd62011-04-21 00:48:27 +02005699 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04005700 if (!em)
5701 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04005702 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
5703 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04005704 if (!map) {
5705 free_extent_map(em);
5706 return -ENOMEM;
5707 }
5708
5709 em->bdev = (struct block_device *)map;
5710 em->start = logical;
5711 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04005712 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005713 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04005714 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04005715
Chris Mason593060d2008-03-25 16:50:33 -04005716 map->num_stripes = num_stripes;
5717 map->io_width = btrfs_chunk_io_width(leaf, chunk);
5718 map->io_align = btrfs_chunk_io_align(leaf, chunk);
5719 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
5720 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
5721 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04005722 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04005723 for (i = 0; i < num_stripes; i++) {
5724 map->stripes[i].physical =
5725 btrfs_stripe_offset_nr(leaf, chunk, i);
5726 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04005727 read_extent_buffer(leaf, uuid, (unsigned long)
5728 btrfs_stripe_dev_uuid_nr(chunk, i),
5729 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005730 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
5731 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04005732 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04005733 kfree(map);
5734 free_extent_map(em);
5735 return -EIO;
5736 }
Chris Masondfe25022008-05-13 13:46:40 -04005737 if (!map->stripes[i].dev) {
5738 map->stripes[i].dev =
5739 add_missing_dev(root, devid, uuid);
5740 if (!map->stripes[i].dev) {
5741 kfree(map);
5742 free_extent_map(em);
5743 return -EIO;
5744 }
5745 }
5746 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04005747 }
5748
Chris Mason890871b2009-09-02 16:24:52 -04005749 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005750 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04005751 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005752 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04005753 free_extent_map(em);
5754
5755 return 0;
5756}
5757
Jeff Mahoney143bede2012-03-01 14:56:26 +01005758static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04005759 struct btrfs_dev_item *dev_item,
5760 struct btrfs_device *device)
5761{
5762 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04005763
5764 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04005765 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
5766 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04005767 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
5768 device->type = btrfs_device_type(leaf, dev_item);
5769 device->io_align = btrfs_device_io_align(leaf, dev_item);
5770 device->io_width = btrfs_device_io_width(leaf, dev_item);
5771 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01005772 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01005773 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005774
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02005775 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04005776 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005777}
5778
Yan Zheng2b820322008-11-17 21:11:30 -05005779static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
5780{
5781 struct btrfs_fs_devices *fs_devices;
5782 int ret;
5783
Li Zefanb367e472011-12-07 11:38:24 +08005784 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05005785
5786 fs_devices = root->fs_info->fs_devices->seed;
5787 while (fs_devices) {
5788 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5789 ret = 0;
5790 goto out;
5791 }
5792 fs_devices = fs_devices->seed;
5793 }
5794
5795 fs_devices = find_fsid(fsid);
5796 if (!fs_devices) {
5797 ret = -ENOENT;
5798 goto out;
5799 }
Yan Zhenge4404d62008-12-12 10:03:26 -05005800
5801 fs_devices = clone_fs_devices(fs_devices);
5802 if (IS_ERR(fs_devices)) {
5803 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005804 goto out;
5805 }
5806
Christoph Hellwig97288f22008-12-02 06:36:09 -05005807 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05005808 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02005809 if (ret) {
5810 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005811 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02005812 }
Yan Zheng2b820322008-11-17 21:11:30 -05005813
5814 if (!fs_devices->seeding) {
5815 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005816 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005817 ret = -EINVAL;
5818 goto out;
5819 }
5820
5821 fs_devices->seed = root->fs_info->fs_devices->seed;
5822 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005823out:
Yan Zheng2b820322008-11-17 21:11:30 -05005824 return ret;
5825}
5826
Chris Mason0d81ba52008-03-24 15:02:07 -04005827static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04005828 struct extent_buffer *leaf,
5829 struct btrfs_dev_item *dev_item)
5830{
5831 struct btrfs_device *device;
5832 u64 devid;
5833 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005834 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04005835 u8 dev_uuid[BTRFS_UUID_SIZE];
5836
Chris Mason0b86a832008-03-24 15:01:56 -04005837 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02005838 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04005839 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02005840 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05005841 BTRFS_UUID_SIZE);
5842
5843 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
5844 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05005845 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005846 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005847 }
5848
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005849 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05005850 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05005851 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005852 return -EIO;
5853
5854 if (!device) {
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005855 btrfs_warn(root->fs_info, "devid %llu missing", devid);
Yan Zheng2b820322008-11-17 21:11:30 -05005856 device = add_missing_dev(root, devid, dev_uuid);
5857 if (!device)
5858 return -ENOMEM;
Chris Masoncd02dca2010-12-13 14:56:23 -05005859 } else if (!device->missing) {
5860 /*
5861 * this happens when a device that was properly setup
5862 * in the device info lists suddenly goes bad.
5863 * device->bdev is NULL, and so we have to set
5864 * device->missing to one here
5865 */
5866 root->fs_info->fs_devices->missing_devices++;
5867 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05005868 }
5869 }
5870
5871 if (device->fs_devices != root->fs_info->fs_devices) {
5872 BUG_ON(device->writeable);
5873 if (device->generation !=
5874 btrfs_device_generation(leaf, dev_item))
5875 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04005876 }
Chris Mason0b86a832008-03-24 15:01:56 -04005877
5878 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04005879 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01005880 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05005881 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04005882 spin_lock(&root->fs_info->free_chunk_lock);
5883 root->fs_info->free_chunk_space += device->total_bytes -
5884 device->bytes_used;
5885 spin_unlock(&root->fs_info->free_chunk_lock);
5886 }
Chris Mason0b86a832008-03-24 15:01:56 -04005887 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005888 return ret;
5889}
5890
Yan Zhenge4404d62008-12-12 10:03:26 -05005891int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04005892{
David Sterba6c417612011-04-13 15:41:04 +02005893 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04005894 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04005895 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04005896 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04005897 u8 *ptr;
5898 unsigned long sb_ptr;
5899 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005900 u32 num_stripes;
5901 u32 array_size;
5902 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005903 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04005904 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04005905
Yan Zhenge4404d62008-12-12 10:03:26 -05005906 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04005907 BTRFS_SUPER_INFO_SIZE);
5908 if (!sb)
5909 return -ENOMEM;
5910 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04005911 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02005912 /*
5913 * The sb extent buffer is artifical and just used to read the system array.
5914 * btrfs_set_buffer_uptodate() call does not properly mark all it's
5915 * pages up-to-date when the page is larger: extent does not cover the
5916 * whole page and consequently check_page_uptodate does not find all
5917 * the page's extents up-to-date (the hole beyond sb),
5918 * write_extent_buffer then triggers a WARN_ON.
5919 *
5920 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
5921 * but sb spans only this function. Add an explicit SetPageUptodate call
5922 * to silence the warning eg. on PowerPC 64.
5923 */
5924 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04005925 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05005926
Chris Masona061fc82008-05-07 11:43:44 -04005927 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005928 array_size = btrfs_super_sys_array_size(super_copy);
5929
Chris Mason0b86a832008-03-24 15:01:56 -04005930 ptr = super_copy->sys_chunk_array;
5931 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
5932 cur = 0;
5933
5934 while (cur < array_size) {
5935 disk_key = (struct btrfs_disk_key *)ptr;
5936 btrfs_disk_key_to_cpu(&key, disk_key);
5937
Chris Masona061fc82008-05-07 11:43:44 -04005938 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04005939 sb_ptr += len;
5940 cur += len;
5941
Chris Mason0d81ba52008-03-24 15:02:07 -04005942 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04005943 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04005944 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04005945 if (ret)
5946 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005947 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
5948 len = btrfs_chunk_item_size(num_stripes);
5949 } else {
Chris Mason84eed902008-04-25 09:04:37 -04005950 ret = -EIO;
5951 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005952 }
5953 ptr += len;
5954 sb_ptr += len;
5955 cur += len;
5956 }
Chris Masona061fc82008-05-07 11:43:44 -04005957 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04005958 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005959}
5960
5961int btrfs_read_chunk_tree(struct btrfs_root *root)
5962{
5963 struct btrfs_path *path;
5964 struct extent_buffer *leaf;
5965 struct btrfs_key key;
5966 struct btrfs_key found_key;
5967 int ret;
5968 int slot;
5969
5970 root = root->fs_info->chunk_root;
5971
5972 path = btrfs_alloc_path();
5973 if (!path)
5974 return -ENOMEM;
5975
Li Zefanb367e472011-12-07 11:38:24 +08005976 mutex_lock(&uuid_mutex);
5977 lock_chunks(root);
5978
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005979 /*
5980 * Read all device items, and then all the chunk items. All
5981 * device items are found before any chunk item (their object id
5982 * is smaller than the lowest possible object id for a chunk
5983 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04005984 */
5985 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
5986 key.offset = 0;
5987 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005988 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00005989 if (ret < 0)
5990 goto error;
Chris Masond3977122009-01-05 21:25:51 -05005991 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005992 leaf = path->nodes[0];
5993 slot = path->slots[0];
5994 if (slot >= btrfs_header_nritems(leaf)) {
5995 ret = btrfs_next_leaf(root, path);
5996 if (ret == 0)
5997 continue;
5998 if (ret < 0)
5999 goto error;
6000 break;
6001 }
6002 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006003 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6004 struct btrfs_dev_item *dev_item;
6005 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006006 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006007 ret = read_one_dev(root, leaf, dev_item);
6008 if (ret)
6009 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006010 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6011 struct btrfs_chunk *chunk;
6012 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6013 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006014 if (ret)
6015 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006016 }
6017 path->slots[0]++;
6018 }
Chris Mason0b86a832008-03-24 15:01:56 -04006019 ret = 0;
6020error:
Li Zefanb367e472011-12-07 11:38:24 +08006021 unlock_chunks(root);
6022 mutex_unlock(&uuid_mutex);
6023
Yan Zheng2b820322008-11-17 21:11:30 -05006024 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006025 return ret;
6026}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006027
Miao Xiecb517ea2013-05-15 07:48:19 +00006028void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6029{
6030 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6031 struct btrfs_device *device;
6032
6033 mutex_lock(&fs_devices->device_list_mutex);
6034 list_for_each_entry(device, &fs_devices->devices, dev_list)
6035 device->dev_root = fs_info->dev_root;
6036 mutex_unlock(&fs_devices->device_list_mutex);
6037}
6038
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006039static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6040{
6041 int i;
6042
6043 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6044 btrfs_dev_stat_reset(dev, i);
6045}
6046
6047int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6048{
6049 struct btrfs_key key;
6050 struct btrfs_key found_key;
6051 struct btrfs_root *dev_root = fs_info->dev_root;
6052 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6053 struct extent_buffer *eb;
6054 int slot;
6055 int ret = 0;
6056 struct btrfs_device *device;
6057 struct btrfs_path *path = NULL;
6058 int i;
6059
6060 path = btrfs_alloc_path();
6061 if (!path) {
6062 ret = -ENOMEM;
6063 goto out;
6064 }
6065
6066 mutex_lock(&fs_devices->device_list_mutex);
6067 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6068 int item_size;
6069 struct btrfs_dev_stats_item *ptr;
6070
6071 key.objectid = 0;
6072 key.type = BTRFS_DEV_STATS_KEY;
6073 key.offset = device->devid;
6074 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6075 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006076 __btrfs_reset_dev_stats(device);
6077 device->dev_stats_valid = 1;
6078 btrfs_release_path(path);
6079 continue;
6080 }
6081 slot = path->slots[0];
6082 eb = path->nodes[0];
6083 btrfs_item_key_to_cpu(eb, &found_key, slot);
6084 item_size = btrfs_item_size_nr(eb, slot);
6085
6086 ptr = btrfs_item_ptr(eb, slot,
6087 struct btrfs_dev_stats_item);
6088
6089 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6090 if (item_size >= (1 + i) * sizeof(__le64))
6091 btrfs_dev_stat_set(device, i,
6092 btrfs_dev_stats_value(eb, ptr, i));
6093 else
6094 btrfs_dev_stat_reset(device, i);
6095 }
6096
6097 device->dev_stats_valid = 1;
6098 btrfs_dev_stat_print_on_load(device);
6099 btrfs_release_path(path);
6100 }
6101 mutex_unlock(&fs_devices->device_list_mutex);
6102
6103out:
6104 btrfs_free_path(path);
6105 return ret < 0 ? ret : 0;
6106}
6107
6108static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6109 struct btrfs_root *dev_root,
6110 struct btrfs_device *device)
6111{
6112 struct btrfs_path *path;
6113 struct btrfs_key key;
6114 struct extent_buffer *eb;
6115 struct btrfs_dev_stats_item *ptr;
6116 int ret;
6117 int i;
6118
6119 key.objectid = 0;
6120 key.type = BTRFS_DEV_STATS_KEY;
6121 key.offset = device->devid;
6122
6123 path = btrfs_alloc_path();
6124 BUG_ON(!path);
6125 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6126 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006127 printk_in_rcu(KERN_WARNING "btrfs: error %d while searching for dev_stats item for device %s!\n",
6128 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006129 goto out;
6130 }
6131
6132 if (ret == 0 &&
6133 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6134 /* need to delete old one and insert a new one */
6135 ret = btrfs_del_item(trans, dev_root, path);
6136 if (ret != 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006137 printk_in_rcu(KERN_WARNING "btrfs: delete too small dev_stats item for device %s failed %d!\n",
6138 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006139 goto out;
6140 }
6141 ret = 1;
6142 }
6143
6144 if (ret == 1) {
6145 /* need to insert a new item */
6146 btrfs_release_path(path);
6147 ret = btrfs_insert_empty_item(trans, dev_root, path,
6148 &key, sizeof(*ptr));
6149 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006150 printk_in_rcu(KERN_WARNING "btrfs: insert dev_stats item for device %s failed %d!\n",
6151 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006152 goto out;
6153 }
6154 }
6155
6156 eb = path->nodes[0];
6157 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6158 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6159 btrfs_set_dev_stats_value(eb, ptr, i,
6160 btrfs_dev_stat_read(device, i));
6161 btrfs_mark_buffer_dirty(eb);
6162
6163out:
6164 btrfs_free_path(path);
6165 return ret;
6166}
6167
6168/*
6169 * called from commit_transaction. Writes all changed device stats to disk.
6170 */
6171int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6172 struct btrfs_fs_info *fs_info)
6173{
6174 struct btrfs_root *dev_root = fs_info->dev_root;
6175 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6176 struct btrfs_device *device;
6177 int ret = 0;
6178
6179 mutex_lock(&fs_devices->device_list_mutex);
6180 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6181 if (!device->dev_stats_valid || !device->dev_stats_dirty)
6182 continue;
6183
6184 ret = update_dev_stat_item(trans, dev_root, device);
6185 if (!ret)
6186 device->dev_stats_dirty = 0;
6187 }
6188 mutex_unlock(&fs_devices->device_list_mutex);
6189
6190 return ret;
6191}
6192
Stefan Behrens442a4f62012-05-25 16:06:08 +02006193void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6194{
6195 btrfs_dev_stat_inc(dev, index);
6196 btrfs_dev_stat_print_on_error(dev);
6197}
6198
Eric Sandeen48a3b632013-04-25 20:41:01 +00006199static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006200{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006201 if (!dev->dev_stats_valid)
6202 return;
Josef Bacik606686e2012-06-04 14:03:51 -04006203 printk_ratelimited_in_rcu(KERN_ERR
Stefan Behrens442a4f62012-05-25 16:06:08 +02006204 "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006205 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006206 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6207 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6208 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6209 btrfs_dev_stat_read(dev,
6210 BTRFS_DEV_STAT_CORRUPTION_ERRS),
6211 btrfs_dev_stat_read(dev,
6212 BTRFS_DEV_STAT_GENERATION_ERRS));
6213}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006214
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006215static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6216{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006217 int i;
6218
6219 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6220 if (btrfs_dev_stat_read(dev, i) != 0)
6221 break;
6222 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6223 return; /* all values == 0, suppress message */
6224
Josef Bacik606686e2012-06-04 14:03:51 -04006225 printk_in_rcu(KERN_INFO "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
6226 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006227 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6228 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6229 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6230 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6231 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6232}
6233
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006234int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006235 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006236{
6237 struct btrfs_device *dev;
6238 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6239 int i;
6240
6241 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006242 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006243 mutex_unlock(&fs_devices->device_list_mutex);
6244
6245 if (!dev) {
6246 printk(KERN_WARNING
6247 "btrfs: get dev_stats failed, device not found\n");
6248 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006249 } else if (!dev->dev_stats_valid) {
6250 printk(KERN_WARNING
6251 "btrfs: get dev_stats failed, not yet valid\n");
6252 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006253 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006254 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6255 if (stats->nr_items > i)
6256 stats->values[i] =
6257 btrfs_dev_stat_read_and_reset(dev, i);
6258 else
6259 btrfs_dev_stat_reset(dev, i);
6260 }
6261 } else {
6262 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6263 if (stats->nr_items > i)
6264 stats->values[i] = btrfs_dev_stat_read(dev, i);
6265 }
6266 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6267 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6268 return 0;
6269}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006270
6271int btrfs_scratch_superblock(struct btrfs_device *device)
6272{
6273 struct buffer_head *bh;
6274 struct btrfs_super_block *disk_super;
6275
6276 bh = btrfs_read_dev_super(device->bdev);
6277 if (!bh)
6278 return -EINVAL;
6279 disk_super = (struct btrfs_super_block *)bh->b_data;
6280
6281 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6282 set_buffer_dirty(bh);
6283 sync_dirty_buffer(bh);
6284 brelse(bh);
6285
6286 return 0;
6287}