blob: 603cce85764f2587ef07a468989256b229ce160c [file] [log] [blame]
Chris Mason0b86a832008-03-24 15:01:56 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18#include <linux/sched.h>
19#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -040021#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040022#include <linux/blkdev.h>
Chris Mason788f20e2008-04-28 15:29:42 -040023#include <linux/random.h>
Chris Masonb765ead2009-04-03 10:27:10 -040024#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000025#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020026#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020027#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050028#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020029#include <linux/semaphore.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050030#include <asm/div64.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050031#include "compat.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "ctree.h"
33#include "extent_map.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "print-tree.h"
37#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050038#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040039#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010040#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040041#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060042#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010043#include "dev-replace.h"
Chris Mason0b86a832008-03-24 15:01:56 -040044
Yan Zheng2b820322008-11-17 21:11:30 -050045static int init_first_rw_device(struct btrfs_trans_handle *trans,
46 struct btrfs_root *root,
47 struct btrfs_device *device);
48static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
Stefan Behrens733f4fb2012-05-25 16:06:10 +020049static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +000050static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +020051static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Yan Zheng2b820322008-11-17 21:11:30 -050052
Chris Mason8a4b83c2008-03-24 15:02:07 -040053static DEFINE_MUTEX(uuid_mutex);
54static LIST_HEAD(fs_uuids);
55
Chris Mason7d9eb122008-07-08 14:19:17 -040056static void lock_chunks(struct btrfs_root *root)
57{
Chris Mason7d9eb122008-07-08 14:19:17 -040058 mutex_lock(&root->fs_info->chunk_mutex);
59}
60
61static void unlock_chunks(struct btrfs_root *root)
62{
Chris Mason7d9eb122008-07-08 14:19:17 -040063 mutex_unlock(&root->fs_info->chunk_mutex);
64}
65
Ilya Dryomov2208a372013-08-12 14:33:03 +030066static struct btrfs_fs_devices *__alloc_fs_devices(void)
67{
68 struct btrfs_fs_devices *fs_devs;
69
70 fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS);
71 if (!fs_devs)
72 return ERR_PTR(-ENOMEM);
73
74 mutex_init(&fs_devs->device_list_mutex);
75
76 INIT_LIST_HEAD(&fs_devs->devices);
77 INIT_LIST_HEAD(&fs_devs->alloc_list);
78 INIT_LIST_HEAD(&fs_devs->list);
79
80 return fs_devs;
81}
82
83/**
84 * alloc_fs_devices - allocate struct btrfs_fs_devices
85 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
86 * generated.
87 *
88 * Return: a pointer to a new &struct btrfs_fs_devices on success;
89 * ERR_PTR() on error. Returned struct is not linked onto any lists and
90 * can be destroyed with kfree() right away.
91 */
92static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
93{
94 struct btrfs_fs_devices *fs_devs;
95
96 fs_devs = __alloc_fs_devices();
97 if (IS_ERR(fs_devs))
98 return fs_devs;
99
100 if (fsid)
101 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
102 else
103 generate_random_uuid(fs_devs->fsid);
104
105 return fs_devs;
106}
107
Yan Zhenge4404d62008-12-12 10:03:26 -0500108static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
109{
110 struct btrfs_device *device;
111 WARN_ON(fs_devices->opened);
112 while (!list_empty(&fs_devices->devices)) {
113 device = list_entry(fs_devices->devices.next,
114 struct btrfs_device, dev_list);
115 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400116 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500117 kfree(device);
118 }
119 kfree(fs_devices);
120}
121
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000122static void btrfs_kobject_uevent(struct block_device *bdev,
123 enum kobject_action action)
124{
125 int ret;
126
127 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
128 if (ret)
129 pr_warn("Sending event '%d' to kobject: '%s' (%p): failed\n",
130 action,
131 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
132 &disk_to_dev(bdev->bd_disk)->kobj);
133}
134
Jeff Mahoney143bede2012-03-01 14:56:26 +0100135void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400136{
137 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400138
Yan Zheng2b820322008-11-17 21:11:30 -0500139 while (!list_empty(&fs_uuids)) {
140 fs_devices = list_entry(fs_uuids.next,
141 struct btrfs_fs_devices, list);
142 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500143 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400144 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400145}
146
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300147static struct btrfs_device *__alloc_device(void)
148{
149 struct btrfs_device *dev;
150
151 dev = kzalloc(sizeof(*dev), GFP_NOFS);
152 if (!dev)
153 return ERR_PTR(-ENOMEM);
154
155 INIT_LIST_HEAD(&dev->dev_list);
156 INIT_LIST_HEAD(&dev->dev_alloc_list);
157
158 spin_lock_init(&dev->io_lock);
159
160 spin_lock_init(&dev->reada_lock);
161 atomic_set(&dev->reada_in_flight, 0);
162 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_WAIT);
163 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_WAIT);
164
165 return dev;
166}
167
Chris Masona1b32a52008-09-05 16:09:51 -0400168static noinline struct btrfs_device *__find_device(struct list_head *head,
169 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400170{
171 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400172
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500173 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400174 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400175 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400176 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400177 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400178 }
179 return NULL;
180}
181
Chris Masona1b32a52008-09-05 16:09:51 -0400182static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400183{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400184 struct btrfs_fs_devices *fs_devices;
185
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500186 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400187 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
188 return fs_devices;
189 }
190 return NULL;
191}
192
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100193static int
194btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
195 int flush, struct block_device **bdev,
196 struct buffer_head **bh)
197{
198 int ret;
199
200 *bdev = blkdev_get_by_path(device_path, flags, holder);
201
202 if (IS_ERR(*bdev)) {
203 ret = PTR_ERR(*bdev);
204 printk(KERN_INFO "btrfs: open %s failed\n", device_path);
205 goto error;
206 }
207
208 if (flush)
209 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
210 ret = set_blocksize(*bdev, 4096);
211 if (ret) {
212 blkdev_put(*bdev, flags);
213 goto error;
214 }
215 invalidate_bdev(*bdev);
216 *bh = btrfs_read_dev_super(*bdev);
217 if (!*bh) {
218 ret = -EINVAL;
219 blkdev_put(*bdev, flags);
220 goto error;
221 }
222
223 return 0;
224
225error:
226 *bdev = NULL;
227 *bh = NULL;
228 return ret;
229}
230
Chris Masonffbd5172009-04-20 15:50:09 -0400231static void requeue_list(struct btrfs_pending_bios *pending_bios,
232 struct bio *head, struct bio *tail)
233{
234
235 struct bio *old_head;
236
237 old_head = pending_bios->head;
238 pending_bios->head = head;
239 if (pending_bios->tail)
240 tail->bi_next = old_head;
241 else
242 pending_bios->tail = tail;
243}
244
Chris Mason8b712842008-06-11 16:50:36 -0400245/*
246 * we try to collect pending bios for a device so we don't get a large
247 * number of procs sending bios down to the same device. This greatly
248 * improves the schedulers ability to collect and merge the bios.
249 *
250 * But, it also turns into a long list of bios to process and that is sure
251 * to eventually make the worker thread block. The solution here is to
252 * make some progress and then put this work struct back at the end of
253 * the list if the block device is congested. This way, multiple devices
254 * can make progress from a single worker thread.
255 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100256static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400257{
258 struct bio *pending;
259 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400260 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400261 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400262 struct bio *tail;
263 struct bio *cur;
264 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400265 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400266 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400267 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400268 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400269 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000270 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400271 struct blk_plug plug;
272
273 /*
274 * this function runs all the bios we've collected for
275 * a particular device. We don't want to wander off to
276 * another device without first sending all of these down.
277 * So, setup a plug here and finish it off before we return
278 */
279 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400280
Chris Masonbedf7622009-04-03 10:32:58 -0400281 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400282 fs_info = device->dev_root->fs_info;
283 limit = btrfs_async_submit_limit(fs_info);
284 limit = limit * 2 / 3;
285
Chris Mason8b712842008-06-11 16:50:36 -0400286loop:
287 spin_lock(&device->io_lock);
288
Chris Masona6837052009-02-04 09:19:41 -0500289loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400290 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400291
Chris Mason8b712842008-06-11 16:50:36 -0400292 /* take all the bios off the list at once and process them
293 * later on (without the lock held). But, remember the
294 * tail and other pointers so the bios can be properly reinserted
295 * into the list if we hit congestion
296 */
Chris Masond84275c2009-06-09 15:39:08 -0400297 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400298 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400299 force_reg = 1;
300 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400301 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400302 force_reg = 0;
303 }
Chris Masonffbd5172009-04-20 15:50:09 -0400304
305 pending = pending_bios->head;
306 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400307 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400308
309 /*
310 * if pending was null this time around, no bios need processing
311 * at all and we can stop. Otherwise it'll loop back up again
312 * and do an additional check so no bios are missed.
313 *
314 * device->running_pending is used to synchronize with the
315 * schedule_bio code.
316 */
Chris Masonffbd5172009-04-20 15:50:09 -0400317 if (device->pending_sync_bios.head == NULL &&
318 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400319 again = 0;
320 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400321 } else {
322 again = 1;
323 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400324 }
Chris Masonffbd5172009-04-20 15:50:09 -0400325
326 pending_bios->head = NULL;
327 pending_bios->tail = NULL;
328
Chris Mason8b712842008-06-11 16:50:36 -0400329 spin_unlock(&device->io_lock);
330
Chris Masond3977122009-01-05 21:25:51 -0500331 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400332
333 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400334 /* we want to work on both lists, but do more bios on the
335 * sync list than the regular list
336 */
337 if ((num_run > 32 &&
338 pending_bios != &device->pending_sync_bios &&
339 device->pending_sync_bios.head) ||
340 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
341 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400342 spin_lock(&device->io_lock);
343 requeue_list(pending_bios, pending, tail);
344 goto loop_lock;
345 }
346
Chris Mason8b712842008-06-11 16:50:36 -0400347 cur = pending;
348 pending = pending->bi_next;
349 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400350
Josef Bacik66657b32012-08-01 15:36:24 -0400351 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400352 waitqueue_active(&fs_info->async_submit_wait))
353 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400354
355 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400356
Chris Mason2ab1ba62011-08-04 14:28:36 -0400357 /*
358 * if we're doing the sync list, record that our
359 * plug has some sync requests on it
360 *
361 * If we're doing the regular list and there are
362 * sync requests sitting around, unplug before
363 * we add more
364 */
365 if (pending_bios == &device->pending_sync_bios) {
366 sync_pending = 1;
367 } else if (sync_pending) {
368 blk_finish_plug(&plug);
369 blk_start_plug(&plug);
370 sync_pending = 0;
371 }
372
Stefan Behrens21adbd52011-11-09 13:44:05 +0100373 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400374 num_run++;
375 batch_run++;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100376 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400377 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400378
379 /*
380 * we made progress, there is more work to do and the bdi
381 * is now congested. Back off and let other work structs
382 * run instead
383 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400384 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500385 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400386 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400387
Chris Masonb765ead2009-04-03 10:27:10 -0400388 ioc = current->io_context;
389
390 /*
391 * the main goal here is that we don't want to
392 * block if we're going to be able to submit
393 * more requests without blocking.
394 *
395 * This code does two great things, it pokes into
396 * the elevator code from a filesystem _and_
397 * it makes assumptions about how batching works.
398 */
399 if (ioc && ioc->nr_batch_requests > 0 &&
400 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
401 (last_waited == 0 ||
402 ioc->last_waited == last_waited)) {
403 /*
404 * we want to go through our batch of
405 * requests and stop. So, we copy out
406 * the ioc->last_waited time and test
407 * against it before looping
408 */
409 last_waited = ioc->last_waited;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100410 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400411 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400412 continue;
413 }
Chris Mason8b712842008-06-11 16:50:36 -0400414 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400415 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500416 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400417
418 spin_unlock(&device->io_lock);
419 btrfs_requeue_work(&device->work);
420 goto done;
421 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500422 /* unplug every 64 requests just for good measure */
423 if (batch_run % 64 == 0) {
424 blk_finish_plug(&plug);
425 blk_start_plug(&plug);
426 sync_pending = 0;
427 }
Chris Mason8b712842008-06-11 16:50:36 -0400428 }
Chris Masonffbd5172009-04-20 15:50:09 -0400429
Chris Mason51684082010-03-10 15:33:32 -0500430 cond_resched();
431 if (again)
432 goto loop;
433
434 spin_lock(&device->io_lock);
435 if (device->pending_bios.head || device->pending_sync_bios.head)
436 goto loop_lock;
437 spin_unlock(&device->io_lock);
438
Chris Mason8b712842008-06-11 16:50:36 -0400439done:
Chris Mason211588a2011-04-19 20:12:40 -0400440 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400441}
442
Christoph Hellwigb2950862008-12-02 09:54:17 -0500443static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400444{
445 struct btrfs_device *device;
446
447 device = container_of(work, struct btrfs_device, work);
448 run_scheduled_bios(device);
449}
450
Chris Masona1b32a52008-09-05 16:09:51 -0400451static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400452 struct btrfs_super_block *disk_super,
453 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
454{
455 struct btrfs_device *device;
456 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400457 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400458 u64 found_transid = btrfs_super_generation(disk_super);
459
460 fs_devices = find_fsid(disk_super->fsid);
461 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300462 fs_devices = alloc_fs_devices(disk_super->fsid);
463 if (IS_ERR(fs_devices))
464 return PTR_ERR(fs_devices);
465
Chris Mason8a4b83c2008-03-24 15:02:07 -0400466 list_add(&fs_devices->list, &fs_uuids);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400467 fs_devices->latest_devid = devid;
468 fs_devices->latest_trans = found_transid;
Ilya Dryomov2208a372013-08-12 14:33:03 +0300469
Chris Mason8a4b83c2008-03-24 15:02:07 -0400470 device = NULL;
471 } else {
Chris Masona4437552008-04-18 10:29:38 -0400472 device = __find_device(&fs_devices->devices, devid,
473 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400474 }
475 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500476 if (fs_devices->opened)
477 return -EBUSY;
478
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300479 device = btrfs_alloc_device(NULL, &devid,
480 disk_super->dev_item.uuid);
481 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400482 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300483 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400484 }
Josef Bacik606686e2012-06-04 14:03:51 -0400485
486 name = rcu_string_strdup(path, GFP_NOFS);
487 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400488 kfree(device);
489 return -ENOMEM;
490 }
Josef Bacik606686e2012-06-04 14:03:51 -0400491 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200492
Chris Masone5e9a522009-06-10 15:17:02 -0400493 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000494 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100495 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400496 mutex_unlock(&fs_devices->device_list_mutex);
497
Yan Zheng2b820322008-11-17 21:11:30 -0500498 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400499 } else if (!device->name || strcmp(device->name->str, path)) {
500 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000501 if (!name)
502 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400503 rcu_string_free(device->name);
504 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500505 if (device->missing) {
506 fs_devices->missing_devices--;
507 device->missing = 0;
508 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400509 }
510
511 if (found_transid > fs_devices->latest_trans) {
512 fs_devices->latest_devid = devid;
513 fs_devices->latest_trans = found_transid;
514 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400515 *fs_devices_ret = fs_devices;
516 return 0;
517}
518
Yan Zhenge4404d62008-12-12 10:03:26 -0500519static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
520{
521 struct btrfs_fs_devices *fs_devices;
522 struct btrfs_device *device;
523 struct btrfs_device *orig_dev;
524
Ilya Dryomov2208a372013-08-12 14:33:03 +0300525 fs_devices = alloc_fs_devices(orig->fsid);
526 if (IS_ERR(fs_devices))
527 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500528
Yan Zhenge4404d62008-12-12 10:03:26 -0500529 fs_devices->latest_devid = orig->latest_devid;
530 fs_devices->latest_trans = orig->latest_trans;
Josef Bacik02db0842012-06-21 16:03:58 -0400531 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500532
Xiao Guangrong46224702011-04-20 10:08:47 +0000533 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500534 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400535 struct rcu_string *name;
536
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300537 device = btrfs_alloc_device(NULL, &orig_dev->devid,
538 orig_dev->uuid);
539 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500540 goto error;
541
Josef Bacik606686e2012-06-04 14:03:51 -0400542 /*
543 * This is ok to do without rcu read locked because we hold the
544 * uuid mutex so nothing we touch in here is going to disappear.
545 */
546 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
547 if (!name) {
Julia Lawallfd2696f2009-09-29 13:51:04 -0400548 kfree(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500549 goto error;
Julia Lawallfd2696f2009-09-29 13:51:04 -0400550 }
Josef Bacik606686e2012-06-04 14:03:51 -0400551 rcu_assign_pointer(device->name, name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500552
Yan Zhenge4404d62008-12-12 10:03:26 -0500553 list_add(&device->dev_list, &fs_devices->devices);
554 device->fs_devices = fs_devices;
555 fs_devices->num_devices++;
556 }
557 return fs_devices;
558error:
559 free_fs_devices(fs_devices);
560 return ERR_PTR(-ENOMEM);
561}
562
Stefan Behrens8dabb742012-11-06 13:15:27 +0100563void btrfs_close_extra_devices(struct btrfs_fs_info *fs_info,
564 struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400565{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500566 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400567
Chris Masona6b0d5c2012-02-20 20:53:43 -0500568 struct block_device *latest_bdev = NULL;
569 u64 latest_devid = 0;
570 u64 latest_transid = 0;
571
Chris Masondfe25022008-05-13 13:46:40 -0400572 mutex_lock(&uuid_mutex);
573again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000574 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500575 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500576 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100577 if (!device->is_tgtdev_for_dev_replace &&
578 (!latest_transid ||
579 device->generation > latest_transid)) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500580 latest_devid = device->devid;
581 latest_transid = device->generation;
582 latest_bdev = device->bdev;
583 }
Yan Zheng2b820322008-11-17 21:11:30 -0500584 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500585 }
Yan Zheng2b820322008-11-17 21:11:30 -0500586
Stefan Behrens8dabb742012-11-06 13:15:27 +0100587 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
588 /*
589 * In the first step, keep the device which has
590 * the correct fsid and the devid that is used
591 * for the dev_replace procedure.
592 * In the second step, the dev_replace state is
593 * read from the device tree and it is known
594 * whether the procedure is really active or
595 * not, which means whether this device is
596 * used or whether it should be removed.
597 */
598 if (step == 0 || device->is_tgtdev_for_dev_replace) {
599 continue;
600 }
601 }
Yan Zheng2b820322008-11-17 21:11:30 -0500602 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100603 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500604 device->bdev = NULL;
605 fs_devices->open_devices--;
606 }
607 if (device->writeable) {
608 list_del_init(&device->dev_alloc_list);
609 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100610 if (!device->is_tgtdev_for_dev_replace)
611 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500612 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500613 list_del_init(&device->dev_list);
614 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400615 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500616 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400617 }
Yan Zheng2b820322008-11-17 21:11:30 -0500618
619 if (fs_devices->seed) {
620 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500621 goto again;
622 }
623
Chris Masona6b0d5c2012-02-20 20:53:43 -0500624 fs_devices->latest_bdev = latest_bdev;
625 fs_devices->latest_devid = latest_devid;
626 fs_devices->latest_trans = latest_transid;
627
Chris Masondfe25022008-05-13 13:46:40 -0400628 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400629}
Chris Masona0af4692008-05-13 16:03:06 -0400630
Xiao Guangrong1f781602011-04-20 10:09:16 +0000631static void __free_device(struct work_struct *work)
632{
633 struct btrfs_device *device;
634
635 device = container_of(work, struct btrfs_device, rcu_work);
636
637 if (device->bdev)
638 blkdev_put(device->bdev, device->mode);
639
Josef Bacik606686e2012-06-04 14:03:51 -0400640 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000641 kfree(device);
642}
643
644static void free_device(struct rcu_head *head)
645{
646 struct btrfs_device *device;
647
648 device = container_of(head, struct btrfs_device, rcu);
649
650 INIT_WORK(&device->rcu_work, __free_device);
651 schedule_work(&device->rcu_work);
652}
653
Yan Zheng2b820322008-11-17 21:11:30 -0500654static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400655{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400656 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500657
Yan Zheng2b820322008-11-17 21:11:30 -0500658 if (--fs_devices->opened > 0)
659 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400660
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000661 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500662 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Xiao Guangrong1f781602011-04-20 10:09:16 +0000663 struct btrfs_device *new_device;
Josef Bacik606686e2012-06-04 14:03:51 -0400664 struct rcu_string *name;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000665
666 if (device->bdev)
Chris Masona0af4692008-05-13 16:03:06 -0400667 fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000668
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--;
Josef Bacik726551e2013-08-26 13:45:53 -0400676 if (device->missing)
677 fs_devices->missing_devices--;
Josef Bacikd5e20032011-08-04 14:52:27 +0000678
Ilya Dryomova1e87802013-08-12 14:33:04 +0300679 new_device = btrfs_alloc_device(NULL, &device->devid,
680 device->uuid);
681 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
Josef Bacik606686e2012-06-04 14:03:51 -0400682
683 /* Safe because we are under uuid_mutex */
Josef Bacik99f59442012-08-02 10:23:59 -0400684 if (device->name) {
685 name = rcu_string_strdup(device->name->str, GFP_NOFS);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300686 BUG_ON(!name); /* -ENOMEM */
Josef Bacik99f59442012-08-02 10:23:59 -0400687 rcu_assign_pointer(new_device->name, name);
688 }
Ilya Dryomova1e87802013-08-12 14:33:04 +0300689
Xiao Guangrong1f781602011-04-20 10:09:16 +0000690 list_replace_rcu(&device->dev_list, &new_device->dev_list);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300691 new_device->fs_devices = device->fs_devices;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000692
693 call_rcu(&device->rcu, free_device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400694 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000695 mutex_unlock(&fs_devices->device_list_mutex);
696
Yan Zhenge4404d62008-12-12 10:03:26 -0500697 WARN_ON(fs_devices->open_devices);
698 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500699 fs_devices->opened = 0;
700 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500701
Chris Mason8a4b83c2008-03-24 15:02:07 -0400702 return 0;
703}
704
Yan Zheng2b820322008-11-17 21:11:30 -0500705int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
706{
Yan Zhenge4404d62008-12-12 10:03:26 -0500707 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500708 int ret;
709
710 mutex_lock(&uuid_mutex);
711 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500712 if (!fs_devices->opened) {
713 seed_devices = fs_devices->seed;
714 fs_devices->seed = NULL;
715 }
Yan Zheng2b820322008-11-17 21:11:30 -0500716 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500717
718 while (seed_devices) {
719 fs_devices = seed_devices;
720 seed_devices = fs_devices->seed;
721 __btrfs_close_devices(fs_devices);
722 free_fs_devices(fs_devices);
723 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000724 /*
725 * Wait for rcu kworkers under __btrfs_close_devices
726 * to finish all blkdev_puts so device is really
727 * free when umount is done.
728 */
729 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500730 return ret;
731}
732
Yan Zhenge4404d62008-12-12 10:03:26 -0500733static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
734 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400735{
Josef Bacikd5e20032011-08-04 14:52:27 +0000736 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400737 struct block_device *bdev;
738 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400739 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400740 struct block_device *latest_bdev = NULL;
741 struct buffer_head *bh;
742 struct btrfs_super_block *disk_super;
743 u64 latest_devid = 0;
744 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400745 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500746 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400747 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400748
Tejun Heod4d77622010-11-13 11:55:18 +0100749 flags |= FMODE_EXCL;
750
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500751 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400752 if (device->bdev)
753 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400754 if (!device->name)
755 continue;
756
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000757 /* Just open everything we can; ignore failures here */
758 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
759 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100760 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400761
762 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000763 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400764 if (devid != device->devid)
765 goto error_brelse;
766
Yan Zheng2b820322008-11-17 21:11:30 -0500767 if (memcmp(device->uuid, disk_super->dev_item.uuid,
768 BTRFS_UUID_SIZE))
769 goto error_brelse;
770
771 device->generation = btrfs_super_generation(disk_super);
772 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400773 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500774 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400775 latest_bdev = bdev;
776 }
777
Yan Zheng2b820322008-11-17 21:11:30 -0500778 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
779 device->writeable = 0;
780 } else {
781 device->writeable = !bdev_read_only(bdev);
782 seeding = 0;
783 }
784
Josef Bacikd5e20032011-08-04 14:52:27 +0000785 q = bdev_get_queue(bdev);
786 if (blk_queue_discard(q)) {
787 device->can_discard = 1;
788 fs_devices->num_can_discard++;
789 }
790
Chris Mason8a4b83c2008-03-24 15:02:07 -0400791 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400792 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500793 device->mode = flags;
794
Chris Masonc2898112009-06-10 09:51:32 -0400795 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
796 fs_devices->rotating = 1;
797
Chris Masona0af4692008-05-13 16:03:06 -0400798 fs_devices->open_devices++;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100799 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -0500800 fs_devices->rw_devices++;
801 list_add(&device->dev_alloc_list,
802 &fs_devices->alloc_list);
803 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000804 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400805 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400806
Chris Masona0af4692008-05-13 16:03:06 -0400807error_brelse:
808 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100809 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400810 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400811 }
Chris Masona0af4692008-05-13 16:03:06 -0400812 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300813 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400814 goto out;
815 }
Yan Zheng2b820322008-11-17 21:11:30 -0500816 fs_devices->seeding = seeding;
817 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400818 fs_devices->latest_bdev = latest_bdev;
819 fs_devices->latest_devid = latest_devid;
820 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500821 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400822out:
Yan Zheng2b820322008-11-17 21:11:30 -0500823 return ret;
824}
825
826int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500827 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500828{
829 int ret;
830
831 mutex_lock(&uuid_mutex);
832 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500833 fs_devices->opened++;
834 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500835 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500836 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500837 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400838 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400839 return ret;
840}
841
David Sterba6f60cbd2013-02-15 11:31:02 -0700842/*
843 * Look for a btrfs signature on a device. This may be called out of the mount path
844 * and we are not allowed to call set_blocksize during the scan. The superblock
845 * is read via pagecache
846 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500847int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400848 struct btrfs_fs_devices **fs_devices_ret)
849{
850 struct btrfs_super_block *disk_super;
851 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -0700852 struct page *page;
853 void *p;
854 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400855 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400856 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -0400857 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700858 u64 bytenr;
859 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400860
David Sterba6f60cbd2013-02-15 11:31:02 -0700861 /*
862 * we would like to check all the supers, but that would make
863 * a btrfs mount succeed after a mkfs from a different FS.
864 * So, we need to add a special mount option to scan for
865 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
866 */
867 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +0100868 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -0500869 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -0700870
871 bdev = blkdev_get_by_path(path, flags, holder);
872
873 if (IS_ERR(bdev)) {
874 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100875 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -0700876 }
877
878 /* make sure our super fits in the device */
879 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
880 goto error_bdev_put;
881
882 /* make sure our super fits in the page */
883 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
884 goto error_bdev_put;
885
886 /* make sure our super doesn't straddle pages on disk */
887 index = bytenr >> PAGE_CACHE_SHIFT;
888 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
889 goto error_bdev_put;
890
891 /* pull in the page with our super */
892 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
893 index, GFP_NOFS);
894
895 if (IS_ERR_OR_NULL(page))
896 goto error_bdev_put;
897
898 p = kmap(page);
899
900 /* align our pointer to the offset of the super block */
901 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
902
903 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +0800904 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -0700905 goto error_unmap;
906
Xiao Guangronga3438322010-01-06 11:48:18 +0000907 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400908 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -0400909 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -0700910
Stefan Behrensd03f9182012-11-05 13:10:49 +0000911 if (disk_super->label[0]) {
912 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
913 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
Chris Masond3977122009-01-05 21:25:51 -0500914 printk(KERN_INFO "device label %s ", disk_super->label);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000915 } else {
Ilya Dryomov22b63a22011-02-09 16:05:31 +0200916 printk(KERN_INFO "device fsid %pU ", disk_super->fsid);
Stefan Behrensd03f9182012-11-05 13:10:49 +0000917 }
David Sterba6f60cbd2013-02-15 11:31:02 -0700918
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200919 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
David Sterba6f60cbd2013-02-15 11:31:02 -0700920
Chris Mason8a4b83c2008-03-24 15:02:07 -0400921 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
Josef Bacik02db0842012-06-21 16:03:58 -0400922 if (!ret && fs_devices_ret)
923 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700924
925error_unmap:
926 kunmap(page);
927 page_cache_release(page);
928
929error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +0100930 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400931error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100932 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400933 return ret;
934}
Chris Mason0b86a832008-03-24 15:01:56 -0400935
Miao Xie6d07bce2011-01-05 10:07:31 +0000936/* helper to account the used device space in the range */
937int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
938 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -0400939{
940 struct btrfs_key key;
941 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +0000942 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500943 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +0000944 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400945 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +0000946 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400947 struct extent_buffer *l;
948
Miao Xie6d07bce2011-01-05 10:07:31 +0000949 *length = 0;
950
Stefan Behrens63a212a2012-11-05 18:29:28 +0100951 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +0000952 return 0;
953
Yan Zheng2b820322008-11-17 21:11:30 -0500954 path = btrfs_alloc_path();
955 if (!path)
956 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400957 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -0400958
Chris Mason0b86a832008-03-24 15:01:56 -0400959 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +0000960 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400961 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +0000962
963 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -0400964 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000965 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400966 if (ret > 0) {
967 ret = btrfs_previous_item(root, path, key.objectid, key.type);
968 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000969 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400970 }
Miao Xie6d07bce2011-01-05 10:07:31 +0000971
Chris Mason0b86a832008-03-24 15:01:56 -0400972 while (1) {
973 l = path->nodes[0];
974 slot = path->slots[0];
975 if (slot >= btrfs_header_nritems(l)) {
976 ret = btrfs_next_leaf(root, path);
977 if (ret == 0)
978 continue;
979 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000980 goto out;
981
982 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400983 }
984 btrfs_item_key_to_cpu(l, &key, slot);
985
986 if (key.objectid < device->devid)
987 goto next;
988
989 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +0000990 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400991
Chris Masond3977122009-01-05 21:25:51 -0500992 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400993 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400994
Chris Mason0b86a832008-03-24 15:01:56 -0400995 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +0000996 extent_end = key.offset + btrfs_dev_extent_length(l,
997 dev_extent);
998 if (key.offset <= start && extent_end > end) {
999 *length = end - start + 1;
1000 break;
1001 } else if (key.offset <= start && extent_end > start)
1002 *length += extent_end - start;
1003 else if (key.offset > start && extent_end <= end)
1004 *length += extent_end - key.offset;
1005 else if (key.offset > start && key.offset <= end) {
1006 *length += end - key.offset + 1;
1007 break;
1008 } else if (key.offset > end)
1009 break;
1010
1011next:
1012 path->slots[0]++;
1013 }
1014 ret = 0;
1015out:
1016 btrfs_free_path(path);
1017 return ret;
1018}
1019
Josef Bacik6df9a952013-06-27 13:22:46 -04001020static int contains_pending_extent(struct btrfs_trans_handle *trans,
1021 struct btrfs_device *device,
1022 u64 *start, u64 len)
1023{
1024 struct extent_map *em;
1025 int ret = 0;
1026
1027 list_for_each_entry(em, &trans->transaction->pending_chunks, list) {
1028 struct map_lookup *map;
1029 int i;
1030
1031 map = (struct map_lookup *)em->bdev;
1032 for (i = 0; i < map->num_stripes; i++) {
1033 if (map->stripes[i].dev != device)
1034 continue;
1035 if (map->stripes[i].physical >= *start + len ||
1036 map->stripes[i].physical + em->orig_block_len <=
1037 *start)
1038 continue;
1039 *start = map->stripes[i].physical +
1040 em->orig_block_len;
1041 ret = 1;
1042 }
1043 }
1044
1045 return ret;
1046}
1047
1048
Chris Mason0b86a832008-03-24 15:01:56 -04001049/*
Miao Xie7bfc8372011-01-05 10:07:26 +00001050 * find_free_dev_extent - find free space in the specified device
Miao Xie7bfc8372011-01-05 10:07:26 +00001051 * @device: the device which we search the free space in
1052 * @num_bytes: the size of the free space that we need
1053 * @start: store the start of the free space.
1054 * @len: the size of the free space. that we find, or the size of the max
1055 * free space if we don't find suitable free space
1056 *
Chris Mason0b86a832008-03-24 15:01:56 -04001057 * this uses a pretty simple search, the expectation is that it is
1058 * called very infrequently and that a given device has a small number
1059 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001060 *
1061 * @start is used to store the start of the free space if we find. But if we
1062 * don't find suitable free space, it will be used to store the start position
1063 * of the max free space.
1064 *
1065 * @len is used to store the size of the free space that we find.
1066 * But if we don't find suitable free space, it is used to store the size of
1067 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001068 */
Josef Bacik6df9a952013-06-27 13:22:46 -04001069int find_free_dev_extent(struct btrfs_trans_handle *trans,
1070 struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +00001071 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001072{
1073 struct btrfs_key key;
1074 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001075 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001076 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001077 u64 hole_size;
1078 u64 max_hole_start;
1079 u64 max_hole_size;
1080 u64 extent_end;
1081 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001082 u64 search_end = device->total_bytes;
1083 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001084 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001085 struct extent_buffer *l;
1086
Chris Mason0b86a832008-03-24 15:01:56 -04001087 /* FIXME use last free of some kind */
1088
1089 /* we don't want to overwrite the superblock on the drive,
1090 * so we make sure to start at an offset of at least 1MB
1091 */
Arne Jansena9c9bf62011-04-12 11:01:20 +02001092 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
Chris Mason0b86a832008-03-24 15:01:56 -04001093
Josef Bacik6df9a952013-06-27 13:22:46 -04001094 path = btrfs_alloc_path();
1095 if (!path)
1096 return -ENOMEM;
1097again:
Miao Xie7bfc8372011-01-05 10:07:26 +00001098 max_hole_start = search_start;
1099 max_hole_size = 0;
liubo38c01b92011-08-02 02:39:03 +00001100 hole_size = 0;
Miao Xie7bfc8372011-01-05 10:07:26 +00001101
Stefan Behrens63a212a2012-11-05 18:29:28 +01001102 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001103 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001104 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001105 }
1106
Miao Xie7bfc8372011-01-05 10:07:26 +00001107 path->reada = 2;
Josef Bacik6df9a952013-06-27 13:22:46 -04001108 path->search_commit_root = 1;
1109 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001110
Chris Mason0b86a832008-03-24 15:01:56 -04001111 key.objectid = device->devid;
1112 key.offset = search_start;
1113 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001114
Li Zefan125ccb02011-12-08 15:07:24 +08001115 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001116 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001117 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001118 if (ret > 0) {
1119 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1120 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001121 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001122 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001123
Chris Mason0b86a832008-03-24 15:01:56 -04001124 while (1) {
1125 l = path->nodes[0];
1126 slot = path->slots[0];
1127 if (slot >= btrfs_header_nritems(l)) {
1128 ret = btrfs_next_leaf(root, path);
1129 if (ret == 0)
1130 continue;
1131 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001132 goto out;
1133
1134 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001135 }
1136 btrfs_item_key_to_cpu(l, &key, slot);
1137
1138 if (key.objectid < device->devid)
1139 goto next;
1140
1141 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001142 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001143
Chris Mason0b86a832008-03-24 15:01:56 -04001144 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
1145 goto next;
1146
Miao Xie7bfc8372011-01-05 10:07:26 +00001147 if (key.offset > search_start) {
1148 hole_size = key.offset - search_start;
1149
Josef Bacik6df9a952013-06-27 13:22:46 -04001150 /*
1151 * Have to check before we set max_hole_start, otherwise
1152 * we could end up sending back this offset anyway.
1153 */
1154 if (contains_pending_extent(trans, device,
1155 &search_start,
1156 hole_size))
1157 hole_size = 0;
1158
Miao Xie7bfc8372011-01-05 10:07:26 +00001159 if (hole_size > max_hole_size) {
1160 max_hole_start = search_start;
1161 max_hole_size = hole_size;
1162 }
1163
1164 /*
1165 * If this free space is greater than which we need,
1166 * it must be the max free space that we have found
1167 * until now, so max_hole_start must point to the start
1168 * of this free space and the length of this free space
1169 * is stored in max_hole_size. Thus, we return
1170 * max_hole_start and max_hole_size and go back to the
1171 * caller.
1172 */
1173 if (hole_size >= num_bytes) {
1174 ret = 0;
1175 goto out;
1176 }
1177 }
1178
Chris Mason0b86a832008-03-24 15:01:56 -04001179 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001180 extent_end = key.offset + btrfs_dev_extent_length(l,
1181 dev_extent);
1182 if (extent_end > search_start)
1183 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001184next:
1185 path->slots[0]++;
1186 cond_resched();
1187 }
Chris Mason0b86a832008-03-24 15:01:56 -04001188
liubo38c01b92011-08-02 02:39:03 +00001189 /*
1190 * At this point, search_start should be the end of
1191 * allocated dev extents, and when shrinking the device,
1192 * search_end may be smaller than search_start.
1193 */
1194 if (search_end > search_start)
1195 hole_size = search_end - search_start;
1196
Miao Xie7bfc8372011-01-05 10:07:26 +00001197 if (hole_size > max_hole_size) {
1198 max_hole_start = search_start;
1199 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001200 }
Chris Mason0b86a832008-03-24 15:01:56 -04001201
Josef Bacik6df9a952013-06-27 13:22:46 -04001202 if (contains_pending_extent(trans, device, &search_start, hole_size)) {
1203 btrfs_release_path(path);
1204 goto again;
1205 }
1206
Miao Xie7bfc8372011-01-05 10:07:26 +00001207 /* See above. */
1208 if (hole_size < num_bytes)
1209 ret = -ENOSPC;
1210 else
1211 ret = 0;
1212
1213out:
Yan Zheng2b820322008-11-17 21:11:30 -05001214 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001215 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001216 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001217 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001218 return ret;
1219}
1220
Christoph Hellwigb2950862008-12-02 09:54:17 -05001221static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001222 struct btrfs_device *device,
1223 u64 start)
1224{
1225 int ret;
1226 struct btrfs_path *path;
1227 struct btrfs_root *root = device->dev_root;
1228 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001229 struct btrfs_key found_key;
1230 struct extent_buffer *leaf = NULL;
1231 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001232
1233 path = btrfs_alloc_path();
1234 if (!path)
1235 return -ENOMEM;
1236
1237 key.objectid = device->devid;
1238 key.offset = start;
1239 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001240again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001241 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001242 if (ret > 0) {
1243 ret = btrfs_previous_item(root, path, key.objectid,
1244 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001245 if (ret)
1246 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001247 leaf = path->nodes[0];
1248 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1249 extent = btrfs_item_ptr(leaf, path->slots[0],
1250 struct btrfs_dev_extent);
1251 BUG_ON(found_key.offset > start || found_key.offset +
1252 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001253 key = found_key;
1254 btrfs_release_path(path);
1255 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001256 } else if (ret == 0) {
1257 leaf = path->nodes[0];
1258 extent = btrfs_item_ptr(leaf, path->slots[0],
1259 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001260 } else {
1261 btrfs_error(root->fs_info, ret, "Slot search failed");
1262 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001263 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001264
Josef Bacik2bf64752011-09-26 17:12:22 -04001265 if (device->bytes_used > 0) {
1266 u64 len = btrfs_dev_extent_length(leaf, extent);
1267 device->bytes_used -= len;
1268 spin_lock(&root->fs_info->free_chunk_lock);
1269 root->fs_info->free_chunk_space += len;
1270 spin_unlock(&root->fs_info->free_chunk_lock);
1271 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001272 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001273 if (ret) {
1274 btrfs_error(root->fs_info, ret,
1275 "Failed to remove dev extent item");
1276 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001277out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001278 btrfs_free_path(path);
1279 return ret;
1280}
1281
Eric Sandeen48a3b632013-04-25 20:41:01 +00001282static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1283 struct btrfs_device *device,
1284 u64 chunk_tree, u64 chunk_objectid,
1285 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001286{
1287 int ret;
1288 struct btrfs_path *path;
1289 struct btrfs_root *root = device->dev_root;
1290 struct btrfs_dev_extent *extent;
1291 struct extent_buffer *leaf;
1292 struct btrfs_key key;
1293
Chris Masondfe25022008-05-13 13:46:40 -04001294 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001295 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001296 path = btrfs_alloc_path();
1297 if (!path)
1298 return -ENOMEM;
1299
Chris Mason0b86a832008-03-24 15:01:56 -04001300 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001301 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001302 key.type = BTRFS_DEV_EXTENT_KEY;
1303 ret = btrfs_insert_empty_item(trans, root, path, &key,
1304 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001305 if (ret)
1306 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001307
1308 leaf = path->nodes[0];
1309 extent = btrfs_item_ptr(leaf, path->slots[0],
1310 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001311 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1312 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1313 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1314
1315 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001316 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001317
Chris Mason0b86a832008-03-24 15:01:56 -04001318 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1319 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001320out:
Chris Mason0b86a832008-03-24 15:01:56 -04001321 btrfs_free_path(path);
1322 return ret;
1323}
1324
Josef Bacik6df9a952013-06-27 13:22:46 -04001325static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001326{
Josef Bacik6df9a952013-06-27 13:22:46 -04001327 struct extent_map_tree *em_tree;
1328 struct extent_map *em;
1329 struct rb_node *n;
1330 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001331
Josef Bacik6df9a952013-06-27 13:22:46 -04001332 em_tree = &fs_info->mapping_tree.map_tree;
1333 read_lock(&em_tree->lock);
1334 n = rb_last(&em_tree->map);
1335 if (n) {
1336 em = rb_entry(n, struct extent_map, rb_node);
1337 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001338 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001339 read_unlock(&em_tree->lock);
1340
Chris Mason0b86a832008-03-24 15:01:56 -04001341 return ret;
1342}
1343
Ilya Dryomov53f10652013-08-12 14:33:01 +03001344static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1345 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001346{
1347 int ret;
1348 struct btrfs_key key;
1349 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001350 struct btrfs_path *path;
1351
Yan Zheng2b820322008-11-17 21:11:30 -05001352 path = btrfs_alloc_path();
1353 if (!path)
1354 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001355
1356 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1357 key.type = BTRFS_DEV_ITEM_KEY;
1358 key.offset = (u64)-1;
1359
Ilya Dryomov53f10652013-08-12 14:33:01 +03001360 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001361 if (ret < 0)
1362 goto error;
1363
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001364 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001365
Ilya Dryomov53f10652013-08-12 14:33:01 +03001366 ret = btrfs_previous_item(fs_info->chunk_root, path,
1367 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001368 BTRFS_DEV_ITEM_KEY);
1369 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001370 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001371 } else {
1372 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1373 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001374 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001375 }
1376 ret = 0;
1377error:
Yan Zheng2b820322008-11-17 21:11:30 -05001378 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001379 return ret;
1380}
1381
1382/*
1383 * the device information is stored in the chunk root
1384 * the btrfs_device struct should be fully filled in
1385 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001386static int btrfs_add_device(struct btrfs_trans_handle *trans,
1387 struct btrfs_root *root,
1388 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001389{
1390 int ret;
1391 struct btrfs_path *path;
1392 struct btrfs_dev_item *dev_item;
1393 struct extent_buffer *leaf;
1394 struct btrfs_key key;
1395 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001396
1397 root = root->fs_info->chunk_root;
1398
1399 path = btrfs_alloc_path();
1400 if (!path)
1401 return -ENOMEM;
1402
Chris Mason0b86a832008-03-24 15:01:56 -04001403 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1404 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001405 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001406
1407 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001408 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001409 if (ret)
1410 goto out;
1411
1412 leaf = path->nodes[0];
1413 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1414
1415 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001416 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001417 btrfs_set_device_type(leaf, dev_item, device->type);
1418 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1419 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1420 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001421 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1422 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001423 btrfs_set_device_group(leaf, dev_item, 0);
1424 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1425 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001426 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001427
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001428 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001429 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001430 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001431 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001432 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001433
Yan Zheng2b820322008-11-17 21:11:30 -05001434 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001435out:
1436 btrfs_free_path(path);
1437 return ret;
1438}
Chris Mason8f18cf12008-04-25 16:53:30 -04001439
Chris Masona061fc82008-05-07 11:43:44 -04001440static int btrfs_rm_dev_item(struct btrfs_root *root,
1441 struct btrfs_device *device)
1442{
1443 int ret;
1444 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001445 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001446 struct btrfs_trans_handle *trans;
1447
1448 root = root->fs_info->chunk_root;
1449
1450 path = btrfs_alloc_path();
1451 if (!path)
1452 return -ENOMEM;
1453
Yan, Zhenga22285a2010-05-16 10:48:46 -04001454 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001455 if (IS_ERR(trans)) {
1456 btrfs_free_path(path);
1457 return PTR_ERR(trans);
1458 }
Chris Masona061fc82008-05-07 11:43:44 -04001459 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1460 key.type = BTRFS_DEV_ITEM_KEY;
1461 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001462 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001463
1464 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1465 if (ret < 0)
1466 goto out;
1467
1468 if (ret > 0) {
1469 ret = -ENOENT;
1470 goto out;
1471 }
1472
1473 ret = btrfs_del_item(trans, root, path);
1474 if (ret)
1475 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001476out:
1477 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001478 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001479 btrfs_commit_transaction(trans, root);
1480 return ret;
1481}
1482
1483int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1484{
1485 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001486 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001487 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001488 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001489 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001490 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001491 u64 all_avail;
1492 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001493 u64 num_devices;
1494 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001495 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001496 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001497 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001498
Chris Masona061fc82008-05-07 11:43:44 -04001499 mutex_lock(&uuid_mutex);
1500
Miao Xiede98ced2013-01-29 10:13:12 +00001501 do {
1502 seq = read_seqbegin(&root->fs_info->profiles_lock);
1503
1504 all_avail = root->fs_info->avail_data_alloc_bits |
1505 root->fs_info->avail_system_alloc_bits |
1506 root->fs_info->avail_metadata_alloc_bits;
1507 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001508
Stefan Behrens8dabb742012-11-06 13:15:27 +01001509 num_devices = root->fs_info->fs_devices->num_devices;
1510 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1511 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1512 WARN_ON(num_devices < 1);
1513 num_devices--;
1514 }
1515 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1516
1517 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001518 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001519 goto out;
1520 }
1521
Stefan Behrens8dabb742012-11-06 13:15:27 +01001522 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001523 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001524 goto out;
1525 }
1526
David Woodhouse53b381b2013-01-29 18:40:14 -05001527 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1528 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001529 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001530 goto out;
1531 }
1532 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1533 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001534 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001535 goto out;
1536 }
1537
Chris Masondfe25022008-05-13 13:46:40 -04001538 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001539 struct list_head *devices;
1540 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001541
Chris Masondfe25022008-05-13 13:46:40 -04001542 device = NULL;
1543 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001544 /*
1545 * It is safe to read the devices since the volume_mutex
1546 * is held.
1547 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001548 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001549 if (tmp->in_fs_metadata &&
1550 !tmp->is_tgtdev_for_dev_replace &&
1551 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001552 device = tmp;
1553 break;
1554 }
1555 }
1556 bdev = NULL;
1557 bh = NULL;
1558 disk_super = NULL;
1559 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001560 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001561 goto out;
1562 }
Chris Masondfe25022008-05-13 13:46:40 -04001563 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001564 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001565 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001566 root->fs_info->bdev_holder, 0,
1567 &bdev, &bh);
1568 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001569 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001570 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001571 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001572 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001573 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001574 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001575 if (!device) {
1576 ret = -ENOENT;
1577 goto error_brelse;
1578 }
Chris Masondfe25022008-05-13 13:46:40 -04001579 }
Yan Zheng2b820322008-11-17 21:11:30 -05001580
Stefan Behrens63a212a2012-11-05 18:29:28 +01001581 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001582 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001583 goto error_brelse;
1584 }
1585
Yan Zheng2b820322008-11-17 21:11:30 -05001586 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001587 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001588 goto error_brelse;
1589 }
1590
1591 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001592 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001593 list_del_init(&device->dev_alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001594 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001595 root->fs_info->fs_devices->rw_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001596 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001597 }
Chris Masona061fc82008-05-07 11:43:44 -04001598
Carey Underwoodd7901552013-03-04 16:37:06 -06001599 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001600 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001601 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001602 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001603 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001604
Stefan Behrens63a212a2012-11-05 18:29:28 +01001605 /*
1606 * TODO: the superblock still includes this device in its num_devices
1607 * counter although write_all_supers() is not locked out. This
1608 * could give a filesystem state which requires a degraded mount.
1609 */
Chris Masona061fc82008-05-07 11:43:44 -04001610 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1611 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001612 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001613
Josef Bacik2bf64752011-09-26 17:12:22 -04001614 spin_lock(&root->fs_info->free_chunk_lock);
1615 root->fs_info->free_chunk_space = device->total_bytes -
1616 device->bytes_used;
1617 spin_unlock(&root->fs_info->free_chunk_lock);
1618
Yan Zheng2b820322008-11-17 21:11:30 -05001619 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001620 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001621
1622 /*
1623 * the device list mutex makes sure that we don't change
1624 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001625 * the device supers. Whoever is writing all supers, should
1626 * lock the device list mutex before getting the number of
1627 * devices in the super block (super_copy). Conversely,
1628 * whoever updates the number of devices in the super block
1629 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001630 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001631
1632 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001633 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001634 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001635
Yan Zhenge4404d62008-12-12 10:03:26 -05001636 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001637 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001638
Chris Masoncd02dca2010-12-13 14:56:23 -05001639 if (device->missing)
1640 root->fs_info->fs_devices->missing_devices--;
1641
Yan Zheng2b820322008-11-17 21:11:30 -05001642 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1643 struct btrfs_device, dev_list);
1644 if (device->bdev == root->fs_info->sb->s_bdev)
1645 root->fs_info->sb->s_bdev = next_device->bdev;
1646 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1647 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1648
Xiao Guangrong1f781602011-04-20 10:09:16 +00001649 if (device->bdev)
Yan Zhenge4404d62008-12-12 10:03:26 -05001650 device->fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001651
1652 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001653
David Sterba6c417612011-04-13 15:41:04 +02001654 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1655 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001656 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001657
Xiao Guangrong1f781602011-04-20 10:09:16 +00001658 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001659 struct btrfs_fs_devices *fs_devices;
1660 fs_devices = root->fs_info->fs_devices;
1661 while (fs_devices) {
Xiao Guangrong1f781602011-04-20 10:09:16 +00001662 if (fs_devices->seed == cur_devices)
Yan Zhenge4404d62008-12-12 10:03:26 -05001663 break;
1664 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001665 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001666 fs_devices->seed = cur_devices->seed;
1667 cur_devices->seed = NULL;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001668 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001669 __btrfs_close_devices(cur_devices);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001670 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001671 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001672 }
1673
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001674 root->fs_info->num_tolerated_disk_barrier_failures =
1675 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1676
Yan Zheng2b820322008-11-17 21:11:30 -05001677 /*
1678 * at this point, the device is zero sized. We want to
1679 * remove it from the devices list and zero out the old super
1680 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001681 if (clear_super && disk_super) {
Chris Masondfe25022008-05-13 13:46:40 -04001682 /* make sure this device isn't detected as part of
1683 * the FS anymore
1684 */
1685 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1686 set_buffer_dirty(bh);
1687 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001688 }
Chris Masona061fc82008-05-07 11:43:44 -04001689
Chris Masona061fc82008-05-07 11:43:44 -04001690 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001691
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001692 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001693 if (bdev)
1694 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001695
Chris Masona061fc82008-05-07 11:43:44 -04001696error_brelse:
1697 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001698 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001699 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001700out:
1701 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001702 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001703error_undo:
1704 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001705 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001706 list_add(&device->dev_alloc_list,
1707 &root->fs_info->fs_devices->alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001708 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001709 root->fs_info->fs_devices->rw_devices++;
1710 }
1711 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001712}
1713
Stefan Behrense93c89c2012-11-05 17:33:06 +01001714void btrfs_rm_dev_replace_srcdev(struct btrfs_fs_info *fs_info,
1715 struct btrfs_device *srcdev)
1716{
1717 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
1718 list_del_rcu(&srcdev->dev_list);
1719 list_del_rcu(&srcdev->dev_alloc_list);
1720 fs_info->fs_devices->num_devices--;
1721 if (srcdev->missing) {
1722 fs_info->fs_devices->missing_devices--;
1723 fs_info->fs_devices->rw_devices++;
1724 }
1725 if (srcdev->can_discard)
1726 fs_info->fs_devices->num_can_discard--;
1727 if (srcdev->bdev)
1728 fs_info->fs_devices->open_devices--;
1729
1730 call_rcu(&srcdev->rcu, free_device);
1731}
1732
1733void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1734 struct btrfs_device *tgtdev)
1735{
1736 struct btrfs_device *next_device;
1737
1738 WARN_ON(!tgtdev);
1739 mutex_lock(&fs_info->fs_devices->device_list_mutex);
1740 if (tgtdev->bdev) {
1741 btrfs_scratch_superblock(tgtdev);
1742 fs_info->fs_devices->open_devices--;
1743 }
1744 fs_info->fs_devices->num_devices--;
1745 if (tgtdev->can_discard)
1746 fs_info->fs_devices->num_can_discard++;
1747
1748 next_device = list_entry(fs_info->fs_devices->devices.next,
1749 struct btrfs_device, dev_list);
1750 if (tgtdev->bdev == fs_info->sb->s_bdev)
1751 fs_info->sb->s_bdev = next_device->bdev;
1752 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
1753 fs_info->fs_devices->latest_bdev = next_device->bdev;
1754 list_del_rcu(&tgtdev->dev_list);
1755
1756 call_rcu(&tgtdev->rcu, free_device);
1757
1758 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
1759}
1760
Eric Sandeen48a3b632013-04-25 20:41:01 +00001761static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
1762 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001763{
1764 int ret = 0;
1765 struct btrfs_super_block *disk_super;
1766 u64 devid;
1767 u8 *dev_uuid;
1768 struct block_device *bdev;
1769 struct buffer_head *bh;
1770
1771 *device = NULL;
1772 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
1773 root->fs_info->bdev_holder, 0, &bdev, &bh);
1774 if (ret)
1775 return ret;
1776 disk_super = (struct btrfs_super_block *)bh->b_data;
1777 devid = btrfs_stack_device_id(&disk_super->dev_item);
1778 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001779 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001780 disk_super->fsid);
1781 brelse(bh);
1782 if (!*device)
1783 ret = -ENOENT;
1784 blkdev_put(bdev, FMODE_READ);
1785 return ret;
1786}
1787
1788int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
1789 char *device_path,
1790 struct btrfs_device **device)
1791{
1792 *device = NULL;
1793 if (strcmp(device_path, "missing") == 0) {
1794 struct list_head *devices;
1795 struct btrfs_device *tmp;
1796
1797 devices = &root->fs_info->fs_devices->devices;
1798 /*
1799 * It is safe to read the devices since the volume_mutex
1800 * is held by the caller.
1801 */
1802 list_for_each_entry(tmp, devices, dev_list) {
1803 if (tmp->in_fs_metadata && !tmp->bdev) {
1804 *device = tmp;
1805 break;
1806 }
1807 }
1808
1809 if (!*device) {
1810 pr_err("btrfs: no missing device found\n");
1811 return -ENOENT;
1812 }
1813
1814 return 0;
1815 } else {
1816 return btrfs_find_device_by_path(root, device_path, device);
1817 }
1818}
1819
Yan Zheng2b820322008-11-17 21:11:30 -05001820/*
1821 * does all the dirty work required for changing file system's UUID.
1822 */
Li Zefan125ccb02011-12-08 15:07:24 +08001823static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05001824{
1825 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1826 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001827 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02001828 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05001829 struct btrfs_device *device;
1830 u64 super_flags;
1831
1832 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001833 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001834 return -EINVAL;
1835
Ilya Dryomov2208a372013-08-12 14:33:03 +03001836 seed_devices = __alloc_fs_devices();
1837 if (IS_ERR(seed_devices))
1838 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001839
Yan Zhenge4404d62008-12-12 10:03:26 -05001840 old_devices = clone_fs_devices(fs_devices);
1841 if (IS_ERR(old_devices)) {
1842 kfree(seed_devices);
1843 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001844 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001845
Yan Zheng2b820322008-11-17 21:11:30 -05001846 list_add(&old_devices->list, &fs_uuids);
1847
Yan Zhenge4404d62008-12-12 10:03:26 -05001848 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1849 seed_devices->opened = 1;
1850 INIT_LIST_HEAD(&seed_devices->devices);
1851 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001852 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001853
1854 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001855 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1856 synchronize_rcu);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001857
Yan Zhenge4404d62008-12-12 10:03:26 -05001858 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1859 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1860 device->fs_devices = seed_devices;
1861 }
1862
Yan Zheng2b820322008-11-17 21:11:30 -05001863 fs_devices->seeding = 0;
1864 fs_devices->num_devices = 0;
1865 fs_devices->open_devices = 0;
Josef Bacik02db0842012-06-21 16:03:58 -04001866 fs_devices->total_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001867 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001868
1869 generate_random_uuid(fs_devices->fsid);
1870 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1871 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01001872 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1873
Yan Zheng2b820322008-11-17 21:11:30 -05001874 super_flags = btrfs_super_flags(disk_super) &
1875 ~BTRFS_SUPER_FLAG_SEEDING;
1876 btrfs_set_super_flags(disk_super, super_flags);
1877
1878 return 0;
1879}
1880
1881/*
1882 * strore the expected generation for seed devices in device items.
1883 */
1884static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1885 struct btrfs_root *root)
1886{
1887 struct btrfs_path *path;
1888 struct extent_buffer *leaf;
1889 struct btrfs_dev_item *dev_item;
1890 struct btrfs_device *device;
1891 struct btrfs_key key;
1892 u8 fs_uuid[BTRFS_UUID_SIZE];
1893 u8 dev_uuid[BTRFS_UUID_SIZE];
1894 u64 devid;
1895 int ret;
1896
1897 path = btrfs_alloc_path();
1898 if (!path)
1899 return -ENOMEM;
1900
1901 root = root->fs_info->chunk_root;
1902 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1903 key.offset = 0;
1904 key.type = BTRFS_DEV_ITEM_KEY;
1905
1906 while (1) {
1907 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1908 if (ret < 0)
1909 goto error;
1910
1911 leaf = path->nodes[0];
1912next_slot:
1913 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1914 ret = btrfs_next_leaf(root, path);
1915 if (ret > 0)
1916 break;
1917 if (ret < 0)
1918 goto error;
1919 leaf = path->nodes[0];
1920 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001921 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05001922 continue;
1923 }
1924
1925 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1926 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1927 key.type != BTRFS_DEV_ITEM_KEY)
1928 break;
1929
1930 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1931 struct btrfs_dev_item);
1932 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001933 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05001934 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001935 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05001936 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001937 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
1938 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001939 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05001940
1941 if (device->fs_devices->seeding) {
1942 btrfs_set_device_generation(leaf, dev_item,
1943 device->generation);
1944 btrfs_mark_buffer_dirty(leaf);
1945 }
1946
1947 path->slots[0]++;
1948 goto next_slot;
1949 }
1950 ret = 0;
1951error:
1952 btrfs_free_path(path);
1953 return ret;
1954}
1955
Chris Mason788f20e2008-04-28 15:29:42 -04001956int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1957{
Josef Bacikd5e20032011-08-04 14:52:27 +00001958 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04001959 struct btrfs_trans_handle *trans;
1960 struct btrfs_device *device;
1961 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001962 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001963 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04001964 struct rcu_string *name;
Chris Mason788f20e2008-04-28 15:29:42 -04001965 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001966 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001967 int ret = 0;
1968
Yan Zheng2b820322008-11-17 21:11:30 -05001969 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08001970 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04001971
Li Zefana5d16332011-12-07 20:08:40 -05001972 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01001973 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001974 if (IS_ERR(bdev))
1975 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001976
Yan Zheng2b820322008-11-17 21:11:30 -05001977 if (root->fs_info->fs_devices->seeding) {
1978 seeding_dev = 1;
1979 down_write(&sb->s_umount);
1980 mutex_lock(&uuid_mutex);
1981 }
1982
Chris Mason8c8bee12008-09-29 11:19:10 -04001983 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04001984
Chris Mason788f20e2008-04-28 15:29:42 -04001985 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00001986
1987 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001988 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001989 if (device->bdev == bdev) {
1990 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00001991 mutex_unlock(
1992 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001993 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001994 }
1995 }
Liu Bod25628b2012-11-14 14:35:30 +00001996 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001997
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001998 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
1999 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002000 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002001 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002002 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002003 }
2004
Josef Bacik606686e2012-06-04 14:03:51 -04002005 name = rcu_string_strdup(device_path, GFP_NOFS);
2006 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002007 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002008 ret = -ENOMEM;
2009 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002010 }
Josef Bacik606686e2012-06-04 14:03:51 -04002011 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002012
Yan, Zhenga22285a2010-05-16 10:48:46 -04002013 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002014 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002015 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002016 kfree(device);
2017 ret = PTR_ERR(trans);
2018 goto error;
2019 }
2020
Yan Zheng2b820322008-11-17 21:11:30 -05002021 lock_chunks(root);
2022
Josef Bacikd5e20032011-08-04 14:52:27 +00002023 q = bdev_get_queue(bdev);
2024 if (blk_queue_discard(q))
2025 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002026 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002027 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002028 device->io_width = root->sectorsize;
2029 device->io_align = root->sectorsize;
2030 device->sector_size = root->sectorsize;
2031 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002032 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002033 device->dev_root = root->fs_info->dev_root;
2034 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002035 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002036 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002037 device->mode = FMODE_EXCL;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002038 set_blocksize(device->bdev, 4096);
2039
Yan Zheng2b820322008-11-17 21:11:30 -05002040 if (seeding_dev) {
2041 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002042 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002043 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002044 }
2045
2046 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002047
Chris Masone5e9a522009-06-10 15:17:02 -04002048 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002049 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002050 list_add(&device->dev_alloc_list,
2051 &root->fs_info->fs_devices->alloc_list);
2052 root->fs_info->fs_devices->num_devices++;
2053 root->fs_info->fs_devices->open_devices++;
2054 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002055 root->fs_info->fs_devices->total_devices++;
Josef Bacikd5e20032011-08-04 14:52:27 +00002056 if (device->can_discard)
2057 root->fs_info->fs_devices->num_can_discard++;
Yan Zheng2b820322008-11-17 21:11:30 -05002058 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2059
Josef Bacik2bf64752011-09-26 17:12:22 -04002060 spin_lock(&root->fs_info->free_chunk_lock);
2061 root->fs_info->free_chunk_space += device->total_bytes;
2062 spin_unlock(&root->fs_info->free_chunk_lock);
2063
Chris Masonc2898112009-06-10 09:51:32 -04002064 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2065 root->fs_info->fs_devices->rotating = 1;
2066
David Sterba6c417612011-04-13 15:41:04 +02002067 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
2068 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002069 total_bytes + device->total_bytes);
2070
David Sterba6c417612011-04-13 15:41:04 +02002071 total_bytes = btrfs_super_num_devices(root->fs_info->super_copy);
2072 btrfs_set_super_num_devices(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04002073 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04002074 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002075
Yan Zheng2b820322008-11-17 21:11:30 -05002076 if (seeding_dev) {
2077 ret = init_first_rw_device(trans, root, device);
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 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002083 if (ret) {
2084 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002085 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002086 }
Yan Zheng2b820322008-11-17 21:11:30 -05002087 } else {
2088 ret = btrfs_add_device(trans, root, device);
David Sterba005d6422012-09-18 07:52:32 -06002089 if (ret) {
2090 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002091 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002092 }
Yan Zheng2b820322008-11-17 21:11:30 -05002093 }
2094
Chris Mason913d9522009-03-10 13:17:18 -04002095 /*
2096 * we've got more storage, clear any full flags on the space
2097 * infos
2098 */
2099 btrfs_clear_space_info_full(root->fs_info);
2100
Chris Mason7d9eb122008-07-08 14:19:17 -04002101 unlock_chunks(root);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002102 root->fs_info->num_tolerated_disk_barrier_failures =
2103 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002104 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002105
2106 if (seeding_dev) {
2107 mutex_unlock(&uuid_mutex);
2108 up_write(&sb->s_umount);
2109
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002110 if (ret) /* transaction commit */
2111 return ret;
2112
Yan Zheng2b820322008-11-17 21:11:30 -05002113 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002114 if (ret < 0)
2115 btrfs_error(root->fs_info, ret,
2116 "Failed to relocate sys chunks after "
2117 "device initialization. This can be fixed "
2118 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002119 trans = btrfs_attach_transaction(root);
2120 if (IS_ERR(trans)) {
2121 if (PTR_ERR(trans) == -ENOENT)
2122 return 0;
2123 return PTR_ERR(trans);
2124 }
2125 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002126 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002127
Chris Mason788f20e2008-04-28 15:29:42 -04002128 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002129
2130error_trans:
2131 unlock_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002132 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002133 rcu_string_free(device->name);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002134 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002135error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002136 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002137 if (seeding_dev) {
2138 mutex_unlock(&uuid_mutex);
2139 up_write(&sb->s_umount);
2140 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002141 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002142}
2143
Stefan Behrense93c89c2012-11-05 17:33:06 +01002144int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
2145 struct btrfs_device **device_out)
2146{
2147 struct request_queue *q;
2148 struct btrfs_device *device;
2149 struct block_device *bdev;
2150 struct btrfs_fs_info *fs_info = root->fs_info;
2151 struct list_head *devices;
2152 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002153 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002154 int ret = 0;
2155
2156 *device_out = NULL;
2157 if (fs_info->fs_devices->seeding)
2158 return -EINVAL;
2159
2160 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2161 fs_info->bdev_holder);
2162 if (IS_ERR(bdev))
2163 return PTR_ERR(bdev);
2164
2165 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2166
2167 devices = &fs_info->fs_devices->devices;
2168 list_for_each_entry(device, devices, dev_list) {
2169 if (device->bdev == bdev) {
2170 ret = -EEXIST;
2171 goto error;
2172 }
2173 }
2174
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002175 device = btrfs_alloc_device(NULL, &devid, NULL);
2176 if (IS_ERR(device)) {
2177 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002178 goto error;
2179 }
2180
2181 name = rcu_string_strdup(device_path, GFP_NOFS);
2182 if (!name) {
2183 kfree(device);
2184 ret = -ENOMEM;
2185 goto error;
2186 }
2187 rcu_assign_pointer(device->name, name);
2188
2189 q = bdev_get_queue(bdev);
2190 if (blk_queue_discard(q))
2191 device->can_discard = 1;
2192 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2193 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002194 device->generation = 0;
2195 device->io_width = root->sectorsize;
2196 device->io_align = root->sectorsize;
2197 device->sector_size = root->sectorsize;
2198 device->total_bytes = i_size_read(bdev->bd_inode);
2199 device->disk_total_bytes = device->total_bytes;
2200 device->dev_root = fs_info->dev_root;
2201 device->bdev = bdev;
2202 device->in_fs_metadata = 1;
2203 device->is_tgtdev_for_dev_replace = 1;
2204 device->mode = FMODE_EXCL;
2205 set_blocksize(device->bdev, 4096);
2206 device->fs_devices = fs_info->fs_devices;
2207 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2208 fs_info->fs_devices->num_devices++;
2209 fs_info->fs_devices->open_devices++;
2210 if (device->can_discard)
2211 fs_info->fs_devices->num_can_discard++;
2212 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2213
2214 *device_out = device;
2215 return ret;
2216
2217error:
2218 blkdev_put(bdev, FMODE_EXCL);
2219 return ret;
2220}
2221
2222void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2223 struct btrfs_device *tgtdev)
2224{
2225 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2226 tgtdev->io_width = fs_info->dev_root->sectorsize;
2227 tgtdev->io_align = fs_info->dev_root->sectorsize;
2228 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2229 tgtdev->dev_root = fs_info->dev_root;
2230 tgtdev->in_fs_metadata = 1;
2231}
2232
Chris Masond3977122009-01-05 21:25:51 -05002233static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2234 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002235{
2236 int ret;
2237 struct btrfs_path *path;
2238 struct btrfs_root *root;
2239 struct btrfs_dev_item *dev_item;
2240 struct extent_buffer *leaf;
2241 struct btrfs_key key;
2242
2243 root = device->dev_root->fs_info->chunk_root;
2244
2245 path = btrfs_alloc_path();
2246 if (!path)
2247 return -ENOMEM;
2248
2249 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2250 key.type = BTRFS_DEV_ITEM_KEY;
2251 key.offset = device->devid;
2252
2253 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2254 if (ret < 0)
2255 goto out;
2256
2257 if (ret > 0) {
2258 ret = -ENOENT;
2259 goto out;
2260 }
2261
2262 leaf = path->nodes[0];
2263 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2264
2265 btrfs_set_device_id(leaf, dev_item, device->devid);
2266 btrfs_set_device_type(leaf, dev_item, device->type);
2267 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2268 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2269 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04002270 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04002271 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
2272 btrfs_mark_buffer_dirty(leaf);
2273
2274out:
2275 btrfs_free_path(path);
2276 return ret;
2277}
2278
Chris Mason7d9eb122008-07-08 14:19:17 -04002279static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002280 struct btrfs_device *device, u64 new_size)
2281{
2282 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002283 device->dev_root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002284 u64 old_total = btrfs_super_total_bytes(super_copy);
2285 u64 diff = new_size - device->total_bytes;
2286
Yan Zheng2b820322008-11-17 21:11:30 -05002287 if (!device->writeable)
2288 return -EACCES;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002289 if (new_size <= device->total_bytes ||
2290 device->is_tgtdev_for_dev_replace)
Yan Zheng2b820322008-11-17 21:11:30 -05002291 return -EINVAL;
2292
Chris Mason8f18cf12008-04-25 16:53:30 -04002293 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002294 device->fs_devices->total_rw_bytes += diff;
2295
2296 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04002297 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04002298 btrfs_clear_space_info_full(device->dev_root->fs_info);
2299
Chris Mason8f18cf12008-04-25 16:53:30 -04002300 return btrfs_update_device(trans, device);
2301}
2302
Chris Mason7d9eb122008-07-08 14:19:17 -04002303int btrfs_grow_device(struct btrfs_trans_handle *trans,
2304 struct btrfs_device *device, u64 new_size)
2305{
2306 int ret;
2307 lock_chunks(device->dev_root);
2308 ret = __btrfs_grow_device(trans, device, new_size);
2309 unlock_chunks(device->dev_root);
2310 return ret;
2311}
2312
Chris Mason8f18cf12008-04-25 16:53:30 -04002313static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
2314 struct btrfs_root *root,
2315 u64 chunk_tree, u64 chunk_objectid,
2316 u64 chunk_offset)
2317{
2318 int ret;
2319 struct btrfs_path *path;
2320 struct btrfs_key key;
2321
2322 root = root->fs_info->chunk_root;
2323 path = btrfs_alloc_path();
2324 if (!path)
2325 return -ENOMEM;
2326
2327 key.objectid = chunk_objectid;
2328 key.offset = chunk_offset;
2329 key.type = BTRFS_CHUNK_ITEM_KEY;
2330
2331 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002332 if (ret < 0)
2333 goto out;
2334 else if (ret > 0) { /* Logic error or corruption */
2335 btrfs_error(root->fs_info, -ENOENT,
2336 "Failed lookup while freeing chunk.");
2337 ret = -ENOENT;
2338 goto out;
2339 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002340
2341 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002342 if (ret < 0)
2343 btrfs_error(root->fs_info, ret,
2344 "Failed to delete chunk item.");
2345out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002346 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002347 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002348}
2349
Christoph Hellwigb2950862008-12-02 09:54:17 -05002350static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002351 chunk_offset)
2352{
David Sterba6c417612011-04-13 15:41:04 +02002353 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002354 struct btrfs_disk_key *disk_key;
2355 struct btrfs_chunk *chunk;
2356 u8 *ptr;
2357 int ret = 0;
2358 u32 num_stripes;
2359 u32 array_size;
2360 u32 len = 0;
2361 u32 cur;
2362 struct btrfs_key key;
2363
2364 array_size = btrfs_super_sys_array_size(super_copy);
2365
2366 ptr = super_copy->sys_chunk_array;
2367 cur = 0;
2368
2369 while (cur < array_size) {
2370 disk_key = (struct btrfs_disk_key *)ptr;
2371 btrfs_disk_key_to_cpu(&key, disk_key);
2372
2373 len = sizeof(*disk_key);
2374
2375 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2376 chunk = (struct btrfs_chunk *)(ptr + len);
2377 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2378 len += btrfs_chunk_item_size(num_stripes);
2379 } else {
2380 ret = -EIO;
2381 break;
2382 }
2383 if (key.objectid == chunk_objectid &&
2384 key.offset == chunk_offset) {
2385 memmove(ptr, ptr + len, array_size - (cur + len));
2386 array_size -= len;
2387 btrfs_set_super_sys_array_size(super_copy, array_size);
2388 } else {
2389 ptr += len;
2390 cur += len;
2391 }
2392 }
2393 return ret;
2394}
2395
Christoph Hellwigb2950862008-12-02 09:54:17 -05002396static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04002397 u64 chunk_tree, u64 chunk_objectid,
2398 u64 chunk_offset)
2399{
2400 struct extent_map_tree *em_tree;
2401 struct btrfs_root *extent_root;
2402 struct btrfs_trans_handle *trans;
2403 struct extent_map *em;
2404 struct map_lookup *map;
2405 int ret;
2406 int i;
2407
2408 root = root->fs_info->chunk_root;
2409 extent_root = root->fs_info->extent_root;
2410 em_tree = &root->fs_info->mapping_tree.map_tree;
2411
Josef Bacikba1bf482009-09-11 16:11:19 -04002412 ret = btrfs_can_relocate(extent_root, chunk_offset);
2413 if (ret)
2414 return -ENOSPC;
2415
Chris Mason8f18cf12008-04-25 16:53:30 -04002416 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04002417 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002418 if (ret)
2419 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002420
Yan, Zhenga22285a2010-05-16 10:48:46 -04002421 trans = btrfs_start_transaction(root, 0);
Liu Bo0f788c52013-03-04 16:25:40 +00002422 if (IS_ERR(trans)) {
2423 ret = PTR_ERR(trans);
2424 btrfs_std_error(root->fs_info, ret);
2425 return ret;
2426 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002427
Chris Mason7d9eb122008-07-08 14:19:17 -04002428 lock_chunks(root);
2429
Chris Mason8f18cf12008-04-25 16:53:30 -04002430 /*
2431 * step two, delete the device extents and the
2432 * chunk tree entries
2433 */
Chris Mason890871b2009-09-02 16:24:52 -04002434 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002435 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002436 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002437
Tsutomu Itoh285190d2012-02-16 16:23:58 +09002438 BUG_ON(!em || em->start > chunk_offset ||
Chris Masona061fc82008-05-07 11:43:44 -04002439 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002440 map = (struct map_lookup *)em->bdev;
2441
2442 for (i = 0; i < map->num_stripes; i++) {
2443 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
2444 map->stripes[i].physical);
2445 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04002446
Chris Masondfe25022008-05-13 13:46:40 -04002447 if (map->stripes[i].dev) {
2448 ret = btrfs_update_device(trans, map->stripes[i].dev);
2449 BUG_ON(ret);
2450 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002451 }
2452 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
2453 chunk_offset);
2454
2455 BUG_ON(ret);
2456
liubo1abe9b82011-03-24 11:18:59 +00002457 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2458
Chris Mason8f18cf12008-04-25 16:53:30 -04002459 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2460 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2461 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04002462 }
2463
Zheng Yan1a40e232008-09-26 10:09:34 -04002464 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
2465 BUG_ON(ret);
2466
Chris Mason890871b2009-09-02 16:24:52 -04002467 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002468 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002469 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04002470
Chris Mason8f18cf12008-04-25 16:53:30 -04002471 kfree(map);
2472 em->bdev = NULL;
2473
2474 /* once for the tree */
2475 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002476 /* once for us */
2477 free_extent_map(em);
2478
Chris Mason7d9eb122008-07-08 14:19:17 -04002479 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002480 btrfs_end_transaction(trans, root);
2481 return 0;
2482}
2483
Yan Zheng2b820322008-11-17 21:11:30 -05002484static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2485{
2486 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2487 struct btrfs_path *path;
2488 struct extent_buffer *leaf;
2489 struct btrfs_chunk *chunk;
2490 struct btrfs_key key;
2491 struct btrfs_key found_key;
2492 u64 chunk_tree = chunk_root->root_key.objectid;
2493 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002494 bool retried = false;
2495 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002496 int ret;
2497
2498 path = btrfs_alloc_path();
2499 if (!path)
2500 return -ENOMEM;
2501
Josef Bacikba1bf482009-09-11 16:11:19 -04002502again:
Yan Zheng2b820322008-11-17 21:11:30 -05002503 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2504 key.offset = (u64)-1;
2505 key.type = BTRFS_CHUNK_ITEM_KEY;
2506
2507 while (1) {
2508 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2509 if (ret < 0)
2510 goto error;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002511 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002512
2513 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2514 key.type);
2515 if (ret < 0)
2516 goto error;
2517 if (ret > 0)
2518 break;
2519
2520 leaf = path->nodes[0];
2521 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2522
2523 chunk = btrfs_item_ptr(leaf, path->slots[0],
2524 struct btrfs_chunk);
2525 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002526 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002527
2528 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
2529 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
2530 found_key.objectid,
2531 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002532 if (ret == -ENOSPC)
2533 failed++;
2534 else if (ret)
2535 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05002536 }
2537
2538 if (found_key.offset == 0)
2539 break;
2540 key.offset = found_key.offset - 1;
2541 }
2542 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002543 if (failed && !retried) {
2544 failed = 0;
2545 retried = true;
2546 goto again;
2547 } else if (failed && retried) {
2548 WARN_ON(1);
2549 ret = -ENOSPC;
2550 }
Yan Zheng2b820322008-11-17 21:11:30 -05002551error:
2552 btrfs_free_path(path);
2553 return ret;
2554}
2555
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002556static int insert_balance_item(struct btrfs_root *root,
2557 struct btrfs_balance_control *bctl)
2558{
2559 struct btrfs_trans_handle *trans;
2560 struct btrfs_balance_item *item;
2561 struct btrfs_disk_balance_args disk_bargs;
2562 struct btrfs_path *path;
2563 struct extent_buffer *leaf;
2564 struct btrfs_key key;
2565 int ret, err;
2566
2567 path = btrfs_alloc_path();
2568 if (!path)
2569 return -ENOMEM;
2570
2571 trans = btrfs_start_transaction(root, 0);
2572 if (IS_ERR(trans)) {
2573 btrfs_free_path(path);
2574 return PTR_ERR(trans);
2575 }
2576
2577 key.objectid = BTRFS_BALANCE_OBJECTID;
2578 key.type = BTRFS_BALANCE_ITEM_KEY;
2579 key.offset = 0;
2580
2581 ret = btrfs_insert_empty_item(trans, root, path, &key,
2582 sizeof(*item));
2583 if (ret)
2584 goto out;
2585
2586 leaf = path->nodes[0];
2587 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2588
2589 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2590
2591 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2592 btrfs_set_balance_data(leaf, item, &disk_bargs);
2593 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2594 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2595 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2596 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2597
2598 btrfs_set_balance_flags(leaf, item, bctl->flags);
2599
2600 btrfs_mark_buffer_dirty(leaf);
2601out:
2602 btrfs_free_path(path);
2603 err = btrfs_commit_transaction(trans, root);
2604 if (err && !ret)
2605 ret = err;
2606 return ret;
2607}
2608
2609static int del_balance_item(struct btrfs_root *root)
2610{
2611 struct btrfs_trans_handle *trans;
2612 struct btrfs_path *path;
2613 struct btrfs_key key;
2614 int ret, err;
2615
2616 path = btrfs_alloc_path();
2617 if (!path)
2618 return -ENOMEM;
2619
2620 trans = btrfs_start_transaction(root, 0);
2621 if (IS_ERR(trans)) {
2622 btrfs_free_path(path);
2623 return PTR_ERR(trans);
2624 }
2625
2626 key.objectid = BTRFS_BALANCE_OBJECTID;
2627 key.type = BTRFS_BALANCE_ITEM_KEY;
2628 key.offset = 0;
2629
2630 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2631 if (ret < 0)
2632 goto out;
2633 if (ret > 0) {
2634 ret = -ENOENT;
2635 goto out;
2636 }
2637
2638 ret = btrfs_del_item(trans, root, path);
2639out:
2640 btrfs_free_path(path);
2641 err = btrfs_commit_transaction(trans, root);
2642 if (err && !ret)
2643 ret = err;
2644 return ret;
2645}
2646
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002647/*
Ilya Dryomov59641012012-01-16 22:04:48 +02002648 * This is a heuristic used to reduce the number of chunks balanced on
2649 * resume after balance was interrupted.
2650 */
2651static void update_balance_args(struct btrfs_balance_control *bctl)
2652{
2653 /*
2654 * Turn on soft mode for chunk types that were being converted.
2655 */
2656 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
2657 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
2658 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
2659 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
2660 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
2661 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
2662
2663 /*
2664 * Turn on usage filter if is not already used. The idea is
2665 * that chunks that we have already balanced should be
2666 * reasonably full. Don't do it for chunks that are being
2667 * converted - that will keep us from relocating unconverted
2668 * (albeit full) chunks.
2669 */
2670 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2671 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2672 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
2673 bctl->data.usage = 90;
2674 }
2675 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2676 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2677 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
2678 bctl->sys.usage = 90;
2679 }
2680 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2681 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2682 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
2683 bctl->meta.usage = 90;
2684 }
2685}
2686
2687/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002688 * Should be called with both balance and volume mutexes held to
2689 * serialize other volume operations (add_dev/rm_dev/resize) with
2690 * restriper. Same goes for unset_balance_control.
2691 */
2692static void set_balance_control(struct btrfs_balance_control *bctl)
2693{
2694 struct btrfs_fs_info *fs_info = bctl->fs_info;
2695
2696 BUG_ON(fs_info->balance_ctl);
2697
2698 spin_lock(&fs_info->balance_lock);
2699 fs_info->balance_ctl = bctl;
2700 spin_unlock(&fs_info->balance_lock);
2701}
2702
2703static void unset_balance_control(struct btrfs_fs_info *fs_info)
2704{
2705 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
2706
2707 BUG_ON(!fs_info->balance_ctl);
2708
2709 spin_lock(&fs_info->balance_lock);
2710 fs_info->balance_ctl = NULL;
2711 spin_unlock(&fs_info->balance_lock);
2712
2713 kfree(bctl);
2714}
2715
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002716/*
2717 * Balance filters. Return 1 if chunk should be filtered out
2718 * (should not be balanced).
2719 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002720static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002721 struct btrfs_balance_args *bargs)
2722{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002723 chunk_type = chunk_to_extended(chunk_type) &
2724 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002725
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002726 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002727 return 0;
2728
2729 return 1;
2730}
2731
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002732static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
2733 struct btrfs_balance_args *bargs)
2734{
2735 struct btrfs_block_group_cache *cache;
2736 u64 chunk_used, user_thresh;
2737 int ret = 1;
2738
2739 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2740 chunk_used = btrfs_block_group_used(&cache->item);
2741
Ilya Dryomova105bb82013-01-21 15:15:56 +02002742 if (bargs->usage == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00002743 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02002744 else if (bargs->usage > 100)
2745 user_thresh = cache->key.offset;
2746 else
2747 user_thresh = div_factor_fine(cache->key.offset,
2748 bargs->usage);
2749
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002750 if (chunk_used < user_thresh)
2751 ret = 0;
2752
2753 btrfs_put_block_group(cache);
2754 return ret;
2755}
2756
Ilya Dryomov409d4042012-01-16 22:04:47 +02002757static int chunk_devid_filter(struct extent_buffer *leaf,
2758 struct btrfs_chunk *chunk,
2759 struct btrfs_balance_args *bargs)
2760{
2761 struct btrfs_stripe *stripe;
2762 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2763 int i;
2764
2765 for (i = 0; i < num_stripes; i++) {
2766 stripe = btrfs_stripe_nr(chunk, i);
2767 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
2768 return 0;
2769 }
2770
2771 return 1;
2772}
2773
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002774/* [pstart, pend) */
2775static int chunk_drange_filter(struct extent_buffer *leaf,
2776 struct btrfs_chunk *chunk,
2777 u64 chunk_offset,
2778 struct btrfs_balance_args *bargs)
2779{
2780 struct btrfs_stripe *stripe;
2781 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2782 u64 stripe_offset;
2783 u64 stripe_length;
2784 int factor;
2785 int i;
2786
2787 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
2788 return 0;
2789
2790 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05002791 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
2792 factor = num_stripes / 2;
2793 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
2794 factor = num_stripes - 1;
2795 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
2796 factor = num_stripes - 2;
2797 } else {
2798 factor = num_stripes;
2799 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002800
2801 for (i = 0; i < num_stripes; i++) {
2802 stripe = btrfs_stripe_nr(chunk, i);
2803 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
2804 continue;
2805
2806 stripe_offset = btrfs_stripe_offset(leaf, stripe);
2807 stripe_length = btrfs_chunk_length(leaf, chunk);
2808 do_div(stripe_length, factor);
2809
2810 if (stripe_offset < bargs->pend &&
2811 stripe_offset + stripe_length > bargs->pstart)
2812 return 0;
2813 }
2814
2815 return 1;
2816}
2817
Ilya Dryomovea671762012-01-16 22:04:48 +02002818/* [vstart, vend) */
2819static int chunk_vrange_filter(struct extent_buffer *leaf,
2820 struct btrfs_chunk *chunk,
2821 u64 chunk_offset,
2822 struct btrfs_balance_args *bargs)
2823{
2824 if (chunk_offset < bargs->vend &&
2825 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
2826 /* at least part of the chunk is inside this vrange */
2827 return 0;
2828
2829 return 1;
2830}
2831
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002832static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002833 struct btrfs_balance_args *bargs)
2834{
2835 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
2836 return 0;
2837
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002838 chunk_type = chunk_to_extended(chunk_type) &
2839 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002840
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002841 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002842 return 1;
2843
2844 return 0;
2845}
2846
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002847static int should_balance_chunk(struct btrfs_root *root,
2848 struct extent_buffer *leaf,
2849 struct btrfs_chunk *chunk, u64 chunk_offset)
2850{
2851 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
2852 struct btrfs_balance_args *bargs = NULL;
2853 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
2854
2855 /* type filter */
2856 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
2857 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
2858 return 0;
2859 }
2860
2861 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
2862 bargs = &bctl->data;
2863 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
2864 bargs = &bctl->sys;
2865 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
2866 bargs = &bctl->meta;
2867
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002868 /* profiles filter */
2869 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
2870 chunk_profiles_filter(chunk_type, bargs)) {
2871 return 0;
2872 }
2873
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002874 /* usage filter */
2875 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
2876 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
2877 return 0;
2878 }
2879
Ilya Dryomov409d4042012-01-16 22:04:47 +02002880 /* devid filter */
2881 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
2882 chunk_devid_filter(leaf, chunk, bargs)) {
2883 return 0;
2884 }
2885
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002886 /* drange filter, makes sense only with devid filter */
2887 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
2888 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
2889 return 0;
2890 }
2891
Ilya Dryomovea671762012-01-16 22:04:48 +02002892 /* vrange filter */
2893 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
2894 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
2895 return 0;
2896 }
2897
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002898 /* soft profile changing mode */
2899 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
2900 chunk_soft_convert_filter(chunk_type, bargs)) {
2901 return 0;
2902 }
2903
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002904 return 1;
2905}
2906
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002907static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04002908{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002909 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002910 struct btrfs_root *chunk_root = fs_info->chunk_root;
2911 struct btrfs_root *dev_root = fs_info->dev_root;
2912 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04002913 struct btrfs_device *device;
2914 u64 old_size;
2915 u64 size_to_free;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002916 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04002917 struct btrfs_path *path;
2918 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04002919 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002920 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002921 struct extent_buffer *leaf;
2922 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002923 int ret;
2924 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002925 bool counting = true;
Chris Masonec44a352008-04-28 15:29:52 -04002926
Chris Masonec44a352008-04-28 15:29:52 -04002927 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002928 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002929 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04002930 old_size = device->total_bytes;
2931 size_to_free = div_factor(old_size, 1);
2932 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05002933 if (!device->writeable ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01002934 device->total_bytes - device->bytes_used > size_to_free ||
2935 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04002936 continue;
2937
2938 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04002939 if (ret == -ENOSPC)
2940 break;
Chris Masonec44a352008-04-28 15:29:52 -04002941 BUG_ON(ret);
2942
Yan, Zhenga22285a2010-05-16 10:48:46 -04002943 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002944 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04002945
2946 ret = btrfs_grow_device(trans, device, old_size);
2947 BUG_ON(ret);
2948
2949 btrfs_end_transaction(trans, dev_root);
2950 }
2951
2952 /* step two, relocate all the chunks */
2953 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07002954 if (!path) {
2955 ret = -ENOMEM;
2956 goto error;
2957 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002958
2959 /* zero out stat counters */
2960 spin_lock(&fs_info->balance_lock);
2961 memset(&bctl->stat, 0, sizeof(bctl->stat));
2962 spin_unlock(&fs_info->balance_lock);
2963again:
Chris Masonec44a352008-04-28 15:29:52 -04002964 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2965 key.offset = (u64)-1;
2966 key.type = BTRFS_CHUNK_ITEM_KEY;
2967
Chris Masond3977122009-01-05 21:25:51 -05002968 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002969 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002970 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002971 ret = -ECANCELED;
2972 goto error;
2973 }
2974
Chris Masonec44a352008-04-28 15:29:52 -04002975 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2976 if (ret < 0)
2977 goto error;
2978
2979 /*
2980 * this shouldn't happen, it means the last relocate
2981 * failed
2982 */
2983 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002984 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04002985
2986 ret = btrfs_previous_item(chunk_root, path, 0,
2987 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002988 if (ret) {
2989 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04002990 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002991 }
Chris Mason7d9eb122008-07-08 14:19:17 -04002992
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002993 leaf = path->nodes[0];
2994 slot = path->slots[0];
2995 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2996
Chris Masonec44a352008-04-28 15:29:52 -04002997 if (found_key.objectid != key.objectid)
2998 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04002999
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003000 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3001
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003002 if (!counting) {
3003 spin_lock(&fs_info->balance_lock);
3004 bctl->stat.considered++;
3005 spin_unlock(&fs_info->balance_lock);
3006 }
3007
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003008 ret = should_balance_chunk(chunk_root, leaf, chunk,
3009 found_key.offset);
David Sterbab3b4aa72011-04-21 01:20:15 +02003010 btrfs_release_path(path);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003011 if (!ret)
3012 goto loop;
3013
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003014 if (counting) {
3015 spin_lock(&fs_info->balance_lock);
3016 bctl->stat.expected++;
3017 spin_unlock(&fs_info->balance_lock);
3018 goto loop;
3019 }
3020
Chris Masonec44a352008-04-28 15:29:52 -04003021 ret = btrfs_relocate_chunk(chunk_root,
3022 chunk_root->root_key.objectid,
3023 found_key.objectid,
3024 found_key.offset);
Josef Bacik508794e2011-07-02 21:24:41 +00003025 if (ret && ret != -ENOSPC)
3026 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003027 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003028 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003029 } else {
3030 spin_lock(&fs_info->balance_lock);
3031 bctl->stat.completed++;
3032 spin_unlock(&fs_info->balance_lock);
3033 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003034loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003035 if (found_key.offset == 0)
3036 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003037 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003038 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003039
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003040 if (counting) {
3041 btrfs_release_path(path);
3042 counting = false;
3043 goto again;
3044 }
Chris Masonec44a352008-04-28 15:29:52 -04003045error:
3046 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003047 if (enospc_errors) {
3048 printk(KERN_INFO "btrfs: %d enospc errors during balance\n",
3049 enospc_errors);
3050 if (!ret)
3051 ret = -ENOSPC;
3052 }
3053
Chris Masonec44a352008-04-28 15:29:52 -04003054 return ret;
3055}
3056
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003057/**
3058 * alloc_profile_is_valid - see if a given profile is valid and reduced
3059 * @flags: profile to validate
3060 * @extended: if true @flags is treated as an extended profile
3061 */
3062static int alloc_profile_is_valid(u64 flags, int extended)
3063{
3064 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3065 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3066
3067 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3068
3069 /* 1) check that all other bits are zeroed */
3070 if (flags & ~mask)
3071 return 0;
3072
3073 /* 2) see if profile is reduced */
3074 if (flags == 0)
3075 return !extended; /* "0" is valid for usual profiles */
3076
3077 /* true if exactly one bit set */
3078 return (flags & (flags - 1)) == 0;
3079}
3080
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003081static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3082{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003083 /* cancel requested || normal exit path */
3084 return atomic_read(&fs_info->balance_cancel_req) ||
3085 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3086 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003087}
3088
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003089static void __cancel_balance(struct btrfs_fs_info *fs_info)
3090{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003091 int ret;
3092
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003093 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003094 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003095 if (ret)
3096 btrfs_std_error(fs_info, ret);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003097
3098 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003099}
3100
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003101/*
3102 * Should be called with both balance and volume mutexes held
3103 */
3104int btrfs_balance(struct btrfs_balance_control *bctl,
3105 struct btrfs_ioctl_balance_args *bargs)
3106{
3107 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003108 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003109 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003110 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003111 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003112 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003113
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003114 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003115 atomic_read(&fs_info->balance_pause_req) ||
3116 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003117 ret = -EINVAL;
3118 goto out;
3119 }
3120
Ilya Dryomove4837f82012-03-27 17:09:17 +03003121 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3122 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3123 mixed = 1;
3124
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003125 /*
3126 * In case of mixed groups both data and meta should be picked,
3127 * and identical options should be given for both of them.
3128 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003129 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3130 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003131 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3132 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3133 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
3134 printk(KERN_ERR "btrfs: with mixed groups data and "
3135 "metadata balance options must be the same\n");
3136 ret = -EINVAL;
3137 goto out;
3138 }
3139 }
3140
Stefan Behrens8dabb742012-11-06 13:15:27 +01003141 num_devices = fs_info->fs_devices->num_devices;
3142 btrfs_dev_replace_lock(&fs_info->dev_replace);
3143 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3144 BUG_ON(num_devices < 1);
3145 num_devices--;
3146 }
3147 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003148 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003149 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003150 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003151 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003152 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003153 if (num_devices > 2)
3154 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3155 if (num_devices > 3)
3156 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3157 BTRFS_BLOCK_GROUP_RAID6);
Ilya Dryomov6728b192012-03-27 17:09:17 +03003158 if ((bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3159 (!alloc_profile_is_valid(bctl->data.target, 1) ||
3160 (bctl->data.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003161 printk(KERN_ERR "btrfs: unable to start balance with target "
3162 "data profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003163 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003164 ret = -EINVAL;
3165 goto out;
3166 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003167 if ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3168 (!alloc_profile_is_valid(bctl->meta.target, 1) ||
3169 (bctl->meta.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003170 printk(KERN_ERR "btrfs: unable to start balance with target "
3171 "metadata profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003172 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003173 ret = -EINVAL;
3174 goto out;
3175 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003176 if ((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3177 (!alloc_profile_is_valid(bctl->sys.target, 1) ||
3178 (bctl->sys.target & ~allowed))) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003179 printk(KERN_ERR "btrfs: unable to start balance with target "
3180 "system profile %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003181 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003182 ret = -EINVAL;
3183 goto out;
3184 }
3185
Ilya Dryomove4837f82012-03-27 17:09:17 +03003186 /* allow dup'ed data chunks only in mixed mode */
3187 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
Ilya Dryomov6728b192012-03-27 17:09:17 +03003188 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003189 printk(KERN_ERR "btrfs: dup for data is not allowed\n");
3190 ret = -EINVAL;
3191 goto out;
3192 }
3193
3194 /* allow to reduce meta or sys integrity only if force set */
3195 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003196 BTRFS_BLOCK_GROUP_RAID10 |
3197 BTRFS_BLOCK_GROUP_RAID5 |
3198 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003199 do {
3200 seq = read_seqbegin(&fs_info->profiles_lock);
3201
3202 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3203 (fs_info->avail_system_alloc_bits & allowed) &&
3204 !(bctl->sys.target & allowed)) ||
3205 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3206 (fs_info->avail_metadata_alloc_bits & allowed) &&
3207 !(bctl->meta.target & allowed))) {
3208 if (bctl->flags & BTRFS_BALANCE_FORCE) {
3209 printk(KERN_INFO "btrfs: force reducing metadata "
3210 "integrity\n");
3211 } else {
3212 printk(KERN_ERR "btrfs: balance will reduce metadata "
3213 "integrity, use force if you want this\n");
3214 ret = -EINVAL;
3215 goto out;
3216 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003217 }
Miao Xiede98ced2013-01-29 10:13:12 +00003218 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003219
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003220 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3221 int num_tolerated_disk_barrier_failures;
3222 u64 target = bctl->sys.target;
3223
3224 num_tolerated_disk_barrier_failures =
3225 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3226 if (num_tolerated_disk_barrier_failures > 0 &&
3227 (target &
3228 (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3229 BTRFS_AVAIL_ALLOC_BIT_SINGLE)))
3230 num_tolerated_disk_barrier_failures = 0;
3231 else if (num_tolerated_disk_barrier_failures > 1 &&
3232 (target &
3233 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)))
3234 num_tolerated_disk_barrier_failures = 1;
3235
3236 fs_info->num_tolerated_disk_barrier_failures =
3237 num_tolerated_disk_barrier_failures;
3238 }
3239
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003240 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003241 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003242 goto out;
3243
Ilya Dryomov59641012012-01-16 22:04:48 +02003244 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3245 BUG_ON(ret == -EEXIST);
3246 set_balance_control(bctl);
3247 } else {
3248 BUG_ON(ret != -EEXIST);
3249 spin_lock(&fs_info->balance_lock);
3250 update_balance_args(bctl);
3251 spin_unlock(&fs_info->balance_lock);
3252 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003253
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003254 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003255 mutex_unlock(&fs_info->balance_mutex);
3256
3257 ret = __btrfs_balance(fs_info);
3258
3259 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003260 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003261
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003262 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3263 fs_info->num_tolerated_disk_barrier_failures =
3264 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3265 }
3266
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003267 if (bargs) {
3268 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003269 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003270 }
3271
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003272 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3273 balance_need_close(fs_info)) {
3274 __cancel_balance(fs_info);
3275 }
3276
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003277 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003278
3279 return ret;
3280out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003281 if (bctl->flags & BTRFS_BALANCE_RESUME)
3282 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003283 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003284 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003285 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3286 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003287 return ret;
3288}
3289
3290static int balance_kthread(void *data)
3291{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003292 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003293 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003294
3295 mutex_lock(&fs_info->volume_mutex);
3296 mutex_lock(&fs_info->balance_mutex);
3297
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003298 if (fs_info->balance_ctl) {
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003299 printk(KERN_INFO "btrfs: continuing balance\n");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003300 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003301 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003302
3303 mutex_unlock(&fs_info->balance_mutex);
3304 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003305
Ilya Dryomov59641012012-01-16 22:04:48 +02003306 return ret;
3307}
3308
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003309int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3310{
3311 struct task_struct *tsk;
3312
3313 spin_lock(&fs_info->balance_lock);
3314 if (!fs_info->balance_ctl) {
3315 spin_unlock(&fs_info->balance_lock);
3316 return 0;
3317 }
3318 spin_unlock(&fs_info->balance_lock);
3319
3320 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
3321 printk(KERN_INFO "btrfs: force skipping balance\n");
3322 return 0;
3323 }
3324
3325 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Thomas Meyer97a184f2013-06-01 09:45:35 +00003326 return PTR_RET(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003327}
3328
Ilya Dryomov68310a52012-06-22 12:24:12 -06003329int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003330{
Ilya Dryomov59641012012-01-16 22:04:48 +02003331 struct btrfs_balance_control *bctl;
3332 struct btrfs_balance_item *item;
3333 struct btrfs_disk_balance_args disk_bargs;
3334 struct btrfs_path *path;
3335 struct extent_buffer *leaf;
3336 struct btrfs_key key;
3337 int ret;
3338
3339 path = btrfs_alloc_path();
3340 if (!path)
3341 return -ENOMEM;
3342
Ilya Dryomov68310a52012-06-22 12:24:12 -06003343 key.objectid = BTRFS_BALANCE_OBJECTID;
3344 key.type = BTRFS_BALANCE_ITEM_KEY;
3345 key.offset = 0;
3346
3347 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3348 if (ret < 0)
3349 goto out;
3350 if (ret > 0) { /* ret = -ENOENT; */
3351 ret = 0;
3352 goto out;
3353 }
3354
Ilya Dryomov59641012012-01-16 22:04:48 +02003355 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3356 if (!bctl) {
3357 ret = -ENOMEM;
3358 goto out;
3359 }
3360
Ilya Dryomov59641012012-01-16 22:04:48 +02003361 leaf = path->nodes[0];
3362 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3363
Ilya Dryomov68310a52012-06-22 12:24:12 -06003364 bctl->fs_info = fs_info;
3365 bctl->flags = btrfs_balance_flags(leaf, item);
3366 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003367
3368 btrfs_balance_data(leaf, item, &disk_bargs);
3369 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3370 btrfs_balance_meta(leaf, item, &disk_bargs);
3371 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3372 btrfs_balance_sys(leaf, item, &disk_bargs);
3373 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3374
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003375 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3376
Ilya Dryomov68310a52012-06-22 12:24:12 -06003377 mutex_lock(&fs_info->volume_mutex);
3378 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003379
Ilya Dryomov68310a52012-06-22 12:24:12 -06003380 set_balance_control(bctl);
3381
3382 mutex_unlock(&fs_info->balance_mutex);
3383 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003384out:
3385 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003386 return ret;
3387}
3388
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003389int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3390{
3391 int ret = 0;
3392
3393 mutex_lock(&fs_info->balance_mutex);
3394 if (!fs_info->balance_ctl) {
3395 mutex_unlock(&fs_info->balance_mutex);
3396 return -ENOTCONN;
3397 }
3398
3399 if (atomic_read(&fs_info->balance_running)) {
3400 atomic_inc(&fs_info->balance_pause_req);
3401 mutex_unlock(&fs_info->balance_mutex);
3402
3403 wait_event(fs_info->balance_wait_q,
3404 atomic_read(&fs_info->balance_running) == 0);
3405
3406 mutex_lock(&fs_info->balance_mutex);
3407 /* we are good with balance_ctl ripped off from under us */
3408 BUG_ON(atomic_read(&fs_info->balance_running));
3409 atomic_dec(&fs_info->balance_pause_req);
3410 } else {
3411 ret = -ENOTCONN;
3412 }
3413
3414 mutex_unlock(&fs_info->balance_mutex);
3415 return ret;
3416}
3417
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003418int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3419{
3420 mutex_lock(&fs_info->balance_mutex);
3421 if (!fs_info->balance_ctl) {
3422 mutex_unlock(&fs_info->balance_mutex);
3423 return -ENOTCONN;
3424 }
3425
3426 atomic_inc(&fs_info->balance_cancel_req);
3427 /*
3428 * if we are running just wait and return, balance item is
3429 * deleted in btrfs_balance in this case
3430 */
3431 if (atomic_read(&fs_info->balance_running)) {
3432 mutex_unlock(&fs_info->balance_mutex);
3433 wait_event(fs_info->balance_wait_q,
3434 atomic_read(&fs_info->balance_running) == 0);
3435 mutex_lock(&fs_info->balance_mutex);
3436 } else {
3437 /* __cancel_balance needs volume_mutex */
3438 mutex_unlock(&fs_info->balance_mutex);
3439 mutex_lock(&fs_info->volume_mutex);
3440 mutex_lock(&fs_info->balance_mutex);
3441
3442 if (fs_info->balance_ctl)
3443 __cancel_balance(fs_info);
3444
3445 mutex_unlock(&fs_info->volume_mutex);
3446 }
3447
3448 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3449 atomic_dec(&fs_info->balance_cancel_req);
3450 mutex_unlock(&fs_info->balance_mutex);
3451 return 0;
3452}
3453
Stefan Behrens803b2f52013-08-15 17:11:21 +02003454static int btrfs_uuid_scan_kthread(void *data)
3455{
3456 struct btrfs_fs_info *fs_info = data;
3457 struct btrfs_root *root = fs_info->tree_root;
3458 struct btrfs_key key;
3459 struct btrfs_key max_key;
3460 struct btrfs_path *path = NULL;
3461 int ret = 0;
3462 struct extent_buffer *eb;
3463 int slot;
3464 struct btrfs_root_item root_item;
3465 u32 item_size;
3466 struct btrfs_trans_handle *trans;
3467
3468 path = btrfs_alloc_path();
3469 if (!path) {
3470 ret = -ENOMEM;
3471 goto out;
3472 }
3473
3474 key.objectid = 0;
3475 key.type = BTRFS_ROOT_ITEM_KEY;
3476 key.offset = 0;
3477
3478 max_key.objectid = (u64)-1;
3479 max_key.type = BTRFS_ROOT_ITEM_KEY;
3480 max_key.offset = (u64)-1;
3481
3482 path->keep_locks = 1;
3483
3484 while (1) {
3485 ret = btrfs_search_forward(root, &key, &max_key, path, 0);
3486 if (ret) {
3487 if (ret > 0)
3488 ret = 0;
3489 break;
3490 }
3491
3492 if (key.type != BTRFS_ROOT_ITEM_KEY ||
3493 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
3494 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
3495 key.objectid > BTRFS_LAST_FREE_OBJECTID)
3496 goto skip;
3497
3498 eb = path->nodes[0];
3499 slot = path->slots[0];
3500 item_size = btrfs_item_size_nr(eb, slot);
3501 if (item_size < sizeof(root_item))
3502 goto skip;
3503
3504 trans = NULL;
3505 read_extent_buffer(eb, &root_item,
3506 btrfs_item_ptr_offset(eb, slot),
3507 (int)sizeof(root_item));
3508 if (btrfs_root_refs(&root_item) == 0)
3509 goto skip;
3510 if (!btrfs_is_empty_uuid(root_item.uuid)) {
3511 /*
3512 * 1 - subvol uuid item
3513 * 1 - received_subvol uuid item
3514 */
3515 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
3516 if (IS_ERR(trans)) {
3517 ret = PTR_ERR(trans);
3518 break;
3519 }
3520 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3521 root_item.uuid,
3522 BTRFS_UUID_KEY_SUBVOL,
3523 key.objectid);
3524 if (ret < 0) {
3525 pr_warn("btrfs: uuid_tree_add failed %d\n",
3526 ret);
3527 btrfs_end_transaction(trans,
3528 fs_info->uuid_root);
3529 break;
3530 }
3531 }
3532
3533 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
3534 if (!trans) {
3535 /* 1 - received_subvol uuid item */
3536 trans = btrfs_start_transaction(
3537 fs_info->uuid_root, 1);
3538 if (IS_ERR(trans)) {
3539 ret = PTR_ERR(trans);
3540 break;
3541 }
3542 }
3543 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3544 root_item.received_uuid,
3545 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
3546 key.objectid);
3547 if (ret < 0) {
3548 pr_warn("btrfs: uuid_tree_add failed %d\n",
3549 ret);
3550 btrfs_end_transaction(trans,
3551 fs_info->uuid_root);
3552 break;
3553 }
3554 }
3555
3556 if (trans) {
3557 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
3558 if (ret)
3559 break;
3560 }
3561
3562skip:
3563 btrfs_release_path(path);
3564 if (key.offset < (u64)-1) {
3565 key.offset++;
3566 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
3567 key.offset = 0;
3568 key.type = BTRFS_ROOT_ITEM_KEY;
3569 } else if (key.objectid < (u64)-1) {
3570 key.offset = 0;
3571 key.type = BTRFS_ROOT_ITEM_KEY;
3572 key.objectid++;
3573 } else {
3574 break;
3575 }
3576 cond_resched();
3577 }
3578
3579out:
3580 btrfs_free_path(path);
3581 if (ret)
3582 pr_warn("btrfs: btrfs_uuid_scan_kthread failed %d\n", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02003583 else
3584 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003585 up(&fs_info->uuid_tree_rescan_sem);
3586 return 0;
3587}
3588
Stefan Behrens70f80172013-08-15 17:11:23 +02003589/*
3590 * Callback for btrfs_uuid_tree_iterate().
3591 * returns:
3592 * 0 check succeeded, the entry is not outdated.
3593 * < 0 if an error occured.
3594 * > 0 if the check failed, which means the caller shall remove the entry.
3595 */
3596static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
3597 u8 *uuid, u8 type, u64 subid)
3598{
3599 struct btrfs_key key;
3600 int ret = 0;
3601 struct btrfs_root *subvol_root;
3602
3603 if (type != BTRFS_UUID_KEY_SUBVOL &&
3604 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
3605 goto out;
3606
3607 key.objectid = subid;
3608 key.type = BTRFS_ROOT_ITEM_KEY;
3609 key.offset = (u64)-1;
3610 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
3611 if (IS_ERR(subvol_root)) {
3612 ret = PTR_ERR(subvol_root);
3613 if (ret == -ENOENT)
3614 ret = 1;
3615 goto out;
3616 }
3617
3618 switch (type) {
3619 case BTRFS_UUID_KEY_SUBVOL:
3620 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
3621 ret = 1;
3622 break;
3623 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
3624 if (memcmp(uuid, subvol_root->root_item.received_uuid,
3625 BTRFS_UUID_SIZE))
3626 ret = 1;
3627 break;
3628 }
3629
3630out:
3631 return ret;
3632}
3633
3634static int btrfs_uuid_rescan_kthread(void *data)
3635{
3636 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
3637 int ret;
3638
3639 /*
3640 * 1st step is to iterate through the existing UUID tree and
3641 * to delete all entries that contain outdated data.
3642 * 2nd step is to add all missing entries to the UUID tree.
3643 */
3644 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
3645 if (ret < 0) {
3646 pr_warn("btrfs: iterating uuid_tree failed %d\n", ret);
3647 up(&fs_info->uuid_tree_rescan_sem);
3648 return ret;
3649 }
3650 return btrfs_uuid_scan_kthread(data);
3651}
3652
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003653int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
3654{
3655 struct btrfs_trans_handle *trans;
3656 struct btrfs_root *tree_root = fs_info->tree_root;
3657 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003658 struct task_struct *task;
3659 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003660
3661 /*
3662 * 1 - root node
3663 * 1 - root item
3664 */
3665 trans = btrfs_start_transaction(tree_root, 2);
3666 if (IS_ERR(trans))
3667 return PTR_ERR(trans);
3668
3669 uuid_root = btrfs_create_tree(trans, fs_info,
3670 BTRFS_UUID_TREE_OBJECTID);
3671 if (IS_ERR(uuid_root)) {
3672 btrfs_abort_transaction(trans, tree_root,
3673 PTR_ERR(uuid_root));
3674 return PTR_ERR(uuid_root);
3675 }
3676
3677 fs_info->uuid_root = uuid_root;
3678
Stefan Behrens803b2f52013-08-15 17:11:21 +02003679 ret = btrfs_commit_transaction(trans, tree_root);
3680 if (ret)
3681 return ret;
3682
3683 down(&fs_info->uuid_tree_rescan_sem);
3684 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
3685 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02003686 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Stefan Behrens803b2f52013-08-15 17:11:21 +02003687 pr_warn("btrfs: failed to start uuid_scan task\n");
3688 up(&fs_info->uuid_tree_rescan_sem);
3689 return PTR_ERR(task);
3690 }
3691
3692 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003693}
Stefan Behrens803b2f52013-08-15 17:11:21 +02003694
Stefan Behrens70f80172013-08-15 17:11:23 +02003695int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
3696{
3697 struct task_struct *task;
3698
3699 down(&fs_info->uuid_tree_rescan_sem);
3700 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
3701 if (IS_ERR(task)) {
3702 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
3703 pr_warn("btrfs: failed to start uuid_rescan task\n");
3704 up(&fs_info->uuid_tree_rescan_sem);
3705 return PTR_ERR(task);
3706 }
3707
3708 return 0;
3709}
3710
Chris Mason8f18cf12008-04-25 16:53:30 -04003711/*
3712 * shrinking a device means finding all of the device extents past
3713 * the new size, and then following the back refs to the chunks.
3714 * The chunk relocation code actually frees the device extent
3715 */
3716int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
3717{
3718 struct btrfs_trans_handle *trans;
3719 struct btrfs_root *root = device->dev_root;
3720 struct btrfs_dev_extent *dev_extent = NULL;
3721 struct btrfs_path *path;
3722 u64 length;
3723 u64 chunk_tree;
3724 u64 chunk_objectid;
3725 u64 chunk_offset;
3726 int ret;
3727 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04003728 int failed = 0;
3729 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04003730 struct extent_buffer *l;
3731 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02003732 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04003733 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04003734 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04003735 u64 diff = device->total_bytes - new_size;
3736
Stefan Behrens63a212a2012-11-05 18:29:28 +01003737 if (device->is_tgtdev_for_dev_replace)
3738 return -EINVAL;
3739
Chris Mason8f18cf12008-04-25 16:53:30 -04003740 path = btrfs_alloc_path();
3741 if (!path)
3742 return -ENOMEM;
3743
Chris Mason8f18cf12008-04-25 16:53:30 -04003744 path->reada = 2;
3745
Chris Mason7d9eb122008-07-08 14:19:17 -04003746 lock_chunks(root);
3747
Chris Mason8f18cf12008-04-25 16:53:30 -04003748 device->total_bytes = new_size;
Josef Bacik2bf64752011-09-26 17:12:22 -04003749 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05003750 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003751 spin_lock(&root->fs_info->free_chunk_lock);
3752 root->fs_info->free_chunk_space -= diff;
3753 spin_unlock(&root->fs_info->free_chunk_lock);
3754 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003755 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003756
Josef Bacikba1bf482009-09-11 16:11:19 -04003757again:
Chris Mason8f18cf12008-04-25 16:53:30 -04003758 key.objectid = device->devid;
3759 key.offset = (u64)-1;
3760 key.type = BTRFS_DEV_EXTENT_KEY;
3761
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003762 do {
Chris Mason8f18cf12008-04-25 16:53:30 -04003763 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3764 if (ret < 0)
3765 goto done;
3766
3767 ret = btrfs_previous_item(root, path, 0, key.type);
3768 if (ret < 0)
3769 goto done;
3770 if (ret) {
3771 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003772 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003773 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04003774 }
3775
3776 l = path->nodes[0];
3777 slot = path->slots[0];
3778 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
3779
Josef Bacikba1bf482009-09-11 16:11:19 -04003780 if (key.objectid != device->devid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003781 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04003782 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003783 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003784
3785 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3786 length = btrfs_dev_extent_length(l, dev_extent);
3787
Josef Bacikba1bf482009-09-11 16:11:19 -04003788 if (key.offset + length <= new_size) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003789 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04003790 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003791 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003792
3793 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
3794 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
3795 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02003796 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003797
3798 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
3799 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003800 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04003801 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04003802 if (ret == -ENOSPC)
3803 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003804 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04003805
3806 if (failed && !retried) {
3807 failed = 0;
3808 retried = true;
3809 goto again;
3810 } else if (failed && retried) {
3811 ret = -ENOSPC;
3812 lock_chunks(root);
3813
3814 device->total_bytes = old_size;
3815 if (device->writeable)
3816 device->fs_devices->total_rw_bytes += diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003817 spin_lock(&root->fs_info->free_chunk_lock);
3818 root->fs_info->free_chunk_space += diff;
3819 spin_unlock(&root->fs_info->free_chunk_lock);
Josef Bacikba1bf482009-09-11 16:11:19 -04003820 unlock_chunks(root);
3821 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04003822 }
3823
Chris Balld6397ba2009-04-27 07:29:03 -04003824 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003825 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003826 if (IS_ERR(trans)) {
3827 ret = PTR_ERR(trans);
3828 goto done;
3829 }
3830
Chris Balld6397ba2009-04-27 07:29:03 -04003831 lock_chunks(root);
3832
3833 device->disk_total_bytes = new_size;
3834 /* Now btrfs_update_device() will change the on-disk size. */
3835 ret = btrfs_update_device(trans, device);
3836 if (ret) {
3837 unlock_chunks(root);
3838 btrfs_end_transaction(trans, root);
3839 goto done;
3840 }
3841 WARN_ON(diff > old_total);
3842 btrfs_set_super_total_bytes(super_copy, old_total - diff);
3843 unlock_chunks(root);
3844 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003845done:
3846 btrfs_free_path(path);
3847 return ret;
3848}
3849
Li Zefan125ccb02011-12-08 15:07:24 +08003850static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003851 struct btrfs_key *key,
3852 struct btrfs_chunk *chunk, int item_size)
3853{
David Sterba6c417612011-04-13 15:41:04 +02003854 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04003855 struct btrfs_disk_key disk_key;
3856 u32 array_size;
3857 u8 *ptr;
3858
3859 array_size = btrfs_super_sys_array_size(super_copy);
3860 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
3861 return -EFBIG;
3862
3863 ptr = super_copy->sys_chunk_array + array_size;
3864 btrfs_cpu_key_to_disk(&disk_key, key);
3865 memcpy(ptr, &disk_key, sizeof(disk_key));
3866 ptr += sizeof(disk_key);
3867 memcpy(ptr, chunk, item_size);
3868 item_size += sizeof(disk_key);
3869 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
3870 return 0;
3871}
3872
Miao Xieb2117a32011-01-05 10:07:28 +00003873/*
Arne Jansen73c5de02011-04-12 12:07:57 +02003874 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00003875 */
Arne Jansen73c5de02011-04-12 12:07:57 +02003876static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00003877{
Arne Jansen73c5de02011-04-12 12:07:57 +02003878 const struct btrfs_device_info *di_a = a;
3879 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00003880
Arne Jansen73c5de02011-04-12 12:07:57 +02003881 if (di_a->max_avail > di_b->max_avail)
3882 return -1;
3883 if (di_a->max_avail < di_b->max_avail)
3884 return 1;
3885 if (di_a->total_avail > di_b->total_avail)
3886 return -1;
3887 if (di_a->total_avail < di_b->total_avail)
3888 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00003889 return 0;
3890}
3891
Eric Sandeen48a3b632013-04-25 20:41:01 +00003892static struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
Miao Xiee6ec7162013-01-17 05:38:51 +00003893 [BTRFS_RAID_RAID10] = {
3894 .sub_stripes = 2,
3895 .dev_stripes = 1,
3896 .devs_max = 0, /* 0 == as many as possible */
3897 .devs_min = 4,
3898 .devs_increment = 2,
3899 .ncopies = 2,
3900 },
3901 [BTRFS_RAID_RAID1] = {
3902 .sub_stripes = 1,
3903 .dev_stripes = 1,
3904 .devs_max = 2,
3905 .devs_min = 2,
3906 .devs_increment = 2,
3907 .ncopies = 2,
3908 },
3909 [BTRFS_RAID_DUP] = {
3910 .sub_stripes = 1,
3911 .dev_stripes = 2,
3912 .devs_max = 1,
3913 .devs_min = 1,
3914 .devs_increment = 1,
3915 .ncopies = 2,
3916 },
3917 [BTRFS_RAID_RAID0] = {
3918 .sub_stripes = 1,
3919 .dev_stripes = 1,
3920 .devs_max = 0,
3921 .devs_min = 2,
3922 .devs_increment = 1,
3923 .ncopies = 1,
3924 },
3925 [BTRFS_RAID_SINGLE] = {
3926 .sub_stripes = 1,
3927 .dev_stripes = 1,
3928 .devs_max = 1,
3929 .devs_min = 1,
3930 .devs_increment = 1,
3931 .ncopies = 1,
3932 },
Chris Masone942f882013-02-20 14:06:05 -05003933 [BTRFS_RAID_RAID5] = {
3934 .sub_stripes = 1,
3935 .dev_stripes = 1,
3936 .devs_max = 0,
3937 .devs_min = 2,
3938 .devs_increment = 1,
3939 .ncopies = 2,
3940 },
3941 [BTRFS_RAID_RAID6] = {
3942 .sub_stripes = 1,
3943 .dev_stripes = 1,
3944 .devs_max = 0,
3945 .devs_min = 3,
3946 .devs_increment = 1,
3947 .ncopies = 3,
3948 },
Liu Bo31e50222012-11-21 14:18:10 +00003949};
3950
David Woodhouse53b381b2013-01-29 18:40:14 -05003951static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
3952{
3953 /* TODO allow them to set a preferred stripe size */
3954 return 64 * 1024;
3955}
3956
3957static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
3958{
David Woodhouse53b381b2013-01-29 18:40:14 -05003959 if (!(type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)))
3960 return;
3961
Miao Xieceda0862013-04-11 10:30:16 +00003962 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05003963}
3964
Miao Xieb2117a32011-01-05 10:07:28 +00003965static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04003966 struct btrfs_root *extent_root, u64 start,
3967 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00003968{
3969 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00003970 struct btrfs_fs_devices *fs_devices = info->fs_devices;
3971 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02003972 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00003973 struct extent_map_tree *em_tree;
3974 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02003975 struct btrfs_device_info *devices_info = NULL;
3976 u64 total_avail;
3977 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05003978 int data_stripes; /* number of stripes that count for
3979 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02003980 int sub_stripes; /* sub_stripes info for map */
3981 int dev_stripes; /* stripes per dev */
3982 int devs_max; /* max devs to use */
3983 int devs_min; /* min devs needed */
3984 int devs_increment; /* ndevs has to be a multiple of this */
3985 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00003986 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02003987 u64 max_stripe_size;
3988 u64 max_chunk_size;
3989 u64 stripe_size;
3990 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05003991 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02003992 int ndevs;
3993 int i;
3994 int j;
Liu Bo31e50222012-11-21 14:18:10 +00003995 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00003996
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003997 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02003998
Miao Xieb2117a32011-01-05 10:07:28 +00003999 if (list_empty(&fs_devices->alloc_list))
4000 return -ENOSPC;
4001
Liu Bo31e50222012-11-21 14:18:10 +00004002 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004003
Liu Bo31e50222012-11-21 14:18:10 +00004004 sub_stripes = btrfs_raid_array[index].sub_stripes;
4005 dev_stripes = btrfs_raid_array[index].dev_stripes;
4006 devs_max = btrfs_raid_array[index].devs_max;
4007 devs_min = btrfs_raid_array[index].devs_min;
4008 devs_increment = btrfs_raid_array[index].devs_increment;
4009 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004010
4011 if (type & BTRFS_BLOCK_GROUP_DATA) {
4012 max_stripe_size = 1024 * 1024 * 1024;
4013 max_chunk_size = 10 * max_stripe_size;
4014 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004015 /* for larger filesystems, use larger metadata chunks */
4016 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
4017 max_stripe_size = 1024 * 1024 * 1024;
4018 else
4019 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004020 max_chunk_size = max_stripe_size;
4021 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05004022 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004023 max_chunk_size = 2 * max_stripe_size;
4024 } else {
4025 printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
4026 type);
4027 BUG_ON(1);
4028 }
4029
4030 /* we don't want a chunk larger than 10% of writeable space */
4031 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4032 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004033
4034 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
4035 GFP_NOFS);
4036 if (!devices_info)
4037 return -ENOMEM;
4038
Arne Jansen73c5de02011-04-12 12:07:57 +02004039 cur = fs_devices->alloc_list.next;
4040
4041 /*
4042 * in the first pass through the devices list, we gather information
4043 * about the available holes on each device.
4044 */
4045 ndevs = 0;
4046 while (cur != &fs_devices->alloc_list) {
4047 struct btrfs_device *device;
4048 u64 max_avail;
4049 u64 dev_offset;
4050
4051 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4052
4053 cur = cur->next;
4054
4055 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004056 WARN(1, KERN_ERR
Arne Jansen73c5de02011-04-12 12:07:57 +02004057 "btrfs: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004058 continue;
4059 }
4060
Stefan Behrens63a212a2012-11-05 18:29:28 +01004061 if (!device->in_fs_metadata ||
4062 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004063 continue;
4064
4065 if (device->total_bytes > device->bytes_used)
4066 total_avail = device->total_bytes - device->bytes_used;
4067 else
4068 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004069
4070 /* If there is no space on this device, skip it. */
4071 if (total_avail == 0)
4072 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004073
Josef Bacik6df9a952013-06-27 13:22:46 -04004074 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004075 max_stripe_size * dev_stripes,
4076 &dev_offset, &max_avail);
4077 if (ret && ret != -ENOSPC)
4078 goto error;
4079
4080 if (ret == 0)
4081 max_avail = max_stripe_size * dev_stripes;
4082
4083 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4084 continue;
4085
Eric Sandeen063d0062013-01-31 00:55:01 +00004086 if (ndevs == fs_devices->rw_devices) {
4087 WARN(1, "%s: found more than %llu devices\n",
4088 __func__, fs_devices->rw_devices);
4089 break;
4090 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004091 devices_info[ndevs].dev_offset = dev_offset;
4092 devices_info[ndevs].max_avail = max_avail;
4093 devices_info[ndevs].total_avail = total_avail;
4094 devices_info[ndevs].dev = device;
4095 ++ndevs;
4096 }
4097
4098 /*
4099 * now sort the devices by hole size / available space
4100 */
4101 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4102 btrfs_cmp_device_info, NULL);
4103
4104 /* round down to number of usable stripes */
4105 ndevs -= ndevs % devs_increment;
4106
4107 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4108 ret = -ENOSPC;
4109 goto error;
4110 }
4111
4112 if (devs_max && ndevs > devs_max)
4113 ndevs = devs_max;
4114 /*
4115 * the primary goal is to maximize the number of stripes, so use as many
4116 * devices as possible, even if the stripes are not maximum sized.
4117 */
4118 stripe_size = devices_info[ndevs-1].max_avail;
4119 num_stripes = ndevs * dev_stripes;
4120
David Woodhouse53b381b2013-01-29 18:40:14 -05004121 /*
4122 * this will have to be fixed for RAID1 and RAID10 over
4123 * more drives
4124 */
4125 data_stripes = num_stripes / ncopies;
4126
David Woodhouse53b381b2013-01-29 18:40:14 -05004127 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4128 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4129 btrfs_super_stripesize(info->super_copy));
4130 data_stripes = num_stripes - 1;
4131 }
4132 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4133 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4134 btrfs_super_stripesize(info->super_copy));
4135 data_stripes = num_stripes - 2;
4136 }
Chris Mason86db2572013-02-20 16:23:40 -05004137
4138 /*
4139 * Use the number of data stripes to figure out how big this chunk
4140 * is really going to be in terms of logical address space,
4141 * and compare that answer with the max chunk size
4142 */
4143 if (stripe_size * data_stripes > max_chunk_size) {
4144 u64 mask = (1ULL << 24) - 1;
4145 stripe_size = max_chunk_size;
4146 do_div(stripe_size, data_stripes);
4147
4148 /* bump the answer up to a 16MB boundary */
4149 stripe_size = (stripe_size + mask) & ~mask;
4150
4151 /* but don't go higher than the limits we found
4152 * while searching for free extents
4153 */
4154 if (stripe_size > devices_info[ndevs-1].max_avail)
4155 stripe_size = devices_info[ndevs-1].max_avail;
4156 }
4157
Arne Jansen73c5de02011-04-12 12:07:57 +02004158 do_div(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004159
4160 /* align to BTRFS_STRIPE_LEN */
David Woodhouse53b381b2013-01-29 18:40:14 -05004161 do_div(stripe_size, raid_stripe_len);
4162 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004163
Miao Xieb2117a32011-01-05 10:07:28 +00004164 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4165 if (!map) {
4166 ret = -ENOMEM;
4167 goto error;
4168 }
4169 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004170
Arne Jansen73c5de02011-04-12 12:07:57 +02004171 for (i = 0; i < ndevs; ++i) {
4172 for (j = 0; j < dev_stripes; ++j) {
4173 int s = i * dev_stripes + j;
4174 map->stripes[s].dev = devices_info[i].dev;
4175 map->stripes[s].physical = devices_info[i].dev_offset +
4176 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004177 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004178 }
Chris Mason593060d2008-03-25 16:50:33 -04004179 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004180 map->stripe_len = raid_stripe_len;
4181 map->io_align = raid_stripe_len;
4182 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004183 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004184 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004185
David Woodhouse53b381b2013-01-29 18:40:14 -05004186 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004187
Arne Jansen73c5de02011-04-12 12:07:57 +02004188 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004189
David Sterba172ddd62011-04-21 00:48:27 +02004190 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004191 if (!em) {
Miao Xieb2117a32011-01-05 10:07:28 +00004192 ret = -ENOMEM;
4193 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004194 }
Chris Mason0b86a832008-03-24 15:01:56 -04004195 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05004196 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004197 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004198 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004199 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004200 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004201
Chris Mason0b86a832008-03-24 15:01:56 -04004202 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004203 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004204 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004205 if (!ret) {
4206 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4207 atomic_inc(&em->refs);
4208 }
Chris Mason890871b2009-09-02 16:24:52 -04004209 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004210 if (ret) {
4211 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004212 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004213 }
Yan Zheng2b820322008-11-17 21:11:30 -05004214
Josef Bacik04487482013-01-29 15:03:37 -05004215 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4216 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4217 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004218 if (ret)
4219 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004220
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004221 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004222 check_raid56_incompat_flag(extent_root->fs_info, type);
4223
Miao Xieb2117a32011-01-05 10:07:28 +00004224 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004225 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004226
Josef Bacik6df9a952013-06-27 13:22:46 -04004227error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004228 write_lock(&em_tree->lock);
4229 remove_extent_mapping(em_tree, em);
4230 write_unlock(&em_tree->lock);
4231
4232 /* One for our allocation */
4233 free_extent_map(em);
4234 /* One for the tree reference */
4235 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004236error:
4237 kfree(map);
4238 kfree(devices_info);
4239 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004240}
4241
Josef Bacik6df9a952013-06-27 13:22:46 -04004242int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004243 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004244 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004245{
Yan Zheng2b820322008-11-17 21:11:30 -05004246 struct btrfs_key key;
4247 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4248 struct btrfs_device *device;
4249 struct btrfs_chunk *chunk;
4250 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004251 struct extent_map_tree *em_tree;
4252 struct extent_map *em;
4253 struct map_lookup *map;
4254 size_t item_size;
4255 u64 dev_offset;
4256 u64 stripe_size;
4257 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004258 int ret;
4259
Josef Bacik6df9a952013-06-27 13:22:46 -04004260 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4261 read_lock(&em_tree->lock);
4262 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4263 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004264
Josef Bacik6df9a952013-06-27 13:22:46 -04004265 if (!em) {
4266 btrfs_crit(extent_root->fs_info, "unable to find logical "
4267 "%Lu len %Lu", chunk_offset, chunk_size);
4268 return -EINVAL;
4269 }
4270
4271 if (em->start != chunk_offset || em->len != chunk_size) {
4272 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
4273 " %Lu-%Lu, found %Lu-%Lu\n", chunk_offset,
4274 chunk_size, em->start, em->len);
4275 free_extent_map(em);
4276 return -EINVAL;
4277 }
4278
4279 map = (struct map_lookup *)em->bdev;
4280 item_size = btrfs_chunk_item_size(map->num_stripes);
4281 stripe_size = em->orig_block_len;
4282
4283 chunk = kzalloc(item_size, GFP_NOFS);
4284 if (!chunk) {
4285 ret = -ENOMEM;
4286 goto out;
4287 }
4288
4289 for (i = 0; i < map->num_stripes; i++) {
4290 device = map->stripes[i].dev;
4291 dev_offset = map->stripes[i].physical;
4292
Yan Zheng2b820322008-11-17 21:11:30 -05004293 device->bytes_used += stripe_size;
4294 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004295 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004296 goto out;
4297 ret = btrfs_alloc_dev_extent(trans, device,
4298 chunk_root->root_key.objectid,
4299 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4300 chunk_offset, dev_offset,
4301 stripe_size);
4302 if (ret)
4303 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004304 }
4305
Josef Bacik2bf64752011-09-26 17:12:22 -04004306 spin_lock(&extent_root->fs_info->free_chunk_lock);
4307 extent_root->fs_info->free_chunk_space -= (stripe_size *
4308 map->num_stripes);
4309 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4310
Yan Zheng2b820322008-11-17 21:11:30 -05004311 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004312 for (i = 0; i < map->num_stripes; i++) {
4313 device = map->stripes[i].dev;
4314 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004315
4316 btrfs_set_stack_stripe_devid(stripe, device->devid);
4317 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4318 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4319 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004320 }
4321
4322 btrfs_set_stack_chunk_length(chunk, chunk_size);
4323 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4324 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4325 btrfs_set_stack_chunk_type(chunk, map->type);
4326 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4327 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4328 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4329 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4330 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4331
4332 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4333 key.type = BTRFS_CHUNK_ITEM_KEY;
4334 key.offset = chunk_offset;
4335
4336 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004337 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4338 /*
4339 * TODO: Cleanup of inserted chunk root in case of
4340 * failure.
4341 */
Li Zefan125ccb02011-12-08 15:07:24 +08004342 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004343 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004344 }
liubo1abe9b82011-03-24 11:18:59 +00004345
Josef Bacik6df9a952013-06-27 13:22:46 -04004346out:
Yan Zheng2b820322008-11-17 21:11:30 -05004347 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004348 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004349 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004350}
4351
4352/*
4353 * Chunk allocation falls into two parts. The first part does works
4354 * that make the new allocated chunk useable, but not do any operation
4355 * that modifies the chunk tree. The second part does the works that
4356 * require modifying the chunk tree. This division is important for the
4357 * bootstrap process of adding storage to a seed btrfs.
4358 */
4359int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4360 struct btrfs_root *extent_root, u64 type)
4361{
4362 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004363
Josef Bacik6df9a952013-06-27 13:22:46 -04004364 chunk_offset = find_next_chunk(extent_root->fs_info);
4365 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004366}
4367
Chris Masond3977122009-01-05 21:25:51 -05004368static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004369 struct btrfs_root *root,
4370 struct btrfs_device *device)
4371{
4372 u64 chunk_offset;
4373 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004374 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004375 struct btrfs_fs_info *fs_info = root->fs_info;
4376 struct btrfs_root *extent_root = fs_info->extent_root;
4377 int ret;
4378
Josef Bacik6df9a952013-06-27 13:22:46 -04004379 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004380 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004381 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4382 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004383 if (ret)
4384 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004385
Josef Bacik6df9a952013-06-27 13:22:46 -04004386 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004387 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004388 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4389 alloc_profile);
David Sterba005d6422012-09-18 07:52:32 -06004390 if (ret) {
4391 btrfs_abort_transaction(trans, root, ret);
4392 goto out;
4393 }
Yan Zheng2b820322008-11-17 21:11:30 -05004394
4395 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004396 if (ret)
David Sterba005d6422012-09-18 07:52:32 -06004397 btrfs_abort_transaction(trans, root, ret);
David Sterba005d6422012-09-18 07:52:32 -06004398out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004399 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004400}
4401
4402int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4403{
4404 struct extent_map *em;
4405 struct map_lookup *map;
4406 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4407 int readonly = 0;
4408 int i;
4409
Chris Mason890871b2009-09-02 16:24:52 -04004410 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004411 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004412 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004413 if (!em)
4414 return 1;
4415
Josef Bacikf48b9072010-01-27 02:07:59 +00004416 if (btrfs_test_opt(root, DEGRADED)) {
4417 free_extent_map(em);
4418 return 0;
4419 }
4420
Yan Zheng2b820322008-11-17 21:11:30 -05004421 map = (struct map_lookup *)em->bdev;
4422 for (i = 0; i < map->num_stripes; i++) {
4423 if (!map->stripes[i].dev->writeable) {
4424 readonly = 1;
4425 break;
4426 }
4427 }
4428 free_extent_map(em);
4429 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004430}
4431
4432void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4433{
David Sterbaa8067e02011-04-21 00:34:43 +02004434 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004435}
4436
4437void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4438{
4439 struct extent_map *em;
4440
Chris Masond3977122009-01-05 21:25:51 -05004441 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004442 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004443 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4444 if (em)
4445 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004446 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004447 if (!em)
4448 break;
4449 kfree(em->bdev);
4450 /* once for us */
4451 free_extent_map(em);
4452 /* once for the tree */
4453 free_extent_map(em);
4454 }
4455}
4456
Stefan Behrens5d964052012-11-05 14:59:07 +01004457int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04004458{
Stefan Behrens5d964052012-11-05 14:59:07 +01004459 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04004460 struct extent_map *em;
4461 struct map_lookup *map;
4462 struct extent_map_tree *em_tree = &map_tree->map_tree;
4463 int ret;
4464
Chris Mason890871b2009-09-02 16:24:52 -04004465 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004466 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04004467 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004468
Josef Bacikfb7669b2013-04-23 10:53:18 -04004469 /*
4470 * We could return errors for these cases, but that could get ugly and
4471 * we'd probably do the same thing which is just not do anything else
4472 * and exit, so return 1 so the callers don't try to use other copies.
4473 */
4474 if (!em) {
David Sterbaccf39f92013-07-11 15:41:11 +02004475 btrfs_crit(fs_info, "No mapping for %Lu-%Lu\n", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004476 logical+len);
4477 return 1;
4478 }
4479
4480 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02004481 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
Josef Bacikfb7669b2013-04-23 10:53:18 -04004482 "%Lu-%Lu\n", logical, logical+len, em->start,
4483 em->start + em->len);
4484 return 1;
4485 }
4486
Chris Masonf1885912008-04-09 16:28:12 -04004487 map = (struct map_lookup *)em->bdev;
4488 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
4489 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004490 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4491 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004492 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
4493 ret = 2;
4494 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4495 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04004496 else
4497 ret = 1;
4498 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004499
4500 btrfs_dev_replace_lock(&fs_info->dev_replace);
4501 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
4502 ret++;
4503 btrfs_dev_replace_unlock(&fs_info->dev_replace);
4504
Chris Masonf1885912008-04-09 16:28:12 -04004505 return ret;
4506}
4507
David Woodhouse53b381b2013-01-29 18:40:14 -05004508unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
4509 struct btrfs_mapping_tree *map_tree,
4510 u64 logical)
4511{
4512 struct extent_map *em;
4513 struct map_lookup *map;
4514 struct extent_map_tree *em_tree = &map_tree->map_tree;
4515 unsigned long len = root->sectorsize;
4516
4517 read_lock(&em_tree->lock);
4518 em = lookup_extent_mapping(em_tree, logical, len);
4519 read_unlock(&em_tree->lock);
4520 BUG_ON(!em);
4521
4522 BUG_ON(em->start > logical || em->start + em->len < logical);
4523 map = (struct map_lookup *)em->bdev;
4524 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4525 BTRFS_BLOCK_GROUP_RAID6)) {
4526 len = map->stripe_len * nr_data_stripes(map);
4527 }
4528 free_extent_map(em);
4529 return len;
4530}
4531
4532int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
4533 u64 logical, u64 len, int mirror_num)
4534{
4535 struct extent_map *em;
4536 struct map_lookup *map;
4537 struct extent_map_tree *em_tree = &map_tree->map_tree;
4538 int ret = 0;
4539
4540 read_lock(&em_tree->lock);
4541 em = lookup_extent_mapping(em_tree, logical, len);
4542 read_unlock(&em_tree->lock);
4543 BUG_ON(!em);
4544
4545 BUG_ON(em->start > logical || em->start + em->len < logical);
4546 map = (struct map_lookup *)em->bdev;
4547 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4548 BTRFS_BLOCK_GROUP_RAID6))
4549 ret = 1;
4550 free_extent_map(em);
4551 return ret;
4552}
4553
Stefan Behrens30d98612012-11-06 14:52:18 +01004554static int find_live_mirror(struct btrfs_fs_info *fs_info,
4555 struct map_lookup *map, int first, int num,
4556 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04004557{
4558 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01004559 int tolerance;
4560 struct btrfs_device *srcdev;
4561
4562 if (dev_replace_is_ongoing &&
4563 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
4564 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
4565 srcdev = fs_info->dev_replace.srcdev;
4566 else
4567 srcdev = NULL;
4568
4569 /*
4570 * try to avoid the drive that is the source drive for a
4571 * dev-replace procedure, only choose it if no other non-missing
4572 * mirror is available
4573 */
4574 for (tolerance = 0; tolerance < 2; tolerance++) {
4575 if (map->stripes[optimal].dev->bdev &&
4576 (tolerance || map->stripes[optimal].dev != srcdev))
4577 return optimal;
4578 for (i = first; i < first + num; i++) {
4579 if (map->stripes[i].dev->bdev &&
4580 (tolerance || map->stripes[i].dev != srcdev))
4581 return i;
4582 }
Chris Masondfe25022008-05-13 13:46:40 -04004583 }
Stefan Behrens30d98612012-11-06 14:52:18 +01004584
Chris Masondfe25022008-05-13 13:46:40 -04004585 /* we couldn't find one that doesn't fail. Just return something
4586 * and the io error handling code will clean up eventually
4587 */
4588 return optimal;
4589}
4590
David Woodhouse53b381b2013-01-29 18:40:14 -05004591static inline int parity_smaller(u64 a, u64 b)
4592{
4593 return a > b;
4594}
4595
4596/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
4597static void sort_parity_stripes(struct btrfs_bio *bbio, u64 *raid_map)
4598{
4599 struct btrfs_bio_stripe s;
4600 int i;
4601 u64 l;
4602 int again = 1;
4603
4604 while (again) {
4605 again = 0;
4606 for (i = 0; i < bbio->num_stripes - 1; i++) {
4607 if (parity_smaller(raid_map[i], raid_map[i+1])) {
4608 s = bbio->stripes[i];
4609 l = raid_map[i];
4610 bbio->stripes[i] = bbio->stripes[i+1];
4611 raid_map[i] = raid_map[i+1];
4612 bbio->stripes[i+1] = s;
4613 raid_map[i+1] = l;
4614 again = 1;
4615 }
4616 }
4617 }
4618}
4619
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004620static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04004621 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02004622 struct btrfs_bio **bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05004623 int mirror_num, u64 **raid_map_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04004624{
4625 struct extent_map *em;
4626 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004627 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04004628 struct extent_map_tree *em_tree = &map_tree->map_tree;
4629 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04004630 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004631 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04004632 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004633 u64 stripe_nr_orig;
4634 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05004635 u64 stripe_len;
4636 u64 *raid_map = NULL;
Chris Mason593060d2008-03-25 16:50:33 -04004637 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04004638 int i;
Li Zefande11cc12011-12-01 12:55:47 +08004639 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04004640 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04004641 int max_errors = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004642 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01004643 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
4644 int dev_replace_is_ongoing = 0;
4645 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004646 int patch_the_first_stripe_for_dev_replace = 0;
4647 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05004648 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04004649
Chris Mason890871b2009-09-02 16:24:52 -04004650 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004651 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04004652 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04004653
Chris Mason3b951512008-04-17 11:29:12 -04004654 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004655 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004656 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04004657 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04004658 }
Chris Mason0b86a832008-03-24 15:01:56 -04004659
Josef Bacik9bb91872013-04-19 23:45:33 -04004660 if (em->start > logical || em->start + em->len < logical) {
4661 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
4662 "found %Lu-%Lu\n", logical, em->start,
4663 em->start + em->len);
4664 return -EINVAL;
4665 }
4666
Chris Mason0b86a832008-03-24 15:01:56 -04004667 map = (struct map_lookup *)em->bdev;
4668 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04004669
David Woodhouse53b381b2013-01-29 18:40:14 -05004670 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004671 stripe_nr = offset;
4672 /*
4673 * stripe_nr counts the total number of stripes we have to stride
4674 * to get to this block
4675 */
David Woodhouse53b381b2013-01-29 18:40:14 -05004676 do_div(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04004677
David Woodhouse53b381b2013-01-29 18:40:14 -05004678 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004679 BUG_ON(offset < stripe_offset);
4680
4681 /* stripe_offset is the offset of this block in its stripe*/
4682 stripe_offset = offset - stripe_offset;
4683
David Woodhouse53b381b2013-01-29 18:40:14 -05004684 /* if we're here for raid56, we need to know the stripe aligned start */
4685 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4686 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
4687 raid56_full_stripe_start = offset;
4688
4689 /* allow a write of a full stripe, but make sure we don't
4690 * allow straddling of stripes
4691 */
4692 do_div(raid56_full_stripe_start, full_stripe_len);
4693 raid56_full_stripe_start *= full_stripe_len;
4694 }
4695
4696 if (rw & REQ_DISCARD) {
4697 /* we don't discard raid56 yet */
4698 if (map->type &
4699 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4700 ret = -EOPNOTSUPP;
4701 goto out;
4702 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00004703 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004704 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
4705 u64 max_len;
4706 /* For writes to RAID[56], allow a full stripeset across all disks.
4707 For other RAID types and for RAID[56] reads, just allow a single
4708 stripe (on a single disk). */
4709 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6) &&
4710 (rw & REQ_WRITE)) {
4711 max_len = stripe_len * nr_data_stripes(map) -
4712 (offset - raid56_full_stripe_start);
4713 } else {
4714 /* we limit the length of each bio to what fits in a stripe */
4715 max_len = stripe_len - stripe_offset;
4716 }
4717 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04004718 } else {
4719 *length = em->len - offset;
4720 }
Chris Masonf2d8d742008-04-21 10:03:05 -04004721
David Woodhouse53b381b2013-01-29 18:40:14 -05004722 /* This is for when we're called from btrfs_merge_bio_hook() and all
4723 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02004724 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04004725 goto out;
4726
Stefan Behrens472262f2012-11-06 14:43:46 +01004727 btrfs_dev_replace_lock(dev_replace);
4728 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
4729 if (!dev_replace_is_ongoing)
4730 btrfs_dev_replace_unlock(dev_replace);
4731
Stefan Behrensad6d6202012-11-06 15:06:47 +01004732 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
4733 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
4734 dev_replace->tgtdev != NULL) {
4735 /*
4736 * in dev-replace case, for repair case (that's the only
4737 * case where the mirror is selected explicitly when
4738 * calling btrfs_map_block), blocks left of the left cursor
4739 * can also be read from the target drive.
4740 * For REQ_GET_READ_MIRRORS, the target drive is added as
4741 * the last one to the array of stripes. For READ, it also
4742 * needs to be supported using the same mirror number.
4743 * If the requested block is not left of the left cursor,
4744 * EIO is returned. This can happen because btrfs_num_copies()
4745 * returns one more in the dev-replace case.
4746 */
4747 u64 tmp_length = *length;
4748 struct btrfs_bio *tmp_bbio = NULL;
4749 int tmp_num_stripes;
4750 u64 srcdev_devid = dev_replace->srcdev->devid;
4751 int index_srcdev = 0;
4752 int found = 0;
4753 u64 physical_of_found = 0;
4754
4755 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
David Woodhouse53b381b2013-01-29 18:40:14 -05004756 logical, &tmp_length, &tmp_bbio, 0, NULL);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004757 if (ret) {
4758 WARN_ON(tmp_bbio != NULL);
4759 goto out;
4760 }
4761
4762 tmp_num_stripes = tmp_bbio->num_stripes;
4763 if (mirror_num > tmp_num_stripes) {
4764 /*
4765 * REQ_GET_READ_MIRRORS does not contain this
4766 * mirror, that means that the requested area
4767 * is not left of the left cursor
4768 */
4769 ret = -EIO;
4770 kfree(tmp_bbio);
4771 goto out;
4772 }
4773
4774 /*
4775 * process the rest of the function using the mirror_num
4776 * of the source drive. Therefore look it up first.
4777 * At the end, patch the device pointer to the one of the
4778 * target drive.
4779 */
4780 for (i = 0; i < tmp_num_stripes; i++) {
4781 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
4782 /*
4783 * In case of DUP, in order to keep it
4784 * simple, only add the mirror with the
4785 * lowest physical address
4786 */
4787 if (found &&
4788 physical_of_found <=
4789 tmp_bbio->stripes[i].physical)
4790 continue;
4791 index_srcdev = i;
4792 found = 1;
4793 physical_of_found =
4794 tmp_bbio->stripes[i].physical;
4795 }
4796 }
4797
4798 if (found) {
4799 mirror_num = index_srcdev + 1;
4800 patch_the_first_stripe_for_dev_replace = 1;
4801 physical_to_patch_in_first_stripe = physical_of_found;
4802 } else {
4803 WARN_ON(1);
4804 ret = -EIO;
4805 kfree(tmp_bbio);
4806 goto out;
4807 }
4808
4809 kfree(tmp_bbio);
4810 } else if (mirror_num > map->num_stripes) {
4811 mirror_num = 0;
4812 }
4813
Chris Masonf2d8d742008-04-21 10:03:05 -04004814 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04004815 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004816 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00004817 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00004818 do_div(stripe_nr_end, map->stripe_len);
4819 stripe_end_offset = stripe_nr_end * map->stripe_len -
4820 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004821
Li Dongyangfce3bb92011-03-24 10:24:26 +00004822 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
4823 if (rw & REQ_DISCARD)
4824 num_stripes = min_t(u64, map->num_stripes,
4825 stripe_nr_end - stripe_nr_orig);
4826 stripe_index = do_div(stripe_nr, map->num_stripes);
4827 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004828 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004829 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04004830 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04004831 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004832 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01004833 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04004834 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01004835 current->pid % map->num_stripes,
4836 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004837 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004838 }
Chris Mason2fff7342008-04-29 14:12:09 -04004839
Chris Mason611f0e02008-04-03 16:29:03 -04004840 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004841 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04004842 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004843 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04004844 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004845 } else {
4846 mirror_num = 1;
4847 }
Chris Mason2fff7342008-04-29 14:12:09 -04004848
Chris Mason321aecc2008-04-16 10:49:51 -04004849 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
4850 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004851
4852 stripe_index = do_div(stripe_nr, factor);
4853 stripe_index *= map->sub_stripes;
4854
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01004855 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04004856 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004857 else if (rw & REQ_DISCARD)
4858 num_stripes = min_t(u64, map->sub_stripes *
4859 (stripe_nr_end - stripe_nr_orig),
4860 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04004861 else if (mirror_num)
4862 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04004863 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04004864 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01004865 stripe_index = find_live_mirror(fs_info, map,
4866 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04004867 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01004868 current->pid % map->sub_stripes,
4869 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04004870 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04004871 }
David Woodhouse53b381b2013-01-29 18:40:14 -05004872
4873 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4874 BTRFS_BLOCK_GROUP_RAID6)) {
4875 u64 tmp;
4876
4877 if (bbio_ret && ((rw & REQ_WRITE) || mirror_num > 1)
4878 && raid_map_ret) {
4879 int i, rot;
4880
4881 /* push stripe_nr back to the start of the full stripe */
4882 stripe_nr = raid56_full_stripe_start;
4883 do_div(stripe_nr, stripe_len);
4884
4885 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4886
4887 /* RAID[56] write or recovery. Return all stripes */
4888 num_stripes = map->num_stripes;
4889 max_errors = nr_parity_stripes(map);
4890
4891 raid_map = kmalloc(sizeof(u64) * num_stripes,
4892 GFP_NOFS);
4893 if (!raid_map) {
4894 ret = -ENOMEM;
4895 goto out;
4896 }
4897
4898 /* Work out the disk rotation on this stripe-set */
4899 tmp = stripe_nr;
4900 rot = do_div(tmp, num_stripes);
4901
4902 /* Fill in the logical address of each stripe */
4903 tmp = stripe_nr * nr_data_stripes(map);
4904 for (i = 0; i < nr_data_stripes(map); i++)
4905 raid_map[(i+rot) % num_stripes] =
4906 em->start + (tmp + i) * map->stripe_len;
4907
4908 raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
4909 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4910 raid_map[(i+rot+1) % num_stripes] =
4911 RAID6_Q_STRIPE;
4912
4913 *length = map->stripe_len;
4914 stripe_index = 0;
4915 stripe_offset = 0;
4916 } else {
4917 /*
4918 * Mirror #0 or #1 means the original data block.
4919 * Mirror #2 is RAID5 parity block.
4920 * Mirror #3 is RAID6 Q block.
4921 */
4922 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
4923 if (mirror_num > 1)
4924 stripe_index = nr_data_stripes(map) +
4925 mirror_num - 2;
4926
4927 /* We distribute the parity blocks across stripes */
4928 tmp = stripe_nr + stripe_index;
4929 stripe_index = do_div(tmp, map->num_stripes);
4930 }
Chris Mason8790d502008-04-03 16:29:03 -04004931 } else {
4932 /*
4933 * after this do_div call, stripe_nr is the number of stripes
4934 * on this device we have to walk to find the data, and
4935 * stripe_index is the number of our device in the stripe array
4936 */
4937 stripe_index = do_div(stripe_nr, map->num_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02004938 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04004939 }
Chris Mason593060d2008-03-25 16:50:33 -04004940 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04004941
Stefan Behrens472262f2012-11-06 14:43:46 +01004942 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004943 if (dev_replace_is_ongoing) {
4944 if (rw & (REQ_WRITE | REQ_DISCARD))
4945 num_alloc_stripes <<= 1;
4946 if (rw & REQ_GET_READ_MIRRORS)
4947 num_alloc_stripes++;
4948 }
Stefan Behrens472262f2012-11-06 14:43:46 +01004949 bbio = kzalloc(btrfs_bio_size(num_alloc_stripes), GFP_NOFS);
Li Zefande11cc12011-12-01 12:55:47 +08004950 if (!bbio) {
Dave Joneseb2067f2013-07-30 13:42:17 -04004951 kfree(raid_map);
Li Zefande11cc12011-12-01 12:55:47 +08004952 ret = -ENOMEM;
4953 goto out;
4954 }
4955 atomic_set(&bbio->error, 0);
4956
Li Dongyangfce3bb92011-03-24 10:24:26 +00004957 if (rw & REQ_DISCARD) {
Li Zefanec9ef7a2011-12-01 14:06:42 +08004958 int factor = 0;
4959 int sub_stripes = 0;
4960 u64 stripes_per_dev = 0;
4961 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04004962 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004963
4964 if (map->type &
4965 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
4966 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
4967 sub_stripes = 1;
4968 else
4969 sub_stripes = map->sub_stripes;
4970
4971 factor = map->num_stripes / sub_stripes;
4972 stripes_per_dev = div_u64_rem(stripe_nr_end -
4973 stripe_nr_orig,
4974 factor,
4975 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04004976 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
4977 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08004978 }
4979
Li Dongyangfce3bb92011-03-24 10:24:26 +00004980 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02004981 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04004982 map->stripes[stripe_index].physical +
4983 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004984 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004985
Li Zefanec9ef7a2011-12-01 14:06:42 +08004986 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
4987 BTRFS_BLOCK_GROUP_RAID10)) {
4988 bbio->stripes[i].length = stripes_per_dev *
4989 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04004990
Li Zefanec9ef7a2011-12-01 14:06:42 +08004991 if (i / sub_stripes < remaining_stripes)
4992 bbio->stripes[i].length +=
4993 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04004994
4995 /*
4996 * Special for the first stripe and
4997 * the last stripe:
4998 *
4999 * |-------|...|-------|
5000 * |----------|
5001 * off end_off
5002 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005003 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005004 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005005 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005006
5007 if (stripe_index >= last_stripe &&
5008 stripe_index <= (last_stripe +
5009 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005010 bbio->stripes[i].length -=
5011 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005012
Li Zefanec9ef7a2011-12-01 14:06:42 +08005013 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005014 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005015 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005016 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005017
5018 stripe_index++;
5019 if (stripe_index == map->num_stripes) {
5020 /* This could only happen for RAID0/10 */
5021 stripe_index = 0;
5022 stripe_nr++;
5023 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005024 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005025 } else {
5026 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005027 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005028 map->stripes[stripe_index].physical +
5029 stripe_offset +
5030 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005031 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005032 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005033 stripe_index++;
5034 }
Chris Mason593060d2008-03-25 16:50:33 -04005035 }
Li Zefande11cc12011-12-01 12:55:47 +08005036
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005037 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) {
Li Zefande11cc12011-12-01 12:55:47 +08005038 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5039 BTRFS_BLOCK_GROUP_RAID10 |
David Woodhouse53b381b2013-01-29 18:40:14 -05005040 BTRFS_BLOCK_GROUP_RAID5 |
Li Zefande11cc12011-12-01 12:55:47 +08005041 BTRFS_BLOCK_GROUP_DUP)) {
5042 max_errors = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005043 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5044 max_errors = 2;
Li Zefande11cc12011-12-01 12:55:47 +08005045 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005046 }
Li Zefande11cc12011-12-01 12:55:47 +08005047
Stefan Behrens472262f2012-11-06 14:43:46 +01005048 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5049 dev_replace->tgtdev != NULL) {
5050 int index_where_to_add;
5051 u64 srcdev_devid = dev_replace->srcdev->devid;
5052
5053 /*
5054 * duplicate the write operations while the dev replace
5055 * procedure is running. Since the copying of the old disk
5056 * to the new disk takes place at run time while the
5057 * filesystem is mounted writable, the regular write
5058 * operations to the old disk have to be duplicated to go
5059 * to the new disk as well.
5060 * Note that device->missing is handled by the caller, and
5061 * that the write to the old disk is already set up in the
5062 * stripes array.
5063 */
5064 index_where_to_add = num_stripes;
5065 for (i = 0; i < num_stripes; i++) {
5066 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5067 /* write to new disk, too */
5068 struct btrfs_bio_stripe *new =
5069 bbio->stripes + index_where_to_add;
5070 struct btrfs_bio_stripe *old =
5071 bbio->stripes + i;
5072
5073 new->physical = old->physical;
5074 new->length = old->length;
5075 new->dev = dev_replace->tgtdev;
5076 index_where_to_add++;
5077 max_errors++;
5078 }
5079 }
5080 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005081 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5082 dev_replace->tgtdev != NULL) {
5083 u64 srcdev_devid = dev_replace->srcdev->devid;
5084 int index_srcdev = 0;
5085 int found = 0;
5086 u64 physical_of_found = 0;
5087
5088 /*
5089 * During the dev-replace procedure, the target drive can
5090 * also be used to read data in case it is needed to repair
5091 * a corrupt block elsewhere. This is possible if the
5092 * requested area is left of the left cursor. In this area,
5093 * the target drive is a full copy of the source drive.
5094 */
5095 for (i = 0; i < num_stripes; i++) {
5096 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5097 /*
5098 * In case of DUP, in order to keep it
5099 * simple, only add the mirror with the
5100 * lowest physical address
5101 */
5102 if (found &&
5103 physical_of_found <=
5104 bbio->stripes[i].physical)
5105 continue;
5106 index_srcdev = i;
5107 found = 1;
5108 physical_of_found = bbio->stripes[i].physical;
5109 }
5110 }
5111 if (found) {
5112 u64 length = map->stripe_len;
5113
5114 if (physical_of_found + length <=
5115 dev_replace->cursor_left) {
5116 struct btrfs_bio_stripe *tgtdev_stripe =
5117 bbio->stripes + num_stripes;
5118
5119 tgtdev_stripe->physical = physical_of_found;
5120 tgtdev_stripe->length =
5121 bbio->stripes[index_srcdev].length;
5122 tgtdev_stripe->dev = dev_replace->tgtdev;
5123
5124 num_stripes++;
5125 }
5126 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005127 }
5128
Li Zefande11cc12011-12-01 12:55:47 +08005129 *bbio_ret = bbio;
5130 bbio->num_stripes = num_stripes;
5131 bbio->max_errors = max_errors;
5132 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005133
5134 /*
5135 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5136 * mirror_num == num_stripes + 1 && dev_replace target drive is
5137 * available as a mirror
5138 */
5139 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5140 WARN_ON(num_stripes > 1);
5141 bbio->stripes[0].dev = dev_replace->tgtdev;
5142 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5143 bbio->mirror_num = map->num_stripes + 1;
5144 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005145 if (raid_map) {
5146 sort_parity_stripes(bbio, raid_map);
5147 *raid_map_ret = raid_map;
5148 }
Chris Masoncea9e442008-04-09 16:28:12 -04005149out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005150 if (dev_replace_is_ongoing)
5151 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005152 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005153 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005154}
5155
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005156int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005157 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005158 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005159{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005160 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05005161 mirror_num, NULL);
Chris Masonf2d8d742008-04-21 10:03:05 -04005162}
5163
Yan Zhenga512bbf2008-12-08 16:46:26 -05005164int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5165 u64 chunk_start, u64 physical, u64 devid,
5166 u64 **logical, int *naddrs, int *stripe_len)
5167{
5168 struct extent_map_tree *em_tree = &map_tree->map_tree;
5169 struct extent_map *em;
5170 struct map_lookup *map;
5171 u64 *buf;
5172 u64 bytenr;
5173 u64 length;
5174 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005175 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005176 int i, j, nr = 0;
5177
Chris Mason890871b2009-09-02 16:24:52 -04005178 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005179 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005180 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005181
Josef Bacik835d9742013-03-19 12:13:25 -04005182 if (!em) {
5183 printk(KERN_ERR "btrfs: couldn't find em for chunk %Lu\n",
5184 chunk_start);
5185 return -EIO;
5186 }
5187
5188 if (em->start != chunk_start) {
5189 printk(KERN_ERR "btrfs: bad chunk start, em=%Lu, wanted=%Lu\n",
5190 em->start, chunk_start);
5191 free_extent_map(em);
5192 return -EIO;
5193 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005194 map = (struct map_lookup *)em->bdev;
5195
5196 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005197 rmap_len = map->stripe_len;
5198
Yan Zhenga512bbf2008-12-08 16:46:26 -05005199 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5200 do_div(length, map->num_stripes / map->sub_stripes);
5201 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5202 do_div(length, map->num_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05005203 else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
5204 BTRFS_BLOCK_GROUP_RAID6)) {
5205 do_div(length, nr_data_stripes(map));
5206 rmap_len = map->stripe_len * nr_data_stripes(map);
5207 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005208
5209 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005210 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005211
5212 for (i = 0; i < map->num_stripes; i++) {
5213 if (devid && map->stripes[i].dev->devid != devid)
5214 continue;
5215 if (map->stripes[i].physical > physical ||
5216 map->stripes[i].physical + length <= physical)
5217 continue;
5218
5219 stripe_nr = physical - map->stripes[i].physical;
5220 do_div(stripe_nr, map->stripe_len);
5221
5222 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5223 stripe_nr = stripe_nr * map->num_stripes + i;
5224 do_div(stripe_nr, map->sub_stripes);
5225 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5226 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005227 } /* else if RAID[56], multiply by nr_data_stripes().
5228 * Alternatively, just use rmap_len below instead of
5229 * map->stripe_len */
5230
5231 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005232 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005233 for (j = 0; j < nr; j++) {
5234 if (buf[j] == bytenr)
5235 break;
5236 }
Chris Mason934d3752008-12-08 16:43:10 -05005237 if (j == nr) {
5238 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005239 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005240 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005241 }
5242
Yan Zhenga512bbf2008-12-08 16:46:26 -05005243 *logical = buf;
5244 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005245 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005246
5247 free_extent_map(em);
5248 return 0;
5249}
5250
Jan Schmidta1d3c472011-08-04 17:15:33 +02005251static void btrfs_end_bio(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04005252{
Chris Mason9be33952013-05-17 18:30:14 -04005253 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005254 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005255
Stefan Behrens442a4f62012-05-25 16:06:08 +02005256 if (err) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005257 atomic_inc(&bbio->error);
Stefan Behrens442a4f62012-05-25 16:06:08 +02005258 if (err == -EIO || err == -EREMOTEIO) {
5259 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005260 btrfs_io_bio(bio)->stripe_index;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005261 struct btrfs_device *dev;
5262
5263 BUG_ON(stripe_index >= bbio->num_stripes);
5264 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005265 if (dev->bdev) {
5266 if (bio->bi_rw & WRITE)
5267 btrfs_dev_stat_inc(dev,
5268 BTRFS_DEV_STAT_WRITE_ERRS);
5269 else
5270 btrfs_dev_stat_inc(dev,
5271 BTRFS_DEV_STAT_READ_ERRS);
5272 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5273 btrfs_dev_stat_inc(dev,
5274 BTRFS_DEV_STAT_FLUSH_ERRS);
5275 btrfs_dev_stat_print_on_error(dev);
5276 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005277 }
5278 }
Chris Mason8790d502008-04-03 16:29:03 -04005279
Jan Schmidta1d3c472011-08-04 17:15:33 +02005280 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005281 is_orig_bio = 1;
5282
Jan Schmidta1d3c472011-08-04 17:15:33 +02005283 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005284 if (!is_orig_bio) {
5285 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005286 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005287 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005288 bio->bi_private = bbio->private;
5289 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005290 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005291 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005292 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005293 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005294 if (atomic_read(&bbio->error) > bbio->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04005295 err = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005296 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005297 /*
5298 * this bio is actually up to date, we didn't
5299 * go over the max number of errors
5300 */
5301 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04005302 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005303 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005304 kfree(bbio);
Chris Mason8790d502008-04-03 16:29:03 -04005305
5306 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005307 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005308 bio_put(bio);
5309 }
Chris Mason8790d502008-04-03 16:29:03 -04005310}
5311
Chris Mason8b712842008-06-11 16:50:36 -04005312struct async_sched {
5313 struct bio *bio;
5314 int rw;
5315 struct btrfs_fs_info *info;
5316 struct btrfs_work work;
5317};
5318
5319/*
5320 * see run_scheduled_bios for a description of why bios are collected for
5321 * async submit.
5322 *
5323 * This will add one bio to the pending list for a device and make sure
5324 * the work struct is scheduled.
5325 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005326static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5327 struct btrfs_device *device,
5328 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005329{
5330 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005331 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005332
David Woodhouse53b381b2013-01-29 18:40:14 -05005333 if (device->missing || !device->bdev) {
5334 bio_endio(bio, -EIO);
5335 return;
5336 }
5337
Chris Mason8b712842008-06-11 16:50:36 -04005338 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005339 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005340 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005341 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005342 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005343 return;
Chris Mason8b712842008-06-11 16:50:36 -04005344 }
5345
5346 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005347 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005348 * higher layers. Otherwise, the async bio makes it appear we have
5349 * made progress against dirty pages when we've really just put it
5350 * on a queue for later
5351 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005352 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005353 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005354 bio->bi_next = NULL;
5355 bio->bi_rw |= rw;
5356
5357 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005358 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005359 pending_bios = &device->pending_sync_bios;
5360 else
5361 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005362
Chris Masonffbd5172009-04-20 15:50:09 -04005363 if (pending_bios->tail)
5364 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005365
Chris Masonffbd5172009-04-20 15:50:09 -04005366 pending_bios->tail = bio;
5367 if (!pending_bios->head)
5368 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005369 if (device->running_pending)
5370 should_queue = 0;
5371
5372 spin_unlock(&device->io_lock);
5373
5374 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04005375 btrfs_queue_worker(&root->fs_info->submit_workers,
5376 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005377}
5378
Josef Bacikde1ee922012-10-19 16:50:56 -04005379static int bio_size_ok(struct block_device *bdev, struct bio *bio,
5380 sector_t sector)
5381{
5382 struct bio_vec *prev;
5383 struct request_queue *q = bdev_get_queue(bdev);
5384 unsigned short max_sectors = queue_max_sectors(q);
5385 struct bvec_merge_data bvm = {
5386 .bi_bdev = bdev,
5387 .bi_sector = sector,
5388 .bi_rw = bio->bi_rw,
5389 };
5390
5391 if (bio->bi_vcnt == 0) {
5392 WARN_ON(1);
5393 return 1;
5394 }
5395
5396 prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08005397 if (bio_sectors(bio) > max_sectors)
Josef Bacikde1ee922012-10-19 16:50:56 -04005398 return 0;
5399
5400 if (!q->merge_bvec_fn)
5401 return 1;
5402
5403 bvm.bi_size = bio->bi_size - prev->bv_len;
5404 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len)
5405 return 0;
5406 return 1;
5407}
5408
5409static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5410 struct bio *bio, u64 physical, int dev_nr,
5411 int rw, int async)
5412{
5413 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5414
5415 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005416 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005417 bio->bi_end_io = btrfs_end_bio;
5418 bio->bi_sector = physical >> 9;
5419#ifdef DEBUG
5420 {
5421 struct rcu_string *name;
5422
5423 rcu_read_lock();
5424 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005425 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005426 "(%s id %llu), size=%u\n", rw,
5427 (u64)bio->bi_sector, (u_long)dev->bdev->bd_dev,
5428 name->str, dev->devid, bio->bi_size);
5429 rcu_read_unlock();
5430 }
5431#endif
5432 bio->bi_bdev = dev->bdev;
5433 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05005434 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005435 else
5436 btrfsic_submit_bio(rw, bio);
5437}
5438
5439static int breakup_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5440 struct bio *first_bio, struct btrfs_device *dev,
5441 int dev_nr, int rw, int async)
5442{
5443 struct bio_vec *bvec = first_bio->bi_io_vec;
5444 struct bio *bio;
5445 int nr_vecs = bio_get_nr_vecs(dev->bdev);
5446 u64 physical = bbio->stripes[dev_nr].physical;
5447
5448again:
5449 bio = btrfs_bio_alloc(dev->bdev, physical >> 9, nr_vecs, GFP_NOFS);
5450 if (!bio)
5451 return -ENOMEM;
5452
5453 while (bvec <= (first_bio->bi_io_vec + first_bio->bi_vcnt - 1)) {
5454 if (bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5455 bvec->bv_offset) < bvec->bv_len) {
5456 u64 len = bio->bi_size;
5457
5458 atomic_inc(&bbio->stripes_pending);
5459 submit_stripe_bio(root, bbio, bio, physical, dev_nr,
5460 rw, async);
5461 physical += len;
5462 goto again;
5463 }
5464 bvec++;
5465 }
5466
5467 submit_stripe_bio(root, bbio, bio, physical, dev_nr, rw, async);
5468 return 0;
5469}
5470
5471static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
5472{
5473 atomic_inc(&bbio->error);
5474 if (atomic_dec_and_test(&bbio->stripes_pending)) {
5475 bio->bi_private = bbio->private;
5476 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005477 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Josef Bacikde1ee922012-10-19 16:50:56 -04005478 bio->bi_sector = logical >> 9;
5479 kfree(bbio);
5480 bio_endio(bio, -EIO);
5481 }
5482}
5483
Chris Masonf1885912008-04-09 16:28:12 -04005484int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04005485 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04005486{
Chris Mason0b86a832008-03-24 15:01:56 -04005487 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04005488 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04005489 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04005490 u64 length = 0;
5491 u64 map_length;
David Woodhouse53b381b2013-01-29 18:40:14 -05005492 u64 *raid_map = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005493 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04005494 int dev_nr = 0;
5495 int total_devs = 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005496 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005497
Chris Masonf2d8d742008-04-21 10:03:05 -04005498 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04005499 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04005500
David Woodhouse53b381b2013-01-29 18:40:14 -05005501 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
5502 mirror_num, &raid_map);
5503 if (ret) /* -ENOMEM */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005504 return ret;
Chris Masoncea9e442008-04-09 16:28:12 -04005505
Jan Schmidta1d3c472011-08-04 17:15:33 +02005506 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005507 bbio->orig_bio = first_bio;
5508 bbio->private = first_bio->bi_private;
5509 bbio->end_io = first_bio->bi_end_io;
5510 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
5511
5512 if (raid_map) {
5513 /* In this case, map_length has been set to the length of
5514 a single stripe; not the whole write */
5515 if (rw & WRITE) {
5516 return raid56_parity_write(root, bio, bbio,
5517 raid_map, map_length);
5518 } else {
5519 return raid56_parity_recover(root, bio, bbio,
5520 raid_map, map_length,
5521 mirror_num);
5522 }
5523 }
5524
Chris Masoncea9e442008-04-09 16:28:12 -04005525 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005526 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005527 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04005528 BUG();
5529 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005530
Chris Masond3977122009-01-05 21:25:51 -05005531 while (dev_nr < total_devs) {
Josef Bacikde1ee922012-10-19 16:50:56 -04005532 dev = bbio->stripes[dev_nr].dev;
5533 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
5534 bbio_error(bbio, first_bio, logical);
5535 dev_nr++;
5536 continue;
5537 }
5538
5539 /*
5540 * Check and see if we're ok with this bio based on it's size
5541 * and offset with the given device.
5542 */
5543 if (!bio_size_ok(dev->bdev, first_bio,
5544 bbio->stripes[dev_nr].physical >> 9)) {
5545 ret = breakup_stripe_bio(root, bbio, first_bio, dev,
5546 dev_nr, rw, async_submit);
5547 BUG_ON(ret);
5548 dev_nr++;
5549 continue;
5550 }
5551
Jan Schmidta1d3c472011-08-04 17:15:33 +02005552 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04005553 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005554 BUG_ON(!bio); /* -ENOMEM */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005555 } else {
5556 bio = first_bio;
Chris Mason8790d502008-04-03 16:29:03 -04005557 }
Josef Bacik606686e2012-06-04 14:03:51 -04005558
Josef Bacikde1ee922012-10-19 16:50:56 -04005559 submit_stripe_bio(root, bbio, bio,
5560 bbio->stripes[dev_nr].physical, dev_nr, rw,
5561 async_submit);
Chris Mason8790d502008-04-03 16:29:03 -04005562 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04005563 }
Chris Mason0b86a832008-03-24 15:01:56 -04005564 return 0;
5565}
5566
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005567struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05005568 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04005569{
Yan Zheng2b820322008-11-17 21:11:30 -05005570 struct btrfs_device *device;
5571 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04005572
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005573 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005574 while (cur_devices) {
5575 if (!fsid ||
5576 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5577 device = __find_device(&cur_devices->devices,
5578 devid, uuid);
5579 if (device)
5580 return device;
5581 }
5582 cur_devices = cur_devices->seed;
5583 }
5584 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005585}
5586
Chris Masondfe25022008-05-13 13:46:40 -04005587static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
5588 u64 devid, u8 *dev_uuid)
5589{
5590 struct btrfs_device *device;
5591 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
5592
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005593 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
5594 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05005595 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005596
5597 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005598 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04005599 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005600
5601 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05005602 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005603
Chris Masondfe25022008-05-13 13:46:40 -04005604 return device;
5605}
5606
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005607/**
5608 * btrfs_alloc_device - allocate struct btrfs_device
5609 * @fs_info: used only for generating a new devid, can be NULL if
5610 * devid is provided (i.e. @devid != NULL).
5611 * @devid: a pointer to devid for this device. If NULL a new devid
5612 * is generated.
5613 * @uuid: a pointer to UUID for this device. If NULL a new UUID
5614 * is generated.
5615 *
5616 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
5617 * on error. Returned struct is not linked onto any lists and can be
5618 * destroyed with kfree() right away.
5619 */
5620struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
5621 const u64 *devid,
5622 const u8 *uuid)
5623{
5624 struct btrfs_device *dev;
5625 u64 tmp;
5626
5627 if (!devid && !fs_info) {
5628 WARN_ON(1);
5629 return ERR_PTR(-EINVAL);
5630 }
5631
5632 dev = __alloc_device();
5633 if (IS_ERR(dev))
5634 return dev;
5635
5636 if (devid)
5637 tmp = *devid;
5638 else {
5639 int ret;
5640
5641 ret = find_next_devid(fs_info, &tmp);
5642 if (ret) {
5643 kfree(dev);
5644 return ERR_PTR(ret);
5645 }
5646 }
5647 dev->devid = tmp;
5648
5649 if (uuid)
5650 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
5651 else
5652 generate_random_uuid(dev->uuid);
5653
5654 dev->work.func = pending_bios_fn;
5655
5656 return dev;
5657}
5658
Chris Mason0b86a832008-03-24 15:01:56 -04005659static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
5660 struct extent_buffer *leaf,
5661 struct btrfs_chunk *chunk)
5662{
5663 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5664 struct map_lookup *map;
5665 struct extent_map *em;
5666 u64 logical;
5667 u64 length;
5668 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04005669 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04005670 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04005671 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04005672 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04005673
Chris Masone17cade2008-04-15 15:41:47 -04005674 logical = key->offset;
5675 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04005676
Chris Mason890871b2009-09-02 16:24:52 -04005677 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005678 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005679 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005680
5681 /* already mapped? */
5682 if (em && em->start <= logical && em->start + em->len > logical) {
5683 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04005684 return 0;
5685 } else if (em) {
5686 free_extent_map(em);
5687 }
Chris Mason0b86a832008-03-24 15:01:56 -04005688
David Sterba172ddd62011-04-21 00:48:27 +02005689 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04005690 if (!em)
5691 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04005692 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
5693 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04005694 if (!map) {
5695 free_extent_map(em);
5696 return -ENOMEM;
5697 }
5698
5699 em->bdev = (struct block_device *)map;
5700 em->start = logical;
5701 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04005702 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005703 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04005704 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04005705
Chris Mason593060d2008-03-25 16:50:33 -04005706 map->num_stripes = num_stripes;
5707 map->io_width = btrfs_chunk_io_width(leaf, chunk);
5708 map->io_align = btrfs_chunk_io_align(leaf, chunk);
5709 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
5710 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
5711 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04005712 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04005713 for (i = 0; i < num_stripes; i++) {
5714 map->stripes[i].physical =
5715 btrfs_stripe_offset_nr(leaf, chunk, i);
5716 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04005717 read_extent_buffer(leaf, uuid, (unsigned long)
5718 btrfs_stripe_dev_uuid_nr(chunk, i),
5719 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005720 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
5721 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04005722 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04005723 kfree(map);
5724 free_extent_map(em);
5725 return -EIO;
5726 }
Chris Masondfe25022008-05-13 13:46:40 -04005727 if (!map->stripes[i].dev) {
5728 map->stripes[i].dev =
5729 add_missing_dev(root, devid, uuid);
5730 if (!map->stripes[i].dev) {
5731 kfree(map);
5732 free_extent_map(em);
5733 return -EIO;
5734 }
5735 }
5736 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04005737 }
5738
Chris Mason890871b2009-09-02 16:24:52 -04005739 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005740 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04005741 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005742 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04005743 free_extent_map(em);
5744
5745 return 0;
5746}
5747
Jeff Mahoney143bede2012-03-01 14:56:26 +01005748static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04005749 struct btrfs_dev_item *dev_item,
5750 struct btrfs_device *device)
5751{
5752 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04005753
5754 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04005755 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
5756 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04005757 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
5758 device->type = btrfs_device_type(leaf, dev_item);
5759 device->io_align = btrfs_device_io_align(leaf, dev_item);
5760 device->io_width = btrfs_device_io_width(leaf, dev_item);
5761 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01005762 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01005763 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005764
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02005765 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04005766 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005767}
5768
Yan Zheng2b820322008-11-17 21:11:30 -05005769static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
5770{
5771 struct btrfs_fs_devices *fs_devices;
5772 int ret;
5773
Li Zefanb367e472011-12-07 11:38:24 +08005774 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05005775
5776 fs_devices = root->fs_info->fs_devices->seed;
5777 while (fs_devices) {
5778 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5779 ret = 0;
5780 goto out;
5781 }
5782 fs_devices = fs_devices->seed;
5783 }
5784
5785 fs_devices = find_fsid(fsid);
5786 if (!fs_devices) {
5787 ret = -ENOENT;
5788 goto out;
5789 }
Yan Zhenge4404d62008-12-12 10:03:26 -05005790
5791 fs_devices = clone_fs_devices(fs_devices);
5792 if (IS_ERR(fs_devices)) {
5793 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005794 goto out;
5795 }
5796
Christoph Hellwig97288f22008-12-02 06:36:09 -05005797 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05005798 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02005799 if (ret) {
5800 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005801 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02005802 }
Yan Zheng2b820322008-11-17 21:11:30 -05005803
5804 if (!fs_devices->seeding) {
5805 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005806 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05005807 ret = -EINVAL;
5808 goto out;
5809 }
5810
5811 fs_devices->seed = root->fs_info->fs_devices->seed;
5812 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005813out:
Yan Zheng2b820322008-11-17 21:11:30 -05005814 return ret;
5815}
5816
Chris Mason0d81ba52008-03-24 15:02:07 -04005817static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04005818 struct extent_buffer *leaf,
5819 struct btrfs_dev_item *dev_item)
5820{
5821 struct btrfs_device *device;
5822 u64 devid;
5823 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005824 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04005825 u8 dev_uuid[BTRFS_UUID_SIZE];
5826
Chris Mason0b86a832008-03-24 15:01:56 -04005827 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02005828 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04005829 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02005830 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05005831 BTRFS_UUID_SIZE);
5832
5833 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
5834 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05005835 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005836 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005837 }
5838
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005839 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05005840 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05005841 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05005842 return -EIO;
5843
5844 if (!device) {
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005845 btrfs_warn(root->fs_info, "devid %llu missing", devid);
Yan Zheng2b820322008-11-17 21:11:30 -05005846 device = add_missing_dev(root, devid, dev_uuid);
5847 if (!device)
5848 return -ENOMEM;
Chris Masoncd02dca2010-12-13 14:56:23 -05005849 } else if (!device->missing) {
5850 /*
5851 * this happens when a device that was properly setup
5852 * in the device info lists suddenly goes bad.
5853 * device->bdev is NULL, and so we have to set
5854 * device->missing to one here
5855 */
5856 root->fs_info->fs_devices->missing_devices++;
5857 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05005858 }
5859 }
5860
5861 if (device->fs_devices != root->fs_info->fs_devices) {
5862 BUG_ON(device->writeable);
5863 if (device->generation !=
5864 btrfs_device_generation(leaf, dev_item))
5865 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04005866 }
Chris Mason0b86a832008-03-24 15:01:56 -04005867
5868 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04005869 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01005870 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05005871 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04005872 spin_lock(&root->fs_info->free_chunk_lock);
5873 root->fs_info->free_chunk_space += device->total_bytes -
5874 device->bytes_used;
5875 spin_unlock(&root->fs_info->free_chunk_lock);
5876 }
Chris Mason0b86a832008-03-24 15:01:56 -04005877 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005878 return ret;
5879}
5880
Yan Zhenge4404d62008-12-12 10:03:26 -05005881int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04005882{
David Sterba6c417612011-04-13 15:41:04 +02005883 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04005884 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04005885 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04005886 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04005887 u8 *ptr;
5888 unsigned long sb_ptr;
5889 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005890 u32 num_stripes;
5891 u32 array_size;
5892 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005893 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04005894 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04005895
Yan Zhenge4404d62008-12-12 10:03:26 -05005896 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04005897 BTRFS_SUPER_INFO_SIZE);
5898 if (!sb)
5899 return -ENOMEM;
5900 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04005901 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02005902 /*
5903 * The sb extent buffer is artifical and just used to read the system array.
5904 * btrfs_set_buffer_uptodate() call does not properly mark all it's
5905 * pages up-to-date when the page is larger: extent does not cover the
5906 * whole page and consequently check_page_uptodate does not find all
5907 * the page's extents up-to-date (the hole beyond sb),
5908 * write_extent_buffer then triggers a WARN_ON.
5909 *
5910 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
5911 * but sb spans only this function. Add an explicit SetPageUptodate call
5912 * to silence the warning eg. on PowerPC 64.
5913 */
5914 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04005915 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05005916
Chris Masona061fc82008-05-07 11:43:44 -04005917 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04005918 array_size = btrfs_super_sys_array_size(super_copy);
5919
Chris Mason0b86a832008-03-24 15:01:56 -04005920 ptr = super_copy->sys_chunk_array;
5921 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
5922 cur = 0;
5923
5924 while (cur < array_size) {
5925 disk_key = (struct btrfs_disk_key *)ptr;
5926 btrfs_disk_key_to_cpu(&key, disk_key);
5927
Chris Masona061fc82008-05-07 11:43:44 -04005928 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04005929 sb_ptr += len;
5930 cur += len;
5931
Chris Mason0d81ba52008-03-24 15:02:07 -04005932 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04005933 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04005934 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04005935 if (ret)
5936 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005937 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
5938 len = btrfs_chunk_item_size(num_stripes);
5939 } else {
Chris Mason84eed902008-04-25 09:04:37 -04005940 ret = -EIO;
5941 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005942 }
5943 ptr += len;
5944 sb_ptr += len;
5945 cur += len;
5946 }
Chris Masona061fc82008-05-07 11:43:44 -04005947 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04005948 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005949}
5950
5951int btrfs_read_chunk_tree(struct btrfs_root *root)
5952{
5953 struct btrfs_path *path;
5954 struct extent_buffer *leaf;
5955 struct btrfs_key key;
5956 struct btrfs_key found_key;
5957 int ret;
5958 int slot;
5959
5960 root = root->fs_info->chunk_root;
5961
5962 path = btrfs_alloc_path();
5963 if (!path)
5964 return -ENOMEM;
5965
Li Zefanb367e472011-12-07 11:38:24 +08005966 mutex_lock(&uuid_mutex);
5967 lock_chunks(root);
5968
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005969 /*
5970 * Read all device items, and then all the chunk items. All
5971 * device items are found before any chunk item (their object id
5972 * is smaller than the lowest possible object id for a chunk
5973 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04005974 */
5975 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
5976 key.offset = 0;
5977 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04005978 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00005979 if (ret < 0)
5980 goto error;
Chris Masond3977122009-01-05 21:25:51 -05005981 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005982 leaf = path->nodes[0];
5983 slot = path->slots[0];
5984 if (slot >= btrfs_header_nritems(leaf)) {
5985 ret = btrfs_next_leaf(root, path);
5986 if (ret == 0)
5987 continue;
5988 if (ret < 0)
5989 goto error;
5990 break;
5991 }
5992 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005993 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
5994 struct btrfs_dev_item *dev_item;
5995 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04005996 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01005997 ret = read_one_dev(root, leaf, dev_item);
5998 if (ret)
5999 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006000 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6001 struct btrfs_chunk *chunk;
6002 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6003 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006004 if (ret)
6005 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006006 }
6007 path->slots[0]++;
6008 }
Chris Mason0b86a832008-03-24 15:01:56 -04006009 ret = 0;
6010error:
Li Zefanb367e472011-12-07 11:38:24 +08006011 unlock_chunks(root);
6012 mutex_unlock(&uuid_mutex);
6013
Yan Zheng2b820322008-11-17 21:11:30 -05006014 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006015 return ret;
6016}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006017
Miao Xiecb517ea2013-05-15 07:48:19 +00006018void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6019{
6020 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6021 struct btrfs_device *device;
6022
6023 mutex_lock(&fs_devices->device_list_mutex);
6024 list_for_each_entry(device, &fs_devices->devices, dev_list)
6025 device->dev_root = fs_info->dev_root;
6026 mutex_unlock(&fs_devices->device_list_mutex);
6027}
6028
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006029static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6030{
6031 int i;
6032
6033 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6034 btrfs_dev_stat_reset(dev, i);
6035}
6036
6037int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6038{
6039 struct btrfs_key key;
6040 struct btrfs_key found_key;
6041 struct btrfs_root *dev_root = fs_info->dev_root;
6042 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6043 struct extent_buffer *eb;
6044 int slot;
6045 int ret = 0;
6046 struct btrfs_device *device;
6047 struct btrfs_path *path = NULL;
6048 int i;
6049
6050 path = btrfs_alloc_path();
6051 if (!path) {
6052 ret = -ENOMEM;
6053 goto out;
6054 }
6055
6056 mutex_lock(&fs_devices->device_list_mutex);
6057 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6058 int item_size;
6059 struct btrfs_dev_stats_item *ptr;
6060
6061 key.objectid = 0;
6062 key.type = BTRFS_DEV_STATS_KEY;
6063 key.offset = device->devid;
6064 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6065 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006066 __btrfs_reset_dev_stats(device);
6067 device->dev_stats_valid = 1;
6068 btrfs_release_path(path);
6069 continue;
6070 }
6071 slot = path->slots[0];
6072 eb = path->nodes[0];
6073 btrfs_item_key_to_cpu(eb, &found_key, slot);
6074 item_size = btrfs_item_size_nr(eb, slot);
6075
6076 ptr = btrfs_item_ptr(eb, slot,
6077 struct btrfs_dev_stats_item);
6078
6079 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6080 if (item_size >= (1 + i) * sizeof(__le64))
6081 btrfs_dev_stat_set(device, i,
6082 btrfs_dev_stats_value(eb, ptr, i));
6083 else
6084 btrfs_dev_stat_reset(device, i);
6085 }
6086
6087 device->dev_stats_valid = 1;
6088 btrfs_dev_stat_print_on_load(device);
6089 btrfs_release_path(path);
6090 }
6091 mutex_unlock(&fs_devices->device_list_mutex);
6092
6093out:
6094 btrfs_free_path(path);
6095 return ret < 0 ? ret : 0;
6096}
6097
6098static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6099 struct btrfs_root *dev_root,
6100 struct btrfs_device *device)
6101{
6102 struct btrfs_path *path;
6103 struct btrfs_key key;
6104 struct extent_buffer *eb;
6105 struct btrfs_dev_stats_item *ptr;
6106 int ret;
6107 int i;
6108
6109 key.objectid = 0;
6110 key.type = BTRFS_DEV_STATS_KEY;
6111 key.offset = device->devid;
6112
6113 path = btrfs_alloc_path();
6114 BUG_ON(!path);
6115 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6116 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006117 printk_in_rcu(KERN_WARNING "btrfs: error %d while searching for dev_stats item for device %s!\n",
6118 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006119 goto out;
6120 }
6121
6122 if (ret == 0 &&
6123 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6124 /* need to delete old one and insert a new one */
6125 ret = btrfs_del_item(trans, dev_root, path);
6126 if (ret != 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006127 printk_in_rcu(KERN_WARNING "btrfs: delete too small dev_stats item for device %s failed %d!\n",
6128 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006129 goto out;
6130 }
6131 ret = 1;
6132 }
6133
6134 if (ret == 1) {
6135 /* need to insert a new item */
6136 btrfs_release_path(path);
6137 ret = btrfs_insert_empty_item(trans, dev_root, path,
6138 &key, sizeof(*ptr));
6139 if (ret < 0) {
Josef Bacik606686e2012-06-04 14:03:51 -04006140 printk_in_rcu(KERN_WARNING "btrfs: insert dev_stats item for device %s failed %d!\n",
6141 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006142 goto out;
6143 }
6144 }
6145
6146 eb = path->nodes[0];
6147 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6148 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6149 btrfs_set_dev_stats_value(eb, ptr, i,
6150 btrfs_dev_stat_read(device, i));
6151 btrfs_mark_buffer_dirty(eb);
6152
6153out:
6154 btrfs_free_path(path);
6155 return ret;
6156}
6157
6158/*
6159 * called from commit_transaction. Writes all changed device stats to disk.
6160 */
6161int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6162 struct btrfs_fs_info *fs_info)
6163{
6164 struct btrfs_root *dev_root = fs_info->dev_root;
6165 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6166 struct btrfs_device *device;
6167 int ret = 0;
6168
6169 mutex_lock(&fs_devices->device_list_mutex);
6170 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6171 if (!device->dev_stats_valid || !device->dev_stats_dirty)
6172 continue;
6173
6174 ret = update_dev_stat_item(trans, dev_root, device);
6175 if (!ret)
6176 device->dev_stats_dirty = 0;
6177 }
6178 mutex_unlock(&fs_devices->device_list_mutex);
6179
6180 return ret;
6181}
6182
Stefan Behrens442a4f62012-05-25 16:06:08 +02006183void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6184{
6185 btrfs_dev_stat_inc(dev, index);
6186 btrfs_dev_stat_print_on_error(dev);
6187}
6188
Eric Sandeen48a3b632013-04-25 20:41:01 +00006189static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006190{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006191 if (!dev->dev_stats_valid)
6192 return;
Josef Bacik606686e2012-06-04 14:03:51 -04006193 printk_ratelimited_in_rcu(KERN_ERR
Stefan Behrens442a4f62012-05-25 16:06:08 +02006194 "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006195 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006196 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6197 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6198 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6199 btrfs_dev_stat_read(dev,
6200 BTRFS_DEV_STAT_CORRUPTION_ERRS),
6201 btrfs_dev_stat_read(dev,
6202 BTRFS_DEV_STAT_GENERATION_ERRS));
6203}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006204
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006205static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6206{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006207 int i;
6208
6209 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6210 if (btrfs_dev_stat_read(dev, i) != 0)
6211 break;
6212 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6213 return; /* all values == 0, suppress message */
6214
Josef Bacik606686e2012-06-04 14:03:51 -04006215 printk_in_rcu(KERN_INFO "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
6216 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006217 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6218 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6219 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6220 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6221 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6222}
6223
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006224int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006225 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006226{
6227 struct btrfs_device *dev;
6228 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6229 int i;
6230
6231 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006232 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006233 mutex_unlock(&fs_devices->device_list_mutex);
6234
6235 if (!dev) {
6236 printk(KERN_WARNING
6237 "btrfs: get dev_stats failed, device not found\n");
6238 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006239 } else if (!dev->dev_stats_valid) {
6240 printk(KERN_WARNING
6241 "btrfs: get dev_stats failed, not yet valid\n");
6242 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006243 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006244 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6245 if (stats->nr_items > i)
6246 stats->values[i] =
6247 btrfs_dev_stat_read_and_reset(dev, i);
6248 else
6249 btrfs_dev_stat_reset(dev, i);
6250 }
6251 } else {
6252 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6253 if (stats->nr_items > i)
6254 stats->values[i] = btrfs_dev_stat_read(dev, i);
6255 }
6256 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6257 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6258 return 0;
6259}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006260
6261int btrfs_scratch_superblock(struct btrfs_device *device)
6262{
6263 struct buffer_head *bh;
6264 struct btrfs_super_block *disk_super;
6265
6266 bh = btrfs_read_dev_super(device->bdev);
6267 if (!bh)
6268 return -EINVAL;
6269 disk_super = (struct btrfs_super_block *)bh->b_data;
6270
6271 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6272 set_buffer_dirty(bh);
6273 sync_dirty_buffer(bh);
6274 brelse(bh);
6275
6276 return 0;
6277}