blob: 9ea5004652567994469483661ff789e40bce5c2d [file] [log] [blame]
Chris Mason0b86a832008-03-24 15:01:56 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18#include <linux/sched.h>
19#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -040021#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040022#include <linux/blkdev.h>
Chris Mason788f20e2008-04-28 15:29:42 -040023#include <linux/random.h>
Chris Masonb765ead2009-04-03 10:27:10 -040024#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000025#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020026#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020027#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050028#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020029#include <linux/semaphore.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050030#include <asm/div64.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050031#include "compat.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "ctree.h"
33#include "extent_map.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "print-tree.h"
37#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050038#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040039#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010040#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040041#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060042#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010043#include "dev-replace.h"
Chris Mason0b86a832008-03-24 15:01:56 -040044
Yan Zheng2b820322008-11-17 21:11:30 -050045static int init_first_rw_device(struct btrfs_trans_handle *trans,
46 struct btrfs_root *root,
47 struct btrfs_device *device);
48static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
Stefan Behrens733f4fb2012-05-25 16:06:10 +020049static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +000050static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +020051static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Yan Zheng2b820322008-11-17 21:11:30 -050052
Chris Mason8a4b83c2008-03-24 15:02:07 -040053static DEFINE_MUTEX(uuid_mutex);
54static LIST_HEAD(fs_uuids);
55
Chris Mason7d9eb122008-07-08 14:19:17 -040056static void lock_chunks(struct btrfs_root *root)
57{
Chris Mason7d9eb122008-07-08 14:19:17 -040058 mutex_lock(&root->fs_info->chunk_mutex);
59}
60
61static void unlock_chunks(struct btrfs_root *root)
62{
Chris Mason7d9eb122008-07-08 14:19:17 -040063 mutex_unlock(&root->fs_info->chunk_mutex);
64}
65
Ilya Dryomov2208a372013-08-12 14:33:03 +030066static struct btrfs_fs_devices *__alloc_fs_devices(void)
67{
68 struct btrfs_fs_devices *fs_devs;
69
70 fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS);
71 if (!fs_devs)
72 return ERR_PTR(-ENOMEM);
73
74 mutex_init(&fs_devs->device_list_mutex);
75
76 INIT_LIST_HEAD(&fs_devs->devices);
77 INIT_LIST_HEAD(&fs_devs->alloc_list);
78 INIT_LIST_HEAD(&fs_devs->list);
79
80 return fs_devs;
81}
82
83/**
84 * alloc_fs_devices - allocate struct btrfs_fs_devices
85 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
86 * generated.
87 *
88 * Return: a pointer to a new &struct btrfs_fs_devices on success;
89 * ERR_PTR() on error. Returned struct is not linked onto any lists and
90 * can be destroyed with kfree() right away.
91 */
92static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
93{
94 struct btrfs_fs_devices *fs_devs;
95
96 fs_devs = __alloc_fs_devices();
97 if (IS_ERR(fs_devs))
98 return fs_devs;
99
100 if (fsid)
101 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
102 else
103 generate_random_uuid(fs_devs->fsid);
104
105 return fs_devs;
106}
107
Yan Zhenge4404d62008-12-12 10:03:26 -0500108static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
109{
110 struct btrfs_device *device;
111 WARN_ON(fs_devices->opened);
112 while (!list_empty(&fs_devices->devices)) {
113 device = list_entry(fs_devices->devices.next,
114 struct btrfs_device, dev_list);
115 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400116 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500117 kfree(device);
118 }
119 kfree(fs_devices);
120}
121
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000122static void btrfs_kobject_uevent(struct block_device *bdev,
123 enum kobject_action action)
124{
125 int ret;
126
127 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
128 if (ret)
129 pr_warn("Sending event '%d' to kobject: '%s' (%p): failed\n",
130 action,
131 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
132 &disk_to_dev(bdev->bd_disk)->kobj);
133}
134
Jeff Mahoney143bede2012-03-01 14:56:26 +0100135void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400136{
137 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400138
Yan Zheng2b820322008-11-17 21:11:30 -0500139 while (!list_empty(&fs_uuids)) {
140 fs_devices = list_entry(fs_uuids.next,
141 struct btrfs_fs_devices, list);
142 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500143 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400144 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400145}
146
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300147static struct btrfs_device *__alloc_device(void)
148{
149 struct btrfs_device *dev;
150
151 dev = kzalloc(sizeof(*dev), GFP_NOFS);
152 if (!dev)
153 return ERR_PTR(-ENOMEM);
154
155 INIT_LIST_HEAD(&dev->dev_list);
156 INIT_LIST_HEAD(&dev->dev_alloc_list);
157
158 spin_lock_init(&dev->io_lock);
159
160 spin_lock_init(&dev->reada_lock);
161 atomic_set(&dev->reada_in_flight, 0);
162 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_WAIT);
163 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_WAIT);
164
165 return dev;
166}
167
Chris Masona1b32a52008-09-05 16:09:51 -0400168static noinline struct btrfs_device *__find_device(struct list_head *head,
169 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400170{
171 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400172
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500173 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400174 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400175 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400176 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400177 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400178 }
179 return NULL;
180}
181
Chris Masona1b32a52008-09-05 16:09:51 -0400182static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400183{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400184 struct btrfs_fs_devices *fs_devices;
185
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500186 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400187 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
188 return fs_devices;
189 }
190 return NULL;
191}
192
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100193static int
194btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
195 int flush, struct block_device **bdev,
196 struct buffer_head **bh)
197{
198 int ret;
199
200 *bdev = blkdev_get_by_path(device_path, flags, holder);
201
202 if (IS_ERR(*bdev)) {
203 ret = PTR_ERR(*bdev);
204 printk(KERN_INFO "btrfs: open %s failed\n", device_path);
205 goto error;
206 }
207
208 if (flush)
209 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
210 ret = set_blocksize(*bdev, 4096);
211 if (ret) {
212 blkdev_put(*bdev, flags);
213 goto error;
214 }
215 invalidate_bdev(*bdev);
216 *bh = btrfs_read_dev_super(*bdev);
217 if (!*bh) {
218 ret = -EINVAL;
219 blkdev_put(*bdev, flags);
220 goto error;
221 }
222
223 return 0;
224
225error:
226 *bdev = NULL;
227 *bh = NULL;
228 return ret;
229}
230
Chris Masonffbd5172009-04-20 15:50:09 -0400231static void requeue_list(struct btrfs_pending_bios *pending_bios,
232 struct bio *head, struct bio *tail)
233{
234
235 struct bio *old_head;
236
237 old_head = pending_bios->head;
238 pending_bios->head = head;
239 if (pending_bios->tail)
240 tail->bi_next = old_head;
241 else
242 pending_bios->tail = tail;
243}
244
Chris Mason8b712842008-06-11 16:50:36 -0400245/*
246 * we try to collect pending bios for a device so we don't get a large
247 * number of procs sending bios down to the same device. This greatly
248 * improves the schedulers ability to collect and merge the bios.
249 *
250 * But, it also turns into a long list of bios to process and that is sure
251 * to eventually make the worker thread block. The solution here is to
252 * make some progress and then put this work struct back at the end of
253 * the list if the block device is congested. This way, multiple devices
254 * can make progress from a single worker thread.
255 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100256static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400257{
258 struct bio *pending;
259 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400260 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400261 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400262 struct bio *tail;
263 struct bio *cur;
264 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400265 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400266 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400267 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400268 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400269 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000270 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400271 struct blk_plug plug;
272
273 /*
274 * this function runs all the bios we've collected for
275 * a particular device. We don't want to wander off to
276 * another device without first sending all of these down.
277 * So, setup a plug here and finish it off before we return
278 */
279 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400280
Chris Masonbedf7622009-04-03 10:32:58 -0400281 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400282 fs_info = device->dev_root->fs_info;
283 limit = btrfs_async_submit_limit(fs_info);
284 limit = limit * 2 / 3;
285
Chris Mason8b712842008-06-11 16:50:36 -0400286loop:
287 spin_lock(&device->io_lock);
288
Chris Masona6837052009-02-04 09:19:41 -0500289loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400290 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400291
Chris Mason8b712842008-06-11 16:50:36 -0400292 /* take all the bios off the list at once and process them
293 * later on (without the lock held). But, remember the
294 * tail and other pointers so the bios can be properly reinserted
295 * into the list if we hit congestion
296 */
Chris Masond84275c2009-06-09 15:39:08 -0400297 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400298 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400299 force_reg = 1;
300 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400301 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400302 force_reg = 0;
303 }
Chris Masonffbd5172009-04-20 15:50:09 -0400304
305 pending = pending_bios->head;
306 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400307 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400308
309 /*
310 * if pending was null this time around, no bios need processing
311 * at all and we can stop. Otherwise it'll loop back up again
312 * and do an additional check so no bios are missed.
313 *
314 * device->running_pending is used to synchronize with the
315 * schedule_bio code.
316 */
Chris Masonffbd5172009-04-20 15:50:09 -0400317 if (device->pending_sync_bios.head == NULL &&
318 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400319 again = 0;
320 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400321 } else {
322 again = 1;
323 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400324 }
Chris Masonffbd5172009-04-20 15:50:09 -0400325
326 pending_bios->head = NULL;
327 pending_bios->tail = NULL;
328
Chris Mason8b712842008-06-11 16:50:36 -0400329 spin_unlock(&device->io_lock);
330
Chris Masond3977122009-01-05 21:25:51 -0500331 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400332
333 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400334 /* we want to work on both lists, but do more bios on the
335 * sync list than the regular list
336 */
337 if ((num_run > 32 &&
338 pending_bios != &device->pending_sync_bios &&
339 device->pending_sync_bios.head) ||
340 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
341 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400342 spin_lock(&device->io_lock);
343 requeue_list(pending_bios, pending, tail);
344 goto loop_lock;
345 }
346
Chris Mason8b712842008-06-11 16:50:36 -0400347 cur = pending;
348 pending = pending->bi_next;
349 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400350
Josef Bacik66657b32012-08-01 15:36:24 -0400351 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400352 waitqueue_active(&fs_info->async_submit_wait))
353 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400354
355 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400356
Chris Mason2ab1ba62011-08-04 14:28:36 -0400357 /*
358 * if we're doing the sync list, record that our
359 * plug has some sync requests on it
360 *
361 * If we're doing the regular list and there are
362 * sync requests sitting around, unplug before
363 * we add more
364 */
365 if (pending_bios == &device->pending_sync_bios) {
366 sync_pending = 1;
367 } else if (sync_pending) {
368 blk_finish_plug(&plug);
369 blk_start_plug(&plug);
370 sync_pending = 0;
371 }
372
Stefan Behrens21adbd52011-11-09 13:44:05 +0100373 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400374 num_run++;
375 batch_run++;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100376 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400377 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400378
379 /*
380 * we made progress, there is more work to do and the bdi
381 * is now congested. Back off and let other work structs
382 * run instead
383 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400384 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500385 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400386 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400387
Chris Masonb765ead2009-04-03 10:27:10 -0400388 ioc = current->io_context;
389
390 /*
391 * the main goal here is that we don't want to
392 * block if we're going to be able to submit
393 * more requests without blocking.
394 *
395 * This code does two great things, it pokes into
396 * the elevator code from a filesystem _and_
397 * it makes assumptions about how batching works.
398 */
399 if (ioc && ioc->nr_batch_requests > 0 &&
400 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
401 (last_waited == 0 ||
402 ioc->last_waited == last_waited)) {
403 /*
404 * we want to go through our batch of
405 * requests and stop. So, we copy out
406 * the ioc->last_waited time and test
407 * against it before looping
408 */
409 last_waited = ioc->last_waited;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100410 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400411 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400412 continue;
413 }
Chris Mason8b712842008-06-11 16:50:36 -0400414 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400415 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500416 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400417
418 spin_unlock(&device->io_lock);
419 btrfs_requeue_work(&device->work);
420 goto done;
421 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500422 /* unplug every 64 requests just for good measure */
423 if (batch_run % 64 == 0) {
424 blk_finish_plug(&plug);
425 blk_start_plug(&plug);
426 sync_pending = 0;
427 }
Chris Mason8b712842008-06-11 16:50:36 -0400428 }
Chris Masonffbd5172009-04-20 15:50:09 -0400429
Chris Mason51684082010-03-10 15:33:32 -0500430 cond_resched();
431 if (again)
432 goto loop;
433
434 spin_lock(&device->io_lock);
435 if (device->pending_bios.head || device->pending_sync_bios.head)
436 goto loop_lock;
437 spin_unlock(&device->io_lock);
438
Chris Mason8b712842008-06-11 16:50:36 -0400439done:
Chris Mason211588a2011-04-19 20:12:40 -0400440 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400441}
442
Christoph Hellwigb2950862008-12-02 09:54:17 -0500443static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400444{
445 struct btrfs_device *device;
446
447 device = container_of(work, struct btrfs_device, work);
448 run_scheduled_bios(device);
449}
450
Chris Masona1b32a52008-09-05 16:09:51 -0400451static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400452 struct btrfs_super_block *disk_super,
453 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
454{
455 struct btrfs_device *device;
456 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400457 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400458 u64 found_transid = btrfs_super_generation(disk_super);
459
460 fs_devices = find_fsid(disk_super->fsid);
461 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300462 fs_devices = alloc_fs_devices(disk_super->fsid);
463 if (IS_ERR(fs_devices))
464 return PTR_ERR(fs_devices);
465
Chris Mason8a4b83c2008-03-24 15:02:07 -0400466 list_add(&fs_devices->list, &fs_uuids);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400467 fs_devices->latest_devid = devid;
468 fs_devices->latest_trans = found_transid;
Ilya Dryomov2208a372013-08-12 14:33:03 +0300469
Chris Mason8a4b83c2008-03-24 15:02:07 -0400470 device = NULL;
471 } else {
Chris Masona4437552008-04-18 10:29:38 -0400472 device = __find_device(&fs_devices->devices, devid,
473 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400474 }
475 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500476 if (fs_devices->opened)
477 return -EBUSY;
478
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300479 device = btrfs_alloc_device(NULL, &devid,
480 disk_super->dev_item.uuid);
481 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400482 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300483 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400484 }
Josef Bacik606686e2012-06-04 14:03:51 -0400485
486 name = rcu_string_strdup(path, GFP_NOFS);
487 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400488 kfree(device);
489 return -ENOMEM;
490 }
Josef Bacik606686e2012-06-04 14:03:51 -0400491 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200492
Chris Masone5e9a522009-06-10 15:17:02 -0400493 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000494 list_add_rcu(&device->dev_list, &fs_devices->devices);
Chris Masone5e9a522009-06-10 15:17:02 -0400495 mutex_unlock(&fs_devices->device_list_mutex);
496
Yan Zheng2b820322008-11-17 21:11:30 -0500497 device->fs_devices = fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400498 fs_devices->num_devices++;
Josef Bacik606686e2012-06-04 14:03:51 -0400499 } else if (!device->name || strcmp(device->name->str, path)) {
500 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000501 if (!name)
502 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400503 rcu_string_free(device->name);
504 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500505 if (device->missing) {
506 fs_devices->missing_devices--;
507 device->missing = 0;
508 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400509 }
510
511 if (found_transid > fs_devices->latest_trans) {
512 fs_devices->latest_devid = devid;
513 fs_devices->latest_trans = found_transid;
514 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400515 *fs_devices_ret = fs_devices;
516 return 0;
517}
518
Yan Zhenge4404d62008-12-12 10:03:26 -0500519static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
520{
521 struct btrfs_fs_devices *fs_devices;
522 struct btrfs_device *device;
523 struct btrfs_device *orig_dev;
524
Ilya Dryomov2208a372013-08-12 14:33:03 +0300525 fs_devices = alloc_fs_devices(orig->fsid);
526 if (IS_ERR(fs_devices))
527 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500528
Yan Zhenge4404d62008-12-12 10:03:26 -0500529 fs_devices->latest_devid = orig->latest_devid;
530 fs_devices->latest_trans = orig->latest_trans;
Josef Bacik02db0842012-06-21 16:03:58 -0400531 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500532
Xiao Guangrong46224702011-04-20 10:08:47 +0000533 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500534 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400535 struct rcu_string *name;
536
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300537 device = btrfs_alloc_device(NULL, &orig_dev->devid,
538 orig_dev->uuid);
539 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500540 goto error;
541
Josef Bacik606686e2012-06-04 14:03:51 -0400542 /*
543 * This is ok to do without rcu read locked because we hold the
544 * uuid mutex so nothing we touch in here is going to disappear.
545 */
546 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
547 if (!name) {
Julia Lawallfd2696f2009-09-29 13:51:04 -0400548 kfree(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500549 goto error;
Julia Lawallfd2696f2009-09-29 13:51:04 -0400550 }
Josef Bacik606686e2012-06-04 14:03:51 -0400551 rcu_assign_pointer(device->name, name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500552
Yan Zhenge4404d62008-12-12 10:03:26 -0500553 list_add(&device->dev_list, &fs_devices->devices);
554 device->fs_devices = fs_devices;
555 fs_devices->num_devices++;
556 }
557 return fs_devices;
558error:
559 free_fs_devices(fs_devices);
560 return ERR_PTR(-ENOMEM);
561}
562
Stefan Behrens8dabb742012-11-06 13:15:27 +0100563void btrfs_close_extra_devices(struct btrfs_fs_info *fs_info,
564 struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400565{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500566 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400567
Chris Masona6b0d5c2012-02-20 20:53:43 -0500568 struct block_device *latest_bdev = NULL;
569 u64 latest_devid = 0;
570 u64 latest_transid = 0;
571
Chris Masondfe25022008-05-13 13:46:40 -0400572 mutex_lock(&uuid_mutex);
573again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000574 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500575 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500576 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100577 if (!device->is_tgtdev_for_dev_replace &&
578 (!latest_transid ||
579 device->generation > latest_transid)) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500580 latest_devid = device->devid;
581 latest_transid = device->generation;
582 latest_bdev = device->bdev;
583 }
Yan Zheng2b820322008-11-17 21:11:30 -0500584 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500585 }
Yan Zheng2b820322008-11-17 21:11:30 -0500586
Stefan Behrens8dabb742012-11-06 13:15:27 +0100587 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
588 /*
589 * In the first step, keep the device which has
590 * the correct fsid and the devid that is used
591 * for the dev_replace procedure.
592 * In the second step, the dev_replace state is
593 * read from the device tree and it is known
594 * whether the procedure is really active or
595 * not, which means whether this device is
596 * used or whether it should be removed.
597 */
598 if (step == 0 || device->is_tgtdev_for_dev_replace) {
599 continue;
600 }
601 }
Yan Zheng2b820322008-11-17 21:11:30 -0500602 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100603 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500604 device->bdev = NULL;
605 fs_devices->open_devices--;
606 }
607 if (device->writeable) {
608 list_del_init(&device->dev_alloc_list);
609 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100610 if (!device->is_tgtdev_for_dev_replace)
611 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500612 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500613 list_del_init(&device->dev_list);
614 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400615 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500616 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400617 }
Yan Zheng2b820322008-11-17 21:11:30 -0500618
619 if (fs_devices->seed) {
620 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500621 goto again;
622 }
623
Chris Masona6b0d5c2012-02-20 20:53:43 -0500624 fs_devices->latest_bdev = latest_bdev;
625 fs_devices->latest_devid = latest_devid;
626 fs_devices->latest_trans = latest_transid;
627
Chris Masondfe25022008-05-13 13:46:40 -0400628 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400629}
Chris Masona0af4692008-05-13 16:03:06 -0400630
Xiao Guangrong1f781602011-04-20 10:09:16 +0000631static void __free_device(struct work_struct *work)
632{
633 struct btrfs_device *device;
634
635 device = container_of(work, struct btrfs_device, rcu_work);
636
637 if (device->bdev)
638 blkdev_put(device->bdev, device->mode);
639
Josef Bacik606686e2012-06-04 14:03:51 -0400640 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000641 kfree(device);
642}
643
644static void free_device(struct rcu_head *head)
645{
646 struct btrfs_device *device;
647
648 device = container_of(head, struct btrfs_device, rcu);
649
650 INIT_WORK(&device->rcu_work, __free_device);
651 schedule_work(&device->rcu_work);
652}
653
Yan Zheng2b820322008-11-17 21:11:30 -0500654static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400655{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400656 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500657
Yan Zheng2b820322008-11-17 21:11:30 -0500658 if (--fs_devices->opened > 0)
659 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400660
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000661 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500662 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Xiao Guangrong1f781602011-04-20 10:09:16 +0000663 struct btrfs_device *new_device;
Josef Bacik606686e2012-06-04 14:03:51 -0400664 struct rcu_string *name;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000665
666 if (device->bdev)
Chris Masona0af4692008-05-13 16:03:06 -0400667 fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000668
Stefan Behrens8dabb742012-11-06 13:15:27 +0100669 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -0500670 list_del_init(&device->dev_alloc_list);
671 fs_devices->rw_devices--;
672 }
673
Josef Bacikd5e20032011-08-04 14:52:27 +0000674 if (device->can_discard)
675 fs_devices->num_can_discard--;
676
Ilya Dryomova1e87802013-08-12 14:33:04 +0300677 new_device = btrfs_alloc_device(NULL, &device->devid,
678 device->uuid);
679 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
Josef Bacik606686e2012-06-04 14:03:51 -0400680
681 /* Safe because we are under uuid_mutex */
Josef Bacik99f59442012-08-02 10:23:59 -0400682 if (device->name) {
683 name = rcu_string_strdup(device->name->str, GFP_NOFS);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300684 BUG_ON(!name); /* -ENOMEM */
Josef Bacik99f59442012-08-02 10:23:59 -0400685 rcu_assign_pointer(new_device->name, name);
686 }
Ilya Dryomova1e87802013-08-12 14:33:04 +0300687
Xiao Guangrong1f781602011-04-20 10:09:16 +0000688 list_replace_rcu(&device->dev_list, &new_device->dev_list);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300689 new_device->fs_devices = device->fs_devices;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000690
691 call_rcu(&device->rcu, free_device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400692 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000693 mutex_unlock(&fs_devices->device_list_mutex);
694
Yan Zhenge4404d62008-12-12 10:03:26 -0500695 WARN_ON(fs_devices->open_devices);
696 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500697 fs_devices->opened = 0;
698 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500699
Chris Mason8a4b83c2008-03-24 15:02:07 -0400700 return 0;
701}
702
Yan Zheng2b820322008-11-17 21:11:30 -0500703int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
704{
Yan Zhenge4404d62008-12-12 10:03:26 -0500705 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500706 int ret;
707
708 mutex_lock(&uuid_mutex);
709 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500710 if (!fs_devices->opened) {
711 seed_devices = fs_devices->seed;
712 fs_devices->seed = NULL;
713 }
Yan Zheng2b820322008-11-17 21:11:30 -0500714 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500715
716 while (seed_devices) {
717 fs_devices = seed_devices;
718 seed_devices = fs_devices->seed;
719 __btrfs_close_devices(fs_devices);
720 free_fs_devices(fs_devices);
721 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000722 /*
723 * Wait for rcu kworkers under __btrfs_close_devices
724 * to finish all blkdev_puts so device is really
725 * free when umount is done.
726 */
727 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500728 return ret;
729}
730
Yan Zhenge4404d62008-12-12 10:03:26 -0500731static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
732 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400733{
Josef Bacikd5e20032011-08-04 14:52:27 +0000734 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400735 struct block_device *bdev;
736 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400737 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400738 struct block_device *latest_bdev = NULL;
739 struct buffer_head *bh;
740 struct btrfs_super_block *disk_super;
741 u64 latest_devid = 0;
742 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400743 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500744 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400745 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400746
Tejun Heod4d77622010-11-13 11:55:18 +0100747 flags |= FMODE_EXCL;
748
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500749 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400750 if (device->bdev)
751 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400752 if (!device->name)
753 continue;
754
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000755 /* Just open everything we can; ignore failures here */
756 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
757 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100758 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400759
760 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000761 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400762 if (devid != device->devid)
763 goto error_brelse;
764
Yan Zheng2b820322008-11-17 21:11:30 -0500765 if (memcmp(device->uuid, disk_super->dev_item.uuid,
766 BTRFS_UUID_SIZE))
767 goto error_brelse;
768
769 device->generation = btrfs_super_generation(disk_super);
770 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400771 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500772 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400773 latest_bdev = bdev;
774 }
775
Yan Zheng2b820322008-11-17 21:11:30 -0500776 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
777 device->writeable = 0;
778 } else {
779 device->writeable = !bdev_read_only(bdev);
780 seeding = 0;
781 }
782
Josef Bacikd5e20032011-08-04 14:52:27 +0000783 q = bdev_get_queue(bdev);
784 if (blk_queue_discard(q)) {
785 device->can_discard = 1;
786 fs_devices->num_can_discard++;
787 }
788
Chris Mason8a4b83c2008-03-24 15:02:07 -0400789 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400790 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500791 device->mode = flags;
792
Chris Masonc2898112009-06-10 09:51:32 -0400793 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
794 fs_devices->rotating = 1;
795
Chris Masona0af4692008-05-13 16:03:06 -0400796 fs_devices->open_devices++;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100797 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -0500798 fs_devices->rw_devices++;
799 list_add(&device->dev_alloc_list,
800 &fs_devices->alloc_list);
801 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000802 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400803 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400804
Chris Masona0af4692008-05-13 16:03:06 -0400805error_brelse:
806 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100807 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400808 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400809 }
Chris Masona0af4692008-05-13 16:03:06 -0400810 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300811 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400812 goto out;
813 }
Yan Zheng2b820322008-11-17 21:11:30 -0500814 fs_devices->seeding = seeding;
815 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400816 fs_devices->latest_bdev = latest_bdev;
817 fs_devices->latest_devid = latest_devid;
818 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500819 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400820out:
Yan Zheng2b820322008-11-17 21:11:30 -0500821 return ret;
822}
823
824int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500825 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500826{
827 int ret;
828
829 mutex_lock(&uuid_mutex);
830 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500831 fs_devices->opened++;
832 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500833 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500834 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500835 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400836 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400837 return ret;
838}
839
David Sterba6f60cbd2013-02-15 11:31:02 -0700840/*
841 * Look for a btrfs signature on a device. This may be called out of the mount path
842 * and we are not allowed to call set_blocksize during the scan. The superblock
843 * is read via pagecache
844 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500845int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400846 struct btrfs_fs_devices **fs_devices_ret)
847{
848 struct btrfs_super_block *disk_super;
849 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -0700850 struct page *page;
851 void *p;
852 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400853 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400854 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -0400855 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700856 u64 bytenr;
857 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400858
David Sterba6f60cbd2013-02-15 11:31:02 -0700859 /*
860 * we would like to check all the supers, but that would make
861 * a btrfs mount succeed after a mkfs from a different FS.
862 * So, we need to add a special mount option to scan for
863 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
864 */
865 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +0100866 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -0500867 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -0700868
869 bdev = blkdev_get_by_path(path, flags, holder);
870
871 if (IS_ERR(bdev)) {
872 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100873 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -0700874 }
875
876 /* make sure our super fits in the device */
877 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
878 goto error_bdev_put;
879
880 /* make sure our super fits in the page */
881 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
882 goto error_bdev_put;
883
884 /* make sure our super doesn't straddle pages on disk */
885 index = bytenr >> PAGE_CACHE_SHIFT;
886 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
887 goto error_bdev_put;
888
889 /* pull in the page with our super */
890 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
891 index, GFP_NOFS);
892
893 if (IS_ERR_OR_NULL(page))
894 goto error_bdev_put;
895
896 p = kmap(page);
897
898 /* align our pointer to the offset of the super block */
899 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
900
901 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +0800902 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -0700903 goto error_unmap;
904
Xiao Guangronga3438322010-01-06 11:48:18 +0000905 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400906 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -0400907 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -0700908
Stefan Behrensd03f9182012-11-05 13:10:49 +0000909 if (disk_super->label[0]) {
910 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
911 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
Chris Masond3977122009-01-05 21:25:51 -0500912 printk(KERN_INFO "device label %s ", disk_super->label);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000913 } else {
Ilya Dryomov22b63a22011-02-09 16:05:31 +0200914 printk(KERN_INFO "device fsid %pU ", disk_super->fsid);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000915 }
David Sterba6f60cbd2013-02-15 11:31:02 -0700916
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200917 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
David Sterba6f60cbd2013-02-15 11:31:02 -0700918
Chris Mason8a4b83c2008-03-24 15:02:07 -0400919 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
Josef Bacik02db0842012-06-21 16:03:58 -0400920 if (!ret && fs_devices_ret)
921 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700922
923error_unmap:
924 kunmap(page);
925 page_cache_release(page);
926
927error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +0100928 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400929error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100930 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400931 return ret;
932}
Chris Mason0b86a832008-03-24 15:01:56 -0400933
Miao Xie6d07bce2011-01-05 10:07:31 +0000934/* helper to account the used device space in the range */
935int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
936 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -0400937{
938 struct btrfs_key key;
939 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +0000940 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500941 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +0000942 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400943 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +0000944 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400945 struct extent_buffer *l;
946
Miao Xie6d07bce2011-01-05 10:07:31 +0000947 *length = 0;
948
Stefan Behrens63a212a2012-11-05 18:29:28 +0100949 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +0000950 return 0;
951
Yan Zheng2b820322008-11-17 21:11:30 -0500952 path = btrfs_alloc_path();
953 if (!path)
954 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400955 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -0400956
Chris Mason0b86a832008-03-24 15:01:56 -0400957 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +0000958 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400959 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +0000960
961 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -0400962 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000963 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400964 if (ret > 0) {
965 ret = btrfs_previous_item(root, path, key.objectid, key.type);
966 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000967 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400968 }
Miao Xie6d07bce2011-01-05 10:07:31 +0000969
Chris Mason0b86a832008-03-24 15:01:56 -0400970 while (1) {
971 l = path->nodes[0];
972 slot = path->slots[0];
973 if (slot >= btrfs_header_nritems(l)) {
974 ret = btrfs_next_leaf(root, path);
975 if (ret == 0)
976 continue;
977 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000978 goto out;
979
980 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400981 }
982 btrfs_item_key_to_cpu(l, &key, slot);
983
984 if (key.objectid < device->devid)
985 goto next;
986
987 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +0000988 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400989
Chris Masond3977122009-01-05 21:25:51 -0500990 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400991 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400992
Chris Mason0b86a832008-03-24 15:01:56 -0400993 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +0000994 extent_end = key.offset + btrfs_dev_extent_length(l,
995 dev_extent);
996 if (key.offset <= start && extent_end > end) {
997 *length = end - start + 1;
998 break;
999 } else if (key.offset <= start && extent_end > start)
1000 *length += extent_end - start;
1001 else if (key.offset > start && extent_end <= end)
1002 *length += extent_end - key.offset;
1003 else if (key.offset > start && key.offset <= end) {
1004 *length += end - key.offset + 1;
1005 break;
1006 } else if (key.offset > end)
1007 break;
1008
1009next:
1010 path->slots[0]++;
1011 }
1012 ret = 0;
1013out:
1014 btrfs_free_path(path);
1015 return ret;
1016}
1017
Josef Bacik6df9a952013-06-27 13:22:46 -04001018static int contains_pending_extent(struct btrfs_trans_handle *trans,
1019 struct btrfs_device *device,
1020 u64 *start, u64 len)
1021{
1022 struct extent_map *em;
1023 int ret = 0;
1024
1025 list_for_each_entry(em, &trans->transaction->pending_chunks, list) {
1026 struct map_lookup *map;
1027 int i;
1028
1029 map = (struct map_lookup *)em->bdev;
1030 for (i = 0; i < map->num_stripes; i++) {
1031 if (map->stripes[i].dev != device)
1032 continue;
1033 if (map->stripes[i].physical >= *start + len ||
1034 map->stripes[i].physical + em->orig_block_len <=
1035 *start)
1036 continue;
1037 *start = map->stripes[i].physical +
1038 em->orig_block_len;
1039 ret = 1;
1040 }
1041 }
1042
1043 return ret;
1044}
1045
1046
Chris Mason0b86a832008-03-24 15:01:56 -04001047/*
Miao Xie7bfc8372011-01-05 10:07:26 +00001048 * find_free_dev_extent - find free space in the specified device
Miao Xie7bfc8372011-01-05 10:07:26 +00001049 * @device: the device which we search the free space in
1050 * @num_bytes: the size of the free space that we need
1051 * @start: store the start of the free space.
1052 * @len: the size of the free space. that we find, or the size of the max
1053 * free space if we don't find suitable free space
1054 *
Chris Mason0b86a832008-03-24 15:01:56 -04001055 * this uses a pretty simple search, the expectation is that it is
1056 * called very infrequently and that a given device has a small number
1057 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001058 *
1059 * @start is used to store the start of the free space if we find. But if we
1060 * don't find suitable free space, it will be used to store the start position
1061 * of the max free space.
1062 *
1063 * @len is used to store the size of the free space that we find.
1064 * But if we don't find suitable free space, it is used to store the size of
1065 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001066 */
Josef Bacik6df9a952013-06-27 13:22:46 -04001067int find_free_dev_extent(struct btrfs_trans_handle *trans,
1068 struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +00001069 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001070{
1071 struct btrfs_key key;
1072 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001073 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001074 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001075 u64 hole_size;
1076 u64 max_hole_start;
1077 u64 max_hole_size;
1078 u64 extent_end;
1079 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001080 u64 search_end = device->total_bytes;
1081 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001082 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001083 struct extent_buffer *l;
1084
Chris Mason0b86a832008-03-24 15:01:56 -04001085 /* FIXME use last free of some kind */
1086
1087 /* we don't want to overwrite the superblock on the drive,
1088 * so we make sure to start at an offset of at least 1MB
1089 */
Arne Jansena9c9bf62011-04-12 11:01:20 +02001090 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
Chris Mason0b86a832008-03-24 15:01:56 -04001091
Josef Bacik6df9a952013-06-27 13:22:46 -04001092 path = btrfs_alloc_path();
1093 if (!path)
1094 return -ENOMEM;
1095again:
Miao Xie7bfc8372011-01-05 10:07:26 +00001096 max_hole_start = search_start;
1097 max_hole_size = 0;
liubo38c01b92011-08-02 02:39:03 +00001098 hole_size = 0;
Miao Xie7bfc8372011-01-05 10:07:26 +00001099
Stefan Behrens63a212a2012-11-05 18:29:28 +01001100 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001101 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001102 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001103 }
1104
Miao Xie7bfc8372011-01-05 10:07:26 +00001105 path->reada = 2;
Josef Bacik6df9a952013-06-27 13:22:46 -04001106 path->search_commit_root = 1;
1107 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001108
Chris Mason0b86a832008-03-24 15:01:56 -04001109 key.objectid = device->devid;
1110 key.offset = search_start;
1111 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001112
Li Zefan125ccb02011-12-08 15:07:24 +08001113 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001114 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001115 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001116 if (ret > 0) {
1117 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1118 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001119 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001120 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001121
Chris Mason0b86a832008-03-24 15:01:56 -04001122 while (1) {
1123 l = path->nodes[0];
1124 slot = path->slots[0];
1125 if (slot >= btrfs_header_nritems(l)) {
1126 ret = btrfs_next_leaf(root, path);
1127 if (ret == 0)
1128 continue;
1129 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001130 goto out;
1131
1132 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001133 }
1134 btrfs_item_key_to_cpu(l, &key, slot);
1135
1136 if (key.objectid < device->devid)
1137 goto next;
1138
1139 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001140 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001141
Chris Mason0b86a832008-03-24 15:01:56 -04001142 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
1143 goto next;
1144
Miao Xie7bfc8372011-01-05 10:07:26 +00001145 if (key.offset > search_start) {
1146 hole_size = key.offset - search_start;
1147
Josef Bacik6df9a952013-06-27 13:22:46 -04001148 /*
1149 * Have to check before we set max_hole_start, otherwise
1150 * we could end up sending back this offset anyway.
1151 */
1152 if (contains_pending_extent(trans, device,
1153 &search_start,
1154 hole_size))
1155 hole_size = 0;
1156
Miao Xie7bfc8372011-01-05 10:07:26 +00001157 if (hole_size > max_hole_size) {
1158 max_hole_start = search_start;
1159 max_hole_size = hole_size;
1160 }
1161
1162 /*
1163 * If this free space is greater than which we need,
1164 * it must be the max free space that we have found
1165 * until now, so max_hole_start must point to the start
1166 * of this free space and the length of this free space
1167 * is stored in max_hole_size. Thus, we return
1168 * max_hole_start and max_hole_size and go back to the
1169 * caller.
1170 */
1171 if (hole_size >= num_bytes) {
1172 ret = 0;
1173 goto out;
1174 }
1175 }
1176
Chris Mason0b86a832008-03-24 15:01:56 -04001177 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001178 extent_end = key.offset + btrfs_dev_extent_length(l,
1179 dev_extent);
1180 if (extent_end > search_start)
1181 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001182next:
1183 path->slots[0]++;
1184 cond_resched();
1185 }
Chris Mason0b86a832008-03-24 15:01:56 -04001186
liubo38c01b92011-08-02 02:39:03 +00001187 /*
1188 * At this point, search_start should be the end of
1189 * allocated dev extents, and when shrinking the device,
1190 * search_end may be smaller than search_start.
1191 */
1192 if (search_end > search_start)
1193 hole_size = search_end - search_start;
1194
Miao Xie7bfc8372011-01-05 10:07:26 +00001195 if (hole_size > max_hole_size) {
1196 max_hole_start = search_start;
1197 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001198 }
Chris Mason0b86a832008-03-24 15:01:56 -04001199
Josef Bacik6df9a952013-06-27 13:22:46 -04001200 if (contains_pending_extent(trans, device, &search_start, hole_size)) {
1201 btrfs_release_path(path);
1202 goto again;
1203 }
1204
Miao Xie7bfc8372011-01-05 10:07:26 +00001205 /* See above. */
1206 if (hole_size < num_bytes)
1207 ret = -ENOSPC;
1208 else
1209 ret = 0;
1210
1211out:
Yan Zheng2b820322008-11-17 21:11:30 -05001212 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001213 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001214 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001215 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001216 return ret;
1217}
1218
Christoph Hellwigb2950862008-12-02 09:54:17 -05001219static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001220 struct btrfs_device *device,
1221 u64 start)
1222{
1223 int ret;
1224 struct btrfs_path *path;
1225 struct btrfs_root *root = device->dev_root;
1226 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001227 struct btrfs_key found_key;
1228 struct extent_buffer *leaf = NULL;
1229 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001230
1231 path = btrfs_alloc_path();
1232 if (!path)
1233 return -ENOMEM;
1234
1235 key.objectid = device->devid;
1236 key.offset = start;
1237 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001238again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001239 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001240 if (ret > 0) {
1241 ret = btrfs_previous_item(root, path, key.objectid,
1242 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001243 if (ret)
1244 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001245 leaf = path->nodes[0];
1246 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1247 extent = btrfs_item_ptr(leaf, path->slots[0],
1248 struct btrfs_dev_extent);
1249 BUG_ON(found_key.offset > start || found_key.offset +
1250 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001251 key = found_key;
1252 btrfs_release_path(path);
1253 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001254 } else if (ret == 0) {
1255 leaf = path->nodes[0];
1256 extent = btrfs_item_ptr(leaf, path->slots[0],
1257 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001258 } else {
1259 btrfs_error(root->fs_info, ret, "Slot search failed");
1260 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001261 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001262
Josef Bacik2bf64752011-09-26 17:12:22 -04001263 if (device->bytes_used > 0) {
1264 u64 len = btrfs_dev_extent_length(leaf, extent);
1265 device->bytes_used -= len;
1266 spin_lock(&root->fs_info->free_chunk_lock);
1267 root->fs_info->free_chunk_space += len;
1268 spin_unlock(&root->fs_info->free_chunk_lock);
1269 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001270 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001271 if (ret) {
1272 btrfs_error(root->fs_info, ret,
1273 "Failed to remove dev extent item");
1274 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001275out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001276 btrfs_free_path(path);
1277 return ret;
1278}
1279
Eric Sandeen48a3b632013-04-25 20:41:01 +00001280static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1281 struct btrfs_device *device,
1282 u64 chunk_tree, u64 chunk_objectid,
1283 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001284{
1285 int ret;
1286 struct btrfs_path *path;
1287 struct btrfs_root *root = device->dev_root;
1288 struct btrfs_dev_extent *extent;
1289 struct extent_buffer *leaf;
1290 struct btrfs_key key;
1291
Chris Masondfe25022008-05-13 13:46:40 -04001292 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001293 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001294 path = btrfs_alloc_path();
1295 if (!path)
1296 return -ENOMEM;
1297
Chris Mason0b86a832008-03-24 15:01:56 -04001298 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001299 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001300 key.type = BTRFS_DEV_EXTENT_KEY;
1301 ret = btrfs_insert_empty_item(trans, root, path, &key,
1302 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001303 if (ret)
1304 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001305
1306 leaf = path->nodes[0];
1307 extent = btrfs_item_ptr(leaf, path->slots[0],
1308 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001309 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1310 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1311 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1312
1313 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
1314 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
1315 BTRFS_UUID_SIZE);
1316
Chris Mason0b86a832008-03-24 15:01:56 -04001317 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1318 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001319out:
Chris Mason0b86a832008-03-24 15:01:56 -04001320 btrfs_free_path(path);
1321 return ret;
1322}
1323
Josef Bacik6df9a952013-06-27 13:22:46 -04001324static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001325{
Josef Bacik6df9a952013-06-27 13:22:46 -04001326 struct extent_map_tree *em_tree;
1327 struct extent_map *em;
1328 struct rb_node *n;
1329 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001330
Josef Bacik6df9a952013-06-27 13:22:46 -04001331 em_tree = &fs_info->mapping_tree.map_tree;
1332 read_lock(&em_tree->lock);
1333 n = rb_last(&em_tree->map);
1334 if (n) {
1335 em = rb_entry(n, struct extent_map, rb_node);
1336 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001337 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001338 read_unlock(&em_tree->lock);
1339
Chris Mason0b86a832008-03-24 15:01:56 -04001340 return ret;
1341}
1342
Ilya Dryomov53f10652013-08-12 14:33:01 +03001343static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1344 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001345{
1346 int ret;
1347 struct btrfs_key key;
1348 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001349 struct btrfs_path *path;
1350
Yan Zheng2b820322008-11-17 21:11:30 -05001351 path = btrfs_alloc_path();
1352 if (!path)
1353 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001354
1355 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1356 key.type = BTRFS_DEV_ITEM_KEY;
1357 key.offset = (u64)-1;
1358
Ilya Dryomov53f10652013-08-12 14:33:01 +03001359 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001360 if (ret < 0)
1361 goto error;
1362
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001363 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001364
Ilya Dryomov53f10652013-08-12 14:33:01 +03001365 ret = btrfs_previous_item(fs_info->chunk_root, path,
1366 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001367 BTRFS_DEV_ITEM_KEY);
1368 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001369 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001370 } else {
1371 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1372 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001373 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001374 }
1375 ret = 0;
1376error:
Yan Zheng2b820322008-11-17 21:11:30 -05001377 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001378 return ret;
1379}
1380
1381/*
1382 * the device information is stored in the chunk root
1383 * the btrfs_device struct should be fully filled in
1384 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001385static int btrfs_add_device(struct btrfs_trans_handle *trans,
1386 struct btrfs_root *root,
1387 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001388{
1389 int ret;
1390 struct btrfs_path *path;
1391 struct btrfs_dev_item *dev_item;
1392 struct extent_buffer *leaf;
1393 struct btrfs_key key;
1394 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001395
1396 root = root->fs_info->chunk_root;
1397
1398 path = btrfs_alloc_path();
1399 if (!path)
1400 return -ENOMEM;
1401
Chris Mason0b86a832008-03-24 15:01:56 -04001402 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1403 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001404 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001405
1406 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001407 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001408 if (ret)
1409 goto out;
1410
1411 leaf = path->nodes[0];
1412 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1413
1414 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001415 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001416 btrfs_set_device_type(leaf, dev_item, device->type);
1417 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1418 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1419 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001420 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1421 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001422 btrfs_set_device_group(leaf, dev_item, 0);
1423 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1424 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001425 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001426
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001427 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001428 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05001429 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1430 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001431 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001432
Yan Zheng2b820322008-11-17 21:11:30 -05001433 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001434out:
1435 btrfs_free_path(path);
1436 return ret;
1437}
Chris Mason8f18cf12008-04-25 16:53:30 -04001438
Chris Masona061fc82008-05-07 11:43:44 -04001439static int btrfs_rm_dev_item(struct btrfs_root *root,
1440 struct btrfs_device *device)
1441{
1442 int ret;
1443 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001444 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001445 struct btrfs_trans_handle *trans;
1446
1447 root = root->fs_info->chunk_root;
1448
1449 path = btrfs_alloc_path();
1450 if (!path)
1451 return -ENOMEM;
1452
Yan, Zhenga22285a2010-05-16 10:48:46 -04001453 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001454 if (IS_ERR(trans)) {
1455 btrfs_free_path(path);
1456 return PTR_ERR(trans);
1457 }
Chris Masona061fc82008-05-07 11:43:44 -04001458 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1459 key.type = BTRFS_DEV_ITEM_KEY;
1460 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001461 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001462
1463 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1464 if (ret < 0)
1465 goto out;
1466
1467 if (ret > 0) {
1468 ret = -ENOENT;
1469 goto out;
1470 }
1471
1472 ret = btrfs_del_item(trans, root, path);
1473 if (ret)
1474 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001475out:
1476 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001477 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001478 btrfs_commit_transaction(trans, root);
1479 return ret;
1480}
1481
1482int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1483{
1484 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001485 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001486 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001487 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001488 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001489 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001490 u64 all_avail;
1491 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001492 u64 num_devices;
1493 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001494 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001495 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001496 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001497
Chris Masona061fc82008-05-07 11:43:44 -04001498 mutex_lock(&uuid_mutex);
1499
Miao Xiede98ced2013-01-29 10:13:12 +00001500 do {
1501 seq = read_seqbegin(&root->fs_info->profiles_lock);
1502
1503 all_avail = root->fs_info->avail_data_alloc_bits |
1504 root->fs_info->avail_system_alloc_bits |
1505 root->fs_info->avail_metadata_alloc_bits;
1506 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001507
Stefan Behrens8dabb742012-11-06 13:15:27 +01001508 num_devices = root->fs_info->fs_devices->num_devices;
1509 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1510 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1511 WARN_ON(num_devices < 1);
1512 num_devices--;
1513 }
1514 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1515
1516 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001517 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001518 goto out;
1519 }
1520
Stefan Behrens8dabb742012-11-06 13:15:27 +01001521 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001522 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001523 goto out;
1524 }
1525
David Woodhouse53b381b2013-01-29 18:40:14 -05001526 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1527 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001528 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001529 goto out;
1530 }
1531 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1532 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001533 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001534 goto out;
1535 }
1536
Chris Masondfe25022008-05-13 13:46:40 -04001537 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001538 struct list_head *devices;
1539 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001540
Chris Masondfe25022008-05-13 13:46:40 -04001541 device = NULL;
1542 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001543 /*
1544 * It is safe to read the devices since the volume_mutex
1545 * is held.
1546 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001547 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001548 if (tmp->in_fs_metadata &&
1549 !tmp->is_tgtdev_for_dev_replace &&
1550 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001551 device = tmp;
1552 break;
1553 }
1554 }
1555 bdev = NULL;
1556 bh = NULL;
1557 disk_super = NULL;
1558 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001559 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001560 goto out;
1561 }
Chris Masondfe25022008-05-13 13:46:40 -04001562 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001563 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001564 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001565 root->fs_info->bdev_holder, 0,
1566 &bdev, &bh);
1567 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001568 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001569 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001570 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001571 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001572 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001573 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001574 if (!device) {
1575 ret = -ENOENT;
1576 goto error_brelse;
1577 }
Chris Masondfe25022008-05-13 13:46:40 -04001578 }
Yan Zheng2b820322008-11-17 21:11:30 -05001579
Stefan Behrens63a212a2012-11-05 18:29:28 +01001580 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001581 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001582 goto error_brelse;
1583 }
1584
Yan Zheng2b820322008-11-17 21:11:30 -05001585 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001586 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001587 goto error_brelse;
1588 }
1589
1590 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001591 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001592 list_del_init(&device->dev_alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001593 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001594 root->fs_info->fs_devices->rw_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001595 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001596 }
Chris Masona061fc82008-05-07 11:43:44 -04001597
Carey Underwoodd7901552013-03-04 16:37:06 -06001598 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001599 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001600 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001601 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001602 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001603
Stefan Behrens63a212a2012-11-05 18:29:28 +01001604 /*
1605 * TODO: the superblock still includes this device in its num_devices
1606 * counter although write_all_supers() is not locked out. This
1607 * could give a filesystem state which requires a degraded mount.
1608 */
Chris Masona061fc82008-05-07 11:43:44 -04001609 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1610 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001611 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001612
Josef Bacik2bf64752011-09-26 17:12:22 -04001613 spin_lock(&root->fs_info->free_chunk_lock);
1614 root->fs_info->free_chunk_space = device->total_bytes -
1615 device->bytes_used;
1616 spin_unlock(&root->fs_info->free_chunk_lock);
1617
Yan Zheng2b820322008-11-17 21:11:30 -05001618 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001619 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001620
1621 /*
1622 * the device list mutex makes sure that we don't change
1623 * the device list while someone else is writing out all
1624 * the device supers.
1625 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001626
1627 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001628 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001629 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001630
Yan Zhenge4404d62008-12-12 10:03:26 -05001631 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001632 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001633
Chris Masoncd02dca2010-12-13 14:56:23 -05001634 if (device->missing)
1635 root->fs_info->fs_devices->missing_devices--;
1636
Yan Zheng2b820322008-11-17 21:11:30 -05001637 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1638 struct btrfs_device, dev_list);
1639 if (device->bdev == root->fs_info->sb->s_bdev)
1640 root->fs_info->sb->s_bdev = next_device->bdev;
1641 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1642 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1643
Xiao Guangrong1f781602011-04-20 10:09:16 +00001644 if (device->bdev)
Yan Zhenge4404d62008-12-12 10:03:26 -05001645 device->fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001646
1647 call_rcu(&device->rcu, free_device);
1648 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001649
David Sterba6c417612011-04-13 15:41:04 +02001650 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1651 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001652
Xiao Guangrong1f781602011-04-20 10:09:16 +00001653 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001654 struct btrfs_fs_devices *fs_devices;
1655 fs_devices = root->fs_info->fs_devices;
1656 while (fs_devices) {
Xiao Guangrong1f781602011-04-20 10:09:16 +00001657 if (fs_devices->seed == cur_devices)
Yan Zhenge4404d62008-12-12 10:03:26 -05001658 break;
1659 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001660 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001661 fs_devices->seed = cur_devices->seed;
1662 cur_devices->seed = NULL;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001663 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001664 __btrfs_close_devices(cur_devices);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001665 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001666 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001667 }
1668
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001669 root->fs_info->num_tolerated_disk_barrier_failures =
1670 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1671
Yan Zheng2b820322008-11-17 21:11:30 -05001672 /*
1673 * at this point, the device is zero sized. We want to
1674 * remove it from the devices list and zero out the old super
1675 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001676 if (clear_super && disk_super) {
Chris Masondfe25022008-05-13 13:46:40 -04001677 /* make sure this device isn't detected as part of
1678 * the FS anymore
1679 */
1680 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1681 set_buffer_dirty(bh);
1682 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001683 }
Chris Masona061fc82008-05-07 11:43:44 -04001684
Chris Masona061fc82008-05-07 11:43:44 -04001685 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001686
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001687 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001688 if (bdev)
1689 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001690
Chris Masona061fc82008-05-07 11:43:44 -04001691error_brelse:
1692 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001693 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001694 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001695out:
1696 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001697 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001698error_undo:
1699 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001700 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001701 list_add(&device->dev_alloc_list,
1702 &root->fs_info->fs_devices->alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001703 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001704 root->fs_info->fs_devices->rw_devices++;
1705 }
1706 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001707}
1708
Stefan Behrense93c89c2012-11-05 17:33:06 +01001709void btrfs_rm_dev_replace_srcdev(struct btrfs_fs_info *fs_info,
1710 struct btrfs_device *srcdev)
1711{
1712 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
1713 list_del_rcu(&srcdev->dev_list);
1714 list_del_rcu(&srcdev->dev_alloc_list);
1715 fs_info->fs_devices->num_devices--;
1716 if (srcdev->missing) {
1717 fs_info->fs_devices->missing_devices--;
1718 fs_info->fs_devices->rw_devices++;
1719 }
1720 if (srcdev->can_discard)
1721 fs_info->fs_devices->num_can_discard--;
1722 if (srcdev->bdev)
1723 fs_info->fs_devices->open_devices--;
1724
1725 call_rcu(&srcdev->rcu, free_device);
1726}
1727
1728void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1729 struct btrfs_device *tgtdev)
1730{
1731 struct btrfs_device *next_device;
1732
1733 WARN_ON(!tgtdev);
1734 mutex_lock(&fs_info->fs_devices->device_list_mutex);
1735 if (tgtdev->bdev) {
1736 btrfs_scratch_superblock(tgtdev);
1737 fs_info->fs_devices->open_devices--;
1738 }
1739 fs_info->fs_devices->num_devices--;
1740 if (tgtdev->can_discard)
1741 fs_info->fs_devices->num_can_discard++;
1742
1743 next_device = list_entry(fs_info->fs_devices->devices.next,
1744 struct btrfs_device, dev_list);
1745 if (tgtdev->bdev == fs_info->sb->s_bdev)
1746 fs_info->sb->s_bdev = next_device->bdev;
1747 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
1748 fs_info->fs_devices->latest_bdev = next_device->bdev;
1749 list_del_rcu(&tgtdev->dev_list);
1750
1751 call_rcu(&tgtdev->rcu, free_device);
1752
1753 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
1754}
1755
Eric Sandeen48a3b632013-04-25 20:41:01 +00001756static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
1757 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001758{
1759 int ret = 0;
1760 struct btrfs_super_block *disk_super;
1761 u64 devid;
1762 u8 *dev_uuid;
1763 struct block_device *bdev;
1764 struct buffer_head *bh;
1765
1766 *device = NULL;
1767 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
1768 root->fs_info->bdev_holder, 0, &bdev, &bh);
1769 if (ret)
1770 return ret;
1771 disk_super = (struct btrfs_super_block *)bh->b_data;
1772 devid = btrfs_stack_device_id(&disk_super->dev_item);
1773 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001774 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001775 disk_super->fsid);
1776 brelse(bh);
1777 if (!*device)
1778 ret = -ENOENT;
1779 blkdev_put(bdev, FMODE_READ);
1780 return ret;
1781}
1782
1783int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
1784 char *device_path,
1785 struct btrfs_device **device)
1786{
1787 *device = NULL;
1788 if (strcmp(device_path, "missing") == 0) {
1789 struct list_head *devices;
1790 struct btrfs_device *tmp;
1791
1792 devices = &root->fs_info->fs_devices->devices;
1793 /*
1794 * It is safe to read the devices since the volume_mutex
1795 * is held by the caller.
1796 */
1797 list_for_each_entry(tmp, devices, dev_list) {
1798 if (tmp->in_fs_metadata && !tmp->bdev) {
1799 *device = tmp;
1800 break;
1801 }
1802 }
1803
1804 if (!*device) {
1805 pr_err("btrfs: no missing device found\n");
1806 return -ENOENT;
1807 }
1808
1809 return 0;
1810 } else {
1811 return btrfs_find_device_by_path(root, device_path, device);
1812 }
1813}
1814
Yan Zheng2b820322008-11-17 21:11:30 -05001815/*
1816 * does all the dirty work required for changing file system's UUID.
1817 */
Li Zefan125ccb02011-12-08 15:07:24 +08001818static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05001819{
1820 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1821 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001822 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02001823 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05001824 struct btrfs_device *device;
1825 u64 super_flags;
1826
1827 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001828 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001829 return -EINVAL;
1830
Ilya Dryomov2208a372013-08-12 14:33:03 +03001831 seed_devices = __alloc_fs_devices();
1832 if (IS_ERR(seed_devices))
1833 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001834
Yan Zhenge4404d62008-12-12 10:03:26 -05001835 old_devices = clone_fs_devices(fs_devices);
1836 if (IS_ERR(old_devices)) {
1837 kfree(seed_devices);
1838 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001839 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001840
Yan Zheng2b820322008-11-17 21:11:30 -05001841 list_add(&old_devices->list, &fs_uuids);
1842
Yan Zhenge4404d62008-12-12 10:03:26 -05001843 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1844 seed_devices->opened = 1;
1845 INIT_LIST_HEAD(&seed_devices->devices);
1846 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001847 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001848
1849 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001850 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1851 synchronize_rcu);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001852 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1853
Yan Zhenge4404d62008-12-12 10:03:26 -05001854 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1855 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1856 device->fs_devices = seed_devices;
1857 }
1858
Yan Zheng2b820322008-11-17 21:11:30 -05001859 fs_devices->seeding = 0;
1860 fs_devices->num_devices = 0;
1861 fs_devices->open_devices = 0;
Josef Bacik02db0842012-06-21 16:03:58 -04001862 fs_devices->total_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001863 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001864
1865 generate_random_uuid(fs_devices->fsid);
1866 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1867 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1868 super_flags = btrfs_super_flags(disk_super) &
1869 ~BTRFS_SUPER_FLAG_SEEDING;
1870 btrfs_set_super_flags(disk_super, super_flags);
1871
1872 return 0;
1873}
1874
1875/*
1876 * strore the expected generation for seed devices in device items.
1877 */
1878static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1879 struct btrfs_root *root)
1880{
1881 struct btrfs_path *path;
1882 struct extent_buffer *leaf;
1883 struct btrfs_dev_item *dev_item;
1884 struct btrfs_device *device;
1885 struct btrfs_key key;
1886 u8 fs_uuid[BTRFS_UUID_SIZE];
1887 u8 dev_uuid[BTRFS_UUID_SIZE];
1888 u64 devid;
1889 int ret;
1890
1891 path = btrfs_alloc_path();
1892 if (!path)
1893 return -ENOMEM;
1894
1895 root = root->fs_info->chunk_root;
1896 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1897 key.offset = 0;
1898 key.type = BTRFS_DEV_ITEM_KEY;
1899
1900 while (1) {
1901 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1902 if (ret < 0)
1903 goto error;
1904
1905 leaf = path->nodes[0];
1906next_slot:
1907 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1908 ret = btrfs_next_leaf(root, path);
1909 if (ret > 0)
1910 break;
1911 if (ret < 0)
1912 goto error;
1913 leaf = path->nodes[0];
1914 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001915 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05001916 continue;
1917 }
1918
1919 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1920 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1921 key.type != BTRFS_DEV_ITEM_KEY)
1922 break;
1923
1924 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1925 struct btrfs_dev_item);
1926 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001927 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05001928 BTRFS_UUID_SIZE);
1929 read_extent_buffer(leaf, fs_uuid,
1930 (unsigned long)btrfs_device_fsid(dev_item),
1931 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001932 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
1933 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001934 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05001935
1936 if (device->fs_devices->seeding) {
1937 btrfs_set_device_generation(leaf, dev_item,
1938 device->generation);
1939 btrfs_mark_buffer_dirty(leaf);
1940 }
1941
1942 path->slots[0]++;
1943 goto next_slot;
1944 }
1945 ret = 0;
1946error:
1947 btrfs_free_path(path);
1948 return ret;
1949}
1950
Chris Mason788f20e2008-04-28 15:29:42 -04001951int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1952{
Josef Bacikd5e20032011-08-04 14:52:27 +00001953 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04001954 struct btrfs_trans_handle *trans;
1955 struct btrfs_device *device;
1956 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001957 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001958 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04001959 struct rcu_string *name;
Chris Mason788f20e2008-04-28 15:29:42 -04001960 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001961 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001962 int ret = 0;
1963
Yan Zheng2b820322008-11-17 21:11:30 -05001964 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08001965 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04001966
Li Zefana5d16332011-12-07 20:08:40 -05001967 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01001968 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001969 if (IS_ERR(bdev))
1970 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001971
Yan Zheng2b820322008-11-17 21:11:30 -05001972 if (root->fs_info->fs_devices->seeding) {
1973 seeding_dev = 1;
1974 down_write(&sb->s_umount);
1975 mutex_lock(&uuid_mutex);
1976 }
1977
Chris Mason8c8bee12008-09-29 11:19:10 -04001978 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04001979
Chris Mason788f20e2008-04-28 15:29:42 -04001980 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00001981
1982 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001983 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001984 if (device->bdev == bdev) {
1985 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00001986 mutex_unlock(
1987 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001988 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001989 }
1990 }
Liu Bod25628b2012-11-14 14:35:30 +00001991 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001992
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001993 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
1994 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04001995 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001996 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05001997 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001998 }
1999
Josef Bacik606686e2012-06-04 14:03:51 -04002000 name = rcu_string_strdup(device_path, GFP_NOFS);
2001 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002002 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002003 ret = -ENOMEM;
2004 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002005 }
Josef Bacik606686e2012-06-04 14:03:51 -04002006 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002007
Yan, Zhenga22285a2010-05-16 10:48:46 -04002008 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002009 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002010 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002011 kfree(device);
2012 ret = PTR_ERR(trans);
2013 goto error;
2014 }
2015
Yan Zheng2b820322008-11-17 21:11:30 -05002016 lock_chunks(root);
2017
Josef Bacikd5e20032011-08-04 14:52:27 +00002018 q = bdev_get_queue(bdev);
2019 if (blk_queue_discard(q))
2020 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002021 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002022 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002023 device->io_width = root->sectorsize;
2024 device->io_align = root->sectorsize;
2025 device->sector_size = root->sectorsize;
2026 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002027 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002028 device->dev_root = root->fs_info->dev_root;
2029 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002030 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002031 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002032 device->mode = FMODE_EXCL;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002033 set_blocksize(device->bdev, 4096);
2034
Yan Zheng2b820322008-11-17 21:11:30 -05002035 if (seeding_dev) {
2036 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002037 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002038 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002039 }
2040
2041 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002042
Chris Masone5e9a522009-06-10 15:17:02 -04002043 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002044 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002045 list_add(&device->dev_alloc_list,
2046 &root->fs_info->fs_devices->alloc_list);
2047 root->fs_info->fs_devices->num_devices++;
2048 root->fs_info->fs_devices->open_devices++;
2049 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002050 root->fs_info->fs_devices->total_devices++;
Josef Bacikd5e20032011-08-04 14:52:27 +00002051 if (device->can_discard)
2052 root->fs_info->fs_devices->num_can_discard++;
Yan Zheng2b820322008-11-17 21:11:30 -05002053 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2054
Josef Bacik2bf64752011-09-26 17:12:22 -04002055 spin_lock(&root->fs_info->free_chunk_lock);
2056 root->fs_info->free_chunk_space += device->total_bytes;
2057 spin_unlock(&root->fs_info->free_chunk_lock);
2058
Chris Masonc2898112009-06-10 09:51:32 -04002059 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2060 root->fs_info->fs_devices->rotating = 1;
2061
David Sterba6c417612011-04-13 15:41:04 +02002062 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
2063 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002064 total_bytes + device->total_bytes);
2065
David Sterba6c417612011-04-13 15:41:04 +02002066 total_bytes = btrfs_super_num_devices(root->fs_info->super_copy);
2067 btrfs_set_super_num_devices(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002068 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04002069 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002070
Yan Zheng2b820322008-11-17 21:11:30 -05002071 if (seeding_dev) {
2072 ret = init_first_rw_device(trans, root, device);
David Sterba005d6422012-09-18 07:52:32 -06002073 if (ret) {
2074 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002075 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002076 }
Yan Zheng2b820322008-11-17 21:11:30 -05002077 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002078 if (ret) {
2079 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002080 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002081 }
Yan Zheng2b820322008-11-17 21:11:30 -05002082 } else {
2083 ret = btrfs_add_device(trans, root, device);
David Sterba005d6422012-09-18 07:52:32 -06002084 if (ret) {
2085 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002086 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002087 }
Yan Zheng2b820322008-11-17 21:11:30 -05002088 }
2089
Chris Mason913d9522009-03-10 13:17:18 -04002090 /*
2091 * we've got more storage, clear any full flags on the space
2092 * infos
2093 */
2094 btrfs_clear_space_info_full(root->fs_info);
2095
Chris Mason7d9eb122008-07-08 14:19:17 -04002096 unlock_chunks(root);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002097 root->fs_info->num_tolerated_disk_barrier_failures =
2098 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002099 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002100
2101 if (seeding_dev) {
2102 mutex_unlock(&uuid_mutex);
2103 up_write(&sb->s_umount);
2104
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002105 if (ret) /* transaction commit */
2106 return ret;
2107
Yan Zheng2b820322008-11-17 21:11:30 -05002108 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002109 if (ret < 0)
2110 btrfs_error(root->fs_info, ret,
2111 "Failed to relocate sys chunks after "
2112 "device initialization. This can be fixed "
2113 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002114 trans = btrfs_attach_transaction(root);
2115 if (IS_ERR(trans)) {
2116 if (PTR_ERR(trans) == -ENOENT)
2117 return 0;
2118 return PTR_ERR(trans);
2119 }
2120 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002121 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002122
Chris Mason788f20e2008-04-28 15:29:42 -04002123 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002124
2125error_trans:
2126 unlock_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002127 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002128 rcu_string_free(device->name);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002129 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002130error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002131 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002132 if (seeding_dev) {
2133 mutex_unlock(&uuid_mutex);
2134 up_write(&sb->s_umount);
2135 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002136 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002137}
2138
Stefan Behrense93c89c2012-11-05 17:33:06 +01002139int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
2140 struct btrfs_device **device_out)
2141{
2142 struct request_queue *q;
2143 struct btrfs_device *device;
2144 struct block_device *bdev;
2145 struct btrfs_fs_info *fs_info = root->fs_info;
2146 struct list_head *devices;
2147 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002148 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002149 int ret = 0;
2150
2151 *device_out = NULL;
2152 if (fs_info->fs_devices->seeding)
2153 return -EINVAL;
2154
2155 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2156 fs_info->bdev_holder);
2157 if (IS_ERR(bdev))
2158 return PTR_ERR(bdev);
2159
2160 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2161
2162 devices = &fs_info->fs_devices->devices;
2163 list_for_each_entry(device, devices, dev_list) {
2164 if (device->bdev == bdev) {
2165 ret = -EEXIST;
2166 goto error;
2167 }
2168 }
2169
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002170 device = btrfs_alloc_device(NULL, &devid, NULL);
2171 if (IS_ERR(device)) {
2172 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002173 goto error;
2174 }
2175
2176 name = rcu_string_strdup(device_path, GFP_NOFS);
2177 if (!name) {
2178 kfree(device);
2179 ret = -ENOMEM;
2180 goto error;
2181 }
2182 rcu_assign_pointer(device->name, name);
2183
2184 q = bdev_get_queue(bdev);
2185 if (blk_queue_discard(q))
2186 device->can_discard = 1;
2187 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2188 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002189 device->generation = 0;
2190 device->io_width = root->sectorsize;
2191 device->io_align = root->sectorsize;
2192 device->sector_size = root->sectorsize;
2193 device->total_bytes = i_size_read(bdev->bd_inode);
2194 device->disk_total_bytes = device->total_bytes;
2195 device->dev_root = fs_info->dev_root;
2196 device->bdev = bdev;
2197 device->in_fs_metadata = 1;
2198 device->is_tgtdev_for_dev_replace = 1;
2199 device->mode = FMODE_EXCL;
2200 set_blocksize(device->bdev, 4096);
2201 device->fs_devices = fs_info->fs_devices;
2202 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2203 fs_info->fs_devices->num_devices++;
2204 fs_info->fs_devices->open_devices++;
2205 if (device->can_discard)
2206 fs_info->fs_devices->num_can_discard++;
2207 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2208
2209 *device_out = device;
2210 return ret;
2211
2212error:
2213 blkdev_put(bdev, FMODE_EXCL);
2214 return ret;
2215}
2216
2217void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2218 struct btrfs_device *tgtdev)
2219{
2220 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2221 tgtdev->io_width = fs_info->dev_root->sectorsize;
2222 tgtdev->io_align = fs_info->dev_root->sectorsize;
2223 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2224 tgtdev->dev_root = fs_info->dev_root;
2225 tgtdev->in_fs_metadata = 1;
2226}
2227
Chris Masond3977122009-01-05 21:25:51 -05002228static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2229 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002230{
2231 int ret;
2232 struct btrfs_path *path;
2233 struct btrfs_root *root;
2234 struct btrfs_dev_item *dev_item;
2235 struct extent_buffer *leaf;
2236 struct btrfs_key key;
2237
2238 root = device->dev_root->fs_info->chunk_root;
2239
2240 path = btrfs_alloc_path();
2241 if (!path)
2242 return -ENOMEM;
2243
2244 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2245 key.type = BTRFS_DEV_ITEM_KEY;
2246 key.offset = device->devid;
2247
2248 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2249 if (ret < 0)
2250 goto out;
2251
2252 if (ret > 0) {
2253 ret = -ENOENT;
2254 goto out;
2255 }
2256
2257 leaf = path->nodes[0];
2258 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2259
2260 btrfs_set_device_id(leaf, dev_item, device->devid);
2261 btrfs_set_device_type(leaf, dev_item, device->type);
2262 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2263 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2264 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04002265 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04002266 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
2267 btrfs_mark_buffer_dirty(leaf);
2268
2269out:
2270 btrfs_free_path(path);
2271 return ret;
2272}
2273
Chris Mason7d9eb122008-07-08 14:19:17 -04002274static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002275 struct btrfs_device *device, u64 new_size)
2276{
2277 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002278 device->dev_root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002279 u64 old_total = btrfs_super_total_bytes(super_copy);
2280 u64 diff = new_size - device->total_bytes;
2281
Yan Zheng2b820322008-11-17 21:11:30 -05002282 if (!device->writeable)
2283 return -EACCES;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002284 if (new_size <= device->total_bytes ||
2285 device->is_tgtdev_for_dev_replace)
Yan Zheng2b820322008-11-17 21:11:30 -05002286 return -EINVAL;
2287
Chris Mason8f18cf12008-04-25 16:53:30 -04002288 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002289 device->fs_devices->total_rw_bytes += diff;
2290
2291 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04002292 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04002293 btrfs_clear_space_info_full(device->dev_root->fs_info);
2294
Chris Mason8f18cf12008-04-25 16:53:30 -04002295 return btrfs_update_device(trans, device);
2296}
2297
Chris Mason7d9eb122008-07-08 14:19:17 -04002298int btrfs_grow_device(struct btrfs_trans_handle *trans,
2299 struct btrfs_device *device, u64 new_size)
2300{
2301 int ret;
2302 lock_chunks(device->dev_root);
2303 ret = __btrfs_grow_device(trans, device, new_size);
2304 unlock_chunks(device->dev_root);
2305 return ret;
2306}
2307
Chris Mason8f18cf12008-04-25 16:53:30 -04002308static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
2309 struct btrfs_root *root,
2310 u64 chunk_tree, u64 chunk_objectid,
2311 u64 chunk_offset)
2312{
2313 int ret;
2314 struct btrfs_path *path;
2315 struct btrfs_key key;
2316
2317 root = root->fs_info->chunk_root;
2318 path = btrfs_alloc_path();
2319 if (!path)
2320 return -ENOMEM;
2321
2322 key.objectid = chunk_objectid;
2323 key.offset = chunk_offset;
2324 key.type = BTRFS_CHUNK_ITEM_KEY;
2325
2326 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002327 if (ret < 0)
2328 goto out;
2329 else if (ret > 0) { /* Logic error or corruption */
2330 btrfs_error(root->fs_info, -ENOENT,
2331 "Failed lookup while freeing chunk.");
2332 ret = -ENOENT;
2333 goto out;
2334 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002335
2336 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002337 if (ret < 0)
2338 btrfs_error(root->fs_info, ret,
2339 "Failed to delete chunk item.");
2340out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002341 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002342 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002343}
2344
Christoph Hellwigb2950862008-12-02 09:54:17 -05002345static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002346 chunk_offset)
2347{
David Sterba6c417612011-04-13 15:41:04 +02002348 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002349 struct btrfs_disk_key *disk_key;
2350 struct btrfs_chunk *chunk;
2351 u8 *ptr;
2352 int ret = 0;
2353 u32 num_stripes;
2354 u32 array_size;
2355 u32 len = 0;
2356 u32 cur;
2357 struct btrfs_key key;
2358
2359 array_size = btrfs_super_sys_array_size(super_copy);
2360
2361 ptr = super_copy->sys_chunk_array;
2362 cur = 0;
2363
2364 while (cur < array_size) {
2365 disk_key = (struct btrfs_disk_key *)ptr;
2366 btrfs_disk_key_to_cpu(&key, disk_key);
2367
2368 len = sizeof(*disk_key);
2369
2370 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2371 chunk = (struct btrfs_chunk *)(ptr + len);
2372 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2373 len += btrfs_chunk_item_size(num_stripes);
2374 } else {
2375 ret = -EIO;
2376 break;
2377 }
2378 if (key.objectid == chunk_objectid &&
2379 key.offset == chunk_offset) {
2380 memmove(ptr, ptr + len, array_size - (cur + len));
2381 array_size -= len;
2382 btrfs_set_super_sys_array_size(super_copy, array_size);
2383 } else {
2384 ptr += len;
2385 cur += len;
2386 }
2387 }
2388 return ret;
2389}
2390
Christoph Hellwigb2950862008-12-02 09:54:17 -05002391static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04002392 u64 chunk_tree, u64 chunk_objectid,
2393 u64 chunk_offset)
2394{
2395 struct extent_map_tree *em_tree;
2396 struct btrfs_root *extent_root;
2397 struct btrfs_trans_handle *trans;
2398 struct extent_map *em;
2399 struct map_lookup *map;
2400 int ret;
2401 int i;
2402
2403 root = root->fs_info->chunk_root;
2404 extent_root = root->fs_info->extent_root;
2405 em_tree = &root->fs_info->mapping_tree.map_tree;
2406
Josef Bacikba1bf482009-09-11 16:11:19 -04002407 ret = btrfs_can_relocate(extent_root, chunk_offset);
2408 if (ret)
2409 return -ENOSPC;
2410
Chris Mason8f18cf12008-04-25 16:53:30 -04002411 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04002412 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002413 if (ret)
2414 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002415
Yan, Zhenga22285a2010-05-16 10:48:46 -04002416 trans = btrfs_start_transaction(root, 0);
Liu Bo0f788c52013-03-04 16:25:40 +00002417 if (IS_ERR(trans)) {
2418 ret = PTR_ERR(trans);
2419 btrfs_std_error(root->fs_info, ret);
2420 return ret;
2421 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002422
Chris Mason7d9eb122008-07-08 14:19:17 -04002423 lock_chunks(root);
2424
Chris Mason8f18cf12008-04-25 16:53:30 -04002425 /*
2426 * step two, delete the device extents and the
2427 * chunk tree entries
2428 */
Chris Mason890871b2009-09-02 16:24:52 -04002429 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002430 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002431 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002432
Tsutomu Itoh285190d2012-02-16 16:23:58 +09002433 BUG_ON(!em || em->start > chunk_offset ||
Chris Masona061fc82008-05-07 11:43:44 -04002434 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002435 map = (struct map_lookup *)em->bdev;
2436
2437 for (i = 0; i < map->num_stripes; i++) {
2438 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
2439 map->stripes[i].physical);
2440 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04002441
Chris Masondfe25022008-05-13 13:46:40 -04002442 if (map->stripes[i].dev) {
2443 ret = btrfs_update_device(trans, map->stripes[i].dev);
2444 BUG_ON(ret);
2445 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002446 }
2447 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
2448 chunk_offset);
2449
2450 BUG_ON(ret);
2451
liubo1abe9b82011-03-24 11:18:59 +00002452 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2453
Chris Mason8f18cf12008-04-25 16:53:30 -04002454 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2455 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2456 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04002457 }
2458
Zheng Yan1a40e232008-09-26 10:09:34 -04002459 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
2460 BUG_ON(ret);
2461
Chris Mason890871b2009-09-02 16:24:52 -04002462 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002463 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002464 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04002465
Chris Mason8f18cf12008-04-25 16:53:30 -04002466 kfree(map);
2467 em->bdev = NULL;
2468
2469 /* once for the tree */
2470 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002471 /* once for us */
2472 free_extent_map(em);
2473
Chris Mason7d9eb122008-07-08 14:19:17 -04002474 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002475 btrfs_end_transaction(trans, root);
2476 return 0;
2477}
2478
Yan Zheng2b820322008-11-17 21:11:30 -05002479static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2480{
2481 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2482 struct btrfs_path *path;
2483 struct extent_buffer *leaf;
2484 struct btrfs_chunk *chunk;
2485 struct btrfs_key key;
2486 struct btrfs_key found_key;
2487 u64 chunk_tree = chunk_root->root_key.objectid;
2488 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002489 bool retried = false;
2490 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002491 int ret;
2492
2493 path = btrfs_alloc_path();
2494 if (!path)
2495 return -ENOMEM;
2496
Josef Bacikba1bf482009-09-11 16:11:19 -04002497again:
Yan Zheng2b820322008-11-17 21:11:30 -05002498 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2499 key.offset = (u64)-1;
2500 key.type = BTRFS_CHUNK_ITEM_KEY;
2501
2502 while (1) {
2503 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2504 if (ret < 0)
2505 goto error;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002506 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002507
2508 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2509 key.type);
2510 if (ret < 0)
2511 goto error;
2512 if (ret > 0)
2513 break;
2514
2515 leaf = path->nodes[0];
2516 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2517
2518 chunk = btrfs_item_ptr(leaf, path->slots[0],
2519 struct btrfs_chunk);
2520 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002521 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002522
2523 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
2524 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
2525 found_key.objectid,
2526 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002527 if (ret == -ENOSPC)
2528 failed++;
2529 else if (ret)
2530 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05002531 }
2532
2533 if (found_key.offset == 0)
2534 break;
2535 key.offset = found_key.offset - 1;
2536 }
2537 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002538 if (failed && !retried) {
2539 failed = 0;
2540 retried = true;
2541 goto again;
2542 } else if (failed && retried) {
2543 WARN_ON(1);
2544 ret = -ENOSPC;
2545 }
Yan Zheng2b820322008-11-17 21:11:30 -05002546error:
2547 btrfs_free_path(path);
2548 return ret;
2549}
2550
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002551static int insert_balance_item(struct btrfs_root *root,
2552 struct btrfs_balance_control *bctl)
2553{
2554 struct btrfs_trans_handle *trans;
2555 struct btrfs_balance_item *item;
2556 struct btrfs_disk_balance_args disk_bargs;
2557 struct btrfs_path *path;
2558 struct extent_buffer *leaf;
2559 struct btrfs_key key;
2560 int ret, err;
2561
2562 path = btrfs_alloc_path();
2563 if (!path)
2564 return -ENOMEM;
2565
2566 trans = btrfs_start_transaction(root, 0);
2567 if (IS_ERR(trans)) {
2568 btrfs_free_path(path);
2569 return PTR_ERR(trans);
2570 }
2571
2572 key.objectid = BTRFS_BALANCE_OBJECTID;
2573 key.type = BTRFS_BALANCE_ITEM_KEY;
2574 key.offset = 0;
2575
2576 ret = btrfs_insert_empty_item(trans, root, path, &key,
2577 sizeof(*item));
2578 if (ret)
2579 goto out;
2580
2581 leaf = path->nodes[0];
2582 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2583
2584 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2585
2586 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2587 btrfs_set_balance_data(leaf, item, &disk_bargs);
2588 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2589 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2590 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2591 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2592
2593 btrfs_set_balance_flags(leaf, item, bctl->flags);
2594
2595 btrfs_mark_buffer_dirty(leaf);
2596out:
2597 btrfs_free_path(path);
2598 err = btrfs_commit_transaction(trans, root);
2599 if (err && !ret)
2600 ret = err;
2601 return ret;
2602}
2603
2604static int del_balance_item(struct btrfs_root *root)
2605{
2606 struct btrfs_trans_handle *trans;
2607 struct btrfs_path *path;
2608 struct btrfs_key key;
2609 int ret, err;
2610
2611 path = btrfs_alloc_path();
2612 if (!path)
2613 return -ENOMEM;
2614
2615 trans = btrfs_start_transaction(root, 0);
2616 if (IS_ERR(trans)) {
2617 btrfs_free_path(path);
2618 return PTR_ERR(trans);
2619 }
2620
2621 key.objectid = BTRFS_BALANCE_OBJECTID;
2622 key.type = BTRFS_BALANCE_ITEM_KEY;
2623 key.offset = 0;
2624
2625 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2626 if (ret < 0)
2627 goto out;
2628 if (ret > 0) {
2629 ret = -ENOENT;
2630 goto out;
2631 }
2632
2633 ret = btrfs_del_item(trans, root, path);
2634out:
2635 btrfs_free_path(path);
2636 err = btrfs_commit_transaction(trans, root);
2637 if (err && !ret)
2638 ret = err;
2639 return ret;
2640}
2641
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002642/*
Ilya Dryomov59641012012-01-16 22:04:48 +02002643 * This is a heuristic used to reduce the number of chunks balanced on
2644 * resume after balance was interrupted.
2645 */
2646static void update_balance_args(struct btrfs_balance_control *bctl)
2647{
2648 /*
2649 * Turn on soft mode for chunk types that were being converted.
2650 */
2651 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
2652 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
2653 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
2654 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
2655 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
2656 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
2657
2658 /*
2659 * Turn on usage filter if is not already used. The idea is
2660 * that chunks that we have already balanced should be
2661 * reasonably full. Don't do it for chunks that are being
2662 * converted - that will keep us from relocating unconverted
2663 * (albeit full) chunks.
2664 */
2665 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2666 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2667 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
2668 bctl->data.usage = 90;
2669 }
2670 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2671 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2672 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
2673 bctl->sys.usage = 90;
2674 }
2675 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2676 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2677 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
2678 bctl->meta.usage = 90;
2679 }
2680}
2681
2682/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002683 * Should be called with both balance and volume mutexes held to
2684 * serialize other volume operations (add_dev/rm_dev/resize) with
2685 * restriper. Same goes for unset_balance_control.
2686 */
2687static void set_balance_control(struct btrfs_balance_control *bctl)
2688{
2689 struct btrfs_fs_info *fs_info = bctl->fs_info;
2690
2691 BUG_ON(fs_info->balance_ctl);
2692
2693 spin_lock(&fs_info->balance_lock);
2694 fs_info->balance_ctl = bctl;
2695 spin_unlock(&fs_info->balance_lock);
2696}
2697
2698static void unset_balance_control(struct btrfs_fs_info *fs_info)
2699{
2700 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
2701
2702 BUG_ON(!fs_info->balance_ctl);
2703
2704 spin_lock(&fs_info->balance_lock);
2705 fs_info->balance_ctl = NULL;
2706 spin_unlock(&fs_info->balance_lock);
2707
2708 kfree(bctl);
2709}
2710
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002711/*
2712 * Balance filters. Return 1 if chunk should be filtered out
2713 * (should not be balanced).
2714 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002715static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002716 struct btrfs_balance_args *bargs)
2717{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002718 chunk_type = chunk_to_extended(chunk_type) &
2719 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002720
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002721 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002722 return 0;
2723
2724 return 1;
2725}
2726
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002727static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
2728 struct btrfs_balance_args *bargs)
2729{
2730 struct btrfs_block_group_cache *cache;
2731 u64 chunk_used, user_thresh;
2732 int ret = 1;
2733
2734 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2735 chunk_used = btrfs_block_group_used(&cache->item);
2736
Ilya Dryomova105bb82013-01-21 15:15:56 +02002737 if (bargs->usage == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00002738 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02002739 else if (bargs->usage > 100)
2740 user_thresh = cache->key.offset;
2741 else
2742 user_thresh = div_factor_fine(cache->key.offset,
2743 bargs->usage);
2744
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002745 if (chunk_used < user_thresh)
2746 ret = 0;
2747
2748 btrfs_put_block_group(cache);
2749 return ret;
2750}
2751
Ilya Dryomov409d4042012-01-16 22:04:47 +02002752static int chunk_devid_filter(struct extent_buffer *leaf,
2753 struct btrfs_chunk *chunk,
2754 struct btrfs_balance_args *bargs)
2755{
2756 struct btrfs_stripe *stripe;
2757 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2758 int i;
2759
2760 for (i = 0; i < num_stripes; i++) {
2761 stripe = btrfs_stripe_nr(chunk, i);
2762 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
2763 return 0;
2764 }
2765
2766 return 1;
2767}
2768
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002769/* [pstart, pend) */
2770static int chunk_drange_filter(struct extent_buffer *leaf,
2771 struct btrfs_chunk *chunk,
2772 u64 chunk_offset,
2773 struct btrfs_balance_args *bargs)
2774{
2775 struct btrfs_stripe *stripe;
2776 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2777 u64 stripe_offset;
2778 u64 stripe_length;
2779 int factor;
2780 int i;
2781
2782 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
2783 return 0;
2784
2785 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05002786 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
2787 factor = num_stripes / 2;
2788 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
2789 factor = num_stripes - 1;
2790 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
2791 factor = num_stripes - 2;
2792 } else {
2793 factor = num_stripes;
2794 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002795
2796 for (i = 0; i < num_stripes; i++) {
2797 stripe = btrfs_stripe_nr(chunk, i);
2798 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
2799 continue;
2800
2801 stripe_offset = btrfs_stripe_offset(leaf, stripe);
2802 stripe_length = btrfs_chunk_length(leaf, chunk);
2803 do_div(stripe_length, factor);
2804
2805 if (stripe_offset < bargs->pend &&
2806 stripe_offset + stripe_length > bargs->pstart)
2807 return 0;
2808 }
2809
2810 return 1;
2811}
2812
Ilya Dryomovea671762012-01-16 22:04:48 +02002813/* [vstart, vend) */
2814static int chunk_vrange_filter(struct extent_buffer *leaf,
2815 struct btrfs_chunk *chunk,
2816 u64 chunk_offset,
2817 struct btrfs_balance_args *bargs)
2818{
2819 if (chunk_offset < bargs->vend &&
2820 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
2821 /* at least part of the chunk is inside this vrange */
2822 return 0;
2823
2824 return 1;
2825}
2826
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002827static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002828 struct btrfs_balance_args *bargs)
2829{
2830 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
2831 return 0;
2832
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002833 chunk_type = chunk_to_extended(chunk_type) &
2834 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002835
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002836 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002837 return 1;
2838
2839 return 0;
2840}
2841
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002842static int should_balance_chunk(struct btrfs_root *root,
2843 struct extent_buffer *leaf,
2844 struct btrfs_chunk *chunk, u64 chunk_offset)
2845{
2846 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
2847 struct btrfs_balance_args *bargs = NULL;
2848 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
2849
2850 /* type filter */
2851 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
2852 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
2853 return 0;
2854 }
2855
2856 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
2857 bargs = &bctl->data;
2858 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
2859 bargs = &bctl->sys;
2860 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
2861 bargs = &bctl->meta;
2862
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002863 /* profiles filter */
2864 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
2865 chunk_profiles_filter(chunk_type, bargs)) {
2866 return 0;
2867 }
2868
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002869 /* usage filter */
2870 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
2871 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
2872 return 0;
2873 }
2874
Ilya Dryomov409d4042012-01-16 22:04:47 +02002875 /* devid filter */
2876 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
2877 chunk_devid_filter(leaf, chunk, bargs)) {
2878 return 0;
2879 }
2880
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002881 /* drange filter, makes sense only with devid filter */
2882 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
2883 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
2884 return 0;
2885 }
2886
Ilya Dryomovea671762012-01-16 22:04:48 +02002887 /* vrange filter */
2888 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
2889 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
2890 return 0;
2891 }
2892
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002893 /* soft profile changing mode */
2894 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
2895 chunk_soft_convert_filter(chunk_type, bargs)) {
2896 return 0;
2897 }
2898
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002899 return 1;
2900}
2901
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002902static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04002903{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002904 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002905 struct btrfs_root *chunk_root = fs_info->chunk_root;
2906 struct btrfs_root *dev_root = fs_info->dev_root;
2907 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04002908 struct btrfs_device *device;
2909 u64 old_size;
2910 u64 size_to_free;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002911 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04002912 struct btrfs_path *path;
2913 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04002914 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002915 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002916 struct extent_buffer *leaf;
2917 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002918 int ret;
2919 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002920 bool counting = true;
Chris Masonec44a352008-04-28 15:29:52 -04002921
Chris Masonec44a352008-04-28 15:29:52 -04002922 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002923 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002924 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04002925 old_size = device->total_bytes;
2926 size_to_free = div_factor(old_size, 1);
2927 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05002928 if (!device->writeable ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01002929 device->total_bytes - device->bytes_used > size_to_free ||
2930 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04002931 continue;
2932
2933 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04002934 if (ret == -ENOSPC)
2935 break;
Chris Masonec44a352008-04-28 15:29:52 -04002936 BUG_ON(ret);
2937
Yan, Zhenga22285a2010-05-16 10:48:46 -04002938 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002939 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04002940
2941 ret = btrfs_grow_device(trans, device, old_size);
2942 BUG_ON(ret);
2943
2944 btrfs_end_transaction(trans, dev_root);
2945 }
2946
2947 /* step two, relocate all the chunks */
2948 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07002949 if (!path) {
2950 ret = -ENOMEM;
2951 goto error;
2952 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002953
2954 /* zero out stat counters */
2955 spin_lock(&fs_info->balance_lock);
2956 memset(&bctl->stat, 0, sizeof(bctl->stat));
2957 spin_unlock(&fs_info->balance_lock);
2958again:
Chris Masonec44a352008-04-28 15:29:52 -04002959 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2960 key.offset = (u64)-1;
2961 key.type = BTRFS_CHUNK_ITEM_KEY;
2962
Chris Masond3977122009-01-05 21:25:51 -05002963 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002964 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002965 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002966 ret = -ECANCELED;
2967 goto error;
2968 }
2969
Chris Masonec44a352008-04-28 15:29:52 -04002970 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2971 if (ret < 0)
2972 goto error;
2973
2974 /*
2975 * this shouldn't happen, it means the last relocate
2976 * failed
2977 */
2978 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002979 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04002980
2981 ret = btrfs_previous_item(chunk_root, path, 0,
2982 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002983 if (ret) {
2984 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04002985 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002986 }
Chris Mason7d9eb122008-07-08 14:19:17 -04002987
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002988 leaf = path->nodes[0];
2989 slot = path->slots[0];
2990 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2991
Chris Masonec44a352008-04-28 15:29:52 -04002992 if (found_key.objectid != key.objectid)
2993 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04002994
Chris Masonec44a352008-04-28 15:29:52 -04002995 /* chunk zero is special */
Josef Bacikba1bf482009-09-11 16:11:19 -04002996 if (found_key.offset == 0)
Chris Masonec44a352008-04-28 15:29:52 -04002997 break;
2998
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002999 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3000
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003001 if (!counting) {
3002 spin_lock(&fs_info->balance_lock);
3003 bctl->stat.considered++;
3004 spin_unlock(&fs_info->balance_lock);
3005 }
3006
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003007 ret = should_balance_chunk(chunk_root, leaf, chunk,
3008 found_key.offset);
David Sterbab3b4aa72011-04-21 01:20:15 +02003009 btrfs_release_path(path);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003010 if (!ret)
3011 goto loop;
3012
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003013 if (counting) {
3014 spin_lock(&fs_info->balance_lock);
3015 bctl->stat.expected++;
3016 spin_unlock(&fs_info->balance_lock);
3017 goto loop;
3018 }
3019
Chris Masonec44a352008-04-28 15:29:52 -04003020 ret = btrfs_relocate_chunk(chunk_root,
3021 chunk_root->root_key.objectid,
3022 found_key.objectid,
3023 found_key.offset);
Josef Bacik508794e2011-07-02 21:24:41 +00003024 if (ret && ret != -ENOSPC)
3025 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003026 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003027 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003028 } else {
3029 spin_lock(&fs_info->balance_lock);
3030 bctl->stat.completed++;
3031 spin_unlock(&fs_info->balance_lock);
3032 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003033loop:
Josef Bacikba1bf482009-09-11 16:11:19 -04003034 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003035 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003036
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003037 if (counting) {
3038 btrfs_release_path(path);
3039 counting = false;
3040 goto again;
3041 }
Chris Masonec44a352008-04-28 15:29:52 -04003042error:
3043 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003044 if (enospc_errors) {
3045 printk(KERN_INFO "btrfs: %d enospc errors during balance\n",
3046 enospc_errors);
3047 if (!ret)
3048 ret = -ENOSPC;
3049 }
3050
Chris Masonec44a352008-04-28 15:29:52 -04003051 return ret;
3052}
3053
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003054/**
3055 * alloc_profile_is_valid - see if a given profile is valid and reduced
3056 * @flags: profile to validate
3057 * @extended: if true @flags is treated as an extended profile
3058 */
3059static int alloc_profile_is_valid(u64 flags, int extended)
3060{
3061 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3062 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3063
3064 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3065
3066 /* 1) check that all other bits are zeroed */
3067 if (flags & ~mask)
3068 return 0;
3069
3070 /* 2) see if profile is reduced */
3071 if (flags == 0)
3072 return !extended; /* "0" is valid for usual profiles */
3073
3074 /* true if exactly one bit set */
3075 return (flags & (flags - 1)) == 0;
3076}
3077
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003078static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3079{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003080 /* cancel requested || normal exit path */
3081 return atomic_read(&fs_info->balance_cancel_req) ||
3082 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3083 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003084}
3085
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003086static void __cancel_balance(struct btrfs_fs_info *fs_info)
3087{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003088 int ret;
3089
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003090 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003091 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003092 if (ret)
3093 btrfs_std_error(fs_info, ret);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003094
3095 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003096}
3097
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003098/*
3099 * Should be called with both balance and volume mutexes held
3100 */
3101int btrfs_balance(struct btrfs_balance_control *bctl,
3102 struct btrfs_ioctl_balance_args *bargs)
3103{
3104 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003105 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003106 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003107 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003108 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003109 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003110
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003111 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003112 atomic_read(&fs_info->balance_pause_req) ||
3113 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003114 ret = -EINVAL;
3115 goto out;
3116 }
3117
Ilya Dryomove4837f82012-03-27 17:09:17 +03003118 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3119 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3120 mixed = 1;
3121
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003122 /*
3123 * In case of mixed groups both data and meta should be picked,
3124 * and identical options should be given for both of them.
3125 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003126 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3127 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003128 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3129 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3130 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
3131 printk(KERN_ERR "btrfs: with mixed groups data and "
3132 "metadata balance options must be the same\n");
3133 ret = -EINVAL;
3134 goto out;
3135 }
3136 }
3137
Stefan Behrens8dabb742012-11-06 13:15:27 +01003138 num_devices = fs_info->fs_devices->num_devices;
3139 btrfs_dev_replace_lock(&fs_info->dev_replace);
3140 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3141 BUG_ON(num_devices < 1);
3142 num_devices--;
3143 }
3144 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003145 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003146 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003147 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003148 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003149 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003150 if (num_devices > 2)
3151 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3152 if (num_devices > 3)
3153 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3154 BTRFS_BLOCK_GROUP_RAID6);
Ilya Dryomov6728b192012-03-27 17:09:17 +03003155 if ((bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3156 (!alloc_profile_is_valid(bctl->data.target, 1) ||
3157 (bctl->data.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003158 printk(KERN_ERR "btrfs: unable to start balance with target "
3159 "data profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003160 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003161 ret = -EINVAL;
3162 goto out;
3163 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003164 if ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3165 (!alloc_profile_is_valid(bctl->meta.target, 1) ||
3166 (bctl->meta.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003167 printk(KERN_ERR "btrfs: unable to start balance with target "
3168 "metadata profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003169 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003170 ret = -EINVAL;
3171 goto out;
3172 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003173 if ((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3174 (!alloc_profile_is_valid(bctl->sys.target, 1) ||
3175 (bctl->sys.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003176 printk(KERN_ERR "btrfs: unable to start balance with target "
3177 "system profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003178 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003179 ret = -EINVAL;
3180 goto out;
3181 }
3182
Ilya Dryomove4837f82012-03-27 17:09:17 +03003183 /* allow dup'ed data chunks only in mixed mode */
3184 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
Ilya Dryomov6728b192012-03-27 17:09:17 +03003185 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003186 printk(KERN_ERR "btrfs: dup for data is not allowed\n");
3187 ret = -EINVAL;
3188 goto out;
3189 }
3190
3191 /* allow to reduce meta or sys integrity only if force set */
3192 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003193 BTRFS_BLOCK_GROUP_RAID10 |
3194 BTRFS_BLOCK_GROUP_RAID5 |
3195 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003196 do {
3197 seq = read_seqbegin(&fs_info->profiles_lock);
3198
3199 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3200 (fs_info->avail_system_alloc_bits & allowed) &&
3201 !(bctl->sys.target & allowed)) ||
3202 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3203 (fs_info->avail_metadata_alloc_bits & allowed) &&
3204 !(bctl->meta.target & allowed))) {
3205 if (bctl->flags & BTRFS_BALANCE_FORCE) {
3206 printk(KERN_INFO "btrfs: force reducing metadata "
3207 "integrity\n");
3208 } else {
3209 printk(KERN_ERR "btrfs: balance will reduce metadata "
3210 "integrity, use force if you want this\n");
3211 ret = -EINVAL;
3212 goto out;
3213 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003214 }
Miao Xiede98ced2013-01-29 10:13:12 +00003215 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003216
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003217 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3218 int num_tolerated_disk_barrier_failures;
3219 u64 target = bctl->sys.target;
3220
3221 num_tolerated_disk_barrier_failures =
3222 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3223 if (num_tolerated_disk_barrier_failures > 0 &&
3224 (target &
3225 (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3226 BTRFS_AVAIL_ALLOC_BIT_SINGLE)))
3227 num_tolerated_disk_barrier_failures = 0;
3228 else if (num_tolerated_disk_barrier_failures > 1 &&
3229 (target &
3230 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)))
3231 num_tolerated_disk_barrier_failures = 1;
3232
3233 fs_info->num_tolerated_disk_barrier_failures =
3234 num_tolerated_disk_barrier_failures;
3235 }
3236
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003237 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003238 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003239 goto out;
3240
Ilya Dryomov59641012012-01-16 22:04:48 +02003241 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3242 BUG_ON(ret == -EEXIST);
3243 set_balance_control(bctl);
3244 } else {
3245 BUG_ON(ret != -EEXIST);
3246 spin_lock(&fs_info->balance_lock);
3247 update_balance_args(bctl);
3248 spin_unlock(&fs_info->balance_lock);
3249 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003250
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003251 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003252 mutex_unlock(&fs_info->balance_mutex);
3253
3254 ret = __btrfs_balance(fs_info);
3255
3256 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003257 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003258
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003259 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3260 fs_info->num_tolerated_disk_barrier_failures =
3261 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3262 }
3263
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003264 if (bargs) {
3265 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003266 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003267 }
3268
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003269 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3270 balance_need_close(fs_info)) {
3271 __cancel_balance(fs_info);
3272 }
3273
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003274 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003275
3276 return ret;
3277out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003278 if (bctl->flags & BTRFS_BALANCE_RESUME)
3279 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003280 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003281 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003282 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3283 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003284 return ret;
3285}
3286
3287static int balance_kthread(void *data)
3288{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003289 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003290 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003291
3292 mutex_lock(&fs_info->volume_mutex);
3293 mutex_lock(&fs_info->balance_mutex);
3294
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003295 if (fs_info->balance_ctl) {
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003296 printk(KERN_INFO "btrfs: continuing balance\n");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003297 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003298 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003299
3300 mutex_unlock(&fs_info->balance_mutex);
3301 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003302
Ilya Dryomov59641012012-01-16 22:04:48 +02003303 return ret;
3304}
3305
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003306int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3307{
3308 struct task_struct *tsk;
3309
3310 spin_lock(&fs_info->balance_lock);
3311 if (!fs_info->balance_ctl) {
3312 spin_unlock(&fs_info->balance_lock);
3313 return 0;
3314 }
3315 spin_unlock(&fs_info->balance_lock);
3316
3317 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
3318 printk(KERN_INFO "btrfs: force skipping balance\n");
3319 return 0;
3320 }
3321
3322 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Thomas Meyer97a184f2013-06-01 09:45:35 +00003323 return PTR_RET(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003324}
3325
Ilya Dryomov68310a52012-06-22 12:24:12 -06003326int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003327{
Ilya Dryomov59641012012-01-16 22:04:48 +02003328 struct btrfs_balance_control *bctl;
3329 struct btrfs_balance_item *item;
3330 struct btrfs_disk_balance_args disk_bargs;
3331 struct btrfs_path *path;
3332 struct extent_buffer *leaf;
3333 struct btrfs_key key;
3334 int ret;
3335
3336 path = btrfs_alloc_path();
3337 if (!path)
3338 return -ENOMEM;
3339
Ilya Dryomov68310a52012-06-22 12:24:12 -06003340 key.objectid = BTRFS_BALANCE_OBJECTID;
3341 key.type = BTRFS_BALANCE_ITEM_KEY;
3342 key.offset = 0;
3343
3344 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3345 if (ret < 0)
3346 goto out;
3347 if (ret > 0) { /* ret = -ENOENT; */
3348 ret = 0;
3349 goto out;
3350 }
3351
Ilya Dryomov59641012012-01-16 22:04:48 +02003352 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3353 if (!bctl) {
3354 ret = -ENOMEM;
3355 goto out;
3356 }
3357
Ilya Dryomov59641012012-01-16 22:04:48 +02003358 leaf = path->nodes[0];
3359 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3360
Ilya Dryomov68310a52012-06-22 12:24:12 -06003361 bctl->fs_info = fs_info;
3362 bctl->flags = btrfs_balance_flags(leaf, item);
3363 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003364
3365 btrfs_balance_data(leaf, item, &disk_bargs);
3366 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3367 btrfs_balance_meta(leaf, item, &disk_bargs);
3368 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3369 btrfs_balance_sys(leaf, item, &disk_bargs);
3370 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3371
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003372 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3373
Ilya Dryomov68310a52012-06-22 12:24:12 -06003374 mutex_lock(&fs_info->volume_mutex);
3375 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003376
Ilya Dryomov68310a52012-06-22 12:24:12 -06003377 set_balance_control(bctl);
3378
3379 mutex_unlock(&fs_info->balance_mutex);
3380 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003381out:
3382 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003383 return ret;
3384}
3385
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003386int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3387{
3388 int ret = 0;
3389
3390 mutex_lock(&fs_info->balance_mutex);
3391 if (!fs_info->balance_ctl) {
3392 mutex_unlock(&fs_info->balance_mutex);
3393 return -ENOTCONN;
3394 }
3395
3396 if (atomic_read(&fs_info->balance_running)) {
3397 atomic_inc(&fs_info->balance_pause_req);
3398 mutex_unlock(&fs_info->balance_mutex);
3399
3400 wait_event(fs_info->balance_wait_q,
3401 atomic_read(&fs_info->balance_running) == 0);
3402
3403 mutex_lock(&fs_info->balance_mutex);
3404 /* we are good with balance_ctl ripped off from under us */
3405 BUG_ON(atomic_read(&fs_info->balance_running));
3406 atomic_dec(&fs_info->balance_pause_req);
3407 } else {
3408 ret = -ENOTCONN;
3409 }
3410
3411 mutex_unlock(&fs_info->balance_mutex);
3412 return ret;
3413}
3414
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003415int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3416{
3417 mutex_lock(&fs_info->balance_mutex);
3418 if (!fs_info->balance_ctl) {
3419 mutex_unlock(&fs_info->balance_mutex);
3420 return -ENOTCONN;
3421 }
3422
3423 atomic_inc(&fs_info->balance_cancel_req);
3424 /*
3425 * if we are running just wait and return, balance item is
3426 * deleted in btrfs_balance in this case
3427 */
3428 if (atomic_read(&fs_info->balance_running)) {
3429 mutex_unlock(&fs_info->balance_mutex);
3430 wait_event(fs_info->balance_wait_q,
3431 atomic_read(&fs_info->balance_running) == 0);
3432 mutex_lock(&fs_info->balance_mutex);
3433 } else {
3434 /* __cancel_balance needs volume_mutex */
3435 mutex_unlock(&fs_info->balance_mutex);
3436 mutex_lock(&fs_info->volume_mutex);
3437 mutex_lock(&fs_info->balance_mutex);
3438
3439 if (fs_info->balance_ctl)
3440 __cancel_balance(fs_info);
3441
3442 mutex_unlock(&fs_info->volume_mutex);
3443 }
3444
3445 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3446 atomic_dec(&fs_info->balance_cancel_req);
3447 mutex_unlock(&fs_info->balance_mutex);
3448 return 0;
3449}
3450
Stefan Behrens803b2f52013-08-15 17:11:21 +02003451static int btrfs_uuid_scan_kthread(void *data)
3452{
3453 struct btrfs_fs_info *fs_info = data;
3454 struct btrfs_root *root = fs_info->tree_root;
3455 struct btrfs_key key;
3456 struct btrfs_key max_key;
3457 struct btrfs_path *path = NULL;
3458 int ret = 0;
3459 struct extent_buffer *eb;
3460 int slot;
3461 struct btrfs_root_item root_item;
3462 u32 item_size;
3463 struct btrfs_trans_handle *trans;
3464
3465 path = btrfs_alloc_path();
3466 if (!path) {
3467 ret = -ENOMEM;
3468 goto out;
3469 }
3470
3471 key.objectid = 0;
3472 key.type = BTRFS_ROOT_ITEM_KEY;
3473 key.offset = 0;
3474
3475 max_key.objectid = (u64)-1;
3476 max_key.type = BTRFS_ROOT_ITEM_KEY;
3477 max_key.offset = (u64)-1;
3478
3479 path->keep_locks = 1;
3480
3481 while (1) {
3482 ret = btrfs_search_forward(root, &key, &max_key, path, 0);
3483 if (ret) {
3484 if (ret > 0)
3485 ret = 0;
3486 break;
3487 }
3488
3489 if (key.type != BTRFS_ROOT_ITEM_KEY ||
3490 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
3491 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
3492 key.objectid > BTRFS_LAST_FREE_OBJECTID)
3493 goto skip;
3494
3495 eb = path->nodes[0];
3496 slot = path->slots[0];
3497 item_size = btrfs_item_size_nr(eb, slot);
3498 if (item_size < sizeof(root_item))
3499 goto skip;
3500
3501 trans = NULL;
3502 read_extent_buffer(eb, &root_item,
3503 btrfs_item_ptr_offset(eb, slot),
3504 (int)sizeof(root_item));
3505 if (btrfs_root_refs(&root_item) == 0)
3506 goto skip;
3507 if (!btrfs_is_empty_uuid(root_item.uuid)) {
3508 /*
3509 * 1 - subvol uuid item
3510 * 1 - received_subvol uuid item
3511 */
3512 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
3513 if (IS_ERR(trans)) {
3514 ret = PTR_ERR(trans);
3515 break;
3516 }
3517 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3518 root_item.uuid,
3519 BTRFS_UUID_KEY_SUBVOL,
3520 key.objectid);
3521 if (ret < 0) {
3522 pr_warn("btrfs: uuid_tree_add failed %d\n",
3523 ret);
3524 btrfs_end_transaction(trans,
3525 fs_info->uuid_root);
3526 break;
3527 }
3528 }
3529
3530 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
3531 if (!trans) {
3532 /* 1 - received_subvol uuid item */
3533 trans = btrfs_start_transaction(
3534 fs_info->uuid_root, 1);
3535 if (IS_ERR(trans)) {
3536 ret = PTR_ERR(trans);
3537 break;
3538 }
3539 }
3540 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3541 root_item.received_uuid,
3542 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
3543 key.objectid);
3544 if (ret < 0) {
3545 pr_warn("btrfs: uuid_tree_add failed %d\n",
3546 ret);
3547 btrfs_end_transaction(trans,
3548 fs_info->uuid_root);
3549 break;
3550 }
3551 }
3552
3553 if (trans) {
3554 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
3555 if (ret)
3556 break;
3557 }
3558
3559skip:
3560 btrfs_release_path(path);
3561 if (key.offset < (u64)-1) {
3562 key.offset++;
3563 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
3564 key.offset = 0;
3565 key.type = BTRFS_ROOT_ITEM_KEY;
3566 } else if (key.objectid < (u64)-1) {
3567 key.offset = 0;
3568 key.type = BTRFS_ROOT_ITEM_KEY;
3569 key.objectid++;
3570 } else {
3571 break;
3572 }
3573 cond_resched();
3574 }
3575
3576out:
3577 btrfs_free_path(path);
3578 if (ret)
3579 pr_warn("btrfs: btrfs_uuid_scan_kthread failed %d\n", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02003580 else
3581 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003582 up(&fs_info->uuid_tree_rescan_sem);
3583 return 0;
3584}
3585
Stefan Behrens70f80172013-08-15 17:11:23 +02003586/*
3587 * Callback for btrfs_uuid_tree_iterate().
3588 * returns:
3589 * 0 check succeeded, the entry is not outdated.
3590 * < 0 if an error occured.
3591 * > 0 if the check failed, which means the caller shall remove the entry.
3592 */
3593static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
3594 u8 *uuid, u8 type, u64 subid)
3595{
3596 struct btrfs_key key;
3597 int ret = 0;
3598 struct btrfs_root *subvol_root;
3599
3600 if (type != BTRFS_UUID_KEY_SUBVOL &&
3601 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
3602 goto out;
3603
3604 key.objectid = subid;
3605 key.type = BTRFS_ROOT_ITEM_KEY;
3606 key.offset = (u64)-1;
3607 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
3608 if (IS_ERR(subvol_root)) {
3609 ret = PTR_ERR(subvol_root);
3610 if (ret == -ENOENT)
3611 ret = 1;
3612 goto out;
3613 }
3614
3615 switch (type) {
3616 case BTRFS_UUID_KEY_SUBVOL:
3617 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
3618 ret = 1;
3619 break;
3620 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
3621 if (memcmp(uuid, subvol_root->root_item.received_uuid,
3622 BTRFS_UUID_SIZE))
3623 ret = 1;
3624 break;
3625 }
3626
3627out:
3628 return ret;
3629}
3630
3631static int btrfs_uuid_rescan_kthread(void *data)
3632{
3633 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
3634 int ret;
3635
3636 /*
3637 * 1st step is to iterate through the existing UUID tree and
3638 * to delete all entries that contain outdated data.
3639 * 2nd step is to add all missing entries to the UUID tree.
3640 */
3641 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
3642 if (ret < 0) {
3643 pr_warn("btrfs: iterating uuid_tree failed %d\n", ret);
3644 up(&fs_info->uuid_tree_rescan_sem);
3645 return ret;
3646 }
3647 return btrfs_uuid_scan_kthread(data);
3648}
3649
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003650int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
3651{
3652 struct btrfs_trans_handle *trans;
3653 struct btrfs_root *tree_root = fs_info->tree_root;
3654 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003655 struct task_struct *task;
3656 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003657
3658 /*
3659 * 1 - root node
3660 * 1 - root item
3661 */
3662 trans = btrfs_start_transaction(tree_root, 2);
3663 if (IS_ERR(trans))
3664 return PTR_ERR(trans);
3665
3666 uuid_root = btrfs_create_tree(trans, fs_info,
3667 BTRFS_UUID_TREE_OBJECTID);
3668 if (IS_ERR(uuid_root)) {
3669 btrfs_abort_transaction(trans, tree_root,
3670 PTR_ERR(uuid_root));
3671 return PTR_ERR(uuid_root);
3672 }
3673
3674 fs_info->uuid_root = uuid_root;
3675
Stefan Behrens803b2f52013-08-15 17:11:21 +02003676 ret = btrfs_commit_transaction(trans, tree_root);
3677 if (ret)
3678 return ret;
3679
3680 down(&fs_info->uuid_tree_rescan_sem);
3681 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
3682 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02003683 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Stefan Behrens803b2f52013-08-15 17:11:21 +02003684 pr_warn("btrfs: failed to start uuid_scan task\n");
3685 up(&fs_info->uuid_tree_rescan_sem);
3686 return PTR_ERR(task);
3687 }
3688
3689 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003690}
Stefan Behrens803b2f52013-08-15 17:11:21 +02003691
Stefan Behrens70f80172013-08-15 17:11:23 +02003692int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
3693{
3694 struct task_struct *task;
3695
3696 down(&fs_info->uuid_tree_rescan_sem);
3697 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
3698 if (IS_ERR(task)) {
3699 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
3700 pr_warn("btrfs: failed to start uuid_rescan task\n");
3701 up(&fs_info->uuid_tree_rescan_sem);
3702 return PTR_ERR(task);
3703 }
3704
3705 return 0;
3706}
3707
Chris Mason8f18cf12008-04-25 16:53:30 -04003708/*
3709 * shrinking a device means finding all of the device extents past
3710 * the new size, and then following the back refs to the chunks.
3711 * The chunk relocation code actually frees the device extent
3712 */
3713int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
3714{
3715 struct btrfs_trans_handle *trans;
3716 struct btrfs_root *root = device->dev_root;
3717 struct btrfs_dev_extent *dev_extent = NULL;
3718 struct btrfs_path *path;
3719 u64 length;
3720 u64 chunk_tree;
3721 u64 chunk_objectid;
3722 u64 chunk_offset;
3723 int ret;
3724 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04003725 int failed = 0;
3726 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04003727 struct extent_buffer *l;
3728 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02003729 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04003730 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04003731 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04003732 u64 diff = device->total_bytes - new_size;
3733
Stefan Behrens63a212a2012-11-05 18:29:28 +01003734 if (device->is_tgtdev_for_dev_replace)
3735 return -EINVAL;
3736
Chris Mason8f18cf12008-04-25 16:53:30 -04003737 path = btrfs_alloc_path();
3738 if (!path)
3739 return -ENOMEM;
3740
Chris Mason8f18cf12008-04-25 16:53:30 -04003741 path->reada = 2;
3742
Chris Mason7d9eb122008-07-08 14:19:17 -04003743 lock_chunks(root);
3744
Chris Mason8f18cf12008-04-25 16:53:30 -04003745 device->total_bytes = new_size;
Josef Bacik2bf64752011-09-26 17:12:22 -04003746 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05003747 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003748 spin_lock(&root->fs_info->free_chunk_lock);
3749 root->fs_info->free_chunk_space -= diff;
3750 spin_unlock(&root->fs_info->free_chunk_lock);
3751 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003752 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003753
Josef Bacikba1bf482009-09-11 16:11:19 -04003754again:
Chris Mason8f18cf12008-04-25 16:53:30 -04003755 key.objectid = device->devid;
3756 key.offset = (u64)-1;
3757 key.type = BTRFS_DEV_EXTENT_KEY;
3758
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003759 do {
Chris Mason8f18cf12008-04-25 16:53:30 -04003760 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3761 if (ret < 0)
3762 goto done;
3763
3764 ret = btrfs_previous_item(root, path, 0, key.type);
3765 if (ret < 0)
3766 goto done;
3767 if (ret) {
3768 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003769 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003770 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04003771 }
3772
3773 l = path->nodes[0];
3774 slot = path->slots[0];
3775 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
3776
Josef Bacikba1bf482009-09-11 16:11:19 -04003777 if (key.objectid != device->devid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003778 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003779 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003780 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003781
3782 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3783 length = btrfs_dev_extent_length(l, dev_extent);
3784
Josef Bacikba1bf482009-09-11 16:11:19 -04003785 if (key.offset + length <= new_size) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003786 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04003787 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003788 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003789
3790 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
3791 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
3792 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02003793 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003794
3795 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
3796 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003797 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04003798 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04003799 if (ret == -ENOSPC)
3800 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003801 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04003802
3803 if (failed && !retried) {
3804 failed = 0;
3805 retried = true;
3806 goto again;
3807 } else if (failed && retried) {
3808 ret = -ENOSPC;
3809 lock_chunks(root);
3810
3811 device->total_bytes = old_size;
3812 if (device->writeable)
3813 device->fs_devices->total_rw_bytes += diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003814 spin_lock(&root->fs_info->free_chunk_lock);
3815 root->fs_info->free_chunk_space += diff;
3816 spin_unlock(&root->fs_info->free_chunk_lock);
Josef Bacikba1bf482009-09-11 16:11:19 -04003817 unlock_chunks(root);
3818 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04003819 }
3820
Chris Balld6397ba2009-04-27 07:29:03 -04003821 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003822 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003823 if (IS_ERR(trans)) {
3824 ret = PTR_ERR(trans);
3825 goto done;
3826 }
3827
Chris Balld6397ba2009-04-27 07:29:03 -04003828 lock_chunks(root);
3829
3830 device->disk_total_bytes = new_size;
3831 /* Now btrfs_update_device() will change the on-disk size. */
3832 ret = btrfs_update_device(trans, device);
3833 if (ret) {
3834 unlock_chunks(root);
3835 btrfs_end_transaction(trans, root);
3836 goto done;
3837 }
3838 WARN_ON(diff > old_total);
3839 btrfs_set_super_total_bytes(super_copy, old_total - diff);
3840 unlock_chunks(root);
3841 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003842done:
3843 btrfs_free_path(path);
3844 return ret;
3845}
3846
Li Zefan125ccb02011-12-08 15:07:24 +08003847static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003848 struct btrfs_key *key,
3849 struct btrfs_chunk *chunk, int item_size)
3850{
David Sterba6c417612011-04-13 15:41:04 +02003851 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04003852 struct btrfs_disk_key disk_key;
3853 u32 array_size;
3854 u8 *ptr;
3855
3856 array_size = btrfs_super_sys_array_size(super_copy);
3857 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
3858 return -EFBIG;
3859
3860 ptr = super_copy->sys_chunk_array + array_size;
3861 btrfs_cpu_key_to_disk(&disk_key, key);
3862 memcpy(ptr, &disk_key, sizeof(disk_key));
3863 ptr += sizeof(disk_key);
3864 memcpy(ptr, chunk, item_size);
3865 item_size += sizeof(disk_key);
3866 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
3867 return 0;
3868}
3869
Miao Xieb2117a32011-01-05 10:07:28 +00003870/*
Arne Jansen73c5de02011-04-12 12:07:57 +02003871 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00003872 */
Arne Jansen73c5de02011-04-12 12:07:57 +02003873static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00003874{
Arne Jansen73c5de02011-04-12 12:07:57 +02003875 const struct btrfs_device_info *di_a = a;
3876 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00003877
Arne Jansen73c5de02011-04-12 12:07:57 +02003878 if (di_a->max_avail > di_b->max_avail)
3879 return -1;
3880 if (di_a->max_avail < di_b->max_avail)
3881 return 1;
3882 if (di_a->total_avail > di_b->total_avail)
3883 return -1;
3884 if (di_a->total_avail < di_b->total_avail)
3885 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00003886 return 0;
3887}
3888
Eric Sandeen48a3b632013-04-25 20:41:01 +00003889static struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
Miao Xiee6ec7162013-01-17 05:38:51 +00003890 [BTRFS_RAID_RAID10] = {
3891 .sub_stripes = 2,
3892 .dev_stripes = 1,
3893 .devs_max = 0, /* 0 == as many as possible */
3894 .devs_min = 4,
3895 .devs_increment = 2,
3896 .ncopies = 2,
3897 },
3898 [BTRFS_RAID_RAID1] = {
3899 .sub_stripes = 1,
3900 .dev_stripes = 1,
3901 .devs_max = 2,
3902 .devs_min = 2,
3903 .devs_increment = 2,
3904 .ncopies = 2,
3905 },
3906 [BTRFS_RAID_DUP] = {
3907 .sub_stripes = 1,
3908 .dev_stripes = 2,
3909 .devs_max = 1,
3910 .devs_min = 1,
3911 .devs_increment = 1,
3912 .ncopies = 2,
3913 },
3914 [BTRFS_RAID_RAID0] = {
3915 .sub_stripes = 1,
3916 .dev_stripes = 1,
3917 .devs_max = 0,
3918 .devs_min = 2,
3919 .devs_increment = 1,
3920 .ncopies = 1,
3921 },
3922 [BTRFS_RAID_SINGLE] = {
3923 .sub_stripes = 1,
3924 .dev_stripes = 1,
3925 .devs_max = 1,
3926 .devs_min = 1,
3927 .devs_increment = 1,
3928 .ncopies = 1,
3929 },
Chris Masone942f882013-02-20 14:06:05 -05003930 [BTRFS_RAID_RAID5] = {
3931 .sub_stripes = 1,
3932 .dev_stripes = 1,
3933 .devs_max = 0,
3934 .devs_min = 2,
3935 .devs_increment = 1,
3936 .ncopies = 2,
3937 },
3938 [BTRFS_RAID_RAID6] = {
3939 .sub_stripes = 1,
3940 .dev_stripes = 1,
3941 .devs_max = 0,
3942 .devs_min = 3,
3943 .devs_increment = 1,
3944 .ncopies = 3,
3945 },
Liu Bo31e50222012-11-21 14:18:10 +00003946};
3947
David Woodhouse53b381b2013-01-29 18:40:14 -05003948static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
3949{
3950 /* TODO allow them to set a preferred stripe size */
3951 return 64 * 1024;
3952}
3953
3954static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
3955{
David Woodhouse53b381b2013-01-29 18:40:14 -05003956 if (!(type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)))
3957 return;
3958
Miao Xieceda0862013-04-11 10:30:16 +00003959 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05003960}
3961
Miao Xieb2117a32011-01-05 10:07:28 +00003962static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04003963 struct btrfs_root *extent_root, u64 start,
3964 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00003965{
3966 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00003967 struct btrfs_fs_devices *fs_devices = info->fs_devices;
3968 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02003969 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00003970 struct extent_map_tree *em_tree;
3971 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02003972 struct btrfs_device_info *devices_info = NULL;
3973 u64 total_avail;
3974 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05003975 int data_stripes; /* number of stripes that count for
3976 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02003977 int sub_stripes; /* sub_stripes info for map */
3978 int dev_stripes; /* stripes per dev */
3979 int devs_max; /* max devs to use */
3980 int devs_min; /* min devs needed */
3981 int devs_increment; /* ndevs has to be a multiple of this */
3982 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00003983 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02003984 u64 max_stripe_size;
3985 u64 max_chunk_size;
3986 u64 stripe_size;
3987 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05003988 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02003989 int ndevs;
3990 int i;
3991 int j;
Liu Bo31e50222012-11-21 14:18:10 +00003992 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00003993
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003994 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02003995
Miao Xieb2117a32011-01-05 10:07:28 +00003996 if (list_empty(&fs_devices->alloc_list))
3997 return -ENOSPC;
3998
Liu Bo31e50222012-11-21 14:18:10 +00003999 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004000
Liu Bo31e50222012-11-21 14:18:10 +00004001 sub_stripes = btrfs_raid_array[index].sub_stripes;
4002 dev_stripes = btrfs_raid_array[index].dev_stripes;
4003 devs_max = btrfs_raid_array[index].devs_max;
4004 devs_min = btrfs_raid_array[index].devs_min;
4005 devs_increment = btrfs_raid_array[index].devs_increment;
4006 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004007
4008 if (type & BTRFS_BLOCK_GROUP_DATA) {
4009 max_stripe_size = 1024 * 1024 * 1024;
4010 max_chunk_size = 10 * max_stripe_size;
4011 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004012 /* for larger filesystems, use larger metadata chunks */
4013 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
4014 max_stripe_size = 1024 * 1024 * 1024;
4015 else
4016 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004017 max_chunk_size = max_stripe_size;
4018 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05004019 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004020 max_chunk_size = 2 * max_stripe_size;
4021 } else {
4022 printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
4023 type);
4024 BUG_ON(1);
4025 }
4026
4027 /* we don't want a chunk larger than 10% of writeable space */
4028 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4029 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004030
4031 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
4032 GFP_NOFS);
4033 if (!devices_info)
4034 return -ENOMEM;
4035
Arne Jansen73c5de02011-04-12 12:07:57 +02004036 cur = fs_devices->alloc_list.next;
4037
4038 /*
4039 * in the first pass through the devices list, we gather information
4040 * about the available holes on each device.
4041 */
4042 ndevs = 0;
4043 while (cur != &fs_devices->alloc_list) {
4044 struct btrfs_device *device;
4045 u64 max_avail;
4046 u64 dev_offset;
4047
4048 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4049
4050 cur = cur->next;
4051
4052 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004053 WARN(1, KERN_ERR
Arne Jansen73c5de02011-04-12 12:07:57 +02004054 "btrfs: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004055 continue;
4056 }
4057
Stefan Behrens63a212a2012-11-05 18:29:28 +01004058 if (!device->in_fs_metadata ||
4059 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004060 continue;
4061
4062 if (device->total_bytes > device->bytes_used)
4063 total_avail = device->total_bytes - device->bytes_used;
4064 else
4065 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004066
4067 /* If there is no space on this device, skip it. */
4068 if (total_avail == 0)
4069 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004070
Josef Bacik6df9a952013-06-27 13:22:46 -04004071 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004072 max_stripe_size * dev_stripes,
4073 &dev_offset, &max_avail);
4074 if (ret && ret != -ENOSPC)
4075 goto error;
4076
4077 if (ret == 0)
4078 max_avail = max_stripe_size * dev_stripes;
4079
4080 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4081 continue;
4082
Eric Sandeen063d0062013-01-31 00:55:01 +00004083 if (ndevs == fs_devices->rw_devices) {
4084 WARN(1, "%s: found more than %llu devices\n",
4085 __func__, fs_devices->rw_devices);
4086 break;
4087 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004088 devices_info[ndevs].dev_offset = dev_offset;
4089 devices_info[ndevs].max_avail = max_avail;
4090 devices_info[ndevs].total_avail = total_avail;
4091 devices_info[ndevs].dev = device;
4092 ++ndevs;
4093 }
4094
4095 /*
4096 * now sort the devices by hole size / available space
4097 */
4098 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4099 btrfs_cmp_device_info, NULL);
4100
4101 /* round down to number of usable stripes */
4102 ndevs -= ndevs % devs_increment;
4103
4104 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4105 ret = -ENOSPC;
4106 goto error;
4107 }
4108
4109 if (devs_max && ndevs > devs_max)
4110 ndevs = devs_max;
4111 /*
4112 * the primary goal is to maximize the number of stripes, so use as many
4113 * devices as possible, even if the stripes are not maximum sized.
4114 */
4115 stripe_size = devices_info[ndevs-1].max_avail;
4116 num_stripes = ndevs * dev_stripes;
4117
David Woodhouse53b381b2013-01-29 18:40:14 -05004118 /*
4119 * this will have to be fixed for RAID1 and RAID10 over
4120 * more drives
4121 */
4122 data_stripes = num_stripes / ncopies;
4123
David Woodhouse53b381b2013-01-29 18:40:14 -05004124 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4125 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4126 btrfs_super_stripesize(info->super_copy));
4127 data_stripes = num_stripes - 1;
4128 }
4129 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4130 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4131 btrfs_super_stripesize(info->super_copy));
4132 data_stripes = num_stripes - 2;
4133 }
Chris Mason86db2572013-02-20 16:23:40 -05004134
4135 /*
4136 * Use the number of data stripes to figure out how big this chunk
4137 * is really going to be in terms of logical address space,
4138 * and compare that answer with the max chunk size
4139 */
4140 if (stripe_size * data_stripes > max_chunk_size) {
4141 u64 mask = (1ULL << 24) - 1;
4142 stripe_size = max_chunk_size;
4143 do_div(stripe_size, data_stripes);
4144
4145 /* bump the answer up to a 16MB boundary */
4146 stripe_size = (stripe_size + mask) & ~mask;
4147
4148 /* but don't go higher than the limits we found
4149 * while searching for free extents
4150 */
4151 if (stripe_size > devices_info[ndevs-1].max_avail)
4152 stripe_size = devices_info[ndevs-1].max_avail;
4153 }
4154
Arne Jansen73c5de02011-04-12 12:07:57 +02004155 do_div(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004156
4157 /* align to BTRFS_STRIPE_LEN */
David Woodhouse53b381b2013-01-29 18:40:14 -05004158 do_div(stripe_size, raid_stripe_len);
4159 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004160
Miao Xieb2117a32011-01-05 10:07:28 +00004161 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4162 if (!map) {
4163 ret = -ENOMEM;
4164 goto error;
4165 }
4166 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004167
Arne Jansen73c5de02011-04-12 12:07:57 +02004168 for (i = 0; i < ndevs; ++i) {
4169 for (j = 0; j < dev_stripes; ++j) {
4170 int s = i * dev_stripes + j;
4171 map->stripes[s].dev = devices_info[i].dev;
4172 map->stripes[s].physical = devices_info[i].dev_offset +
4173 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004174 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004175 }
Chris Mason593060d2008-03-25 16:50:33 -04004176 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004177 map->stripe_len = raid_stripe_len;
4178 map->io_align = raid_stripe_len;
4179 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004180 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004181 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004182
David Woodhouse53b381b2013-01-29 18:40:14 -05004183 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004184
Arne Jansen73c5de02011-04-12 12:07:57 +02004185 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004186
David Sterba172ddd62011-04-21 00:48:27 +02004187 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004188 if (!em) {
Miao Xieb2117a32011-01-05 10:07:28 +00004189 ret = -ENOMEM;
4190 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004191 }
Chris Mason0b86a832008-03-24 15:01:56 -04004192 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05004193 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004194 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004195 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004196 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004197 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004198
Chris Mason0b86a832008-03-24 15:01:56 -04004199 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004200 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004201 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004202 if (!ret) {
4203 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4204 atomic_inc(&em->refs);
4205 }
Chris Mason890871b2009-09-02 16:24:52 -04004206 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004207 if (ret) {
4208 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004209 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004210 }
Yan Zheng2b820322008-11-17 21:11:30 -05004211
Josef Bacik04487482013-01-29 15:03:37 -05004212 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4213 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4214 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004215 if (ret)
4216 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004217
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004218 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004219 check_raid56_incompat_flag(extent_root->fs_info, type);
4220
Miao Xieb2117a32011-01-05 10:07:28 +00004221 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004222 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004223
Josef Bacik6df9a952013-06-27 13:22:46 -04004224error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004225 write_lock(&em_tree->lock);
4226 remove_extent_mapping(em_tree, em);
4227 write_unlock(&em_tree->lock);
4228
4229 /* One for our allocation */
4230 free_extent_map(em);
4231 /* One for the tree reference */
4232 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004233error:
4234 kfree(map);
4235 kfree(devices_info);
4236 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004237}
4238
Josef Bacik6df9a952013-06-27 13:22:46 -04004239int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004240 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004241 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004242{
Yan Zheng2b820322008-11-17 21:11:30 -05004243 struct btrfs_key key;
4244 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4245 struct btrfs_device *device;
4246 struct btrfs_chunk *chunk;
4247 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004248 struct extent_map_tree *em_tree;
4249 struct extent_map *em;
4250 struct map_lookup *map;
4251 size_t item_size;
4252 u64 dev_offset;
4253 u64 stripe_size;
4254 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004255 int ret;
4256
Josef Bacik6df9a952013-06-27 13:22:46 -04004257 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4258 read_lock(&em_tree->lock);
4259 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4260 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004261
Josef Bacik6df9a952013-06-27 13:22:46 -04004262 if (!em) {
4263 btrfs_crit(extent_root->fs_info, "unable to find logical "
4264 "%Lu len %Lu", chunk_offset, chunk_size);
4265 return -EINVAL;
4266 }
4267
4268 if (em->start != chunk_offset || em->len != chunk_size) {
4269 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
4270 " %Lu-%Lu, found %Lu-%Lu\n", chunk_offset,
4271 chunk_size, em->start, em->len);
4272 free_extent_map(em);
4273 return -EINVAL;
4274 }
4275
4276 map = (struct map_lookup *)em->bdev;
4277 item_size = btrfs_chunk_item_size(map->num_stripes);
4278 stripe_size = em->orig_block_len;
4279
4280 chunk = kzalloc(item_size, GFP_NOFS);
4281 if (!chunk) {
4282 ret = -ENOMEM;
4283 goto out;
4284 }
4285
4286 for (i = 0; i < map->num_stripes; i++) {
4287 device = map->stripes[i].dev;
4288 dev_offset = map->stripes[i].physical;
4289
Yan Zheng2b820322008-11-17 21:11:30 -05004290 device->bytes_used += stripe_size;
4291 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004292 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004293 goto out;
4294 ret = btrfs_alloc_dev_extent(trans, device,
4295 chunk_root->root_key.objectid,
4296 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4297 chunk_offset, dev_offset,
4298 stripe_size);
4299 if (ret)
4300 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004301 }
4302
Josef Bacik2bf64752011-09-26 17:12:22 -04004303 spin_lock(&extent_root->fs_info->free_chunk_lock);
4304 extent_root->fs_info->free_chunk_space -= (stripe_size *
4305 map->num_stripes);
4306 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4307
Yan Zheng2b820322008-11-17 21:11:30 -05004308 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004309 for (i = 0; i < map->num_stripes; i++) {
4310 device = map->stripes[i].dev;
4311 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004312
4313 btrfs_set_stack_stripe_devid(stripe, device->devid);
4314 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4315 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4316 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004317 }
4318
4319 btrfs_set_stack_chunk_length(chunk, chunk_size);
4320 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4321 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4322 btrfs_set_stack_chunk_type(chunk, map->type);
4323 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4324 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4325 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4326 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4327 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4328
4329 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4330 key.type = BTRFS_CHUNK_ITEM_KEY;
4331 key.offset = chunk_offset;
4332
4333 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004334 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4335 /*
4336 * TODO: Cleanup of inserted chunk root in case of
4337 * failure.
4338 */
Li Zefan125ccb02011-12-08 15:07:24 +08004339 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004340 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004341 }
liubo1abe9b82011-03-24 11:18:59 +00004342
Josef Bacik6df9a952013-06-27 13:22:46 -04004343out:
Yan Zheng2b820322008-11-17 21:11:30 -05004344 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004345 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004346 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004347}
4348
4349/*
4350 * Chunk allocation falls into two parts. The first part does works
4351 * that make the new allocated chunk useable, but not do any operation
4352 * that modifies the chunk tree. The second part does the works that
4353 * require modifying the chunk tree. This division is important for the
4354 * bootstrap process of adding storage to a seed btrfs.
4355 */
4356int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4357 struct btrfs_root *extent_root, u64 type)
4358{
4359 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004360
Josef Bacik6df9a952013-06-27 13:22:46 -04004361 chunk_offset = find_next_chunk(extent_root->fs_info);
4362 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004363}
4364
Chris Masond3977122009-01-05 21:25:51 -05004365static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004366 struct btrfs_root *root,
4367 struct btrfs_device *device)
4368{
4369 u64 chunk_offset;
4370 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004371 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004372 struct btrfs_fs_info *fs_info = root->fs_info;
4373 struct btrfs_root *extent_root = fs_info->extent_root;
4374 int ret;
4375
Josef Bacik6df9a952013-06-27 13:22:46 -04004376 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004377 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004378 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4379 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004380 if (ret)
4381 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004382
Josef Bacik6df9a952013-06-27 13:22:46 -04004383 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004384 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004385 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4386 alloc_profile);
David Sterba005d6422012-09-18 07:52:32 -06004387 if (ret) {
4388 btrfs_abort_transaction(trans, root, ret);
4389 goto out;
4390 }
Yan Zheng2b820322008-11-17 21:11:30 -05004391
4392 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004393 if (ret)
David Sterba005d6422012-09-18 07:52:32 -06004394 btrfs_abort_transaction(trans, root, ret);
David Sterba005d6422012-09-18 07:52:32 -06004395out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004396 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004397}
4398
4399int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4400{
4401 struct extent_map *em;
4402 struct map_lookup *map;
4403 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4404 int readonly = 0;
4405 int i;
4406
Chris Mason890871b2009-09-02 16:24:52 -04004407 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004408 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004409 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004410 if (!em)
4411 return 1;
4412
Josef Bacikf48b9072010-01-27 02:07:59 +00004413 if (btrfs_test_opt(root, DEGRADED)) {
4414 free_extent_map(em);
4415 return 0;
4416 }
4417
Yan Zheng2b820322008-11-17 21:11:30 -05004418 map = (struct map_lookup *)em->bdev;
4419 for (i = 0; i < map->num_stripes; i++) {
4420 if (!map->stripes[i].dev->writeable) {
4421 readonly = 1;
4422 break;
4423 }
4424 }
4425 free_extent_map(em);
4426 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004427}
4428
4429void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4430{
David Sterbaa8067e02011-04-21 00:34:43 +02004431 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004432}
4433
4434void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4435{
4436 struct extent_map *em;
4437
Chris Masond3977122009-01-05 21:25:51 -05004438 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004439 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004440 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4441 if (em)
4442 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004443 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004444 if (!em)
4445 break;
4446 kfree(em->bdev);
4447 /* once for us */
4448 free_extent_map(em);
4449 /* once for the tree */
4450 free_extent_map(em);
4451 }
4452}
4453
Stefan Behrens5d964052012-11-05 14:59:07 +01004454int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04004455{
Stefan Behrens5d964052012-11-05 14:59:07 +01004456 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04004457 struct extent_map *em;
4458 struct map_lookup *map;
4459 struct extent_map_tree *em_tree = &map_tree->map_tree;
4460 int ret;
4461
Chris Mason890871b2009-09-02 16:24:52 -04004462 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004463 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04004464 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004465
Josef Bacikfb7669b2013-04-23 10:53:18 -04004466 /*
4467 * We could return errors for these cases, but that could get ugly and
4468 * we'd probably do the same thing which is just not do anything else
4469 * and exit, so return 1 so the callers don't try to use other copies.
4470 */
4471 if (!em) {
David Sterbaccf39f92013-07-11 15:41:11 +02004472 btrfs_crit(fs_info, "No mapping for %Lu-%Lu\n", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004473 logical+len);
4474 return 1;
4475 }
4476
4477 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02004478 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
Josef Bacikfb7669b2013-04-23 10:53:18 -04004479 "%Lu-%Lu\n", logical, logical+len, em->start,
4480 em->start + em->len);
4481 return 1;
4482 }
4483
Chris Masonf1885912008-04-09 16:28:12 -04004484 map = (struct map_lookup *)em->bdev;
4485 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
4486 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004487 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4488 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004489 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
4490 ret = 2;
4491 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4492 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04004493 else
4494 ret = 1;
4495 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004496
4497 btrfs_dev_replace_lock(&fs_info->dev_replace);
4498 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
4499 ret++;
4500 btrfs_dev_replace_unlock(&fs_info->dev_replace);
4501
Chris Masonf1885912008-04-09 16:28:12 -04004502 return ret;
4503}
4504
David Woodhouse53b381b2013-01-29 18:40:14 -05004505unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
4506 struct btrfs_mapping_tree *map_tree,
4507 u64 logical)
4508{
4509 struct extent_map *em;
4510 struct map_lookup *map;
4511 struct extent_map_tree *em_tree = &map_tree->map_tree;
4512 unsigned long len = root->sectorsize;
4513
4514 read_lock(&em_tree->lock);
4515 em = lookup_extent_mapping(em_tree, logical, len);
4516 read_unlock(&em_tree->lock);
4517 BUG_ON(!em);
4518
4519 BUG_ON(em->start > logical || em->start + em->len < logical);
4520 map = (struct map_lookup *)em->bdev;
4521 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4522 BTRFS_BLOCK_GROUP_RAID6)) {
4523 len = map->stripe_len * nr_data_stripes(map);
4524 }
4525 free_extent_map(em);
4526 return len;
4527}
4528
4529int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
4530 u64 logical, u64 len, int mirror_num)
4531{
4532 struct extent_map *em;
4533 struct map_lookup *map;
4534 struct extent_map_tree *em_tree = &map_tree->map_tree;
4535 int ret = 0;
4536
4537 read_lock(&em_tree->lock);
4538 em = lookup_extent_mapping(em_tree, logical, len);
4539 read_unlock(&em_tree->lock);
4540 BUG_ON(!em);
4541
4542 BUG_ON(em->start > logical || em->start + em->len < logical);
4543 map = (struct map_lookup *)em->bdev;
4544 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4545 BTRFS_BLOCK_GROUP_RAID6))
4546 ret = 1;
4547 free_extent_map(em);
4548 return ret;
4549}
4550
Stefan Behrens30d98612012-11-06 14:52:18 +01004551static int find_live_mirror(struct btrfs_fs_info *fs_info,
4552 struct map_lookup *map, int first, int num,
4553 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04004554{
4555 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01004556 int tolerance;
4557 struct btrfs_device *srcdev;
4558
4559 if (dev_replace_is_ongoing &&
4560 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
4561 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
4562 srcdev = fs_info->dev_replace.srcdev;
4563 else
4564 srcdev = NULL;
4565
4566 /*
4567 * try to avoid the drive that is the source drive for a
4568 * dev-replace procedure, only choose it if no other non-missing
4569 * mirror is available
4570 */
4571 for (tolerance = 0; tolerance < 2; tolerance++) {
4572 if (map->stripes[optimal].dev->bdev &&
4573 (tolerance || map->stripes[optimal].dev != srcdev))
4574 return optimal;
4575 for (i = first; i < first + num; i++) {
4576 if (map->stripes[i].dev->bdev &&
4577 (tolerance || map->stripes[i].dev != srcdev))
4578 return i;
4579 }
Chris Masondfe25022008-05-13 13:46:40 -04004580 }
Stefan Behrens30d98612012-11-06 14:52:18 +01004581
Chris Masondfe25022008-05-13 13:46:40 -04004582 /* we couldn't find one that doesn't fail. Just return something
4583 * and the io error handling code will clean up eventually
4584 */
4585 return optimal;
4586}
4587
David Woodhouse53b381b2013-01-29 18:40:14 -05004588static inline int parity_smaller(u64 a, u64 b)
4589{
4590 return a > b;
4591}
4592
4593/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
4594static void sort_parity_stripes(struct btrfs_bio *bbio, u64 *raid_map)
4595{
4596 struct btrfs_bio_stripe s;
4597 int i;
4598 u64 l;
4599 int again = 1;
4600
4601 while (again) {
4602 again = 0;
4603 for (i = 0; i < bbio->num_stripes - 1; i++) {
4604 if (parity_smaller(raid_map[i], raid_map[i+1])) {
4605 s = bbio->stripes[i];
4606 l = raid_map[i];
4607 bbio->stripes[i] = bbio->stripes[i+1];
4608 raid_map[i] = raid_map[i+1];
4609 bbio->stripes[i+1] = s;
4610 raid_map[i+1] = l;
4611 again = 1;
4612 }
4613 }
4614 }
4615}
4616
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004617static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04004618 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02004619 struct btrfs_bio **bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05004620 int mirror_num, u64 **raid_map_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04004621{
4622 struct extent_map *em;
4623 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004624 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04004625 struct extent_map_tree *em_tree = &map_tree->map_tree;
4626 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04004627 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004628 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04004629 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004630 u64 stripe_nr_orig;
4631 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05004632 u64 stripe_len;
4633 u64 *raid_map = NULL;
Chris Mason593060d2008-03-25 16:50:33 -04004634 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04004635 int i;
Li Zefande11cc12011-12-01 12:55:47 +08004636 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04004637 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04004638 int max_errors = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004639 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01004640 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
4641 int dev_replace_is_ongoing = 0;
4642 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004643 int patch_the_first_stripe_for_dev_replace = 0;
4644 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05004645 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04004646
Chris Mason890871b2009-09-02 16:24:52 -04004647 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004648 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04004649 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04004650
Chris Mason3b951512008-04-17 11:29:12 -04004651 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004652 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004653 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04004654 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04004655 }
Chris Mason0b86a832008-03-24 15:01:56 -04004656
Josef Bacik9bb91872013-04-19 23:45:33 -04004657 if (em->start > logical || em->start + em->len < logical) {
4658 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
4659 "found %Lu-%Lu\n", logical, em->start,
4660 em->start + em->len);
4661 return -EINVAL;
4662 }
4663
Chris Mason0b86a832008-03-24 15:01:56 -04004664 map = (struct map_lookup *)em->bdev;
4665 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04004666
David Woodhouse53b381b2013-01-29 18:40:14 -05004667 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004668 stripe_nr = offset;
4669 /*
4670 * stripe_nr counts the total number of stripes we have to stride
4671 * to get to this block
4672 */
David Woodhouse53b381b2013-01-29 18:40:14 -05004673 do_div(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04004674
David Woodhouse53b381b2013-01-29 18:40:14 -05004675 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004676 BUG_ON(offset < stripe_offset);
4677
4678 /* stripe_offset is the offset of this block in its stripe*/
4679 stripe_offset = offset - stripe_offset;
4680
David Woodhouse53b381b2013-01-29 18:40:14 -05004681 /* if we're here for raid56, we need to know the stripe aligned start */
4682 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4683 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
4684 raid56_full_stripe_start = offset;
4685
4686 /* allow a write of a full stripe, but make sure we don't
4687 * allow straddling of stripes
4688 */
4689 do_div(raid56_full_stripe_start, full_stripe_len);
4690 raid56_full_stripe_start *= full_stripe_len;
4691 }
4692
4693 if (rw & REQ_DISCARD) {
4694 /* we don't discard raid56 yet */
4695 if (map->type &
4696 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4697 ret = -EOPNOTSUPP;
4698 goto out;
4699 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00004700 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004701 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
4702 u64 max_len;
4703 /* For writes to RAID[56], allow a full stripeset across all disks.
4704 For other RAID types and for RAID[56] reads, just allow a single
4705 stripe (on a single disk). */
4706 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6) &&
4707 (rw & REQ_WRITE)) {
4708 max_len = stripe_len * nr_data_stripes(map) -
4709 (offset - raid56_full_stripe_start);
4710 } else {
4711 /* we limit the length of each bio to what fits in a stripe */
4712 max_len = stripe_len - stripe_offset;
4713 }
4714 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04004715 } else {
4716 *length = em->len - offset;
4717 }
Chris Masonf2d8d742008-04-21 10:03:05 -04004718
David Woodhouse53b381b2013-01-29 18:40:14 -05004719 /* This is for when we're called from btrfs_merge_bio_hook() and all
4720 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02004721 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04004722 goto out;
4723
Stefan Behrens472262f2012-11-06 14:43:46 +01004724 btrfs_dev_replace_lock(dev_replace);
4725 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
4726 if (!dev_replace_is_ongoing)
4727 btrfs_dev_replace_unlock(dev_replace);
4728
Stefan Behrensad6d6202012-11-06 15:06:47 +01004729 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
4730 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
4731 dev_replace->tgtdev != NULL) {
4732 /*
4733 * in dev-replace case, for repair case (that's the only
4734 * case where the mirror is selected explicitly when
4735 * calling btrfs_map_block), blocks left of the left cursor
4736 * can also be read from the target drive.
4737 * For REQ_GET_READ_MIRRORS, the target drive is added as
4738 * the last one to the array of stripes. For READ, it also
4739 * needs to be supported using the same mirror number.
4740 * If the requested block is not left of the left cursor,
4741 * EIO is returned. This can happen because btrfs_num_copies()
4742 * returns one more in the dev-replace case.
4743 */
4744 u64 tmp_length = *length;
4745 struct btrfs_bio *tmp_bbio = NULL;
4746 int tmp_num_stripes;
4747 u64 srcdev_devid = dev_replace->srcdev->devid;
4748 int index_srcdev = 0;
4749 int found = 0;
4750 u64 physical_of_found = 0;
4751
4752 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
David Woodhouse53b381b2013-01-29 18:40:14 -05004753 logical, &tmp_length, &tmp_bbio, 0, NULL);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004754 if (ret) {
4755 WARN_ON(tmp_bbio != NULL);
4756 goto out;
4757 }
4758
4759 tmp_num_stripes = tmp_bbio->num_stripes;
4760 if (mirror_num > tmp_num_stripes) {
4761 /*
4762 * REQ_GET_READ_MIRRORS does not contain this
4763 * mirror, that means that the requested area
4764 * is not left of the left cursor
4765 */
4766 ret = -EIO;
4767 kfree(tmp_bbio);
4768 goto out;
4769 }
4770
4771 /*
4772 * process the rest of the function using the mirror_num
4773 * of the source drive. Therefore look it up first.
4774 * At the end, patch the device pointer to the one of the
4775 * target drive.
4776 */
4777 for (i = 0; i < tmp_num_stripes; i++) {
4778 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
4779 /*
4780 * In case of DUP, in order to keep it
4781 * simple, only add the mirror with the
4782 * lowest physical address
4783 */
4784 if (found &&
4785 physical_of_found <=
4786 tmp_bbio->stripes[i].physical)
4787 continue;
4788 index_srcdev = i;
4789 found = 1;
4790 physical_of_found =
4791 tmp_bbio->stripes[i].physical;
4792 }
4793 }
4794
4795 if (found) {
4796 mirror_num = index_srcdev + 1;
4797 patch_the_first_stripe_for_dev_replace = 1;
4798 physical_to_patch_in_first_stripe = physical_of_found;
4799 } else {
4800 WARN_ON(1);
4801 ret = -EIO;
4802 kfree(tmp_bbio);
4803 goto out;
4804 }
4805
4806 kfree(tmp_bbio);
4807 } else if (mirror_num > map->num_stripes) {
4808 mirror_num = 0;
4809 }
4810
Chris Masonf2d8d742008-04-21 10:03:05 -04004811 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04004812 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004813 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00004814 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00004815 do_div(stripe_nr_end, map->stripe_len);
4816 stripe_end_offset = stripe_nr_end * map->stripe_len -
4817 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004818
Li Dongyangfce3bb92011-03-24 10:24:26 +00004819 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
4820 if (rw & REQ_DISCARD)
4821 num_stripes = min_t(u64, map->num_stripes,
4822 stripe_nr_end - stripe_nr_orig);
4823 stripe_index = do_div(stripe_nr, map->num_stripes);
4824 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004825 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004826 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04004827 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04004828 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004829 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01004830 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04004831 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01004832 current->pid % map->num_stripes,
4833 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004834 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004835 }
Chris Mason2fff7342008-04-29 14:12:09 -04004836
Chris Mason611f0e02008-04-03 16:29:03 -04004837 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
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;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004840 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04004841 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004842 } else {
4843 mirror_num = 1;
4844 }
Chris Mason2fff7342008-04-29 14:12:09 -04004845
Chris Mason321aecc2008-04-16 10:49:51 -04004846 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
4847 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004848
4849 stripe_index = do_div(stripe_nr, factor);
4850 stripe_index *= map->sub_stripes;
4851
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004852 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004853 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004854 else if (rw & REQ_DISCARD)
4855 num_stripes = min_t(u64, map->sub_stripes *
4856 (stripe_nr_end - stripe_nr_orig),
4857 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04004858 else if (mirror_num)
4859 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004860 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04004861 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01004862 stripe_index = find_live_mirror(fs_info, map,
4863 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04004864 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01004865 current->pid % map->sub_stripes,
4866 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04004867 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004868 }
David Woodhouse53b381b2013-01-29 18:40:14 -05004869
4870 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4871 BTRFS_BLOCK_GROUP_RAID6)) {
4872 u64 tmp;
4873
4874 if (bbio_ret && ((rw & REQ_WRITE) || mirror_num > 1)
4875 && raid_map_ret) {
4876 int i, rot;
4877
4878 /* push stripe_nr back to the start of the full stripe */
4879 stripe_nr = raid56_full_stripe_start;
4880 do_div(stripe_nr, stripe_len);
4881
4882 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4883
4884 /* RAID[56] write or recovery. Return all stripes */
4885 num_stripes = map->num_stripes;
4886 max_errors = nr_parity_stripes(map);
4887
4888 raid_map = kmalloc(sizeof(u64) * num_stripes,
4889 GFP_NOFS);
4890 if (!raid_map) {
4891 ret = -ENOMEM;
4892 goto out;
4893 }
4894
4895 /* Work out the disk rotation on this stripe-set */
4896 tmp = stripe_nr;
4897 rot = do_div(tmp, num_stripes);
4898
4899 /* Fill in the logical address of each stripe */
4900 tmp = stripe_nr * nr_data_stripes(map);
4901 for (i = 0; i < nr_data_stripes(map); i++)
4902 raid_map[(i+rot) % num_stripes] =
4903 em->start + (tmp + i) * map->stripe_len;
4904
4905 raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
4906 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4907 raid_map[(i+rot+1) % num_stripes] =
4908 RAID6_Q_STRIPE;
4909
4910 *length = map->stripe_len;
4911 stripe_index = 0;
4912 stripe_offset = 0;
4913 } else {
4914 /*
4915 * Mirror #0 or #1 means the original data block.
4916 * Mirror #2 is RAID5 parity block.
4917 * Mirror #3 is RAID6 Q block.
4918 */
4919 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4920 if (mirror_num > 1)
4921 stripe_index = nr_data_stripes(map) +
4922 mirror_num - 2;
4923
4924 /* We distribute the parity blocks across stripes */
4925 tmp = stripe_nr + stripe_index;
4926 stripe_index = do_div(tmp, map->num_stripes);
4927 }
Chris Mason8790d502008-04-03 16:29:03 -04004928 } else {
4929 /*
4930 * after this do_div call, stripe_nr is the number of stripes
4931 * on this device we have to walk to find the data, and
4932 * stripe_index is the number of our device in the stripe array
4933 */
4934 stripe_index = do_div(stripe_nr, map->num_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004935 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04004936 }
Chris Mason593060d2008-03-25 16:50:33 -04004937 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04004938
Stefan Behrens472262f2012-11-06 14:43:46 +01004939 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004940 if (dev_replace_is_ongoing) {
4941 if (rw & (REQ_WRITE | REQ_DISCARD))
4942 num_alloc_stripes <<= 1;
4943 if (rw & REQ_GET_READ_MIRRORS)
4944 num_alloc_stripes++;
4945 }
Stefan Behrens472262f2012-11-06 14:43:46 +01004946 bbio = kzalloc(btrfs_bio_size(num_alloc_stripes), GFP_NOFS);
Li Zefande11cc12011-12-01 12:55:47 +08004947 if (!bbio) {
Dave Joneseb2067f2013-07-30 13:42:17 -04004948 kfree(raid_map);
Li Zefande11cc12011-12-01 12:55:47 +08004949 ret = -ENOMEM;
4950 goto out;
4951 }
4952 atomic_set(&bbio->error, 0);
4953
Li Dongyangfce3bb92011-03-24 10:24:26 +00004954 if (rw & REQ_DISCARD) {
Li Zefanec9ef7a2011-12-01 14:06:42 +08004955 int factor = 0;
4956 int sub_stripes = 0;
4957 u64 stripes_per_dev = 0;
4958 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04004959 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004960
4961 if (map->type &
4962 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
4963 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
4964 sub_stripes = 1;
4965 else
4966 sub_stripes = map->sub_stripes;
4967
4968 factor = map->num_stripes / sub_stripes;
4969 stripes_per_dev = div_u64_rem(stripe_nr_end -
4970 stripe_nr_orig,
4971 factor,
4972 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04004973 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
4974 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004975 }
4976
Li Dongyangfce3bb92011-03-24 10:24:26 +00004977 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02004978 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04004979 map->stripes[stripe_index].physical +
4980 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004981 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004982
Li Zefanec9ef7a2011-12-01 14:06:42 +08004983 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
4984 BTRFS_BLOCK_GROUP_RAID10)) {
4985 bbio->stripes[i].length = stripes_per_dev *
4986 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04004987
Li Zefanec9ef7a2011-12-01 14:06:42 +08004988 if (i / sub_stripes < remaining_stripes)
4989 bbio->stripes[i].length +=
4990 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04004991
4992 /*
4993 * Special for the first stripe and
4994 * the last stripe:
4995 *
4996 * |-------|...|-------|
4997 * |----------|
4998 * off end_off
4999 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005000 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005001 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005002 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005003
5004 if (stripe_index >= last_stripe &&
5005 stripe_index <= (last_stripe +
5006 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005007 bbio->stripes[i].length -=
5008 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005009
Li Zefanec9ef7a2011-12-01 14:06:42 +08005010 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005011 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005012 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005013 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005014
5015 stripe_index++;
5016 if (stripe_index == map->num_stripes) {
5017 /* This could only happen for RAID0/10 */
5018 stripe_index = 0;
5019 stripe_nr++;
5020 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005021 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005022 } else {
5023 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005024 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005025 map->stripes[stripe_index].physical +
5026 stripe_offset +
5027 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005028 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005029 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005030 stripe_index++;
5031 }
Chris Mason593060d2008-03-25 16:50:33 -04005032 }
Li Zefande11cc12011-12-01 12:55:47 +08005033
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005034 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) {
Li Zefande11cc12011-12-01 12:55:47 +08005035 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5036 BTRFS_BLOCK_GROUP_RAID10 |
David Woodhouse53b381b2013-01-29 18:40:14 -05005037 BTRFS_BLOCK_GROUP_RAID5 |
Li Zefande11cc12011-12-01 12:55:47 +08005038 BTRFS_BLOCK_GROUP_DUP)) {
5039 max_errors = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005040 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5041 max_errors = 2;
Li Zefande11cc12011-12-01 12:55:47 +08005042 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005043 }
Li Zefande11cc12011-12-01 12:55:47 +08005044
Stefan Behrens472262f2012-11-06 14:43:46 +01005045 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5046 dev_replace->tgtdev != NULL) {
5047 int index_where_to_add;
5048 u64 srcdev_devid = dev_replace->srcdev->devid;
5049
5050 /*
5051 * duplicate the write operations while the dev replace
5052 * procedure is running. Since the copying of the old disk
5053 * to the new disk takes place at run time while the
5054 * filesystem is mounted writable, the regular write
5055 * operations to the old disk have to be duplicated to go
5056 * to the new disk as well.
5057 * Note that device->missing is handled by the caller, and
5058 * that the write to the old disk is already set up in the
5059 * stripes array.
5060 */
5061 index_where_to_add = num_stripes;
5062 for (i = 0; i < num_stripes; i++) {
5063 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5064 /* write to new disk, too */
5065 struct btrfs_bio_stripe *new =
5066 bbio->stripes + index_where_to_add;
5067 struct btrfs_bio_stripe *old =
5068 bbio->stripes + i;
5069
5070 new->physical = old->physical;
5071 new->length = old->length;
5072 new->dev = dev_replace->tgtdev;
5073 index_where_to_add++;
5074 max_errors++;
5075 }
5076 }
5077 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005078 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5079 dev_replace->tgtdev != NULL) {
5080 u64 srcdev_devid = dev_replace->srcdev->devid;
5081 int index_srcdev = 0;
5082 int found = 0;
5083 u64 physical_of_found = 0;
5084
5085 /*
5086 * During the dev-replace procedure, the target drive can
5087 * also be used to read data in case it is needed to repair
5088 * a corrupt block elsewhere. This is possible if the
5089 * requested area is left of the left cursor. In this area,
5090 * the target drive is a full copy of the source drive.
5091 */
5092 for (i = 0; i < num_stripes; i++) {
5093 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5094 /*
5095 * In case of DUP, in order to keep it
5096 * simple, only add the mirror with the
5097 * lowest physical address
5098 */
5099 if (found &&
5100 physical_of_found <=
5101 bbio->stripes[i].physical)
5102 continue;
5103 index_srcdev = i;
5104 found = 1;
5105 physical_of_found = bbio->stripes[i].physical;
5106 }
5107 }
5108 if (found) {
5109 u64 length = map->stripe_len;
5110
5111 if (physical_of_found + length <=
5112 dev_replace->cursor_left) {
5113 struct btrfs_bio_stripe *tgtdev_stripe =
5114 bbio->stripes + num_stripes;
5115
5116 tgtdev_stripe->physical = physical_of_found;
5117 tgtdev_stripe->length =
5118 bbio->stripes[index_srcdev].length;
5119 tgtdev_stripe->dev = dev_replace->tgtdev;
5120
5121 num_stripes++;
5122 }
5123 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005124 }
5125
Li Zefande11cc12011-12-01 12:55:47 +08005126 *bbio_ret = bbio;
5127 bbio->num_stripes = num_stripes;
5128 bbio->max_errors = max_errors;
5129 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005130
5131 /*
5132 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5133 * mirror_num == num_stripes + 1 && dev_replace target drive is
5134 * available as a mirror
5135 */
5136 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5137 WARN_ON(num_stripes > 1);
5138 bbio->stripes[0].dev = dev_replace->tgtdev;
5139 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5140 bbio->mirror_num = map->num_stripes + 1;
5141 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005142 if (raid_map) {
5143 sort_parity_stripes(bbio, raid_map);
5144 *raid_map_ret = raid_map;
5145 }
Chris Masoncea9e442008-04-09 16:28:12 -04005146out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005147 if (dev_replace_is_ongoing)
5148 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005149 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005150 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005151}
5152
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005153int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005154 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005155 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005156{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005157 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05005158 mirror_num, NULL);
Chris Masonf2d8d742008-04-21 10:03:05 -04005159}
5160
Yan Zhenga512bbf2008-12-08 16:46:26 -05005161int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5162 u64 chunk_start, u64 physical, u64 devid,
5163 u64 **logical, int *naddrs, int *stripe_len)
5164{
5165 struct extent_map_tree *em_tree = &map_tree->map_tree;
5166 struct extent_map *em;
5167 struct map_lookup *map;
5168 u64 *buf;
5169 u64 bytenr;
5170 u64 length;
5171 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005172 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005173 int i, j, nr = 0;
5174
Chris Mason890871b2009-09-02 16:24:52 -04005175 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005176 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005177 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005178
Josef Bacik835d9742013-03-19 12:13:25 -04005179 if (!em) {
5180 printk(KERN_ERR "btrfs: couldn't find em for chunk %Lu\n",
5181 chunk_start);
5182 return -EIO;
5183 }
5184
5185 if (em->start != chunk_start) {
5186 printk(KERN_ERR "btrfs: bad chunk start, em=%Lu, wanted=%Lu\n",
5187 em->start, chunk_start);
5188 free_extent_map(em);
5189 return -EIO;
5190 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005191 map = (struct map_lookup *)em->bdev;
5192
5193 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005194 rmap_len = map->stripe_len;
5195
Yan Zhenga512bbf2008-12-08 16:46:26 -05005196 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5197 do_div(length, map->num_stripes / map->sub_stripes);
5198 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5199 do_div(length, map->num_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05005200 else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
5201 BTRFS_BLOCK_GROUP_RAID6)) {
5202 do_div(length, nr_data_stripes(map));
5203 rmap_len = map->stripe_len * nr_data_stripes(map);
5204 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005205
5206 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005207 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005208
5209 for (i = 0; i < map->num_stripes; i++) {
5210 if (devid && map->stripes[i].dev->devid != devid)
5211 continue;
5212 if (map->stripes[i].physical > physical ||
5213 map->stripes[i].physical + length <= physical)
5214 continue;
5215
5216 stripe_nr = physical - map->stripes[i].physical;
5217 do_div(stripe_nr, map->stripe_len);
5218
5219 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5220 stripe_nr = stripe_nr * map->num_stripes + i;
5221 do_div(stripe_nr, map->sub_stripes);
5222 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5223 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005224 } /* else if RAID[56], multiply by nr_data_stripes().
5225 * Alternatively, just use rmap_len below instead of
5226 * map->stripe_len */
5227
5228 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005229 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005230 for (j = 0; j < nr; j++) {
5231 if (buf[j] == bytenr)
5232 break;
5233 }
Chris Mason934d3752008-12-08 16:43:10 -05005234 if (j == nr) {
5235 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005236 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005237 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005238 }
5239
Yan Zhenga512bbf2008-12-08 16:46:26 -05005240 *logical = buf;
5241 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005242 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005243
5244 free_extent_map(em);
5245 return 0;
5246}
5247
Jan Schmidta1d3c472011-08-04 17:15:33 +02005248static void btrfs_end_bio(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04005249{
Chris Mason9be33952013-05-17 18:30:14 -04005250 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005251 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005252
Stefan Behrens442a4f62012-05-25 16:06:08 +02005253 if (err) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005254 atomic_inc(&bbio->error);
Stefan Behrens442a4f62012-05-25 16:06:08 +02005255 if (err == -EIO || err == -EREMOTEIO) {
5256 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005257 btrfs_io_bio(bio)->stripe_index;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005258 struct btrfs_device *dev;
5259
5260 BUG_ON(stripe_index >= bbio->num_stripes);
5261 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005262 if (dev->bdev) {
5263 if (bio->bi_rw & WRITE)
5264 btrfs_dev_stat_inc(dev,
5265 BTRFS_DEV_STAT_WRITE_ERRS);
5266 else
5267 btrfs_dev_stat_inc(dev,
5268 BTRFS_DEV_STAT_READ_ERRS);
5269 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5270 btrfs_dev_stat_inc(dev,
5271 BTRFS_DEV_STAT_FLUSH_ERRS);
5272 btrfs_dev_stat_print_on_error(dev);
5273 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005274 }
5275 }
Chris Mason8790d502008-04-03 16:29:03 -04005276
Jan Schmidta1d3c472011-08-04 17:15:33 +02005277 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005278 is_orig_bio = 1;
5279
Jan Schmidta1d3c472011-08-04 17:15:33 +02005280 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005281 if (!is_orig_bio) {
5282 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005283 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005284 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005285 bio->bi_private = bbio->private;
5286 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005287 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005288 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005289 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005290 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005291 if (atomic_read(&bbio->error) > bbio->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04005292 err = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005293 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005294 /*
5295 * this bio is actually up to date, we didn't
5296 * go over the max number of errors
5297 */
5298 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04005299 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005300 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005301 kfree(bbio);
Chris Mason8790d502008-04-03 16:29:03 -04005302
5303 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005304 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005305 bio_put(bio);
5306 }
Chris Mason8790d502008-04-03 16:29:03 -04005307}
5308
Chris Mason8b712842008-06-11 16:50:36 -04005309struct async_sched {
5310 struct bio *bio;
5311 int rw;
5312 struct btrfs_fs_info *info;
5313 struct btrfs_work work;
5314};
5315
5316/*
5317 * see run_scheduled_bios for a description of why bios are collected for
5318 * async submit.
5319 *
5320 * This will add one bio to the pending list for a device and make sure
5321 * the work struct is scheduled.
5322 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005323static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5324 struct btrfs_device *device,
5325 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005326{
5327 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005328 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005329
David Woodhouse53b381b2013-01-29 18:40:14 -05005330 if (device->missing || !device->bdev) {
5331 bio_endio(bio, -EIO);
5332 return;
5333 }
5334
Chris Mason8b712842008-06-11 16:50:36 -04005335 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005336 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005337 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005338 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005339 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005340 return;
Chris Mason8b712842008-06-11 16:50:36 -04005341 }
5342
5343 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005344 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005345 * higher layers. Otherwise, the async bio makes it appear we have
5346 * made progress against dirty pages when we've really just put it
5347 * on a queue for later
5348 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005349 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005350 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005351 bio->bi_next = NULL;
5352 bio->bi_rw |= rw;
5353
5354 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005355 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005356 pending_bios = &device->pending_sync_bios;
5357 else
5358 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005359
Chris Masonffbd5172009-04-20 15:50:09 -04005360 if (pending_bios->tail)
5361 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005362
Chris Masonffbd5172009-04-20 15:50:09 -04005363 pending_bios->tail = bio;
5364 if (!pending_bios->head)
5365 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005366 if (device->running_pending)
5367 should_queue = 0;
5368
5369 spin_unlock(&device->io_lock);
5370
5371 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04005372 btrfs_queue_worker(&root->fs_info->submit_workers,
5373 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005374}
5375
Josef Bacikde1ee922012-10-19 16:50:56 -04005376static int bio_size_ok(struct block_device *bdev, struct bio *bio,
5377 sector_t sector)
5378{
5379 struct bio_vec *prev;
5380 struct request_queue *q = bdev_get_queue(bdev);
5381 unsigned short max_sectors = queue_max_sectors(q);
5382 struct bvec_merge_data bvm = {
5383 .bi_bdev = bdev,
5384 .bi_sector = sector,
5385 .bi_rw = bio->bi_rw,
5386 };
5387
5388 if (bio->bi_vcnt == 0) {
5389 WARN_ON(1);
5390 return 1;
5391 }
5392
5393 prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08005394 if (bio_sectors(bio) > max_sectors)
Josef Bacikde1ee922012-10-19 16:50:56 -04005395 return 0;
5396
5397 if (!q->merge_bvec_fn)
5398 return 1;
5399
5400 bvm.bi_size = bio->bi_size - prev->bv_len;
5401 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len)
5402 return 0;
5403 return 1;
5404}
5405
5406static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5407 struct bio *bio, u64 physical, int dev_nr,
5408 int rw, int async)
5409{
5410 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5411
5412 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005413 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005414 bio->bi_end_io = btrfs_end_bio;
5415 bio->bi_sector = physical >> 9;
5416#ifdef DEBUG
5417 {
5418 struct rcu_string *name;
5419
5420 rcu_read_lock();
5421 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005422 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005423 "(%s id %llu), size=%u\n", rw,
5424 (u64)bio->bi_sector, (u_long)dev->bdev->bd_dev,
5425 name->str, dev->devid, bio->bi_size);
5426 rcu_read_unlock();
5427 }
5428#endif
5429 bio->bi_bdev = dev->bdev;
5430 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05005431 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005432 else
5433 btrfsic_submit_bio(rw, bio);
5434}
5435
5436static int breakup_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5437 struct bio *first_bio, struct btrfs_device *dev,
5438 int dev_nr, int rw, int async)
5439{
5440 struct bio_vec *bvec = first_bio->bi_io_vec;
5441 struct bio *bio;
5442 int nr_vecs = bio_get_nr_vecs(dev->bdev);
5443 u64 physical = bbio->stripes[dev_nr].physical;
5444
5445again:
5446 bio = btrfs_bio_alloc(dev->bdev, physical >> 9, nr_vecs, GFP_NOFS);
5447 if (!bio)
5448 return -ENOMEM;
5449
5450 while (bvec <= (first_bio->bi_io_vec + first_bio->bi_vcnt - 1)) {
5451 if (bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5452 bvec->bv_offset) < bvec->bv_len) {
5453 u64 len = bio->bi_size;
5454
5455 atomic_inc(&bbio->stripes_pending);
5456 submit_stripe_bio(root, bbio, bio, physical, dev_nr,
5457 rw, async);
5458 physical += len;
5459 goto again;
5460 }
5461 bvec++;
5462 }
5463
5464 submit_stripe_bio(root, bbio, bio, physical, dev_nr, rw, async);
5465 return 0;
5466}
5467
5468static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
5469{
5470 atomic_inc(&bbio->error);
5471 if (atomic_dec_and_test(&bbio->stripes_pending)) {
5472 bio->bi_private = bbio->private;
5473 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005474 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Josef Bacikde1ee922012-10-19 16:50:56 -04005475 bio->bi_sector = logical >> 9;
5476 kfree(bbio);
5477 bio_endio(bio, -EIO);
5478 }
5479}
5480
Chris Masonf1885912008-04-09 16:28:12 -04005481int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04005482 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04005483{
Chris Mason0b86a832008-03-24 15:01:56 -04005484 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04005485 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04005486 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04005487 u64 length = 0;
5488 u64 map_length;
David Woodhouse53b381b2013-01-29 18:40:14 -05005489 u64 *raid_map = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005490 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04005491 int dev_nr = 0;
5492 int total_devs = 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005493 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005494
Chris Masonf2d8d742008-04-21 10:03:05 -04005495 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04005496 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04005497
David Woodhouse53b381b2013-01-29 18:40:14 -05005498 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
5499 mirror_num, &raid_map);
5500 if (ret) /* -ENOMEM */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005501 return ret;
Chris Masoncea9e442008-04-09 16:28:12 -04005502
Jan Schmidta1d3c472011-08-04 17:15:33 +02005503 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005504 bbio->orig_bio = first_bio;
5505 bbio->private = first_bio->bi_private;
5506 bbio->end_io = first_bio->bi_end_io;
5507 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
5508
5509 if (raid_map) {
5510 /* In this case, map_length has been set to the length of
5511 a single stripe; not the whole write */
5512 if (rw & WRITE) {
5513 return raid56_parity_write(root, bio, bbio,
5514 raid_map, map_length);
5515 } else {
5516 return raid56_parity_recover(root, bio, bbio,
5517 raid_map, map_length,
5518 mirror_num);
5519 }
5520 }
5521
Chris Masoncea9e442008-04-09 16:28:12 -04005522 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005523 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005524 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04005525 BUG();
5526 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005527
Chris Masond3977122009-01-05 21:25:51 -05005528 while (dev_nr < total_devs) {
Josef Bacikde1ee922012-10-19 16:50:56 -04005529 dev = bbio->stripes[dev_nr].dev;
5530 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
5531 bbio_error(bbio, first_bio, logical);
5532 dev_nr++;
5533 continue;
5534 }
5535
5536 /*
5537 * Check and see if we're ok with this bio based on it's size
5538 * and offset with the given device.
5539 */
5540 if (!bio_size_ok(dev->bdev, first_bio,
5541 bbio->stripes[dev_nr].physical >> 9)) {
5542 ret = breakup_stripe_bio(root, bbio, first_bio, dev,
5543 dev_nr, rw, async_submit);
5544 BUG_ON(ret);
5545 dev_nr++;
5546 continue;
5547 }
5548
Jan Schmidta1d3c472011-08-04 17:15:33 +02005549 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04005550 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005551 BUG_ON(!bio); /* -ENOMEM */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005552 } else {
5553 bio = first_bio;
Chris Mason8790d502008-04-03 16:29:03 -04005554 }
Josef Bacik606686e2012-06-04 14:03:51 -04005555
Josef Bacikde1ee922012-10-19 16:50:56 -04005556 submit_stripe_bio(root, bbio, bio,
5557 bbio->stripes[dev_nr].physical, dev_nr, rw,
5558 async_submit);
Chris Mason8790d502008-04-03 16:29:03 -04005559 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04005560 }
Chris Mason0b86a832008-03-24 15:01:56 -04005561 return 0;
5562}
5563
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005564struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05005565 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04005566{
Yan Zheng2b820322008-11-17 21:11:30 -05005567 struct btrfs_device *device;
5568 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04005569
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005570 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005571 while (cur_devices) {
5572 if (!fsid ||
5573 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5574 device = __find_device(&cur_devices->devices,
5575 devid, uuid);
5576 if (device)
5577 return device;
5578 }
5579 cur_devices = cur_devices->seed;
5580 }
5581 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005582}
5583
Chris Masondfe25022008-05-13 13:46:40 -04005584static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
5585 u64 devid, u8 *dev_uuid)
5586{
5587 struct btrfs_device *device;
5588 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
5589
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005590 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
5591 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05005592 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005593
5594 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005595 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04005596 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005597
5598 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05005599 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005600
Chris Masondfe25022008-05-13 13:46:40 -04005601 return device;
5602}
5603
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005604/**
5605 * btrfs_alloc_device - allocate struct btrfs_device
5606 * @fs_info: used only for generating a new devid, can be NULL if
5607 * devid is provided (i.e. @devid != NULL).
5608 * @devid: a pointer to devid for this device. If NULL a new devid
5609 * is generated.
5610 * @uuid: a pointer to UUID for this device. If NULL a new UUID
5611 * is generated.
5612 *
5613 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
5614 * on error. Returned struct is not linked onto any lists and can be
5615 * destroyed with kfree() right away.
5616 */
5617struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
5618 const u64 *devid,
5619 const u8 *uuid)
5620{
5621 struct btrfs_device *dev;
5622 u64 tmp;
5623
5624 if (!devid && !fs_info) {
5625 WARN_ON(1);
5626 return ERR_PTR(-EINVAL);
5627 }
5628
5629 dev = __alloc_device();
5630 if (IS_ERR(dev))
5631 return dev;
5632
5633 if (devid)
5634 tmp = *devid;
5635 else {
5636 int ret;
5637
5638 ret = find_next_devid(fs_info, &tmp);
5639 if (ret) {
5640 kfree(dev);
5641 return ERR_PTR(ret);
5642 }
5643 }
5644 dev->devid = tmp;
5645
5646 if (uuid)
5647 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
5648 else
5649 generate_random_uuid(dev->uuid);
5650
5651 dev->work.func = pending_bios_fn;
5652
5653 return dev;
5654}
5655
Chris Mason0b86a832008-03-24 15:01:56 -04005656static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
5657 struct extent_buffer *leaf,
5658 struct btrfs_chunk *chunk)
5659{
5660 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5661 struct map_lookup *map;
5662 struct extent_map *em;
5663 u64 logical;
5664 u64 length;
5665 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04005666 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04005667 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04005668 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04005669 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04005670
Chris Masone17cade2008-04-15 15:41:47 -04005671 logical = key->offset;
5672 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04005673
Chris Mason890871b2009-09-02 16:24:52 -04005674 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005675 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005676 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005677
5678 /* already mapped? */
5679 if (em && em->start <= logical && em->start + em->len > logical) {
5680 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04005681 return 0;
5682 } else if (em) {
5683 free_extent_map(em);
5684 }
Chris Mason0b86a832008-03-24 15:01:56 -04005685
David Sterba172ddd62011-04-21 00:48:27 +02005686 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04005687 if (!em)
5688 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04005689 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
5690 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04005691 if (!map) {
5692 free_extent_map(em);
5693 return -ENOMEM;
5694 }
5695
5696 em->bdev = (struct block_device *)map;
5697 em->start = logical;
5698 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04005699 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005700 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04005701 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04005702
Chris Mason593060d2008-03-25 16:50:33 -04005703 map->num_stripes = num_stripes;
5704 map->io_width = btrfs_chunk_io_width(leaf, chunk);
5705 map->io_align = btrfs_chunk_io_align(leaf, chunk);
5706 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
5707 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
5708 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04005709 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04005710 for (i = 0; i < num_stripes; i++) {
5711 map->stripes[i].physical =
5712 btrfs_stripe_offset_nr(leaf, chunk, i);
5713 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04005714 read_extent_buffer(leaf, uuid, (unsigned long)
5715 btrfs_stripe_dev_uuid_nr(chunk, i),
5716 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005717 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
5718 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04005719 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04005720 kfree(map);
5721 free_extent_map(em);
5722 return -EIO;
5723 }
Chris Masondfe25022008-05-13 13:46:40 -04005724 if (!map->stripes[i].dev) {
5725 map->stripes[i].dev =
5726 add_missing_dev(root, devid, uuid);
5727 if (!map->stripes[i].dev) {
5728 kfree(map);
5729 free_extent_map(em);
5730 return -EIO;
5731 }
5732 }
5733 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04005734 }
5735
Chris Mason890871b2009-09-02 16:24:52 -04005736 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005737 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04005738 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005739 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04005740 free_extent_map(em);
5741
5742 return 0;
5743}
5744
Jeff Mahoney143bede2012-03-01 14:56:26 +01005745static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04005746 struct btrfs_dev_item *dev_item,
5747 struct btrfs_device *device)
5748{
5749 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04005750
5751 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04005752 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
5753 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04005754 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
5755 device->type = btrfs_device_type(leaf, dev_item);
5756 device->io_align = btrfs_device_io_align(leaf, dev_item);
5757 device->io_width = btrfs_device_io_width(leaf, dev_item);
5758 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01005759 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01005760 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005761
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02005762 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04005763 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005764}
5765
Yan Zheng2b820322008-11-17 21:11:30 -05005766static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
5767{
5768 struct btrfs_fs_devices *fs_devices;
5769 int ret;
5770
Li Zefanb367e472011-12-07 11:38:24 +08005771 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05005772
5773 fs_devices = root->fs_info->fs_devices->seed;
5774 while (fs_devices) {
5775 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5776 ret = 0;
5777 goto out;
5778 }
5779 fs_devices = fs_devices->seed;
5780 }
5781
5782 fs_devices = find_fsid(fsid);
5783 if (!fs_devices) {
5784 ret = -ENOENT;
5785 goto out;
5786 }
Yan Zhenge4404d62008-12-12 10:03:26 -05005787
5788 fs_devices = clone_fs_devices(fs_devices);
5789 if (IS_ERR(fs_devices)) {
5790 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005791 goto out;
5792 }
5793
Christoph Hellwig97288f22008-12-02 06:36:09 -05005794 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05005795 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02005796 if (ret) {
5797 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005798 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02005799 }
Yan Zheng2b820322008-11-17 21:11:30 -05005800
5801 if (!fs_devices->seeding) {
5802 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005803 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005804 ret = -EINVAL;
5805 goto out;
5806 }
5807
5808 fs_devices->seed = root->fs_info->fs_devices->seed;
5809 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005810out:
Yan Zheng2b820322008-11-17 21:11:30 -05005811 return ret;
5812}
5813
Chris Mason0d81ba52008-03-24 15:02:07 -04005814static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04005815 struct extent_buffer *leaf,
5816 struct btrfs_dev_item *dev_item)
5817{
5818 struct btrfs_device *device;
5819 u64 devid;
5820 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005821 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04005822 u8 dev_uuid[BTRFS_UUID_SIZE];
5823
Chris Mason0b86a832008-03-24 15:01:56 -04005824 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02005825 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04005826 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05005827 read_extent_buffer(leaf, fs_uuid,
5828 (unsigned long)btrfs_device_fsid(dev_item),
5829 BTRFS_UUID_SIZE);
5830
5831 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
5832 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05005833 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005834 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005835 }
5836
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005837 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05005838 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05005839 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005840 return -EIO;
5841
5842 if (!device) {
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005843 btrfs_warn(root->fs_info, "devid %llu missing", devid);
Yan Zheng2b820322008-11-17 21:11:30 -05005844 device = add_missing_dev(root, devid, dev_uuid);
5845 if (!device)
5846 return -ENOMEM;
Chris Masoncd02dca2010-12-13 14:56:23 -05005847 } else if (!device->missing) {
5848 /*
5849 * this happens when a device that was properly setup
5850 * in the device info lists suddenly goes bad.
5851 * device->bdev is NULL, and so we have to set
5852 * device->missing to one here
5853 */
5854 root->fs_info->fs_devices->missing_devices++;
5855 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05005856 }
5857 }
5858
5859 if (device->fs_devices != root->fs_info->fs_devices) {
5860 BUG_ON(device->writeable);
5861 if (device->generation !=
5862 btrfs_device_generation(leaf, dev_item))
5863 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04005864 }
Chris Mason0b86a832008-03-24 15:01:56 -04005865
5866 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04005867 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01005868 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05005869 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04005870 spin_lock(&root->fs_info->free_chunk_lock);
5871 root->fs_info->free_chunk_space += device->total_bytes -
5872 device->bytes_used;
5873 spin_unlock(&root->fs_info->free_chunk_lock);
5874 }
Chris Mason0b86a832008-03-24 15:01:56 -04005875 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005876 return ret;
5877}
5878
Yan Zhenge4404d62008-12-12 10:03:26 -05005879int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04005880{
David Sterba6c417612011-04-13 15:41:04 +02005881 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04005882 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04005883 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04005884 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04005885 u8 *ptr;
5886 unsigned long sb_ptr;
5887 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005888 u32 num_stripes;
5889 u32 array_size;
5890 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005891 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04005892 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04005893
Yan Zhenge4404d62008-12-12 10:03:26 -05005894 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04005895 BTRFS_SUPER_INFO_SIZE);
5896 if (!sb)
5897 return -ENOMEM;
5898 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04005899 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02005900 /*
5901 * The sb extent buffer is artifical and just used to read the system array.
5902 * btrfs_set_buffer_uptodate() call does not properly mark all it's
5903 * pages up-to-date when the page is larger: extent does not cover the
5904 * whole page and consequently check_page_uptodate does not find all
5905 * the page's extents up-to-date (the hole beyond sb),
5906 * write_extent_buffer then triggers a WARN_ON.
5907 *
5908 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
5909 * but sb spans only this function. Add an explicit SetPageUptodate call
5910 * to silence the warning eg. on PowerPC 64.
5911 */
5912 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04005913 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05005914
Chris Masona061fc82008-05-07 11:43:44 -04005915 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005916 array_size = btrfs_super_sys_array_size(super_copy);
5917
Chris Mason0b86a832008-03-24 15:01:56 -04005918 ptr = super_copy->sys_chunk_array;
5919 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
5920 cur = 0;
5921
5922 while (cur < array_size) {
5923 disk_key = (struct btrfs_disk_key *)ptr;
5924 btrfs_disk_key_to_cpu(&key, disk_key);
5925
Chris Masona061fc82008-05-07 11:43:44 -04005926 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04005927 sb_ptr += len;
5928 cur += len;
5929
Chris Mason0d81ba52008-03-24 15:02:07 -04005930 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04005931 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04005932 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04005933 if (ret)
5934 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005935 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
5936 len = btrfs_chunk_item_size(num_stripes);
5937 } else {
Chris Mason84eed902008-04-25 09:04:37 -04005938 ret = -EIO;
5939 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005940 }
5941 ptr += len;
5942 sb_ptr += len;
5943 cur += len;
5944 }
Chris Masona061fc82008-05-07 11:43:44 -04005945 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04005946 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005947}
5948
5949int btrfs_read_chunk_tree(struct btrfs_root *root)
5950{
5951 struct btrfs_path *path;
5952 struct extent_buffer *leaf;
5953 struct btrfs_key key;
5954 struct btrfs_key found_key;
5955 int ret;
5956 int slot;
5957
5958 root = root->fs_info->chunk_root;
5959
5960 path = btrfs_alloc_path();
5961 if (!path)
5962 return -ENOMEM;
5963
Li Zefanb367e472011-12-07 11:38:24 +08005964 mutex_lock(&uuid_mutex);
5965 lock_chunks(root);
5966
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005967 /*
5968 * Read all device items, and then all the chunk items. All
5969 * device items are found before any chunk item (their object id
5970 * is smaller than the lowest possible object id for a chunk
5971 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04005972 */
5973 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
5974 key.offset = 0;
5975 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005976 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00005977 if (ret < 0)
5978 goto error;
Chris Masond3977122009-01-05 21:25:51 -05005979 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005980 leaf = path->nodes[0];
5981 slot = path->slots[0];
5982 if (slot >= btrfs_header_nritems(leaf)) {
5983 ret = btrfs_next_leaf(root, path);
5984 if (ret == 0)
5985 continue;
5986 if (ret < 0)
5987 goto error;
5988 break;
5989 }
5990 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005991 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
5992 struct btrfs_dev_item *dev_item;
5993 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04005994 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005995 ret = read_one_dev(root, leaf, dev_item);
5996 if (ret)
5997 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04005998 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
5999 struct btrfs_chunk *chunk;
6000 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6001 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006002 if (ret)
6003 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006004 }
6005 path->slots[0]++;
6006 }
Chris Mason0b86a832008-03-24 15:01:56 -04006007 ret = 0;
6008error:
Li Zefanb367e472011-12-07 11:38:24 +08006009 unlock_chunks(root);
6010 mutex_unlock(&uuid_mutex);
6011
Yan Zheng2b820322008-11-17 21:11:30 -05006012 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006013 return ret;
6014}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006015
Miao Xiecb517ea2013-05-15 07:48:19 +00006016void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6017{
6018 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6019 struct btrfs_device *device;
6020
6021 mutex_lock(&fs_devices->device_list_mutex);
6022 list_for_each_entry(device, &fs_devices->devices, dev_list)
6023 device->dev_root = fs_info->dev_root;
6024 mutex_unlock(&fs_devices->device_list_mutex);
6025}
6026
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006027static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6028{
6029 int i;
6030
6031 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6032 btrfs_dev_stat_reset(dev, i);
6033}
6034
6035int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6036{
6037 struct btrfs_key key;
6038 struct btrfs_key found_key;
6039 struct btrfs_root *dev_root = fs_info->dev_root;
6040 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6041 struct extent_buffer *eb;
6042 int slot;
6043 int ret = 0;
6044 struct btrfs_device *device;
6045 struct btrfs_path *path = NULL;
6046 int i;
6047
6048 path = btrfs_alloc_path();
6049 if (!path) {
6050 ret = -ENOMEM;
6051 goto out;
6052 }
6053
6054 mutex_lock(&fs_devices->device_list_mutex);
6055 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6056 int item_size;
6057 struct btrfs_dev_stats_item *ptr;
6058
6059 key.objectid = 0;
6060 key.type = BTRFS_DEV_STATS_KEY;
6061 key.offset = device->devid;
6062 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6063 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006064 __btrfs_reset_dev_stats(device);
6065 device->dev_stats_valid = 1;
6066 btrfs_release_path(path);
6067 continue;
6068 }
6069 slot = path->slots[0];
6070 eb = path->nodes[0];
6071 btrfs_item_key_to_cpu(eb, &found_key, slot);
6072 item_size = btrfs_item_size_nr(eb, slot);
6073
6074 ptr = btrfs_item_ptr(eb, slot,
6075 struct btrfs_dev_stats_item);
6076
6077 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6078 if (item_size >= (1 + i) * sizeof(__le64))
6079 btrfs_dev_stat_set(device, i,
6080 btrfs_dev_stats_value(eb, ptr, i));
6081 else
6082 btrfs_dev_stat_reset(device, i);
6083 }
6084
6085 device->dev_stats_valid = 1;
6086 btrfs_dev_stat_print_on_load(device);
6087 btrfs_release_path(path);
6088 }
6089 mutex_unlock(&fs_devices->device_list_mutex);
6090
6091out:
6092 btrfs_free_path(path);
6093 return ret < 0 ? ret : 0;
6094}
6095
6096static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6097 struct btrfs_root *dev_root,
6098 struct btrfs_device *device)
6099{
6100 struct btrfs_path *path;
6101 struct btrfs_key key;
6102 struct extent_buffer *eb;
6103 struct btrfs_dev_stats_item *ptr;
6104 int ret;
6105 int i;
6106
6107 key.objectid = 0;
6108 key.type = BTRFS_DEV_STATS_KEY;
6109 key.offset = device->devid;
6110
6111 path = btrfs_alloc_path();
6112 BUG_ON(!path);
6113 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6114 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006115 printk_in_rcu(KERN_WARNING "btrfs: error %d while searching for dev_stats item for device %s!\n",
6116 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006117 goto out;
6118 }
6119
6120 if (ret == 0 &&
6121 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6122 /* need to delete old one and insert a new one */
6123 ret = btrfs_del_item(trans, dev_root, path);
6124 if (ret != 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006125 printk_in_rcu(KERN_WARNING "btrfs: delete too small dev_stats item for device %s failed %d!\n",
6126 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006127 goto out;
6128 }
6129 ret = 1;
6130 }
6131
6132 if (ret == 1) {
6133 /* need to insert a new item */
6134 btrfs_release_path(path);
6135 ret = btrfs_insert_empty_item(trans, dev_root, path,
6136 &key, sizeof(*ptr));
6137 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006138 printk_in_rcu(KERN_WARNING "btrfs: insert dev_stats item for device %s failed %d!\n",
6139 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006140 goto out;
6141 }
6142 }
6143
6144 eb = path->nodes[0];
6145 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6146 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6147 btrfs_set_dev_stats_value(eb, ptr, i,
6148 btrfs_dev_stat_read(device, i));
6149 btrfs_mark_buffer_dirty(eb);
6150
6151out:
6152 btrfs_free_path(path);
6153 return ret;
6154}
6155
6156/*
6157 * called from commit_transaction. Writes all changed device stats to disk.
6158 */
6159int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6160 struct btrfs_fs_info *fs_info)
6161{
6162 struct btrfs_root *dev_root = fs_info->dev_root;
6163 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6164 struct btrfs_device *device;
6165 int ret = 0;
6166
6167 mutex_lock(&fs_devices->device_list_mutex);
6168 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6169 if (!device->dev_stats_valid || !device->dev_stats_dirty)
6170 continue;
6171
6172 ret = update_dev_stat_item(trans, dev_root, device);
6173 if (!ret)
6174 device->dev_stats_dirty = 0;
6175 }
6176 mutex_unlock(&fs_devices->device_list_mutex);
6177
6178 return ret;
6179}
6180
Stefan Behrens442a4f62012-05-25 16:06:08 +02006181void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6182{
6183 btrfs_dev_stat_inc(dev, index);
6184 btrfs_dev_stat_print_on_error(dev);
6185}
6186
Eric Sandeen48a3b632013-04-25 20:41:01 +00006187static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006188{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006189 if (!dev->dev_stats_valid)
6190 return;
Josef Bacik606686e2012-06-04 14:03:51 -04006191 printk_ratelimited_in_rcu(KERN_ERR
Stefan Behrens442a4f62012-05-25 16:06:08 +02006192 "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006193 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006194 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6195 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6196 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6197 btrfs_dev_stat_read(dev,
6198 BTRFS_DEV_STAT_CORRUPTION_ERRS),
6199 btrfs_dev_stat_read(dev,
6200 BTRFS_DEV_STAT_GENERATION_ERRS));
6201}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006202
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006203static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6204{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006205 int i;
6206
6207 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6208 if (btrfs_dev_stat_read(dev, i) != 0)
6209 break;
6210 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6211 return; /* all values == 0, suppress message */
6212
Josef Bacik606686e2012-06-04 14:03:51 -04006213 printk_in_rcu(KERN_INFO "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
6214 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006215 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6216 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6217 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6218 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6219 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6220}
6221
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006222int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006223 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006224{
6225 struct btrfs_device *dev;
6226 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6227 int i;
6228
6229 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006230 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006231 mutex_unlock(&fs_devices->device_list_mutex);
6232
6233 if (!dev) {
6234 printk(KERN_WARNING
6235 "btrfs: get dev_stats failed, device not found\n");
6236 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006237 } else if (!dev->dev_stats_valid) {
6238 printk(KERN_WARNING
6239 "btrfs: get dev_stats failed, not yet valid\n");
6240 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006241 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006242 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6243 if (stats->nr_items > i)
6244 stats->values[i] =
6245 btrfs_dev_stat_read_and_reset(dev, i);
6246 else
6247 btrfs_dev_stat_reset(dev, i);
6248 }
6249 } else {
6250 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6251 if (stats->nr_items > i)
6252 stats->values[i] = btrfs_dev_stat_read(dev, i);
6253 }
6254 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6255 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6256 return 0;
6257}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006258
6259int btrfs_scratch_superblock(struct btrfs_device *device)
6260{
6261 struct buffer_head *bh;
6262 struct btrfs_super_block *disk_super;
6263
6264 bh = btrfs_read_dev_super(device->bdev);
6265 if (!bh)
6266 return -EINVAL;
6267 disk_super = (struct btrfs_super_block *)bh->b_data;
6268
6269 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6270 set_buffer_dirty(bh);
6271 sync_dirty_buffer(bh);
6272 brelse(bh);
6273
6274 return 0;
6275}