blob: 50c5a8762aedfc7bf5be640b96b3eb4622b58f88 [file] [log] [blame]
Chris Mason0b86a832008-03-24 15:01:56 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18#include <linux/sched.h>
19#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -040021#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040022#include <linux/blkdev.h>
Chris Mason788f20e2008-04-28 15:29:42 -040023#include <linux/random.h>
Chris Masonb765ead2009-04-03 10:27:10 -040024#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000025#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020026#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020027#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050028#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020029#include <linux/semaphore.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050030#include <asm/div64.h>
Chris Mason0b86a832008-03-24 15:01:56 -040031#include "ctree.h"
32#include "extent_map.h"
33#include "disk-io.h"
34#include "transaction.h"
35#include "print-tree.h"
36#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050037#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040038#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010039#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040040#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060041#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010042#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080043#include "sysfs.h"
Chris Mason0b86a832008-03-24 15:01:56 -040044
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
Miao Xie67a2c452014-09-03 21:35:43 +080053DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -040054static LIST_HEAD(fs_uuids);
55
Ilya Dryomov2208a372013-08-12 14:33:03 +030056static struct btrfs_fs_devices *__alloc_fs_devices(void)
57{
58 struct btrfs_fs_devices *fs_devs;
59
60 fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS);
61 if (!fs_devs)
62 return ERR_PTR(-ENOMEM);
63
64 mutex_init(&fs_devs->device_list_mutex);
65
66 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +080067 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +030068 INIT_LIST_HEAD(&fs_devs->alloc_list);
69 INIT_LIST_HEAD(&fs_devs->list);
70
71 return fs_devs;
72}
73
74/**
75 * alloc_fs_devices - allocate struct btrfs_fs_devices
76 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
77 * generated.
78 *
79 * Return: a pointer to a new &struct btrfs_fs_devices on success;
80 * ERR_PTR() on error. Returned struct is not linked onto any lists and
81 * can be destroyed with kfree() right away.
82 */
83static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
84{
85 struct btrfs_fs_devices *fs_devs;
86
87 fs_devs = __alloc_fs_devices();
88 if (IS_ERR(fs_devs))
89 return fs_devs;
90
91 if (fsid)
92 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
93 else
94 generate_random_uuid(fs_devs->fsid);
95
96 return fs_devs;
97}
98
Yan Zhenge4404d62008-12-12 10:03:26 -050099static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
100{
101 struct btrfs_device *device;
102 WARN_ON(fs_devices->opened);
103 while (!list_empty(&fs_devices->devices)) {
104 device = list_entry(fs_devices->devices.next,
105 struct btrfs_device, dev_list);
106 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400107 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500108 kfree(device);
109 }
110 kfree(fs_devices);
111}
112
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000113static void btrfs_kobject_uevent(struct block_device *bdev,
114 enum kobject_action action)
115{
116 int ret;
117
118 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
119 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500120 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000121 action,
122 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
123 &disk_to_dev(bdev->bd_disk)->kobj);
124}
125
Jeff Mahoney143bede2012-03-01 14:56:26 +0100126void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400127{
128 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400129
Yan Zheng2b820322008-11-17 21:11:30 -0500130 while (!list_empty(&fs_uuids)) {
131 fs_devices = list_entry(fs_uuids.next,
132 struct btrfs_fs_devices, list);
133 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500134 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400135 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400136}
137
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300138static struct btrfs_device *__alloc_device(void)
139{
140 struct btrfs_device *dev;
141
142 dev = kzalloc(sizeof(*dev), GFP_NOFS);
143 if (!dev)
144 return ERR_PTR(-ENOMEM);
145
146 INIT_LIST_HEAD(&dev->dev_list);
147 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800148 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300149
150 spin_lock_init(&dev->io_lock);
151
152 spin_lock_init(&dev->reada_lock);
153 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800154 atomic_set(&dev->dev_stats_ccnt, 0);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300155 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_WAIT);
156 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_WAIT);
157
158 return dev;
159}
160
Chris Masona1b32a52008-09-05 16:09:51 -0400161static noinline struct btrfs_device *__find_device(struct list_head *head,
162 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400163{
164 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400165
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500166 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400167 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400168 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400169 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400170 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400171 }
172 return NULL;
173}
174
Chris Masona1b32a52008-09-05 16:09:51 -0400175static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400176{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400177 struct btrfs_fs_devices *fs_devices;
178
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500179 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400180 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
181 return fs_devices;
182 }
183 return NULL;
184}
185
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100186static int
187btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
188 int flush, struct block_device **bdev,
189 struct buffer_head **bh)
190{
191 int ret;
192
193 *bdev = blkdev_get_by_path(device_path, flags, holder);
194
195 if (IS_ERR(*bdev)) {
196 ret = PTR_ERR(*bdev);
Frank Holtonefe120a2013-12-20 11:37:06 -0500197 printk(KERN_INFO "BTRFS: open %s failed\n", device_path);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100198 goto error;
199 }
200
201 if (flush)
202 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
203 ret = set_blocksize(*bdev, 4096);
204 if (ret) {
205 blkdev_put(*bdev, flags);
206 goto error;
207 }
208 invalidate_bdev(*bdev);
209 *bh = btrfs_read_dev_super(*bdev);
210 if (!*bh) {
211 ret = -EINVAL;
212 blkdev_put(*bdev, flags);
213 goto error;
214 }
215
216 return 0;
217
218error:
219 *bdev = NULL;
220 *bh = NULL;
221 return ret;
222}
223
Chris Masonffbd5172009-04-20 15:50:09 -0400224static void requeue_list(struct btrfs_pending_bios *pending_bios,
225 struct bio *head, struct bio *tail)
226{
227
228 struct bio *old_head;
229
230 old_head = pending_bios->head;
231 pending_bios->head = head;
232 if (pending_bios->tail)
233 tail->bi_next = old_head;
234 else
235 pending_bios->tail = tail;
236}
237
Chris Mason8b712842008-06-11 16:50:36 -0400238/*
239 * we try to collect pending bios for a device so we don't get a large
240 * number of procs sending bios down to the same device. This greatly
241 * improves the schedulers ability to collect and merge the bios.
242 *
243 * But, it also turns into a long list of bios to process and that is sure
244 * to eventually make the worker thread block. The solution here is to
245 * make some progress and then put this work struct back at the end of
246 * the list if the block device is congested. This way, multiple devices
247 * can make progress from a single worker thread.
248 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100249static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400250{
251 struct bio *pending;
252 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400253 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400254 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400255 struct bio *tail;
256 struct bio *cur;
257 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400258 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400259 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400260 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400261 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400262 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000263 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400264 struct blk_plug plug;
265
266 /*
267 * this function runs all the bios we've collected for
268 * a particular device. We don't want to wander off to
269 * another device without first sending all of these down.
270 * So, setup a plug here and finish it off before we return
271 */
272 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400273
Chris Masonbedf7622009-04-03 10:32:58 -0400274 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400275 fs_info = device->dev_root->fs_info;
276 limit = btrfs_async_submit_limit(fs_info);
277 limit = limit * 2 / 3;
278
Chris Mason8b712842008-06-11 16:50:36 -0400279loop:
280 spin_lock(&device->io_lock);
281
Chris Masona6837052009-02-04 09:19:41 -0500282loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400283 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400284
Chris Mason8b712842008-06-11 16:50:36 -0400285 /* take all the bios off the list at once and process them
286 * later on (without the lock held). But, remember the
287 * tail and other pointers so the bios can be properly reinserted
288 * into the list if we hit congestion
289 */
Chris Masond84275c2009-06-09 15:39:08 -0400290 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400291 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400292 force_reg = 1;
293 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400294 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400295 force_reg = 0;
296 }
Chris Masonffbd5172009-04-20 15:50:09 -0400297
298 pending = pending_bios->head;
299 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400300 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400301
302 /*
303 * if pending was null this time around, no bios need processing
304 * at all and we can stop. Otherwise it'll loop back up again
305 * and do an additional check so no bios are missed.
306 *
307 * device->running_pending is used to synchronize with the
308 * schedule_bio code.
309 */
Chris Masonffbd5172009-04-20 15:50:09 -0400310 if (device->pending_sync_bios.head == NULL &&
311 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400312 again = 0;
313 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400314 } else {
315 again = 1;
316 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400317 }
Chris Masonffbd5172009-04-20 15:50:09 -0400318
319 pending_bios->head = NULL;
320 pending_bios->tail = NULL;
321
Chris Mason8b712842008-06-11 16:50:36 -0400322 spin_unlock(&device->io_lock);
323
Chris Masond3977122009-01-05 21:25:51 -0500324 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400325
326 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400327 /* we want to work on both lists, but do more bios on the
328 * sync list than the regular list
329 */
330 if ((num_run > 32 &&
331 pending_bios != &device->pending_sync_bios &&
332 device->pending_sync_bios.head) ||
333 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
334 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400335 spin_lock(&device->io_lock);
336 requeue_list(pending_bios, pending, tail);
337 goto loop_lock;
338 }
339
Chris Mason8b712842008-06-11 16:50:36 -0400340 cur = pending;
341 pending = pending->bi_next;
342 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400343
Josef Bacik66657b32012-08-01 15:36:24 -0400344 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400345 waitqueue_active(&fs_info->async_submit_wait))
346 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400347
348 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400349
Chris Mason2ab1ba62011-08-04 14:28:36 -0400350 /*
351 * if we're doing the sync list, record that our
352 * plug has some sync requests on it
353 *
354 * If we're doing the regular list and there are
355 * sync requests sitting around, unplug before
356 * we add more
357 */
358 if (pending_bios == &device->pending_sync_bios) {
359 sync_pending = 1;
360 } else if (sync_pending) {
361 blk_finish_plug(&plug);
362 blk_start_plug(&plug);
363 sync_pending = 0;
364 }
365
Stefan Behrens21adbd52011-11-09 13:44:05 +0100366 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400367 num_run++;
368 batch_run++;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100369 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400370 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400371
372 /*
373 * we made progress, there is more work to do and the bdi
374 * is now congested. Back off and let other work structs
375 * run instead
376 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400377 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500378 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400379 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400380
Chris Masonb765ead2009-04-03 10:27:10 -0400381 ioc = current->io_context;
382
383 /*
384 * the main goal here is that we don't want to
385 * block if we're going to be able to submit
386 * more requests without blocking.
387 *
388 * This code does two great things, it pokes into
389 * the elevator code from a filesystem _and_
390 * it makes assumptions about how batching works.
391 */
392 if (ioc && ioc->nr_batch_requests > 0 &&
393 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
394 (last_waited == 0 ||
395 ioc->last_waited == last_waited)) {
396 /*
397 * we want to go through our batch of
398 * requests and stop. So, we copy out
399 * the ioc->last_waited time and test
400 * against it before looping
401 */
402 last_waited = ioc->last_waited;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100403 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400404 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400405 continue;
406 }
Chris Mason8b712842008-06-11 16:50:36 -0400407 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400408 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500409 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400410
411 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800412 btrfs_queue_work(fs_info->submit_workers,
413 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400414 goto done;
415 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500416 /* unplug every 64 requests just for good measure */
417 if (batch_run % 64 == 0) {
418 blk_finish_plug(&plug);
419 blk_start_plug(&plug);
420 sync_pending = 0;
421 }
Chris Mason8b712842008-06-11 16:50:36 -0400422 }
Chris Masonffbd5172009-04-20 15:50:09 -0400423
Chris Mason51684082010-03-10 15:33:32 -0500424 cond_resched();
425 if (again)
426 goto loop;
427
428 spin_lock(&device->io_lock);
429 if (device->pending_bios.head || device->pending_sync_bios.head)
430 goto loop_lock;
431 spin_unlock(&device->io_lock);
432
Chris Mason8b712842008-06-11 16:50:36 -0400433done:
Chris Mason211588a2011-04-19 20:12:40 -0400434 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400435}
436
Christoph Hellwigb2950862008-12-02 09:54:17 -0500437static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400438{
439 struct btrfs_device *device;
440
441 device = container_of(work, struct btrfs_device, work);
442 run_scheduled_bios(device);
443}
444
David Sterba60999ca2014-03-26 18:26:36 +0100445/*
446 * Add new device to list of registered devices
447 *
448 * Returns:
449 * 1 - first time device is seen
450 * 0 - device already known
451 * < 0 - error
452 */
Chris Masona1b32a52008-09-05 16:09:51 -0400453static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400454 struct btrfs_super_block *disk_super,
455 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
456{
457 struct btrfs_device *device;
458 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400459 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100460 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400461 u64 found_transid = btrfs_super_generation(disk_super);
462
463 fs_devices = find_fsid(disk_super->fsid);
464 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300465 fs_devices = alloc_fs_devices(disk_super->fsid);
466 if (IS_ERR(fs_devices))
467 return PTR_ERR(fs_devices);
468
Chris Mason8a4b83c2008-03-24 15:02:07 -0400469 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300470
Chris Mason8a4b83c2008-03-24 15:02:07 -0400471 device = NULL;
472 } else {
Chris Masona4437552008-04-18 10:29:38 -0400473 device = __find_device(&fs_devices->devices, devid,
474 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400475 }
Miao Xie443f24f2014-07-24 11:37:15 +0800476
Chris Mason8a4b83c2008-03-24 15:02:07 -0400477 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500478 if (fs_devices->opened)
479 return -EBUSY;
480
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300481 device = btrfs_alloc_device(NULL, &devid,
482 disk_super->dev_item.uuid);
483 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400484 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300485 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400486 }
Josef Bacik606686e2012-06-04 14:03:51 -0400487
488 name = rcu_string_strdup(path, GFP_NOFS);
489 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400490 kfree(device);
491 return -ENOMEM;
492 }
Josef Bacik606686e2012-06-04 14:03:51 -0400493 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200494
Chris Masone5e9a522009-06-10 15:17:02 -0400495 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000496 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100497 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400498 mutex_unlock(&fs_devices->device_list_mutex);
499
David Sterba60999ca2014-03-26 18:26:36 +0100500 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500501 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400502 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800503 /*
504 * When FS is already mounted.
505 * 1. If you are here and if the device->name is NULL that
506 * means this device was missing at time of FS mount.
507 * 2. If you are here and if the device->name is different
508 * from 'path' that means either
509 * a. The same device disappeared and reappeared with
510 * different name. or
511 * b. The missing-disk-which-was-replaced, has
512 * reappeared now.
513 *
514 * We must allow 1 and 2a above. But 2b would be a spurious
515 * and unintentional.
516 *
517 * Further in case of 1 and 2a above, the disk at 'path'
518 * would have missed some transaction when it was away and
519 * in case of 2a the stale bdev has to be updated as well.
520 * 2b must not be allowed at all time.
521 */
522
523 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700524 * For now, we do allow update to btrfs_fs_device through the
525 * btrfs dev scan cli after FS has been mounted. We're still
526 * tracking a problem where systems fail mount by subvolume id
527 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800528 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700529 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800530 /*
531 * That is if the FS is _not_ mounted and if you
532 * are here, that means there is more than one
533 * disk with same uuid and devid.We keep the one
534 * with larger generation number or the last-in if
535 * generation are equal.
536 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700537 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800538 }
Anand Jainb96de002014-07-03 18:22:05 +0800539
Josef Bacik606686e2012-06-04 14:03:51 -0400540 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000541 if (!name)
542 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400543 rcu_string_free(device->name);
544 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500545 if (device->missing) {
546 fs_devices->missing_devices--;
547 device->missing = 0;
548 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400549 }
550
Anand Jain77bdae42014-07-03 18:22:06 +0800551 /*
552 * Unmount does not free the btrfs_device struct but would zero
553 * generation along with most of the other members. So just update
554 * it back. We need it to pick the disk with largest generation
555 * (as above).
556 */
557 if (!fs_devices->opened)
558 device->generation = found_transid;
559
Chris Mason8a4b83c2008-03-24 15:02:07 -0400560 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100561
562 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400563}
564
Yan Zhenge4404d62008-12-12 10:03:26 -0500565static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
566{
567 struct btrfs_fs_devices *fs_devices;
568 struct btrfs_device *device;
569 struct btrfs_device *orig_dev;
570
Ilya Dryomov2208a372013-08-12 14:33:03 +0300571 fs_devices = alloc_fs_devices(orig->fsid);
572 if (IS_ERR(fs_devices))
573 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500574
Miao Xieadbbb862014-09-03 21:35:42 +0800575 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400576 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500577
Xiao Guangrong46224702011-04-20 10:08:47 +0000578 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500579 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400580 struct rcu_string *name;
581
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300582 device = btrfs_alloc_device(NULL, &orig_dev->devid,
583 orig_dev->uuid);
584 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500585 goto error;
586
Josef Bacik606686e2012-06-04 14:03:51 -0400587 /*
588 * This is ok to do without rcu read locked because we hold the
589 * uuid mutex so nothing we touch in here is going to disappear.
590 */
Anand Jaine755f782014-06-30 17:12:47 +0800591 if (orig_dev->name) {
592 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
593 if (!name) {
594 kfree(device);
595 goto error;
596 }
597 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400598 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500599
Yan Zhenge4404d62008-12-12 10:03:26 -0500600 list_add(&device->dev_list, &fs_devices->devices);
601 device->fs_devices = fs_devices;
602 fs_devices->num_devices++;
603 }
Miao Xieadbbb862014-09-03 21:35:42 +0800604 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500605 return fs_devices;
606error:
Miao Xieadbbb862014-09-03 21:35:42 +0800607 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500608 free_fs_devices(fs_devices);
609 return ERR_PTR(-ENOMEM);
610}
611
Stefan Behrens8dabb742012-11-06 13:15:27 +0100612void btrfs_close_extra_devices(struct btrfs_fs_info *fs_info,
613 struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400614{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500615 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800616 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500617
Chris Masondfe25022008-05-13 13:46:40 -0400618 mutex_lock(&uuid_mutex);
619again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000620 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500621 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500622 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100623 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800624 (!latest_dev ||
625 device->generation > latest_dev->generation)) {
626 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500627 }
Yan Zheng2b820322008-11-17 21:11:30 -0500628 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500629 }
Yan Zheng2b820322008-11-17 21:11:30 -0500630
Stefan Behrens8dabb742012-11-06 13:15:27 +0100631 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
632 /*
633 * In the first step, keep the device which has
634 * the correct fsid and the devid that is used
635 * for the dev_replace procedure.
636 * In the second step, the dev_replace state is
637 * read from the device tree and it is known
638 * whether the procedure is really active or
639 * not, which means whether this device is
640 * used or whether it should be removed.
641 */
642 if (step == 0 || device->is_tgtdev_for_dev_replace) {
643 continue;
644 }
645 }
Yan Zheng2b820322008-11-17 21:11:30 -0500646 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100647 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500648 device->bdev = NULL;
649 fs_devices->open_devices--;
650 }
651 if (device->writeable) {
652 list_del_init(&device->dev_alloc_list);
653 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100654 if (!device->is_tgtdev_for_dev_replace)
655 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500656 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500657 list_del_init(&device->dev_list);
658 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400659 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500660 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400661 }
Yan Zheng2b820322008-11-17 21:11:30 -0500662
663 if (fs_devices->seed) {
664 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500665 goto again;
666 }
667
Miao Xie443f24f2014-07-24 11:37:15 +0800668 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500669
Chris Masondfe25022008-05-13 13:46:40 -0400670 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400671}
Chris Masona0af4692008-05-13 16:03:06 -0400672
Xiao Guangrong1f781602011-04-20 10:09:16 +0000673static void __free_device(struct work_struct *work)
674{
675 struct btrfs_device *device;
676
677 device = container_of(work, struct btrfs_device, rcu_work);
678
679 if (device->bdev)
680 blkdev_put(device->bdev, device->mode);
681
Josef Bacik606686e2012-06-04 14:03:51 -0400682 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000683 kfree(device);
684}
685
686static void free_device(struct rcu_head *head)
687{
688 struct btrfs_device *device;
689
690 device = container_of(head, struct btrfs_device, rcu);
691
692 INIT_WORK(&device->rcu_work, __free_device);
693 schedule_work(&device->rcu_work);
694}
695
Yan Zheng2b820322008-11-17 21:11:30 -0500696static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400697{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400698 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500699
Yan Zheng2b820322008-11-17 21:11:30 -0500700 if (--fs_devices->opened > 0)
701 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400702
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000703 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500704 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Xiao Guangrong1f781602011-04-20 10:09:16 +0000705 struct btrfs_device *new_device;
Josef Bacik606686e2012-06-04 14:03:51 -0400706 struct rcu_string *name;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000707
708 if (device->bdev)
Chris Masona0af4692008-05-13 16:03:06 -0400709 fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000710
Ilya Dryomovf747cab2013-10-10 20:37:29 +0300711 if (device->writeable &&
712 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500713 list_del_init(&device->dev_alloc_list);
714 fs_devices->rw_devices--;
715 }
716
Josef Bacik726551e2013-08-26 13:45:53 -0400717 if (device->missing)
718 fs_devices->missing_devices--;
Josef Bacikd5e20032011-08-04 14:52:27 +0000719
Ilya Dryomova1e87802013-08-12 14:33:04 +0300720 new_device = btrfs_alloc_device(NULL, &device->devid,
721 device->uuid);
722 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
Josef Bacik606686e2012-06-04 14:03:51 -0400723
724 /* Safe because we are under uuid_mutex */
Josef Bacik99f59442012-08-02 10:23:59 -0400725 if (device->name) {
726 name = rcu_string_strdup(device->name->str, GFP_NOFS);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300727 BUG_ON(!name); /* -ENOMEM */
Josef Bacik99f59442012-08-02 10:23:59 -0400728 rcu_assign_pointer(new_device->name, name);
729 }
Ilya Dryomova1e87802013-08-12 14:33:04 +0300730
Xiao Guangrong1f781602011-04-20 10:09:16 +0000731 list_replace_rcu(&device->dev_list, &new_device->dev_list);
Ilya Dryomova1e87802013-08-12 14:33:04 +0300732 new_device->fs_devices = device->fs_devices;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000733
734 call_rcu(&device->rcu, free_device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400735 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000736 mutex_unlock(&fs_devices->device_list_mutex);
737
Yan Zhenge4404d62008-12-12 10:03:26 -0500738 WARN_ON(fs_devices->open_devices);
739 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500740 fs_devices->opened = 0;
741 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500742
Chris Mason8a4b83c2008-03-24 15:02:07 -0400743 return 0;
744}
745
Yan Zheng2b820322008-11-17 21:11:30 -0500746int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
747{
Yan Zhenge4404d62008-12-12 10:03:26 -0500748 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500749 int ret;
750
751 mutex_lock(&uuid_mutex);
752 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500753 if (!fs_devices->opened) {
754 seed_devices = fs_devices->seed;
755 fs_devices->seed = NULL;
756 }
Yan Zheng2b820322008-11-17 21:11:30 -0500757 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500758
759 while (seed_devices) {
760 fs_devices = seed_devices;
761 seed_devices = fs_devices->seed;
762 __btrfs_close_devices(fs_devices);
763 free_fs_devices(fs_devices);
764 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000765 /*
766 * Wait for rcu kworkers under __btrfs_close_devices
767 * to finish all blkdev_puts so device is really
768 * free when umount is done.
769 */
770 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500771 return ret;
772}
773
Yan Zhenge4404d62008-12-12 10:03:26 -0500774static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
775 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400776{
Josef Bacikd5e20032011-08-04 14:52:27 +0000777 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400778 struct block_device *bdev;
779 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400780 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800781 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400782 struct buffer_head *bh;
783 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400784 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500785 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400786 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400787
Tejun Heod4d77622010-11-13 11:55:18 +0100788 flags |= FMODE_EXCL;
789
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500790 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400791 if (device->bdev)
792 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400793 if (!device->name)
794 continue;
795
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000796 /* Just open everything we can; ignore failures here */
797 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
798 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100799 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400800
801 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000802 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400803 if (devid != device->devid)
804 goto error_brelse;
805
Yan Zheng2b820322008-11-17 21:11:30 -0500806 if (memcmp(device->uuid, disk_super->dev_item.uuid,
807 BTRFS_UUID_SIZE))
808 goto error_brelse;
809
810 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +0800811 if (!latest_dev ||
812 device->generation > latest_dev->generation)
813 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -0400814
Yan Zheng2b820322008-11-17 21:11:30 -0500815 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
816 device->writeable = 0;
817 } else {
818 device->writeable = !bdev_read_only(bdev);
819 seeding = 0;
820 }
821
Josef Bacikd5e20032011-08-04 14:52:27 +0000822 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +0800823 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +0000824 device->can_discard = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +0000825
Chris Mason8a4b83c2008-03-24 15:02:07 -0400826 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400827 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500828 device->mode = flags;
829
Chris Masonc2898112009-06-10 09:51:32 -0400830 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
831 fs_devices->rotating = 1;
832
Chris Masona0af4692008-05-13 16:03:06 -0400833 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +0300834 if (device->writeable &&
835 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500836 fs_devices->rw_devices++;
837 list_add(&device->dev_alloc_list,
838 &fs_devices->alloc_list);
839 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000840 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400841 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400842
Chris Masona0af4692008-05-13 16:03:06 -0400843error_brelse:
844 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100845 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400846 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400847 }
Chris Masona0af4692008-05-13 16:03:06 -0400848 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300849 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400850 goto out;
851 }
Yan Zheng2b820322008-11-17 21:11:30 -0500852 fs_devices->seeding = seeding;
853 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +0800854 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -0500855 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400856out:
Yan Zheng2b820322008-11-17 21:11:30 -0500857 return ret;
858}
859
860int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500861 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500862{
863 int ret;
864
865 mutex_lock(&uuid_mutex);
866 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500867 fs_devices->opened++;
868 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500869 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500870 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500871 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400872 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400873 return ret;
874}
875
David Sterba6f60cbd2013-02-15 11:31:02 -0700876/*
877 * Look for a btrfs signature on a device. This may be called out of the mount path
878 * and we are not allowed to call set_blocksize during the scan. The superblock
879 * is read via pagecache
880 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500881int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400882 struct btrfs_fs_devices **fs_devices_ret)
883{
884 struct btrfs_super_block *disk_super;
885 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -0700886 struct page *page;
887 void *p;
888 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400889 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400890 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -0400891 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700892 u64 bytenr;
893 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400894
David Sterba6f60cbd2013-02-15 11:31:02 -0700895 /*
896 * we would like to check all the supers, but that would make
897 * a btrfs mount succeed after a mkfs from a different FS.
898 * So, we need to add a special mount option to scan for
899 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
900 */
901 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +0100902 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -0500903 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -0700904
905 bdev = blkdev_get_by_path(path, flags, holder);
906
907 if (IS_ERR(bdev)) {
908 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100909 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -0700910 }
911
912 /* make sure our super fits in the device */
913 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
914 goto error_bdev_put;
915
916 /* make sure our super fits in the page */
917 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
918 goto error_bdev_put;
919
920 /* make sure our super doesn't straddle pages on disk */
921 index = bytenr >> PAGE_CACHE_SHIFT;
922 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
923 goto error_bdev_put;
924
925 /* pull in the page with our super */
926 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
927 index, GFP_NOFS);
928
929 if (IS_ERR_OR_NULL(page))
930 goto error_bdev_put;
931
932 p = kmap(page);
933
934 /* align our pointer to the offset of the super block */
935 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
936
937 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +0800938 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -0700939 goto error_unmap;
940
Xiao Guangronga3438322010-01-06 11:48:18 +0000941 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400942 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -0400943 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -0700944
Chris Mason8a4b83c2008-03-24 15:02:07 -0400945 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +0100946 if (ret > 0) {
947 if (disk_super->label[0]) {
948 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
949 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
950 printk(KERN_INFO "BTRFS: device label %s ", disk_super->label);
951 } else {
952 printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid);
953 }
954
955 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
956 ret = 0;
957 }
Josef Bacik02db0842012-06-21 16:03:58 -0400958 if (!ret && fs_devices_ret)
959 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -0700960
961error_unmap:
962 kunmap(page);
963 page_cache_release(page);
964
965error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +0100966 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400967error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100968 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400969 return ret;
970}
Chris Mason0b86a832008-03-24 15:01:56 -0400971
Miao Xie6d07bce2011-01-05 10:07:31 +0000972/* helper to account the used device space in the range */
973int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
974 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -0400975{
976 struct btrfs_key key;
977 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +0000978 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500979 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +0000980 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400981 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +0000982 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400983 struct extent_buffer *l;
984
Miao Xie6d07bce2011-01-05 10:07:31 +0000985 *length = 0;
986
Stefan Behrens63a212a2012-11-05 18:29:28 +0100987 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +0000988 return 0;
989
Yan Zheng2b820322008-11-17 21:11:30 -0500990 path = btrfs_alloc_path();
991 if (!path)
992 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400993 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -0400994
Chris Mason0b86a832008-03-24 15:01:56 -0400995 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +0000996 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400997 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +0000998
999 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001000 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001001 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001002 if (ret > 0) {
1003 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1004 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001005 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001006 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001007
Chris Mason0b86a832008-03-24 15:01:56 -04001008 while (1) {
1009 l = path->nodes[0];
1010 slot = path->slots[0];
1011 if (slot >= btrfs_header_nritems(l)) {
1012 ret = btrfs_next_leaf(root, path);
1013 if (ret == 0)
1014 continue;
1015 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001016 goto out;
1017
1018 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001019 }
1020 btrfs_item_key_to_cpu(l, &key, slot);
1021
1022 if (key.objectid < device->devid)
1023 goto next;
1024
1025 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001026 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001027
David Sterba962a2982014-06-04 18:41:45 +02001028 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001029 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001030
Chris Mason0b86a832008-03-24 15:01:56 -04001031 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001032 extent_end = key.offset + btrfs_dev_extent_length(l,
1033 dev_extent);
1034 if (key.offset <= start && extent_end > end) {
1035 *length = end - start + 1;
1036 break;
1037 } else if (key.offset <= start && extent_end > start)
1038 *length += extent_end - start;
1039 else if (key.offset > start && extent_end <= end)
1040 *length += extent_end - key.offset;
1041 else if (key.offset > start && key.offset <= end) {
1042 *length += end - key.offset + 1;
1043 break;
1044 } else if (key.offset > end)
1045 break;
1046
1047next:
1048 path->slots[0]++;
1049 }
1050 ret = 0;
1051out:
1052 btrfs_free_path(path);
1053 return ret;
1054}
1055
Josef Bacik6df9a952013-06-27 13:22:46 -04001056static int contains_pending_extent(struct btrfs_trans_handle *trans,
1057 struct btrfs_device *device,
1058 u64 *start, u64 len)
1059{
1060 struct extent_map *em;
Filipe Manana04216822014-11-27 21:14:15 +00001061 struct list_head *search_list = &trans->transaction->pending_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001062 int ret = 0;
1063
Filipe Manana04216822014-11-27 21:14:15 +00001064again:
1065 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001066 struct map_lookup *map;
1067 int i;
1068
1069 map = (struct map_lookup *)em->bdev;
1070 for (i = 0; i < map->num_stripes; i++) {
1071 if (map->stripes[i].dev != device)
1072 continue;
1073 if (map->stripes[i].physical >= *start + len ||
1074 map->stripes[i].physical + em->orig_block_len <=
1075 *start)
1076 continue;
1077 *start = map->stripes[i].physical +
1078 em->orig_block_len;
1079 ret = 1;
1080 }
1081 }
Filipe Manana04216822014-11-27 21:14:15 +00001082 if (search_list == &trans->transaction->pending_chunks) {
1083 search_list = &trans->root->fs_info->pinned_chunks;
1084 goto again;
1085 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001086
1087 return ret;
1088}
1089
1090
Chris Mason0b86a832008-03-24 15:01:56 -04001091/*
Miao Xie7bfc8372011-01-05 10:07:26 +00001092 * find_free_dev_extent - find free space in the specified device
Miao Xie7bfc8372011-01-05 10:07:26 +00001093 * @device: the device which we search the free space in
1094 * @num_bytes: the size of the free space that we need
1095 * @start: store the start of the free space.
1096 * @len: the size of the free space. that we find, or the size of the max
1097 * free space if we don't find suitable free space
1098 *
Chris Mason0b86a832008-03-24 15:01:56 -04001099 * this uses a pretty simple search, the expectation is that it is
1100 * called very infrequently and that a given device has a small number
1101 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001102 *
1103 * @start is used to store the start of the free space if we find. But if we
1104 * don't find suitable free space, it will be used to store the start position
1105 * of the max free space.
1106 *
1107 * @len is used to store the size of the free space that we find.
1108 * But if we don't find suitable free space, it is used to store the size of
1109 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001110 */
Josef Bacik6df9a952013-06-27 13:22:46 -04001111int find_free_dev_extent(struct btrfs_trans_handle *trans,
1112 struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +00001113 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001114{
1115 struct btrfs_key key;
1116 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001117 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001118 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001119 u64 hole_size;
1120 u64 max_hole_start;
1121 u64 max_hole_size;
1122 u64 extent_end;
1123 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001124 u64 search_end = device->total_bytes;
1125 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001126 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001127 struct extent_buffer *l;
1128
Chris Mason0b86a832008-03-24 15:01:56 -04001129 /* FIXME use last free of some kind */
1130
1131 /* we don't want to overwrite the superblock on the drive,
1132 * so we make sure to start at an offset of at least 1MB
1133 */
Arne Jansena9c9bf62011-04-12 11:01:20 +02001134 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
Chris Mason0b86a832008-03-24 15:01:56 -04001135
Josef Bacik6df9a952013-06-27 13:22:46 -04001136 path = btrfs_alloc_path();
1137 if (!path)
1138 return -ENOMEM;
1139again:
Miao Xie7bfc8372011-01-05 10:07:26 +00001140 max_hole_start = search_start;
1141 max_hole_size = 0;
liubo38c01b92011-08-02 02:39:03 +00001142 hole_size = 0;
Miao Xie7bfc8372011-01-05 10:07:26 +00001143
Stefan Behrens63a212a2012-11-05 18:29:28 +01001144 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001145 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001146 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001147 }
1148
Miao Xie7bfc8372011-01-05 10:07:26 +00001149 path->reada = 2;
Josef Bacik6df9a952013-06-27 13:22:46 -04001150 path->search_commit_root = 1;
1151 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001152
Chris Mason0b86a832008-03-24 15:01:56 -04001153 key.objectid = device->devid;
1154 key.offset = search_start;
1155 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001156
Li Zefan125ccb02011-12-08 15:07:24 +08001157 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001158 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001159 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001160 if (ret > 0) {
1161 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1162 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001163 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001164 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001165
Chris Mason0b86a832008-03-24 15:01:56 -04001166 while (1) {
1167 l = path->nodes[0];
1168 slot = path->slots[0];
1169 if (slot >= btrfs_header_nritems(l)) {
1170 ret = btrfs_next_leaf(root, path);
1171 if (ret == 0)
1172 continue;
1173 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001174 goto out;
1175
1176 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001177 }
1178 btrfs_item_key_to_cpu(l, &key, slot);
1179
1180 if (key.objectid < device->devid)
1181 goto next;
1182
1183 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001184 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001185
David Sterba962a2982014-06-04 18:41:45 +02001186 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001187 goto next;
1188
Miao Xie7bfc8372011-01-05 10:07:26 +00001189 if (key.offset > search_start) {
1190 hole_size = key.offset - search_start;
1191
Josef Bacik6df9a952013-06-27 13:22:46 -04001192 /*
1193 * Have to check before we set max_hole_start, otherwise
1194 * we could end up sending back this offset anyway.
1195 */
1196 if (contains_pending_extent(trans, device,
1197 &search_start,
1198 hole_size))
1199 hole_size = 0;
1200
Miao Xie7bfc8372011-01-05 10:07:26 +00001201 if (hole_size > max_hole_size) {
1202 max_hole_start = search_start;
1203 max_hole_size = hole_size;
1204 }
1205
1206 /*
1207 * If this free space is greater than which we need,
1208 * it must be the max free space that we have found
1209 * until now, so max_hole_start must point to the start
1210 * of this free space and the length of this free space
1211 * is stored in max_hole_size. Thus, we return
1212 * max_hole_start and max_hole_size and go back to the
1213 * caller.
1214 */
1215 if (hole_size >= num_bytes) {
1216 ret = 0;
1217 goto out;
1218 }
1219 }
1220
Chris Mason0b86a832008-03-24 15:01:56 -04001221 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001222 extent_end = key.offset + btrfs_dev_extent_length(l,
1223 dev_extent);
1224 if (extent_end > search_start)
1225 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001226next:
1227 path->slots[0]++;
1228 cond_resched();
1229 }
Chris Mason0b86a832008-03-24 15:01:56 -04001230
liubo38c01b92011-08-02 02:39:03 +00001231 /*
1232 * At this point, search_start should be the end of
1233 * allocated dev extents, and when shrinking the device,
1234 * search_end may be smaller than search_start.
1235 */
1236 if (search_end > search_start)
1237 hole_size = search_end - search_start;
1238
Miao Xie7bfc8372011-01-05 10:07:26 +00001239 if (hole_size > max_hole_size) {
1240 max_hole_start = search_start;
1241 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001242 }
Chris Mason0b86a832008-03-24 15:01:56 -04001243
Josef Bacik6df9a952013-06-27 13:22:46 -04001244 if (contains_pending_extent(trans, device, &search_start, hole_size)) {
1245 btrfs_release_path(path);
1246 goto again;
1247 }
1248
Miao Xie7bfc8372011-01-05 10:07:26 +00001249 /* See above. */
1250 if (hole_size < num_bytes)
1251 ret = -ENOSPC;
1252 else
1253 ret = 0;
1254
1255out:
Yan Zheng2b820322008-11-17 21:11:30 -05001256 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001257 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001258 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001259 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001260 return ret;
1261}
1262
Christoph Hellwigb2950862008-12-02 09:54:17 -05001263static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001264 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001265 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001266{
1267 int ret;
1268 struct btrfs_path *path;
1269 struct btrfs_root *root = device->dev_root;
1270 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001271 struct btrfs_key found_key;
1272 struct extent_buffer *leaf = NULL;
1273 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001274
1275 path = btrfs_alloc_path();
1276 if (!path)
1277 return -ENOMEM;
1278
1279 key.objectid = device->devid;
1280 key.offset = start;
1281 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001282again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001283 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001284 if (ret > 0) {
1285 ret = btrfs_previous_item(root, path, key.objectid,
1286 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001287 if (ret)
1288 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001289 leaf = path->nodes[0];
1290 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1291 extent = btrfs_item_ptr(leaf, path->slots[0],
1292 struct btrfs_dev_extent);
1293 BUG_ON(found_key.offset > start || found_key.offset +
1294 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001295 key = found_key;
1296 btrfs_release_path(path);
1297 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001298 } else if (ret == 0) {
1299 leaf = path->nodes[0];
1300 extent = btrfs_item_ptr(leaf, path->slots[0],
1301 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001302 } else {
1303 btrfs_error(root->fs_info, ret, "Slot search failed");
1304 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001305 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001306
Miao Xie2196d6e2014-09-03 21:35:41 +08001307 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1308
Chris Mason8f18cf12008-04-25 16:53:30 -04001309 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001310 if (ret) {
1311 btrfs_error(root->fs_info, ret,
1312 "Failed to remove dev extent item");
1313 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001314out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001315 btrfs_free_path(path);
1316 return ret;
1317}
1318
Eric Sandeen48a3b632013-04-25 20:41:01 +00001319static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1320 struct btrfs_device *device,
1321 u64 chunk_tree, u64 chunk_objectid,
1322 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001323{
1324 int ret;
1325 struct btrfs_path *path;
1326 struct btrfs_root *root = device->dev_root;
1327 struct btrfs_dev_extent *extent;
1328 struct extent_buffer *leaf;
1329 struct btrfs_key key;
1330
Chris Masondfe25022008-05-13 13:46:40 -04001331 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001332 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001333 path = btrfs_alloc_path();
1334 if (!path)
1335 return -ENOMEM;
1336
Chris Mason0b86a832008-03-24 15:01:56 -04001337 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001338 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001339 key.type = BTRFS_DEV_EXTENT_KEY;
1340 ret = btrfs_insert_empty_item(trans, root, path, &key,
1341 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001342 if (ret)
1343 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001344
1345 leaf = path->nodes[0];
1346 extent = btrfs_item_ptr(leaf, path->slots[0],
1347 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001348 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1349 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1350 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1351
1352 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001353 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001354
Chris Mason0b86a832008-03-24 15:01:56 -04001355 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1356 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001357out:
Chris Mason0b86a832008-03-24 15:01:56 -04001358 btrfs_free_path(path);
1359 return ret;
1360}
1361
Josef Bacik6df9a952013-06-27 13:22:46 -04001362static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001363{
Josef Bacik6df9a952013-06-27 13:22:46 -04001364 struct extent_map_tree *em_tree;
1365 struct extent_map *em;
1366 struct rb_node *n;
1367 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001368
Josef Bacik6df9a952013-06-27 13:22:46 -04001369 em_tree = &fs_info->mapping_tree.map_tree;
1370 read_lock(&em_tree->lock);
1371 n = rb_last(&em_tree->map);
1372 if (n) {
1373 em = rb_entry(n, struct extent_map, rb_node);
1374 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001375 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001376 read_unlock(&em_tree->lock);
1377
Chris Mason0b86a832008-03-24 15:01:56 -04001378 return ret;
1379}
1380
Ilya Dryomov53f10652013-08-12 14:33:01 +03001381static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1382 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001383{
1384 int ret;
1385 struct btrfs_key key;
1386 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001387 struct btrfs_path *path;
1388
Yan Zheng2b820322008-11-17 21:11:30 -05001389 path = btrfs_alloc_path();
1390 if (!path)
1391 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001392
1393 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1394 key.type = BTRFS_DEV_ITEM_KEY;
1395 key.offset = (u64)-1;
1396
Ilya Dryomov53f10652013-08-12 14:33:01 +03001397 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001398 if (ret < 0)
1399 goto error;
1400
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001401 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001402
Ilya Dryomov53f10652013-08-12 14:33:01 +03001403 ret = btrfs_previous_item(fs_info->chunk_root, path,
1404 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001405 BTRFS_DEV_ITEM_KEY);
1406 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001407 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001408 } else {
1409 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1410 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001411 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001412 }
1413 ret = 0;
1414error:
Yan Zheng2b820322008-11-17 21:11:30 -05001415 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001416 return ret;
1417}
1418
1419/*
1420 * the device information is stored in the chunk root
1421 * the btrfs_device struct should be fully filled in
1422 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001423static int btrfs_add_device(struct btrfs_trans_handle *trans,
1424 struct btrfs_root *root,
1425 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001426{
1427 int ret;
1428 struct btrfs_path *path;
1429 struct btrfs_dev_item *dev_item;
1430 struct extent_buffer *leaf;
1431 struct btrfs_key key;
1432 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001433
1434 root = root->fs_info->chunk_root;
1435
1436 path = btrfs_alloc_path();
1437 if (!path)
1438 return -ENOMEM;
1439
Chris Mason0b86a832008-03-24 15:01:56 -04001440 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1441 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001442 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001443
1444 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001445 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001446 if (ret)
1447 goto out;
1448
1449 leaf = path->nodes[0];
1450 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1451
1452 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001453 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001454 btrfs_set_device_type(leaf, dev_item, device->type);
1455 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1456 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1457 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001458 btrfs_set_device_total_bytes(leaf, dev_item,
1459 btrfs_device_get_disk_total_bytes(device));
1460 btrfs_set_device_bytes_used(leaf, dev_item,
1461 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001462 btrfs_set_device_group(leaf, dev_item, 0);
1463 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1464 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001465 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001466
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001467 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001468 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001469 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001470 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001471 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001472
Yan Zheng2b820322008-11-17 21:11:30 -05001473 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001474out:
1475 btrfs_free_path(path);
1476 return ret;
1477}
Chris Mason8f18cf12008-04-25 16:53:30 -04001478
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001479/*
1480 * Function to update ctime/mtime for a given device path.
1481 * Mainly used for ctime/mtime based probe like libblkid.
1482 */
1483static void update_dev_time(char *path_name)
1484{
1485 struct file *filp;
1486
1487 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001488 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001489 return;
1490 file_update_time(filp);
1491 filp_close(filp, NULL);
1492 return;
1493}
1494
Chris Masona061fc82008-05-07 11:43:44 -04001495static int btrfs_rm_dev_item(struct btrfs_root *root,
1496 struct btrfs_device *device)
1497{
1498 int ret;
1499 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001500 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001501 struct btrfs_trans_handle *trans;
1502
1503 root = root->fs_info->chunk_root;
1504
1505 path = btrfs_alloc_path();
1506 if (!path)
1507 return -ENOMEM;
1508
Yan, Zhenga22285a2010-05-16 10:48:46 -04001509 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001510 if (IS_ERR(trans)) {
1511 btrfs_free_path(path);
1512 return PTR_ERR(trans);
1513 }
Chris Masona061fc82008-05-07 11:43:44 -04001514 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1515 key.type = BTRFS_DEV_ITEM_KEY;
1516 key.offset = device->devid;
1517
1518 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1519 if (ret < 0)
1520 goto out;
1521
1522 if (ret > 0) {
1523 ret = -ENOENT;
1524 goto out;
1525 }
1526
1527 ret = btrfs_del_item(trans, root, path);
1528 if (ret)
1529 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001530out:
1531 btrfs_free_path(path);
1532 btrfs_commit_transaction(trans, root);
1533 return ret;
1534}
1535
1536int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1537{
1538 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001539 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001540 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001541 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001542 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001543 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001544 u64 all_avail;
1545 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001546 u64 num_devices;
1547 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001548 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001549 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001550 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001551
Chris Masona061fc82008-05-07 11:43:44 -04001552 mutex_lock(&uuid_mutex);
1553
Miao Xiede98ced2013-01-29 10:13:12 +00001554 do {
1555 seq = read_seqbegin(&root->fs_info->profiles_lock);
1556
1557 all_avail = root->fs_info->avail_data_alloc_bits |
1558 root->fs_info->avail_system_alloc_bits |
1559 root->fs_info->avail_metadata_alloc_bits;
1560 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001561
Stefan Behrens8dabb742012-11-06 13:15:27 +01001562 num_devices = root->fs_info->fs_devices->num_devices;
1563 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1564 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1565 WARN_ON(num_devices < 1);
1566 num_devices--;
1567 }
1568 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1569
1570 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001571 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001572 goto out;
1573 }
1574
Stefan Behrens8dabb742012-11-06 13:15:27 +01001575 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001576 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001577 goto out;
1578 }
1579
David Woodhouse53b381b2013-01-29 18:40:14 -05001580 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1581 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001582 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001583 goto out;
1584 }
1585 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1586 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001587 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001588 goto out;
1589 }
1590
Chris Masondfe25022008-05-13 13:46:40 -04001591 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001592 struct list_head *devices;
1593 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001594
Chris Masondfe25022008-05-13 13:46:40 -04001595 device = NULL;
1596 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001597 /*
1598 * It is safe to read the devices since the volume_mutex
1599 * is held.
1600 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001601 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001602 if (tmp->in_fs_metadata &&
1603 !tmp->is_tgtdev_for_dev_replace &&
1604 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001605 device = tmp;
1606 break;
1607 }
1608 }
1609 bdev = NULL;
1610 bh = NULL;
1611 disk_super = NULL;
1612 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001613 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001614 goto out;
1615 }
Chris Masondfe25022008-05-13 13:46:40 -04001616 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001617 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001618 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001619 root->fs_info->bdev_holder, 0,
1620 &bdev, &bh);
1621 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001622 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001623 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001624 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001625 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001626 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001627 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001628 if (!device) {
1629 ret = -ENOENT;
1630 goto error_brelse;
1631 }
Chris Masondfe25022008-05-13 13:46:40 -04001632 }
Yan Zheng2b820322008-11-17 21:11:30 -05001633
Stefan Behrens63a212a2012-11-05 18:29:28 +01001634 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001635 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001636 goto error_brelse;
1637 }
1638
Yan Zheng2b820322008-11-17 21:11:30 -05001639 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001640 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001641 goto error_brelse;
1642 }
1643
1644 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001645 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001646 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001647 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001648 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001649 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001650 }
Chris Masona061fc82008-05-07 11:43:44 -04001651
Carey Underwoodd7901552013-03-04 16:37:06 -06001652 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001653 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001654 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001655 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001656 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001657
Stefan Behrens63a212a2012-11-05 18:29:28 +01001658 /*
1659 * TODO: the superblock still includes this device in its num_devices
1660 * counter although write_all_supers() is not locked out. This
1661 * could give a filesystem state which requires a degraded mount.
1662 */
Chris Masona061fc82008-05-07 11:43:44 -04001663 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1664 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001665 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001666
Yan Zheng2b820322008-11-17 21:11:30 -05001667 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001668 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001669
1670 /*
1671 * the device list mutex makes sure that we don't change
1672 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001673 * the device supers. Whoever is writing all supers, should
1674 * lock the device list mutex before getting the number of
1675 * devices in the super block (super_copy). Conversely,
1676 * whoever updates the number of devices in the super block
1677 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001678 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001679
1680 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001681 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001682 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001683
Yan Zhenge4404d62008-12-12 10:03:26 -05001684 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001685 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001686
Chris Masoncd02dca2010-12-13 14:56:23 -05001687 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001688 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001689
Yan Zheng2b820322008-11-17 21:11:30 -05001690 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1691 struct btrfs_device, dev_list);
1692 if (device->bdev == root->fs_info->sb->s_bdev)
1693 root->fs_info->sb->s_bdev = next_device->bdev;
1694 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1695 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1696
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001697 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001698 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001699 /* remove sysfs entry */
1700 btrfs_kobj_rm_device(root->fs_info, device);
1701 }
Anand Jain99994cd2014-06-03 11:36:00 +08001702
Xiao Guangrong1f781602011-04-20 10:09:16 +00001703 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001704
David Sterba6c417612011-04-13 15:41:04 +02001705 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1706 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001707 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001708
Xiao Guangrong1f781602011-04-20 10:09:16 +00001709 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001710 struct btrfs_fs_devices *fs_devices;
1711 fs_devices = root->fs_info->fs_devices;
1712 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001713 if (fs_devices->seed == cur_devices) {
1714 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001715 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001716 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001717 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001718 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001719 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001720 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001721 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001722 }
1723
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001724 root->fs_info->num_tolerated_disk_barrier_failures =
1725 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1726
Yan Zheng2b820322008-11-17 21:11:30 -05001727 /*
1728 * at this point, the device is zero sized. We want to
1729 * remove it from the devices list and zero out the old super
1730 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001731 if (clear_super && disk_super) {
Anand Jain4d90d282014-04-06 12:59:07 +08001732 u64 bytenr;
1733 int i;
1734
Chris Masondfe25022008-05-13 13:46:40 -04001735 /* make sure this device isn't detected as part of
1736 * the FS anymore
1737 */
1738 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1739 set_buffer_dirty(bh);
1740 sync_dirty_buffer(bh);
Anand Jain4d90d282014-04-06 12:59:07 +08001741
1742 /* clear the mirror copies of super block on the disk
1743 * being removed, 0th copy is been taken care above and
1744 * the below would take of the rest
1745 */
1746 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1747 bytenr = btrfs_sb_offset(i);
1748 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
1749 i_size_read(bdev->bd_inode))
1750 break;
1751
1752 brelse(bh);
1753 bh = __bread(bdev, bytenr / 4096,
1754 BTRFS_SUPER_INFO_SIZE);
1755 if (!bh)
1756 continue;
1757
1758 disk_super = (struct btrfs_super_block *)bh->b_data;
1759
1760 if (btrfs_super_bytenr(disk_super) != bytenr ||
1761 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
1762 continue;
1763 }
1764 memset(&disk_super->magic, 0,
1765 sizeof(disk_super->magic));
1766 set_buffer_dirty(bh);
1767 sync_dirty_buffer(bh);
1768 }
Chris Masondfe25022008-05-13 13:46:40 -04001769 }
Chris Masona061fc82008-05-07 11:43:44 -04001770
Chris Masona061fc82008-05-07 11:43:44 -04001771 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001772
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001773 if (bdev) {
1774 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001775 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001776
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001777 /* Update ctime/mtime for device path for libblkid */
1778 update_dev_time(device_path);
1779 }
1780
Chris Masona061fc82008-05-07 11:43:44 -04001781error_brelse:
1782 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001783 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001784 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001785out:
1786 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001787 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001788error_undo:
1789 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001790 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001791 list_add(&device->dev_alloc_list,
1792 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001793 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001794 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001795 }
1796 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001797}
1798
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001799void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1800 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001801{
Anand Jaind51908c2014-08-13 14:24:19 +08001802 struct btrfs_fs_devices *fs_devices;
1803
Stefan Behrense93c89c2012-11-05 17:33:06 +01001804 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001805
Anand Jain25e8e912014-08-20 10:56:56 +08001806 /*
1807 * in case of fs with no seed, srcdev->fs_devices will point
1808 * to fs_devices of fs_info. However when the dev being replaced is
1809 * a seed dev it will point to the seed's local fs_devices. In short
1810 * srcdev will have its correct fs_devices in both the cases.
1811 */
1812 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001813
Stefan Behrense93c89c2012-11-05 17:33:06 +01001814 list_del_rcu(&srcdev->dev_list);
1815 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001816 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001817 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001818 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001819
Miao Xie82372bc2014-09-03 21:35:44 +08001820 if (srcdev->writeable) {
1821 fs_devices->rw_devices--;
1822 /* zero out the old super if it is writable */
1823 btrfs_scratch_superblock(srcdev);
Ilya Dryomov13572722013-10-02 20:41:01 +03001824 }
1825
Miao Xie82372bc2014-09-03 21:35:44 +08001826 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08001827 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001828}
1829
1830void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1831 struct btrfs_device *srcdev)
1832{
1833 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001834
Stefan Behrense93c89c2012-11-05 17:33:06 +01001835 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001836
1837 /*
1838 * unless fs_devices is seed fs, num_devices shouldn't go
1839 * zero
1840 */
1841 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1842
1843 /* if this is no devs we rather delete the fs_devices */
1844 if (!fs_devices->num_devices) {
1845 struct btrfs_fs_devices *tmp_fs_devices;
1846
1847 tmp_fs_devices = fs_info->fs_devices;
1848 while (tmp_fs_devices) {
1849 if (tmp_fs_devices->seed == fs_devices) {
1850 tmp_fs_devices->seed = fs_devices->seed;
1851 break;
1852 }
1853 tmp_fs_devices = tmp_fs_devices->seed;
1854 }
1855 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08001856 __btrfs_close_devices(fs_devices);
1857 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001858 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01001859}
1860
1861void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1862 struct btrfs_device *tgtdev)
1863{
1864 struct btrfs_device *next_device;
1865
Miao Xie67a2c452014-09-03 21:35:43 +08001866 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01001867 WARN_ON(!tgtdev);
1868 mutex_lock(&fs_info->fs_devices->device_list_mutex);
1869 if (tgtdev->bdev) {
1870 btrfs_scratch_superblock(tgtdev);
1871 fs_info->fs_devices->open_devices--;
1872 }
1873 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001874
1875 next_device = list_entry(fs_info->fs_devices->devices.next,
1876 struct btrfs_device, dev_list);
1877 if (tgtdev->bdev == fs_info->sb->s_bdev)
1878 fs_info->sb->s_bdev = next_device->bdev;
1879 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
1880 fs_info->fs_devices->latest_bdev = next_device->bdev;
1881 list_del_rcu(&tgtdev->dev_list);
1882
1883 call_rcu(&tgtdev->rcu, free_device);
1884
1885 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08001886 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01001887}
1888
Eric Sandeen48a3b632013-04-25 20:41:01 +00001889static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
1890 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001891{
1892 int ret = 0;
1893 struct btrfs_super_block *disk_super;
1894 u64 devid;
1895 u8 *dev_uuid;
1896 struct block_device *bdev;
1897 struct buffer_head *bh;
1898
1899 *device = NULL;
1900 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
1901 root->fs_info->bdev_holder, 0, &bdev, &bh);
1902 if (ret)
1903 return ret;
1904 disk_super = (struct btrfs_super_block *)bh->b_data;
1905 devid = btrfs_stack_device_id(&disk_super->dev_item);
1906 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001907 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001908 disk_super->fsid);
1909 brelse(bh);
1910 if (!*device)
1911 ret = -ENOENT;
1912 blkdev_put(bdev, FMODE_READ);
1913 return ret;
1914}
1915
1916int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
1917 char *device_path,
1918 struct btrfs_device **device)
1919{
1920 *device = NULL;
1921 if (strcmp(device_path, "missing") == 0) {
1922 struct list_head *devices;
1923 struct btrfs_device *tmp;
1924
1925 devices = &root->fs_info->fs_devices->devices;
1926 /*
1927 * It is safe to read the devices since the volume_mutex
1928 * is held by the caller.
1929 */
1930 list_for_each_entry(tmp, devices, dev_list) {
1931 if (tmp->in_fs_metadata && !tmp->bdev) {
1932 *device = tmp;
1933 break;
1934 }
1935 }
1936
1937 if (!*device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001938 btrfs_err(root->fs_info, "no missing device found");
Stefan Behrens7ba15b72012-11-05 14:42:30 +01001939 return -ENOENT;
1940 }
1941
1942 return 0;
1943 } else {
1944 return btrfs_find_device_by_path(root, device_path, device);
1945 }
1946}
1947
Yan Zheng2b820322008-11-17 21:11:30 -05001948/*
1949 * does all the dirty work required for changing file system's UUID.
1950 */
Li Zefan125ccb02011-12-08 15:07:24 +08001951static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05001952{
1953 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1954 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001955 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02001956 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05001957 struct btrfs_device *device;
1958 u64 super_flags;
1959
1960 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001961 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001962 return -EINVAL;
1963
Ilya Dryomov2208a372013-08-12 14:33:03 +03001964 seed_devices = __alloc_fs_devices();
1965 if (IS_ERR(seed_devices))
1966 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001967
Yan Zhenge4404d62008-12-12 10:03:26 -05001968 old_devices = clone_fs_devices(fs_devices);
1969 if (IS_ERR(old_devices)) {
1970 kfree(seed_devices);
1971 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001972 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001973
Yan Zheng2b820322008-11-17 21:11:30 -05001974 list_add(&old_devices->list, &fs_uuids);
1975
Yan Zhenge4404d62008-12-12 10:03:26 -05001976 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1977 seed_devices->opened = 1;
1978 INIT_LIST_HEAD(&seed_devices->devices);
1979 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001980 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001981
1982 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001983 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1984 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08001985 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05001986 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08001987
1988 lock_chunks(root);
1989 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1990 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05001991
Yan Zheng2b820322008-11-17 21:11:30 -05001992 fs_devices->seeding = 0;
1993 fs_devices->num_devices = 0;
1994 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08001995 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08001996 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001997 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001998
1999 generate_random_uuid(fs_devices->fsid);
2000 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2001 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002002 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2003
Yan Zheng2b820322008-11-17 21:11:30 -05002004 super_flags = btrfs_super_flags(disk_super) &
2005 ~BTRFS_SUPER_FLAG_SEEDING;
2006 btrfs_set_super_flags(disk_super, super_flags);
2007
2008 return 0;
2009}
2010
2011/*
2012 * strore the expected generation for seed devices in device items.
2013 */
2014static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2015 struct btrfs_root *root)
2016{
2017 struct btrfs_path *path;
2018 struct extent_buffer *leaf;
2019 struct btrfs_dev_item *dev_item;
2020 struct btrfs_device *device;
2021 struct btrfs_key key;
2022 u8 fs_uuid[BTRFS_UUID_SIZE];
2023 u8 dev_uuid[BTRFS_UUID_SIZE];
2024 u64 devid;
2025 int ret;
2026
2027 path = btrfs_alloc_path();
2028 if (!path)
2029 return -ENOMEM;
2030
2031 root = root->fs_info->chunk_root;
2032 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2033 key.offset = 0;
2034 key.type = BTRFS_DEV_ITEM_KEY;
2035
2036 while (1) {
2037 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2038 if (ret < 0)
2039 goto error;
2040
2041 leaf = path->nodes[0];
2042next_slot:
2043 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2044 ret = btrfs_next_leaf(root, path);
2045 if (ret > 0)
2046 break;
2047 if (ret < 0)
2048 goto error;
2049 leaf = path->nodes[0];
2050 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002051 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002052 continue;
2053 }
2054
2055 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2056 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2057 key.type != BTRFS_DEV_ITEM_KEY)
2058 break;
2059
2060 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2061 struct btrfs_dev_item);
2062 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002063 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002064 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002065 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002066 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002067 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2068 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002069 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002070
2071 if (device->fs_devices->seeding) {
2072 btrfs_set_device_generation(leaf, dev_item,
2073 device->generation);
2074 btrfs_mark_buffer_dirty(leaf);
2075 }
2076
2077 path->slots[0]++;
2078 goto next_slot;
2079 }
2080 ret = 0;
2081error:
2082 btrfs_free_path(path);
2083 return ret;
2084}
2085
Chris Mason788f20e2008-04-28 15:29:42 -04002086int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2087{
Josef Bacikd5e20032011-08-04 14:52:27 +00002088 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002089 struct btrfs_trans_handle *trans;
2090 struct btrfs_device *device;
2091 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002092 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002093 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002094 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002095 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002096 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002097 int ret = 0;
2098
Yan Zheng2b820322008-11-17 21:11:30 -05002099 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002100 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002101
Li Zefana5d16332011-12-07 20:08:40 -05002102 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002103 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002104 if (IS_ERR(bdev))
2105 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002106
Yan Zheng2b820322008-11-17 21:11:30 -05002107 if (root->fs_info->fs_devices->seeding) {
2108 seeding_dev = 1;
2109 down_write(&sb->s_umount);
2110 mutex_lock(&uuid_mutex);
2111 }
2112
Chris Mason8c8bee12008-09-29 11:19:10 -04002113 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002114
Chris Mason788f20e2008-04-28 15:29:42 -04002115 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002116
2117 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002118 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002119 if (device->bdev == bdev) {
2120 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002121 mutex_unlock(
2122 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002123 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002124 }
2125 }
Liu Bod25628b2012-11-14 14:35:30 +00002126 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002127
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002128 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2129 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002130 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002131 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002132 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002133 }
2134
Josef Bacik606686e2012-06-04 14:03:51 -04002135 name = rcu_string_strdup(device_path, GFP_NOFS);
2136 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002137 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002138 ret = -ENOMEM;
2139 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002140 }
Josef Bacik606686e2012-06-04 14:03:51 -04002141 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002142
Yan, Zhenga22285a2010-05-16 10:48:46 -04002143 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002144 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002145 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002146 kfree(device);
2147 ret = PTR_ERR(trans);
2148 goto error;
2149 }
2150
Josef Bacikd5e20032011-08-04 14:52:27 +00002151 q = bdev_get_queue(bdev);
2152 if (blk_queue_discard(q))
2153 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002154 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002155 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002156 device->io_width = root->sectorsize;
2157 device->io_align = root->sectorsize;
2158 device->sector_size = root->sectorsize;
2159 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002160 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002161 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002162 device->dev_root = root->fs_info->dev_root;
2163 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002164 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002165 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002166 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002167 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002168 set_blocksize(device->bdev, 4096);
2169
Yan Zheng2b820322008-11-17 21:11:30 -05002170 if (seeding_dev) {
2171 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002172 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002173 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002174 }
2175
2176 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002177
Chris Masone5e9a522009-06-10 15:17:02 -04002178 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002179 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002180 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002181 list_add(&device->dev_alloc_list,
2182 &root->fs_info->fs_devices->alloc_list);
2183 root->fs_info->fs_devices->num_devices++;
2184 root->fs_info->fs_devices->open_devices++;
2185 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002186 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002187 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2188
Josef Bacik2bf64752011-09-26 17:12:22 -04002189 spin_lock(&root->fs_info->free_chunk_lock);
2190 root->fs_info->free_chunk_space += device->total_bytes;
2191 spin_unlock(&root->fs_info->free_chunk_lock);
2192
Chris Masonc2898112009-06-10 09:51:32 -04002193 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2194 root->fs_info->fs_devices->rotating = 1;
2195
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002196 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002197 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002198 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002199
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002200 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002201 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002202 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002203
2204 /* add sysfs device entry */
2205 btrfs_kobj_add_device(root->fs_info, device);
2206
Miao Xie2196d6e2014-09-03 21:35:41 +08002207 /*
2208 * we've got more storage, clear any full flags on the space
2209 * infos
2210 */
2211 btrfs_clear_space_info_full(root->fs_info);
2212
2213 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002214 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002215
Yan Zheng2b820322008-11-17 21:11:30 -05002216 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002217 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002218 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002219 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002220 if (ret) {
2221 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002222 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002223 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002224 }
2225
2226 ret = btrfs_add_device(trans, root, device);
2227 if (ret) {
2228 btrfs_abort_transaction(trans, root, ret);
2229 goto error_trans;
2230 }
2231
2232 if (seeding_dev) {
2233 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2234
Yan Zheng2b820322008-11-17 21:11:30 -05002235 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002236 if (ret) {
2237 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002238 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002239 }
Anand Jainb2373f22014-06-03 11:36:03 +08002240
2241 /* Sprouting would change fsid of the mounted root,
2242 * so rename the fsid on the sysfs
2243 */
2244 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2245 root->fs_info->fsid);
2246 if (kobject_rename(&root->fs_info->super_kobj, fsid_buf))
2247 goto error_trans;
Yan Zheng2b820322008-11-17 21:11:30 -05002248 }
2249
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002250 root->fs_info->num_tolerated_disk_barrier_failures =
2251 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002252 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002253
2254 if (seeding_dev) {
2255 mutex_unlock(&uuid_mutex);
2256 up_write(&sb->s_umount);
2257
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002258 if (ret) /* transaction commit */
2259 return ret;
2260
Yan Zheng2b820322008-11-17 21:11:30 -05002261 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002262 if (ret < 0)
2263 btrfs_error(root->fs_info, ret,
2264 "Failed to relocate sys chunks after "
2265 "device initialization. This can be fixed "
2266 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002267 trans = btrfs_attach_transaction(root);
2268 if (IS_ERR(trans)) {
2269 if (PTR_ERR(trans) == -ENOENT)
2270 return 0;
2271 return PTR_ERR(trans);
2272 }
2273 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002274 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002275
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002276 /* Update ctime/mtime for libblkid */
2277 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002278 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002279
2280error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002281 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002282 rcu_string_free(device->name);
Anand Jain0d393762014-06-03 11:36:01 +08002283 btrfs_kobj_rm_device(root->fs_info, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002284 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002285error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002286 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002287 if (seeding_dev) {
2288 mutex_unlock(&uuid_mutex);
2289 up_write(&sb->s_umount);
2290 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002291 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002292}
2293
Stefan Behrense93c89c2012-11-05 17:33:06 +01002294int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002295 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002296 struct btrfs_device **device_out)
2297{
2298 struct request_queue *q;
2299 struct btrfs_device *device;
2300 struct block_device *bdev;
2301 struct btrfs_fs_info *fs_info = root->fs_info;
2302 struct list_head *devices;
2303 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002304 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002305 int ret = 0;
2306
2307 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002308 if (fs_info->fs_devices->seeding) {
2309 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002310 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002311 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002312
2313 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2314 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002315 if (IS_ERR(bdev)) {
2316 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002317 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002318 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002319
2320 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2321
2322 devices = &fs_info->fs_devices->devices;
2323 list_for_each_entry(device, devices, dev_list) {
2324 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002325 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002326 ret = -EEXIST;
2327 goto error;
2328 }
2329 }
2330
Miao Xie1c433662014-09-03 21:35:32 +08002331
Miao Xie7cc8e582014-09-03 21:35:38 +08002332 if (i_size_read(bdev->bd_inode) <
2333 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002334 btrfs_err(fs_info, "target device is smaller than source device!");
2335 ret = -EINVAL;
2336 goto error;
2337 }
2338
2339
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002340 device = btrfs_alloc_device(NULL, &devid, NULL);
2341 if (IS_ERR(device)) {
2342 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002343 goto error;
2344 }
2345
2346 name = rcu_string_strdup(device_path, GFP_NOFS);
2347 if (!name) {
2348 kfree(device);
2349 ret = -ENOMEM;
2350 goto error;
2351 }
2352 rcu_assign_pointer(device->name, name);
2353
2354 q = bdev_get_queue(bdev);
2355 if (blk_queue_discard(q))
2356 device->can_discard = 1;
2357 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2358 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002359 device->generation = 0;
2360 device->io_width = root->sectorsize;
2361 device->io_align = root->sectorsize;
2362 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002363 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2364 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2365 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002366 ASSERT(list_empty(&srcdev->resized_list));
2367 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002368 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002369 device->dev_root = fs_info->dev_root;
2370 device->bdev = bdev;
2371 device->in_fs_metadata = 1;
2372 device->is_tgtdev_for_dev_replace = 1;
2373 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002374 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002375 set_blocksize(device->bdev, 4096);
2376 device->fs_devices = fs_info->fs_devices;
2377 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2378 fs_info->fs_devices->num_devices++;
2379 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002380 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2381
2382 *device_out = device;
2383 return ret;
2384
2385error:
2386 blkdev_put(bdev, FMODE_EXCL);
2387 return ret;
2388}
2389
2390void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2391 struct btrfs_device *tgtdev)
2392{
2393 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2394 tgtdev->io_width = fs_info->dev_root->sectorsize;
2395 tgtdev->io_align = fs_info->dev_root->sectorsize;
2396 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2397 tgtdev->dev_root = fs_info->dev_root;
2398 tgtdev->in_fs_metadata = 1;
2399}
2400
Chris Masond3977122009-01-05 21:25:51 -05002401static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2402 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002403{
2404 int ret;
2405 struct btrfs_path *path;
2406 struct btrfs_root *root;
2407 struct btrfs_dev_item *dev_item;
2408 struct extent_buffer *leaf;
2409 struct btrfs_key key;
2410
2411 root = device->dev_root->fs_info->chunk_root;
2412
2413 path = btrfs_alloc_path();
2414 if (!path)
2415 return -ENOMEM;
2416
2417 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2418 key.type = BTRFS_DEV_ITEM_KEY;
2419 key.offset = device->devid;
2420
2421 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2422 if (ret < 0)
2423 goto out;
2424
2425 if (ret > 0) {
2426 ret = -ENOENT;
2427 goto out;
2428 }
2429
2430 leaf = path->nodes[0];
2431 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2432
2433 btrfs_set_device_id(leaf, dev_item, device->devid);
2434 btrfs_set_device_type(leaf, dev_item, device->type);
2435 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2436 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2437 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002438 btrfs_set_device_total_bytes(leaf, dev_item,
2439 btrfs_device_get_disk_total_bytes(device));
2440 btrfs_set_device_bytes_used(leaf, dev_item,
2441 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002442 btrfs_mark_buffer_dirty(leaf);
2443
2444out:
2445 btrfs_free_path(path);
2446 return ret;
2447}
2448
Miao Xie2196d6e2014-09-03 21:35:41 +08002449int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002450 struct btrfs_device *device, u64 new_size)
2451{
2452 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002453 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002454 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002455 u64 old_total;
2456 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002457
Yan Zheng2b820322008-11-17 21:11:30 -05002458 if (!device->writeable)
2459 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002460
2461 lock_chunks(device->dev_root);
2462 old_total = btrfs_super_total_bytes(super_copy);
2463 diff = new_size - device->total_bytes;
2464
Stefan Behrens63a212a2012-11-05 18:29:28 +01002465 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002466 device->is_tgtdev_for_dev_replace) {
2467 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002468 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002469 }
Yan Zheng2b820322008-11-17 21:11:30 -05002470
Miao Xie935e5cc2014-09-03 21:35:33 +08002471 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002472
2473 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002474 device->fs_devices->total_rw_bytes += diff;
2475
Miao Xie7cc8e582014-09-03 21:35:38 +08002476 btrfs_device_set_total_bytes(device, new_size);
2477 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002478 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002479 if (list_empty(&device->resized_list))
2480 list_add_tail(&device->resized_list,
2481 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002482 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002483
Chris Mason8f18cf12008-04-25 16:53:30 -04002484 return btrfs_update_device(trans, device);
2485}
2486
2487static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
2488 struct btrfs_root *root,
2489 u64 chunk_tree, u64 chunk_objectid,
2490 u64 chunk_offset)
2491{
2492 int ret;
2493 struct btrfs_path *path;
2494 struct btrfs_key key;
2495
2496 root = root->fs_info->chunk_root;
2497 path = btrfs_alloc_path();
2498 if (!path)
2499 return -ENOMEM;
2500
2501 key.objectid = chunk_objectid;
2502 key.offset = chunk_offset;
2503 key.type = BTRFS_CHUNK_ITEM_KEY;
2504
2505 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002506 if (ret < 0)
2507 goto out;
2508 else if (ret > 0) { /* Logic error or corruption */
2509 btrfs_error(root->fs_info, -ENOENT,
2510 "Failed lookup while freeing chunk.");
2511 ret = -ENOENT;
2512 goto out;
2513 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002514
2515 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002516 if (ret < 0)
2517 btrfs_error(root->fs_info, ret,
2518 "Failed to delete chunk item.");
2519out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002520 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002521 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002522}
2523
Christoph Hellwigb2950862008-12-02 09:54:17 -05002524static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002525 chunk_offset)
2526{
David Sterba6c417612011-04-13 15:41:04 +02002527 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002528 struct btrfs_disk_key *disk_key;
2529 struct btrfs_chunk *chunk;
2530 u8 *ptr;
2531 int ret = 0;
2532 u32 num_stripes;
2533 u32 array_size;
2534 u32 len = 0;
2535 u32 cur;
2536 struct btrfs_key key;
2537
Miao Xie2196d6e2014-09-03 21:35:41 +08002538 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002539 array_size = btrfs_super_sys_array_size(super_copy);
2540
2541 ptr = super_copy->sys_chunk_array;
2542 cur = 0;
2543
2544 while (cur < array_size) {
2545 disk_key = (struct btrfs_disk_key *)ptr;
2546 btrfs_disk_key_to_cpu(&key, disk_key);
2547
2548 len = sizeof(*disk_key);
2549
2550 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2551 chunk = (struct btrfs_chunk *)(ptr + len);
2552 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2553 len += btrfs_chunk_item_size(num_stripes);
2554 } else {
2555 ret = -EIO;
2556 break;
2557 }
2558 if (key.objectid == chunk_objectid &&
2559 key.offset == chunk_offset) {
2560 memmove(ptr, ptr + len, array_size - (cur + len));
2561 array_size -= len;
2562 btrfs_set_super_sys_array_size(super_copy, array_size);
2563 } else {
2564 ptr += len;
2565 cur += len;
2566 }
2567 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002568 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002569 return ret;
2570}
2571
Josef Bacik47ab2a62014-09-18 11:20:02 -04002572int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2573 struct btrfs_root *root, u64 chunk_offset)
2574{
2575 struct extent_map_tree *em_tree;
2576 struct extent_map *em;
2577 struct btrfs_root *extent_root = root->fs_info->extent_root;
2578 struct map_lookup *map;
2579 u64 dev_extent_len = 0;
2580 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2581 u64 chunk_tree = root->fs_info->chunk_root->objectid;
2582 int i, ret = 0;
2583
2584 /* Just in case */
2585 root = root->fs_info->chunk_root;
2586 em_tree = &root->fs_info->mapping_tree.map_tree;
2587
2588 read_lock(&em_tree->lock);
2589 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2590 read_unlock(&em_tree->lock);
2591
2592 if (!em || em->start > chunk_offset ||
2593 em->start + em->len < chunk_offset) {
2594 /*
2595 * This is a logic error, but we don't want to just rely on the
2596 * user having built with ASSERT enabled, so if ASSERT doens't
2597 * do anything we still error out.
2598 */
2599 ASSERT(0);
2600 if (em)
2601 free_extent_map(em);
2602 return -EINVAL;
2603 }
2604 map = (struct map_lookup *)em->bdev;
2605
2606 for (i = 0; i < map->num_stripes; i++) {
2607 struct btrfs_device *device = map->stripes[i].dev;
2608 ret = btrfs_free_dev_extent(trans, device,
2609 map->stripes[i].physical,
2610 &dev_extent_len);
2611 if (ret) {
2612 btrfs_abort_transaction(trans, root, ret);
2613 goto out;
2614 }
2615
2616 if (device->bytes_used > 0) {
2617 lock_chunks(root);
2618 btrfs_device_set_bytes_used(device,
2619 device->bytes_used - dev_extent_len);
2620 spin_lock(&root->fs_info->free_chunk_lock);
2621 root->fs_info->free_chunk_space += dev_extent_len;
2622 spin_unlock(&root->fs_info->free_chunk_lock);
2623 btrfs_clear_space_info_full(root->fs_info);
2624 unlock_chunks(root);
2625 }
2626
2627 if (map->stripes[i].dev) {
2628 ret = btrfs_update_device(trans, map->stripes[i].dev);
2629 if (ret) {
2630 btrfs_abort_transaction(trans, root, ret);
2631 goto out;
2632 }
2633 }
2634 }
2635 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
2636 chunk_offset);
2637 if (ret) {
2638 btrfs_abort_transaction(trans, root, ret);
2639 goto out;
2640 }
2641
2642 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2643
2644 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2645 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2646 if (ret) {
2647 btrfs_abort_transaction(trans, root, ret);
2648 goto out;
2649 }
2650 }
2651
Filipe Manana04216822014-11-27 21:14:15 +00002652 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002653 if (ret) {
2654 btrfs_abort_transaction(trans, extent_root, ret);
2655 goto out;
2656 }
2657
Josef Bacik47ab2a62014-09-18 11:20:02 -04002658out:
2659 /* once for us */
2660 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002661 return ret;
2662}
2663
Christoph Hellwigb2950862008-12-02 09:54:17 -05002664static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04002665 u64 chunk_tree, u64 chunk_objectid,
2666 u64 chunk_offset)
2667{
Chris Mason8f18cf12008-04-25 16:53:30 -04002668 struct btrfs_root *extent_root;
2669 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002670 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002671
2672 root = root->fs_info->chunk_root;
2673 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002674
Josef Bacikba1bf482009-09-11 16:11:19 -04002675 ret = btrfs_can_relocate(extent_root, chunk_offset);
2676 if (ret)
2677 return -ENOSPC;
2678
Chris Mason8f18cf12008-04-25 16:53:30 -04002679 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04002680 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002681 if (ret)
2682 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002683
Yan, Zhenga22285a2010-05-16 10:48:46 -04002684 trans = btrfs_start_transaction(root, 0);
Liu Bo0f788c52013-03-04 16:25:40 +00002685 if (IS_ERR(trans)) {
2686 ret = PTR_ERR(trans);
2687 btrfs_std_error(root->fs_info, ret);
2688 return ret;
2689 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002690
2691 /*
2692 * step two, delete the device extents and the
2693 * chunk tree entries
2694 */
Josef Bacik47ab2a62014-09-18 11:20:02 -04002695 ret = btrfs_remove_chunk(trans, root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002696 btrfs_end_transaction(trans, root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002697 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002698}
2699
Yan Zheng2b820322008-11-17 21:11:30 -05002700static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2701{
2702 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2703 struct btrfs_path *path;
2704 struct extent_buffer *leaf;
2705 struct btrfs_chunk *chunk;
2706 struct btrfs_key key;
2707 struct btrfs_key found_key;
2708 u64 chunk_tree = chunk_root->root_key.objectid;
2709 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002710 bool retried = false;
2711 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002712 int ret;
2713
2714 path = btrfs_alloc_path();
2715 if (!path)
2716 return -ENOMEM;
2717
Josef Bacikba1bf482009-09-11 16:11:19 -04002718again:
Yan Zheng2b820322008-11-17 21:11:30 -05002719 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2720 key.offset = (u64)-1;
2721 key.type = BTRFS_CHUNK_ITEM_KEY;
2722
2723 while (1) {
2724 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2725 if (ret < 0)
2726 goto error;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002727 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002728
2729 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2730 key.type);
2731 if (ret < 0)
2732 goto error;
2733 if (ret > 0)
2734 break;
2735
2736 leaf = path->nodes[0];
2737 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2738
2739 chunk = btrfs_item_ptr(leaf, path->slots[0],
2740 struct btrfs_chunk);
2741 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002742 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002743
2744 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
2745 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
2746 found_key.objectid,
2747 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002748 if (ret == -ENOSPC)
2749 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302750 else
2751 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002752 }
2753
2754 if (found_key.offset == 0)
2755 break;
2756 key.offset = found_key.offset - 1;
2757 }
2758 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002759 if (failed && !retried) {
2760 failed = 0;
2761 retried = true;
2762 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302763 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002764 ret = -ENOSPC;
2765 }
Yan Zheng2b820322008-11-17 21:11:30 -05002766error:
2767 btrfs_free_path(path);
2768 return ret;
2769}
2770
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002771static int insert_balance_item(struct btrfs_root *root,
2772 struct btrfs_balance_control *bctl)
2773{
2774 struct btrfs_trans_handle *trans;
2775 struct btrfs_balance_item *item;
2776 struct btrfs_disk_balance_args disk_bargs;
2777 struct btrfs_path *path;
2778 struct extent_buffer *leaf;
2779 struct btrfs_key key;
2780 int ret, err;
2781
2782 path = btrfs_alloc_path();
2783 if (!path)
2784 return -ENOMEM;
2785
2786 trans = btrfs_start_transaction(root, 0);
2787 if (IS_ERR(trans)) {
2788 btrfs_free_path(path);
2789 return PTR_ERR(trans);
2790 }
2791
2792 key.objectid = BTRFS_BALANCE_OBJECTID;
2793 key.type = BTRFS_BALANCE_ITEM_KEY;
2794 key.offset = 0;
2795
2796 ret = btrfs_insert_empty_item(trans, root, path, &key,
2797 sizeof(*item));
2798 if (ret)
2799 goto out;
2800
2801 leaf = path->nodes[0];
2802 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2803
2804 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2805
2806 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2807 btrfs_set_balance_data(leaf, item, &disk_bargs);
2808 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2809 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2810 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2811 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2812
2813 btrfs_set_balance_flags(leaf, item, bctl->flags);
2814
2815 btrfs_mark_buffer_dirty(leaf);
2816out:
2817 btrfs_free_path(path);
2818 err = btrfs_commit_transaction(trans, root);
2819 if (err && !ret)
2820 ret = err;
2821 return ret;
2822}
2823
2824static int del_balance_item(struct btrfs_root *root)
2825{
2826 struct btrfs_trans_handle *trans;
2827 struct btrfs_path *path;
2828 struct btrfs_key key;
2829 int ret, err;
2830
2831 path = btrfs_alloc_path();
2832 if (!path)
2833 return -ENOMEM;
2834
2835 trans = btrfs_start_transaction(root, 0);
2836 if (IS_ERR(trans)) {
2837 btrfs_free_path(path);
2838 return PTR_ERR(trans);
2839 }
2840
2841 key.objectid = BTRFS_BALANCE_OBJECTID;
2842 key.type = BTRFS_BALANCE_ITEM_KEY;
2843 key.offset = 0;
2844
2845 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2846 if (ret < 0)
2847 goto out;
2848 if (ret > 0) {
2849 ret = -ENOENT;
2850 goto out;
2851 }
2852
2853 ret = btrfs_del_item(trans, root, path);
2854out:
2855 btrfs_free_path(path);
2856 err = btrfs_commit_transaction(trans, root);
2857 if (err && !ret)
2858 ret = err;
2859 return ret;
2860}
2861
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002862/*
Ilya Dryomov59641012012-01-16 22:04:48 +02002863 * This is a heuristic used to reduce the number of chunks balanced on
2864 * resume after balance was interrupted.
2865 */
2866static void update_balance_args(struct btrfs_balance_control *bctl)
2867{
2868 /*
2869 * Turn on soft mode for chunk types that were being converted.
2870 */
2871 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
2872 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
2873 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
2874 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
2875 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
2876 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
2877
2878 /*
2879 * Turn on usage filter if is not already used. The idea is
2880 * that chunks that we have already balanced should be
2881 * reasonably full. Don't do it for chunks that are being
2882 * converted - that will keep us from relocating unconverted
2883 * (albeit full) chunks.
2884 */
2885 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2886 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2887 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
2888 bctl->data.usage = 90;
2889 }
2890 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2891 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2892 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
2893 bctl->sys.usage = 90;
2894 }
2895 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2896 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2897 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
2898 bctl->meta.usage = 90;
2899 }
2900}
2901
2902/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002903 * Should be called with both balance and volume mutexes held to
2904 * serialize other volume operations (add_dev/rm_dev/resize) with
2905 * restriper. Same goes for unset_balance_control.
2906 */
2907static void set_balance_control(struct btrfs_balance_control *bctl)
2908{
2909 struct btrfs_fs_info *fs_info = bctl->fs_info;
2910
2911 BUG_ON(fs_info->balance_ctl);
2912
2913 spin_lock(&fs_info->balance_lock);
2914 fs_info->balance_ctl = bctl;
2915 spin_unlock(&fs_info->balance_lock);
2916}
2917
2918static void unset_balance_control(struct btrfs_fs_info *fs_info)
2919{
2920 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
2921
2922 BUG_ON(!fs_info->balance_ctl);
2923
2924 spin_lock(&fs_info->balance_lock);
2925 fs_info->balance_ctl = NULL;
2926 spin_unlock(&fs_info->balance_lock);
2927
2928 kfree(bctl);
2929}
2930
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002931/*
2932 * Balance filters. Return 1 if chunk should be filtered out
2933 * (should not be balanced).
2934 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002935static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002936 struct btrfs_balance_args *bargs)
2937{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002938 chunk_type = chunk_to_extended(chunk_type) &
2939 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002940
Ilya Dryomov899c81e2012-03-27 17:09:16 +03002941 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002942 return 0;
2943
2944 return 1;
2945}
2946
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002947static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
2948 struct btrfs_balance_args *bargs)
2949{
2950 struct btrfs_block_group_cache *cache;
2951 u64 chunk_used, user_thresh;
2952 int ret = 1;
2953
2954 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2955 chunk_used = btrfs_block_group_used(&cache->item);
2956
Ilya Dryomova105bb82013-01-21 15:15:56 +02002957 if (bargs->usage == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00002958 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02002959 else if (bargs->usage > 100)
2960 user_thresh = cache->key.offset;
2961 else
2962 user_thresh = div_factor_fine(cache->key.offset,
2963 bargs->usage);
2964
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002965 if (chunk_used < user_thresh)
2966 ret = 0;
2967
2968 btrfs_put_block_group(cache);
2969 return ret;
2970}
2971
Ilya Dryomov409d4042012-01-16 22:04:47 +02002972static int chunk_devid_filter(struct extent_buffer *leaf,
2973 struct btrfs_chunk *chunk,
2974 struct btrfs_balance_args *bargs)
2975{
2976 struct btrfs_stripe *stripe;
2977 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2978 int i;
2979
2980 for (i = 0; i < num_stripes; i++) {
2981 stripe = btrfs_stripe_nr(chunk, i);
2982 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
2983 return 0;
2984 }
2985
2986 return 1;
2987}
2988
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002989/* [pstart, pend) */
2990static int chunk_drange_filter(struct extent_buffer *leaf,
2991 struct btrfs_chunk *chunk,
2992 u64 chunk_offset,
2993 struct btrfs_balance_args *bargs)
2994{
2995 struct btrfs_stripe *stripe;
2996 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2997 u64 stripe_offset;
2998 u64 stripe_length;
2999 int factor;
3000 int i;
3001
3002 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3003 return 0;
3004
3005 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003006 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3007 factor = num_stripes / 2;
3008 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3009 factor = num_stripes - 1;
3010 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3011 factor = num_stripes - 2;
3012 } else {
3013 factor = num_stripes;
3014 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003015
3016 for (i = 0; i < num_stripes; i++) {
3017 stripe = btrfs_stripe_nr(chunk, i);
3018 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3019 continue;
3020
3021 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3022 stripe_length = btrfs_chunk_length(leaf, chunk);
3023 do_div(stripe_length, factor);
3024
3025 if (stripe_offset < bargs->pend &&
3026 stripe_offset + stripe_length > bargs->pstart)
3027 return 0;
3028 }
3029
3030 return 1;
3031}
3032
Ilya Dryomovea671762012-01-16 22:04:48 +02003033/* [vstart, vend) */
3034static int chunk_vrange_filter(struct extent_buffer *leaf,
3035 struct btrfs_chunk *chunk,
3036 u64 chunk_offset,
3037 struct btrfs_balance_args *bargs)
3038{
3039 if (chunk_offset < bargs->vend &&
3040 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3041 /* at least part of the chunk is inside this vrange */
3042 return 0;
3043
3044 return 1;
3045}
3046
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003047static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003048 struct btrfs_balance_args *bargs)
3049{
3050 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3051 return 0;
3052
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003053 chunk_type = chunk_to_extended(chunk_type) &
3054 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003055
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003056 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003057 return 1;
3058
3059 return 0;
3060}
3061
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003062static int should_balance_chunk(struct btrfs_root *root,
3063 struct extent_buffer *leaf,
3064 struct btrfs_chunk *chunk, u64 chunk_offset)
3065{
3066 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3067 struct btrfs_balance_args *bargs = NULL;
3068 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3069
3070 /* type filter */
3071 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3072 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3073 return 0;
3074 }
3075
3076 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3077 bargs = &bctl->data;
3078 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3079 bargs = &bctl->sys;
3080 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3081 bargs = &bctl->meta;
3082
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003083 /* profiles filter */
3084 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3085 chunk_profiles_filter(chunk_type, bargs)) {
3086 return 0;
3087 }
3088
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003089 /* usage filter */
3090 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3091 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3092 return 0;
3093 }
3094
Ilya Dryomov409d4042012-01-16 22:04:47 +02003095 /* devid filter */
3096 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3097 chunk_devid_filter(leaf, chunk, bargs)) {
3098 return 0;
3099 }
3100
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003101 /* drange filter, makes sense only with devid filter */
3102 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3103 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3104 return 0;
3105 }
3106
Ilya Dryomovea671762012-01-16 22:04:48 +02003107 /* vrange filter */
3108 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3109 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3110 return 0;
3111 }
3112
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003113 /* soft profile changing mode */
3114 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3115 chunk_soft_convert_filter(chunk_type, bargs)) {
3116 return 0;
3117 }
3118
David Sterba7d824b62014-05-07 17:37:51 +02003119 /*
3120 * limited by count, must be the last filter
3121 */
3122 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3123 if (bargs->limit == 0)
3124 return 0;
3125 else
3126 bargs->limit--;
3127 }
3128
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003129 return 1;
3130}
3131
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003132static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003133{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003134 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003135 struct btrfs_root *chunk_root = fs_info->chunk_root;
3136 struct btrfs_root *dev_root = fs_info->dev_root;
3137 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003138 struct btrfs_device *device;
3139 u64 old_size;
3140 u64 size_to_free;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003141 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003142 struct btrfs_path *path;
3143 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003144 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003145 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003146 struct extent_buffer *leaf;
3147 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003148 int ret;
3149 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003150 bool counting = true;
David Sterba7d824b62014-05-07 17:37:51 +02003151 u64 limit_data = bctl->data.limit;
3152 u64 limit_meta = bctl->meta.limit;
3153 u64 limit_sys = bctl->sys.limit;
Chris Masonec44a352008-04-28 15:29:52 -04003154
Chris Masonec44a352008-04-28 15:29:52 -04003155 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003156 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003157 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003158 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003159 size_to_free = div_factor(old_size, 1);
3160 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05003161 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003162 btrfs_device_get_total_bytes(device) -
3163 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003164 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003165 continue;
3166
3167 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003168 if (ret == -ENOSPC)
3169 break;
Chris Masonec44a352008-04-28 15:29:52 -04003170 BUG_ON(ret);
3171
Yan, Zhenga22285a2010-05-16 10:48:46 -04003172 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003173 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003174
3175 ret = btrfs_grow_device(trans, device, old_size);
3176 BUG_ON(ret);
3177
3178 btrfs_end_transaction(trans, dev_root);
3179 }
3180
3181 /* step two, relocate all the chunks */
3182 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003183 if (!path) {
3184 ret = -ENOMEM;
3185 goto error;
3186 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003187
3188 /* zero out stat counters */
3189 spin_lock(&fs_info->balance_lock);
3190 memset(&bctl->stat, 0, sizeof(bctl->stat));
3191 spin_unlock(&fs_info->balance_lock);
3192again:
David Sterba7d824b62014-05-07 17:37:51 +02003193 if (!counting) {
3194 bctl->data.limit = limit_data;
3195 bctl->meta.limit = limit_meta;
3196 bctl->sys.limit = limit_sys;
3197 }
Chris Masonec44a352008-04-28 15:29:52 -04003198 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3199 key.offset = (u64)-1;
3200 key.type = BTRFS_CHUNK_ITEM_KEY;
3201
Chris Masond3977122009-01-05 21:25:51 -05003202 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003203 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003204 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003205 ret = -ECANCELED;
3206 goto error;
3207 }
3208
Chris Masonec44a352008-04-28 15:29:52 -04003209 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
3210 if (ret < 0)
3211 goto error;
3212
3213 /*
3214 * this shouldn't happen, it means the last relocate
3215 * failed
3216 */
3217 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003218 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003219
3220 ret = btrfs_previous_item(chunk_root, path, 0,
3221 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003222 if (ret) {
3223 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003224 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003225 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003226
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003227 leaf = path->nodes[0];
3228 slot = path->slots[0];
3229 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3230
Chris Masonec44a352008-04-28 15:29:52 -04003231 if (found_key.objectid != key.objectid)
3232 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04003233
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003234 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3235
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003236 if (!counting) {
3237 spin_lock(&fs_info->balance_lock);
3238 bctl->stat.considered++;
3239 spin_unlock(&fs_info->balance_lock);
3240 }
3241
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003242 ret = should_balance_chunk(chunk_root, leaf, chunk,
3243 found_key.offset);
David Sterbab3b4aa72011-04-21 01:20:15 +02003244 btrfs_release_path(path);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003245 if (!ret)
3246 goto loop;
3247
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003248 if (counting) {
3249 spin_lock(&fs_info->balance_lock);
3250 bctl->stat.expected++;
3251 spin_unlock(&fs_info->balance_lock);
3252 goto loop;
3253 }
3254
Chris Masonec44a352008-04-28 15:29:52 -04003255 ret = btrfs_relocate_chunk(chunk_root,
3256 chunk_root->root_key.objectid,
3257 found_key.objectid,
3258 found_key.offset);
Josef Bacik508794e2011-07-02 21:24:41 +00003259 if (ret && ret != -ENOSPC)
3260 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003261 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003262 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003263 } else {
3264 spin_lock(&fs_info->balance_lock);
3265 bctl->stat.completed++;
3266 spin_unlock(&fs_info->balance_lock);
3267 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003268loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003269 if (found_key.offset == 0)
3270 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003271 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003272 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003273
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003274 if (counting) {
3275 btrfs_release_path(path);
3276 counting = false;
3277 goto again;
3278 }
Chris Masonec44a352008-04-28 15:29:52 -04003279error:
3280 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003281 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003282 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003283 enospc_errors);
3284 if (!ret)
3285 ret = -ENOSPC;
3286 }
3287
Chris Masonec44a352008-04-28 15:29:52 -04003288 return ret;
3289}
3290
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003291/**
3292 * alloc_profile_is_valid - see if a given profile is valid and reduced
3293 * @flags: profile to validate
3294 * @extended: if true @flags is treated as an extended profile
3295 */
3296static int alloc_profile_is_valid(u64 flags, int extended)
3297{
3298 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3299 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3300
3301 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3302
3303 /* 1) check that all other bits are zeroed */
3304 if (flags & ~mask)
3305 return 0;
3306
3307 /* 2) see if profile is reduced */
3308 if (flags == 0)
3309 return !extended; /* "0" is valid for usual profiles */
3310
3311 /* true if exactly one bit set */
3312 return (flags & (flags - 1)) == 0;
3313}
3314
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003315static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3316{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003317 /* cancel requested || normal exit path */
3318 return atomic_read(&fs_info->balance_cancel_req) ||
3319 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3320 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003321}
3322
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003323static void __cancel_balance(struct btrfs_fs_info *fs_info)
3324{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003325 int ret;
3326
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003327 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003328 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003329 if (ret)
3330 btrfs_std_error(fs_info, ret);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003331
3332 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003333}
3334
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003335/*
3336 * Should be called with both balance and volume mutexes held
3337 */
3338int btrfs_balance(struct btrfs_balance_control *bctl,
3339 struct btrfs_ioctl_balance_args *bargs)
3340{
3341 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003342 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003343 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003344 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003345 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003346 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003347
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003348 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003349 atomic_read(&fs_info->balance_pause_req) ||
3350 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003351 ret = -EINVAL;
3352 goto out;
3353 }
3354
Ilya Dryomove4837f82012-03-27 17:09:17 +03003355 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3356 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3357 mixed = 1;
3358
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003359 /*
3360 * In case of mixed groups both data and meta should be picked,
3361 * and identical options should be given for both of them.
3362 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003363 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3364 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003365 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3366 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3367 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003368 btrfs_err(fs_info, "with mixed groups data and "
3369 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003370 ret = -EINVAL;
3371 goto out;
3372 }
3373 }
3374
Stefan Behrens8dabb742012-11-06 13:15:27 +01003375 num_devices = fs_info->fs_devices->num_devices;
3376 btrfs_dev_replace_lock(&fs_info->dev_replace);
3377 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3378 BUG_ON(num_devices < 1);
3379 num_devices--;
3380 }
3381 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003382 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003383 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003384 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003385 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003386 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003387 if (num_devices > 2)
3388 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3389 if (num_devices > 3)
3390 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3391 BTRFS_BLOCK_GROUP_RAID6);
Ilya Dryomov6728b192012-03-27 17:09:17 +03003392 if ((bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3393 (!alloc_profile_is_valid(bctl->data.target, 1) ||
3394 (bctl->data.target & ~allowed))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003395 btrfs_err(fs_info, "unable to start balance with target "
3396 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003397 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003398 ret = -EINVAL;
3399 goto out;
3400 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003401 if ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3402 (!alloc_profile_is_valid(bctl->meta.target, 1) ||
3403 (bctl->meta.target & ~allowed))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003404 btrfs_err(fs_info,
3405 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003406 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003407 ret = -EINVAL;
3408 goto out;
3409 }
Ilya Dryomov6728b192012-03-27 17:09:17 +03003410 if ((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3411 (!alloc_profile_is_valid(bctl->sys.target, 1) ||
3412 (bctl->sys.target & ~allowed))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003413 btrfs_err(fs_info,
3414 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003415 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003416 ret = -EINVAL;
3417 goto out;
3418 }
3419
Ilya Dryomove4837f82012-03-27 17:09:17 +03003420 /* allow dup'ed data chunks only in mixed mode */
3421 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
Ilya Dryomov6728b192012-03-27 17:09:17 +03003422 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003423 btrfs_err(fs_info, "dup for data is not allowed");
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003424 ret = -EINVAL;
3425 goto out;
3426 }
3427
3428 /* allow to reduce meta or sys integrity only if force set */
3429 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003430 BTRFS_BLOCK_GROUP_RAID10 |
3431 BTRFS_BLOCK_GROUP_RAID5 |
3432 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003433 do {
3434 seq = read_seqbegin(&fs_info->profiles_lock);
3435
3436 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3437 (fs_info->avail_system_alloc_bits & allowed) &&
3438 !(bctl->sys.target & allowed)) ||
3439 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3440 (fs_info->avail_metadata_alloc_bits & allowed) &&
3441 !(bctl->meta.target & allowed))) {
3442 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003443 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003444 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003445 btrfs_err(fs_info, "balance will reduce metadata "
3446 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003447 ret = -EINVAL;
3448 goto out;
3449 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003450 }
Miao Xiede98ced2013-01-29 10:13:12 +00003451 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003452
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003453 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3454 int num_tolerated_disk_barrier_failures;
3455 u64 target = bctl->sys.target;
3456
3457 num_tolerated_disk_barrier_failures =
3458 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3459 if (num_tolerated_disk_barrier_failures > 0 &&
3460 (target &
3461 (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3462 BTRFS_AVAIL_ALLOC_BIT_SINGLE)))
3463 num_tolerated_disk_barrier_failures = 0;
3464 else if (num_tolerated_disk_barrier_failures > 1 &&
3465 (target &
3466 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)))
3467 num_tolerated_disk_barrier_failures = 1;
3468
3469 fs_info->num_tolerated_disk_barrier_failures =
3470 num_tolerated_disk_barrier_failures;
3471 }
3472
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003473 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003474 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003475 goto out;
3476
Ilya Dryomov59641012012-01-16 22:04:48 +02003477 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3478 BUG_ON(ret == -EEXIST);
3479 set_balance_control(bctl);
3480 } else {
3481 BUG_ON(ret != -EEXIST);
3482 spin_lock(&fs_info->balance_lock);
3483 update_balance_args(bctl);
3484 spin_unlock(&fs_info->balance_lock);
3485 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003486
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003487 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003488 mutex_unlock(&fs_info->balance_mutex);
3489
3490 ret = __btrfs_balance(fs_info);
3491
3492 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003493 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003494
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003495 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3496 fs_info->num_tolerated_disk_barrier_failures =
3497 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3498 }
3499
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003500 if (bargs) {
3501 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003502 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003503 }
3504
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003505 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3506 balance_need_close(fs_info)) {
3507 __cancel_balance(fs_info);
3508 }
3509
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003510 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003511
3512 return ret;
3513out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003514 if (bctl->flags & BTRFS_BALANCE_RESUME)
3515 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003516 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003517 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003518 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3519 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003520 return ret;
3521}
3522
3523static int balance_kthread(void *data)
3524{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003525 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003526 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003527
3528 mutex_lock(&fs_info->volume_mutex);
3529 mutex_lock(&fs_info->balance_mutex);
3530
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003531 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003532 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003533 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003534 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003535
3536 mutex_unlock(&fs_info->balance_mutex);
3537 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003538
Ilya Dryomov59641012012-01-16 22:04:48 +02003539 return ret;
3540}
3541
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003542int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3543{
3544 struct task_struct *tsk;
3545
3546 spin_lock(&fs_info->balance_lock);
3547 if (!fs_info->balance_ctl) {
3548 spin_unlock(&fs_info->balance_lock);
3549 return 0;
3550 }
3551 spin_unlock(&fs_info->balance_lock);
3552
3553 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003554 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003555 return 0;
3556 }
3557
3558 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303559 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003560}
3561
Ilya Dryomov68310a52012-06-22 12:24:12 -06003562int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003563{
Ilya Dryomov59641012012-01-16 22:04:48 +02003564 struct btrfs_balance_control *bctl;
3565 struct btrfs_balance_item *item;
3566 struct btrfs_disk_balance_args disk_bargs;
3567 struct btrfs_path *path;
3568 struct extent_buffer *leaf;
3569 struct btrfs_key key;
3570 int ret;
3571
3572 path = btrfs_alloc_path();
3573 if (!path)
3574 return -ENOMEM;
3575
Ilya Dryomov68310a52012-06-22 12:24:12 -06003576 key.objectid = BTRFS_BALANCE_OBJECTID;
3577 key.type = BTRFS_BALANCE_ITEM_KEY;
3578 key.offset = 0;
3579
3580 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3581 if (ret < 0)
3582 goto out;
3583 if (ret > 0) { /* ret = -ENOENT; */
3584 ret = 0;
3585 goto out;
3586 }
3587
Ilya Dryomov59641012012-01-16 22:04:48 +02003588 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3589 if (!bctl) {
3590 ret = -ENOMEM;
3591 goto out;
3592 }
3593
Ilya Dryomov59641012012-01-16 22:04:48 +02003594 leaf = path->nodes[0];
3595 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3596
Ilya Dryomov68310a52012-06-22 12:24:12 -06003597 bctl->fs_info = fs_info;
3598 bctl->flags = btrfs_balance_flags(leaf, item);
3599 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003600
3601 btrfs_balance_data(leaf, item, &disk_bargs);
3602 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3603 btrfs_balance_meta(leaf, item, &disk_bargs);
3604 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3605 btrfs_balance_sys(leaf, item, &disk_bargs);
3606 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3607
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003608 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3609
Ilya Dryomov68310a52012-06-22 12:24:12 -06003610 mutex_lock(&fs_info->volume_mutex);
3611 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003612
Ilya Dryomov68310a52012-06-22 12:24:12 -06003613 set_balance_control(bctl);
3614
3615 mutex_unlock(&fs_info->balance_mutex);
3616 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003617out:
3618 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003619 return ret;
3620}
3621
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003622int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3623{
3624 int ret = 0;
3625
3626 mutex_lock(&fs_info->balance_mutex);
3627 if (!fs_info->balance_ctl) {
3628 mutex_unlock(&fs_info->balance_mutex);
3629 return -ENOTCONN;
3630 }
3631
3632 if (atomic_read(&fs_info->balance_running)) {
3633 atomic_inc(&fs_info->balance_pause_req);
3634 mutex_unlock(&fs_info->balance_mutex);
3635
3636 wait_event(fs_info->balance_wait_q,
3637 atomic_read(&fs_info->balance_running) == 0);
3638
3639 mutex_lock(&fs_info->balance_mutex);
3640 /* we are good with balance_ctl ripped off from under us */
3641 BUG_ON(atomic_read(&fs_info->balance_running));
3642 atomic_dec(&fs_info->balance_pause_req);
3643 } else {
3644 ret = -ENOTCONN;
3645 }
3646
3647 mutex_unlock(&fs_info->balance_mutex);
3648 return ret;
3649}
3650
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003651int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3652{
Ilya Dryomove649e582013-10-10 20:40:21 +03003653 if (fs_info->sb->s_flags & MS_RDONLY)
3654 return -EROFS;
3655
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003656 mutex_lock(&fs_info->balance_mutex);
3657 if (!fs_info->balance_ctl) {
3658 mutex_unlock(&fs_info->balance_mutex);
3659 return -ENOTCONN;
3660 }
3661
3662 atomic_inc(&fs_info->balance_cancel_req);
3663 /*
3664 * if we are running just wait and return, balance item is
3665 * deleted in btrfs_balance in this case
3666 */
3667 if (atomic_read(&fs_info->balance_running)) {
3668 mutex_unlock(&fs_info->balance_mutex);
3669 wait_event(fs_info->balance_wait_q,
3670 atomic_read(&fs_info->balance_running) == 0);
3671 mutex_lock(&fs_info->balance_mutex);
3672 } else {
3673 /* __cancel_balance needs volume_mutex */
3674 mutex_unlock(&fs_info->balance_mutex);
3675 mutex_lock(&fs_info->volume_mutex);
3676 mutex_lock(&fs_info->balance_mutex);
3677
3678 if (fs_info->balance_ctl)
3679 __cancel_balance(fs_info);
3680
3681 mutex_unlock(&fs_info->volume_mutex);
3682 }
3683
3684 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3685 atomic_dec(&fs_info->balance_cancel_req);
3686 mutex_unlock(&fs_info->balance_mutex);
3687 return 0;
3688}
3689
Stefan Behrens803b2f52013-08-15 17:11:21 +02003690static int btrfs_uuid_scan_kthread(void *data)
3691{
3692 struct btrfs_fs_info *fs_info = data;
3693 struct btrfs_root *root = fs_info->tree_root;
3694 struct btrfs_key key;
3695 struct btrfs_key max_key;
3696 struct btrfs_path *path = NULL;
3697 int ret = 0;
3698 struct extent_buffer *eb;
3699 int slot;
3700 struct btrfs_root_item root_item;
3701 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003702 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003703
3704 path = btrfs_alloc_path();
3705 if (!path) {
3706 ret = -ENOMEM;
3707 goto out;
3708 }
3709
3710 key.objectid = 0;
3711 key.type = BTRFS_ROOT_ITEM_KEY;
3712 key.offset = 0;
3713
3714 max_key.objectid = (u64)-1;
3715 max_key.type = BTRFS_ROOT_ITEM_KEY;
3716 max_key.offset = (u64)-1;
3717
Stefan Behrens803b2f52013-08-15 17:11:21 +02003718 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003719 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003720 if (ret) {
3721 if (ret > 0)
3722 ret = 0;
3723 break;
3724 }
3725
3726 if (key.type != BTRFS_ROOT_ITEM_KEY ||
3727 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
3728 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
3729 key.objectid > BTRFS_LAST_FREE_OBJECTID)
3730 goto skip;
3731
3732 eb = path->nodes[0];
3733 slot = path->slots[0];
3734 item_size = btrfs_item_size_nr(eb, slot);
3735 if (item_size < sizeof(root_item))
3736 goto skip;
3737
Stefan Behrens803b2f52013-08-15 17:11:21 +02003738 read_extent_buffer(eb, &root_item,
3739 btrfs_item_ptr_offset(eb, slot),
3740 (int)sizeof(root_item));
3741 if (btrfs_root_refs(&root_item) == 0)
3742 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003743
3744 if (!btrfs_is_empty_uuid(root_item.uuid) ||
3745 !btrfs_is_empty_uuid(root_item.received_uuid)) {
3746 if (trans)
3747 goto update_tree;
3748
3749 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003750 /*
3751 * 1 - subvol uuid item
3752 * 1 - received_subvol uuid item
3753 */
3754 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
3755 if (IS_ERR(trans)) {
3756 ret = PTR_ERR(trans);
3757 break;
3758 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003759 continue;
3760 } else {
3761 goto skip;
3762 }
3763update_tree:
3764 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02003765 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3766 root_item.uuid,
3767 BTRFS_UUID_KEY_SUBVOL,
3768 key.objectid);
3769 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003770 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02003771 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003772 break;
3773 }
3774 }
3775
3776 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02003777 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
3778 root_item.received_uuid,
3779 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
3780 key.objectid);
3781 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003782 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02003783 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003784 break;
3785 }
3786 }
3787
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003788skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02003789 if (trans) {
3790 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003791 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003792 if (ret)
3793 break;
3794 }
3795
Stefan Behrens803b2f52013-08-15 17:11:21 +02003796 btrfs_release_path(path);
3797 if (key.offset < (u64)-1) {
3798 key.offset++;
3799 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
3800 key.offset = 0;
3801 key.type = BTRFS_ROOT_ITEM_KEY;
3802 } else if (key.objectid < (u64)-1) {
3803 key.offset = 0;
3804 key.type = BTRFS_ROOT_ITEM_KEY;
3805 key.objectid++;
3806 } else {
3807 break;
3808 }
3809 cond_resched();
3810 }
3811
3812out:
3813 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003814 if (trans && !IS_ERR(trans))
3815 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003816 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05003817 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02003818 else
3819 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003820 up(&fs_info->uuid_tree_rescan_sem);
3821 return 0;
3822}
3823
Stefan Behrens70f80172013-08-15 17:11:23 +02003824/*
3825 * Callback for btrfs_uuid_tree_iterate().
3826 * returns:
3827 * 0 check succeeded, the entry is not outdated.
3828 * < 0 if an error occured.
3829 * > 0 if the check failed, which means the caller shall remove the entry.
3830 */
3831static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
3832 u8 *uuid, u8 type, u64 subid)
3833{
3834 struct btrfs_key key;
3835 int ret = 0;
3836 struct btrfs_root *subvol_root;
3837
3838 if (type != BTRFS_UUID_KEY_SUBVOL &&
3839 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
3840 goto out;
3841
3842 key.objectid = subid;
3843 key.type = BTRFS_ROOT_ITEM_KEY;
3844 key.offset = (u64)-1;
3845 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
3846 if (IS_ERR(subvol_root)) {
3847 ret = PTR_ERR(subvol_root);
3848 if (ret == -ENOENT)
3849 ret = 1;
3850 goto out;
3851 }
3852
3853 switch (type) {
3854 case BTRFS_UUID_KEY_SUBVOL:
3855 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
3856 ret = 1;
3857 break;
3858 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
3859 if (memcmp(uuid, subvol_root->root_item.received_uuid,
3860 BTRFS_UUID_SIZE))
3861 ret = 1;
3862 break;
3863 }
3864
3865out:
3866 return ret;
3867}
3868
3869static int btrfs_uuid_rescan_kthread(void *data)
3870{
3871 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
3872 int ret;
3873
3874 /*
3875 * 1st step is to iterate through the existing UUID tree and
3876 * to delete all entries that contain outdated data.
3877 * 2nd step is to add all missing entries to the UUID tree.
3878 */
3879 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
3880 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003881 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02003882 up(&fs_info->uuid_tree_rescan_sem);
3883 return ret;
3884 }
3885 return btrfs_uuid_scan_kthread(data);
3886}
3887
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003888int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
3889{
3890 struct btrfs_trans_handle *trans;
3891 struct btrfs_root *tree_root = fs_info->tree_root;
3892 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003893 struct task_struct *task;
3894 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003895
3896 /*
3897 * 1 - root node
3898 * 1 - root item
3899 */
3900 trans = btrfs_start_transaction(tree_root, 2);
3901 if (IS_ERR(trans))
3902 return PTR_ERR(trans);
3903
3904 uuid_root = btrfs_create_tree(trans, fs_info,
3905 BTRFS_UUID_TREE_OBJECTID);
3906 if (IS_ERR(uuid_root)) {
3907 btrfs_abort_transaction(trans, tree_root,
3908 PTR_ERR(uuid_root));
3909 return PTR_ERR(uuid_root);
3910 }
3911
3912 fs_info->uuid_root = uuid_root;
3913
Stefan Behrens803b2f52013-08-15 17:11:21 +02003914 ret = btrfs_commit_transaction(trans, tree_root);
3915 if (ret)
3916 return ret;
3917
3918 down(&fs_info->uuid_tree_rescan_sem);
3919 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
3920 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02003921 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05003922 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02003923 up(&fs_info->uuid_tree_rescan_sem);
3924 return PTR_ERR(task);
3925 }
3926
3927 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02003928}
Stefan Behrens803b2f52013-08-15 17:11:21 +02003929
Stefan Behrens70f80172013-08-15 17:11:23 +02003930int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
3931{
3932 struct task_struct *task;
3933
3934 down(&fs_info->uuid_tree_rescan_sem);
3935 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
3936 if (IS_ERR(task)) {
3937 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05003938 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02003939 up(&fs_info->uuid_tree_rescan_sem);
3940 return PTR_ERR(task);
3941 }
3942
3943 return 0;
3944}
3945
Chris Mason8f18cf12008-04-25 16:53:30 -04003946/*
3947 * shrinking a device means finding all of the device extents past
3948 * the new size, and then following the back refs to the chunks.
3949 * The chunk relocation code actually frees the device extent
3950 */
3951int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
3952{
3953 struct btrfs_trans_handle *trans;
3954 struct btrfs_root *root = device->dev_root;
3955 struct btrfs_dev_extent *dev_extent = NULL;
3956 struct btrfs_path *path;
3957 u64 length;
3958 u64 chunk_tree;
3959 u64 chunk_objectid;
3960 u64 chunk_offset;
3961 int ret;
3962 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04003963 int failed = 0;
3964 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04003965 struct extent_buffer *l;
3966 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02003967 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04003968 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08003969 u64 old_size = btrfs_device_get_total_bytes(device);
3970 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04003971
Stefan Behrens63a212a2012-11-05 18:29:28 +01003972 if (device->is_tgtdev_for_dev_replace)
3973 return -EINVAL;
3974
Chris Mason8f18cf12008-04-25 16:53:30 -04003975 path = btrfs_alloc_path();
3976 if (!path)
3977 return -ENOMEM;
3978
Chris Mason8f18cf12008-04-25 16:53:30 -04003979 path->reada = 2;
3980
Chris Mason7d9eb122008-07-08 14:19:17 -04003981 lock_chunks(root);
3982
Miao Xie7cc8e582014-09-03 21:35:38 +08003983 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04003984 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05003985 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003986 spin_lock(&root->fs_info->free_chunk_lock);
3987 root->fs_info->free_chunk_space -= diff;
3988 spin_unlock(&root->fs_info->free_chunk_lock);
3989 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003990 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003991
Josef Bacikba1bf482009-09-11 16:11:19 -04003992again:
Chris Mason8f18cf12008-04-25 16:53:30 -04003993 key.objectid = device->devid;
3994 key.offset = (u64)-1;
3995 key.type = BTRFS_DEV_EXTENT_KEY;
3996
Ilya Dryomov213e64d2012-03-27 17:09:18 +03003997 do {
Chris Mason8f18cf12008-04-25 16:53:30 -04003998 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3999 if (ret < 0)
4000 goto done;
4001
4002 ret = btrfs_previous_item(root, path, 0, key.type);
4003 if (ret < 0)
4004 goto done;
4005 if (ret) {
4006 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004007 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004008 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004009 }
4010
4011 l = path->nodes[0];
4012 slot = path->slots[0];
4013 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4014
Josef Bacikba1bf482009-09-11 16:11:19 -04004015 if (key.objectid != device->devid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004016 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004017 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004018 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004019
4020 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4021 length = btrfs_dev_extent_length(l, dev_extent);
4022
Josef Bacikba1bf482009-09-11 16:11:19 -04004023 if (key.offset + length <= new_size) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004024 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004025 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004026 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004027
4028 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
4029 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
4030 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004031 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004032
4033 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
4034 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04004035 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004036 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004037 if (ret == -ENOSPC)
4038 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004039 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004040
4041 if (failed && !retried) {
4042 failed = 0;
4043 retried = true;
4044 goto again;
4045 } else if (failed && retried) {
4046 ret = -ENOSPC;
4047 lock_chunks(root);
4048
Miao Xie7cc8e582014-09-03 21:35:38 +08004049 btrfs_device_set_total_bytes(device, old_size);
Josef Bacikba1bf482009-09-11 16:11:19 -04004050 if (device->writeable)
4051 device->fs_devices->total_rw_bytes += diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004052 spin_lock(&root->fs_info->free_chunk_lock);
4053 root->fs_info->free_chunk_space += diff;
4054 spin_unlock(&root->fs_info->free_chunk_lock);
Josef Bacikba1bf482009-09-11 16:11:19 -04004055 unlock_chunks(root);
4056 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004057 }
4058
Chris Balld6397ba2009-04-27 07:29:03 -04004059 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004060 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004061 if (IS_ERR(trans)) {
4062 ret = PTR_ERR(trans);
4063 goto done;
4064 }
4065
Chris Balld6397ba2009-04-27 07:29:03 -04004066 lock_chunks(root);
Miao Xie7cc8e582014-09-03 21:35:38 +08004067 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004068 if (list_empty(&device->resized_list))
4069 list_add_tail(&device->resized_list,
4070 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004071
Chris Balld6397ba2009-04-27 07:29:03 -04004072 WARN_ON(diff > old_total);
4073 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4074 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004075
4076 /* Now btrfs_update_device() will change the on-disk size. */
4077 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004078 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004079done:
4080 btrfs_free_path(path);
4081 return ret;
4082}
4083
Li Zefan125ccb02011-12-08 15:07:24 +08004084static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004085 struct btrfs_key *key,
4086 struct btrfs_chunk *chunk, int item_size)
4087{
David Sterba6c417612011-04-13 15:41:04 +02004088 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004089 struct btrfs_disk_key disk_key;
4090 u32 array_size;
4091 u8 *ptr;
4092
Miao Xiefe48a5c2014-09-03 21:35:39 +08004093 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004094 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004095 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004096 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4097 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004098 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004099 }
Chris Mason0b86a832008-03-24 15:01:56 -04004100
4101 ptr = super_copy->sys_chunk_array + array_size;
4102 btrfs_cpu_key_to_disk(&disk_key, key);
4103 memcpy(ptr, &disk_key, sizeof(disk_key));
4104 ptr += sizeof(disk_key);
4105 memcpy(ptr, chunk, item_size);
4106 item_size += sizeof(disk_key);
4107 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004108 unlock_chunks(root);
4109
Chris Mason0b86a832008-03-24 15:01:56 -04004110 return 0;
4111}
4112
Miao Xieb2117a32011-01-05 10:07:28 +00004113/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004114 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004115 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004116static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004117{
Arne Jansen73c5de02011-04-12 12:07:57 +02004118 const struct btrfs_device_info *di_a = a;
4119 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004120
Arne Jansen73c5de02011-04-12 12:07:57 +02004121 if (di_a->max_avail > di_b->max_avail)
4122 return -1;
4123 if (di_a->max_avail < di_b->max_avail)
4124 return 1;
4125 if (di_a->total_avail > di_b->total_avail)
4126 return -1;
4127 if (di_a->total_avail < di_b->total_avail)
4128 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004129 return 0;
4130}
4131
Eric Sandeen48a3b632013-04-25 20:41:01 +00004132static struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
Miao Xiee6ec7162013-01-17 05:38:51 +00004133 [BTRFS_RAID_RAID10] = {
4134 .sub_stripes = 2,
4135 .dev_stripes = 1,
4136 .devs_max = 0, /* 0 == as many as possible */
4137 .devs_min = 4,
4138 .devs_increment = 2,
4139 .ncopies = 2,
4140 },
4141 [BTRFS_RAID_RAID1] = {
4142 .sub_stripes = 1,
4143 .dev_stripes = 1,
4144 .devs_max = 2,
4145 .devs_min = 2,
4146 .devs_increment = 2,
4147 .ncopies = 2,
4148 },
4149 [BTRFS_RAID_DUP] = {
4150 .sub_stripes = 1,
4151 .dev_stripes = 2,
4152 .devs_max = 1,
4153 .devs_min = 1,
4154 .devs_increment = 1,
4155 .ncopies = 2,
4156 },
4157 [BTRFS_RAID_RAID0] = {
4158 .sub_stripes = 1,
4159 .dev_stripes = 1,
4160 .devs_max = 0,
4161 .devs_min = 2,
4162 .devs_increment = 1,
4163 .ncopies = 1,
4164 },
4165 [BTRFS_RAID_SINGLE] = {
4166 .sub_stripes = 1,
4167 .dev_stripes = 1,
4168 .devs_max = 1,
4169 .devs_min = 1,
4170 .devs_increment = 1,
4171 .ncopies = 1,
4172 },
Chris Masone942f882013-02-20 14:06:05 -05004173 [BTRFS_RAID_RAID5] = {
4174 .sub_stripes = 1,
4175 .dev_stripes = 1,
4176 .devs_max = 0,
4177 .devs_min = 2,
4178 .devs_increment = 1,
4179 .ncopies = 2,
4180 },
4181 [BTRFS_RAID_RAID6] = {
4182 .sub_stripes = 1,
4183 .dev_stripes = 1,
4184 .devs_max = 0,
4185 .devs_min = 3,
4186 .devs_increment = 1,
4187 .ncopies = 3,
4188 },
Liu Bo31e50222012-11-21 14:18:10 +00004189};
4190
David Woodhouse53b381b2013-01-29 18:40:14 -05004191static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4192{
4193 /* TODO allow them to set a preferred stripe size */
4194 return 64 * 1024;
4195}
4196
4197static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4198{
David Woodhouse53b381b2013-01-29 18:40:14 -05004199 if (!(type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)))
4200 return;
4201
Miao Xieceda0862013-04-11 10:30:16 +00004202 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004203}
4204
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004205#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4206 - sizeof(struct btrfs_item) \
4207 - sizeof(struct btrfs_chunk)) \
4208 / sizeof(struct btrfs_stripe) + 1)
4209
4210#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4211 - 2 * sizeof(struct btrfs_disk_key) \
4212 - 2 * sizeof(struct btrfs_chunk)) \
4213 / sizeof(struct btrfs_stripe) + 1)
4214
Miao Xieb2117a32011-01-05 10:07:28 +00004215static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004216 struct btrfs_root *extent_root, u64 start,
4217 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004218{
4219 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004220 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4221 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004222 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004223 struct extent_map_tree *em_tree;
4224 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004225 struct btrfs_device_info *devices_info = NULL;
4226 u64 total_avail;
4227 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004228 int data_stripes; /* number of stripes that count for
4229 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004230 int sub_stripes; /* sub_stripes info for map */
4231 int dev_stripes; /* stripes per dev */
4232 int devs_max; /* max devs to use */
4233 int devs_min; /* min devs needed */
4234 int devs_increment; /* ndevs has to be a multiple of this */
4235 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004236 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004237 u64 max_stripe_size;
4238 u64 max_chunk_size;
4239 u64 stripe_size;
4240 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004241 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004242 int ndevs;
4243 int i;
4244 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004245 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004246
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004247 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004248
Miao Xieb2117a32011-01-05 10:07:28 +00004249 if (list_empty(&fs_devices->alloc_list))
4250 return -ENOSPC;
4251
Liu Bo31e50222012-11-21 14:18:10 +00004252 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004253
Liu Bo31e50222012-11-21 14:18:10 +00004254 sub_stripes = btrfs_raid_array[index].sub_stripes;
4255 dev_stripes = btrfs_raid_array[index].dev_stripes;
4256 devs_max = btrfs_raid_array[index].devs_max;
4257 devs_min = btrfs_raid_array[index].devs_min;
4258 devs_increment = btrfs_raid_array[index].devs_increment;
4259 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004260
4261 if (type & BTRFS_BLOCK_GROUP_DATA) {
4262 max_stripe_size = 1024 * 1024 * 1024;
4263 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004264 if (!devs_max)
4265 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004266 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004267 /* for larger filesystems, use larger metadata chunks */
4268 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
4269 max_stripe_size = 1024 * 1024 * 1024;
4270 else
4271 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004272 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004273 if (!devs_max)
4274 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004275 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05004276 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004277 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004278 if (!devs_max)
4279 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004280 } else {
David Sterba351fd352014-05-15 16:48:20 +02004281 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004282 type);
4283 BUG_ON(1);
4284 }
4285
4286 /* we don't want a chunk larger than 10% of writeable space */
4287 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4288 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004289
4290 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
4291 GFP_NOFS);
4292 if (!devices_info)
4293 return -ENOMEM;
4294
Arne Jansen73c5de02011-04-12 12:07:57 +02004295 cur = fs_devices->alloc_list.next;
4296
4297 /*
4298 * in the first pass through the devices list, we gather information
4299 * about the available holes on each device.
4300 */
4301 ndevs = 0;
4302 while (cur != &fs_devices->alloc_list) {
4303 struct btrfs_device *device;
4304 u64 max_avail;
4305 u64 dev_offset;
4306
4307 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4308
4309 cur = cur->next;
4310
4311 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004312 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004313 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004314 continue;
4315 }
4316
Stefan Behrens63a212a2012-11-05 18:29:28 +01004317 if (!device->in_fs_metadata ||
4318 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004319 continue;
4320
4321 if (device->total_bytes > device->bytes_used)
4322 total_avail = device->total_bytes - device->bytes_used;
4323 else
4324 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004325
4326 /* If there is no space on this device, skip it. */
4327 if (total_avail == 0)
4328 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004329
Josef Bacik6df9a952013-06-27 13:22:46 -04004330 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004331 max_stripe_size * dev_stripes,
4332 &dev_offset, &max_avail);
4333 if (ret && ret != -ENOSPC)
4334 goto error;
4335
4336 if (ret == 0)
4337 max_avail = max_stripe_size * dev_stripes;
4338
4339 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4340 continue;
4341
Eric Sandeen063d0062013-01-31 00:55:01 +00004342 if (ndevs == fs_devices->rw_devices) {
4343 WARN(1, "%s: found more than %llu devices\n",
4344 __func__, fs_devices->rw_devices);
4345 break;
4346 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004347 devices_info[ndevs].dev_offset = dev_offset;
4348 devices_info[ndevs].max_avail = max_avail;
4349 devices_info[ndevs].total_avail = total_avail;
4350 devices_info[ndevs].dev = device;
4351 ++ndevs;
4352 }
4353
4354 /*
4355 * now sort the devices by hole size / available space
4356 */
4357 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4358 btrfs_cmp_device_info, NULL);
4359
4360 /* round down to number of usable stripes */
4361 ndevs -= ndevs % devs_increment;
4362
4363 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4364 ret = -ENOSPC;
4365 goto error;
4366 }
4367
4368 if (devs_max && ndevs > devs_max)
4369 ndevs = devs_max;
4370 /*
4371 * the primary goal is to maximize the number of stripes, so use as many
4372 * devices as possible, even if the stripes are not maximum sized.
4373 */
4374 stripe_size = devices_info[ndevs-1].max_avail;
4375 num_stripes = ndevs * dev_stripes;
4376
David Woodhouse53b381b2013-01-29 18:40:14 -05004377 /*
4378 * this will have to be fixed for RAID1 and RAID10 over
4379 * more drives
4380 */
4381 data_stripes = num_stripes / ncopies;
4382
David Woodhouse53b381b2013-01-29 18:40:14 -05004383 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4384 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4385 btrfs_super_stripesize(info->super_copy));
4386 data_stripes = num_stripes - 1;
4387 }
4388 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4389 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4390 btrfs_super_stripesize(info->super_copy));
4391 data_stripes = num_stripes - 2;
4392 }
Chris Mason86db2572013-02-20 16:23:40 -05004393
4394 /*
4395 * Use the number of data stripes to figure out how big this chunk
4396 * is really going to be in terms of logical address space,
4397 * and compare that answer with the max chunk size
4398 */
4399 if (stripe_size * data_stripes > max_chunk_size) {
4400 u64 mask = (1ULL << 24) - 1;
4401 stripe_size = max_chunk_size;
4402 do_div(stripe_size, data_stripes);
4403
4404 /* bump the answer up to a 16MB boundary */
4405 stripe_size = (stripe_size + mask) & ~mask;
4406
4407 /* but don't go higher than the limits we found
4408 * while searching for free extents
4409 */
4410 if (stripe_size > devices_info[ndevs-1].max_avail)
4411 stripe_size = devices_info[ndevs-1].max_avail;
4412 }
4413
Arne Jansen73c5de02011-04-12 12:07:57 +02004414 do_div(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004415
4416 /* align to BTRFS_STRIPE_LEN */
David Woodhouse53b381b2013-01-29 18:40:14 -05004417 do_div(stripe_size, raid_stripe_len);
4418 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004419
Miao Xieb2117a32011-01-05 10:07:28 +00004420 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4421 if (!map) {
4422 ret = -ENOMEM;
4423 goto error;
4424 }
4425 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004426
Arne Jansen73c5de02011-04-12 12:07:57 +02004427 for (i = 0; i < ndevs; ++i) {
4428 for (j = 0; j < dev_stripes; ++j) {
4429 int s = i * dev_stripes + j;
4430 map->stripes[s].dev = devices_info[i].dev;
4431 map->stripes[s].physical = devices_info[i].dev_offset +
4432 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004433 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004434 }
Chris Mason593060d2008-03-25 16:50:33 -04004435 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004436 map->stripe_len = raid_stripe_len;
4437 map->io_align = raid_stripe_len;
4438 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004439 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004440 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004441
David Woodhouse53b381b2013-01-29 18:40:14 -05004442 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004443
Arne Jansen73c5de02011-04-12 12:07:57 +02004444 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004445
David Sterba172ddd62011-04-21 00:48:27 +02004446 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004447 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004448 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004449 ret = -ENOMEM;
4450 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004451 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004452 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Chris Mason0b86a832008-03-24 15:01:56 -04004453 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05004454 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004455 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004456 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004457 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004458 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004459
Chris Mason0b86a832008-03-24 15:01:56 -04004460 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004461 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004462 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004463 if (!ret) {
4464 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4465 atomic_inc(&em->refs);
4466 }
Chris Mason890871b2009-09-02 16:24:52 -04004467 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004468 if (ret) {
4469 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004470 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004471 }
Yan Zheng2b820322008-11-17 21:11:30 -05004472
Josef Bacik04487482013-01-29 15:03:37 -05004473 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4474 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4475 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004476 if (ret)
4477 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004478
Miao Xie7cc8e582014-09-03 21:35:38 +08004479 for (i = 0; i < map->num_stripes; i++) {
4480 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4481 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4482 }
Miao Xie43530c42014-09-03 21:35:36 +08004483
Miao Xie1c116182014-09-03 21:35:37 +08004484 spin_lock(&extent_root->fs_info->free_chunk_lock);
4485 extent_root->fs_info->free_chunk_space -= (stripe_size *
4486 map->num_stripes);
4487 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4488
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004489 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004490 check_raid56_incompat_flag(extent_root->fs_info, type);
4491
Miao Xieb2117a32011-01-05 10:07:28 +00004492 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004493 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004494
Josef Bacik6df9a952013-06-27 13:22:46 -04004495error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004496 write_lock(&em_tree->lock);
4497 remove_extent_mapping(em_tree, em);
4498 write_unlock(&em_tree->lock);
4499
4500 /* One for our allocation */
4501 free_extent_map(em);
4502 /* One for the tree reference */
4503 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004504 /* One for the pending_chunks list reference */
4505 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004506error:
Miao Xieb2117a32011-01-05 10:07:28 +00004507 kfree(devices_info);
4508 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004509}
4510
Josef Bacik6df9a952013-06-27 13:22:46 -04004511int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004512 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004513 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004514{
Yan Zheng2b820322008-11-17 21:11:30 -05004515 struct btrfs_key key;
4516 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4517 struct btrfs_device *device;
4518 struct btrfs_chunk *chunk;
4519 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004520 struct extent_map_tree *em_tree;
4521 struct extent_map *em;
4522 struct map_lookup *map;
4523 size_t item_size;
4524 u64 dev_offset;
4525 u64 stripe_size;
4526 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004527 int ret;
4528
Josef Bacik6df9a952013-06-27 13:22:46 -04004529 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4530 read_lock(&em_tree->lock);
4531 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4532 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004533
Josef Bacik6df9a952013-06-27 13:22:46 -04004534 if (!em) {
4535 btrfs_crit(extent_root->fs_info, "unable to find logical "
4536 "%Lu len %Lu", chunk_offset, chunk_size);
4537 return -EINVAL;
4538 }
4539
4540 if (em->start != chunk_offset || em->len != chunk_size) {
4541 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004542 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004543 chunk_size, em->start, em->len);
4544 free_extent_map(em);
4545 return -EINVAL;
4546 }
4547
4548 map = (struct map_lookup *)em->bdev;
4549 item_size = btrfs_chunk_item_size(map->num_stripes);
4550 stripe_size = em->orig_block_len;
4551
4552 chunk = kzalloc(item_size, GFP_NOFS);
4553 if (!chunk) {
4554 ret = -ENOMEM;
4555 goto out;
4556 }
4557
4558 for (i = 0; i < map->num_stripes; i++) {
4559 device = map->stripes[i].dev;
4560 dev_offset = map->stripes[i].physical;
4561
Yan Zheng2b820322008-11-17 21:11:30 -05004562 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004563 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004564 goto out;
4565 ret = btrfs_alloc_dev_extent(trans, device,
4566 chunk_root->root_key.objectid,
4567 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4568 chunk_offset, dev_offset,
4569 stripe_size);
4570 if (ret)
4571 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004572 }
4573
Yan Zheng2b820322008-11-17 21:11:30 -05004574 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004575 for (i = 0; i < map->num_stripes; i++) {
4576 device = map->stripes[i].dev;
4577 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004578
4579 btrfs_set_stack_stripe_devid(stripe, device->devid);
4580 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4581 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4582 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004583 }
4584
4585 btrfs_set_stack_chunk_length(chunk, chunk_size);
4586 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4587 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4588 btrfs_set_stack_chunk_type(chunk, map->type);
4589 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4590 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4591 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4592 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4593 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4594
4595 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4596 key.type = BTRFS_CHUNK_ITEM_KEY;
4597 key.offset = chunk_offset;
4598
4599 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004600 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4601 /*
4602 * TODO: Cleanup of inserted chunk root in case of
4603 * failure.
4604 */
Li Zefan125ccb02011-12-08 15:07:24 +08004605 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004606 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004607 }
liubo1abe9b82011-03-24 11:18:59 +00004608
Josef Bacik6df9a952013-06-27 13:22:46 -04004609out:
Yan Zheng2b820322008-11-17 21:11:30 -05004610 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004611 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004612 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004613}
4614
4615/*
4616 * Chunk allocation falls into two parts. The first part does works
4617 * that make the new allocated chunk useable, but not do any operation
4618 * that modifies the chunk tree. The second part does the works that
4619 * require modifying the chunk tree. This division is important for the
4620 * bootstrap process of adding storage to a seed btrfs.
4621 */
4622int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4623 struct btrfs_root *extent_root, u64 type)
4624{
4625 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004626
Josef Bacik6df9a952013-06-27 13:22:46 -04004627 chunk_offset = find_next_chunk(extent_root->fs_info);
4628 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004629}
4630
Chris Masond3977122009-01-05 21:25:51 -05004631static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004632 struct btrfs_root *root,
4633 struct btrfs_device *device)
4634{
4635 u64 chunk_offset;
4636 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004637 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004638 struct btrfs_fs_info *fs_info = root->fs_info;
4639 struct btrfs_root *extent_root = fs_info->extent_root;
4640 int ret;
4641
Josef Bacik6df9a952013-06-27 13:22:46 -04004642 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004643 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004644 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4645 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004646 if (ret)
4647 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004648
Josef Bacik6df9a952013-06-27 13:22:46 -04004649 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004650 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004651 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4652 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004653 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004654}
4655
Miao Xied20983b2014-07-03 18:22:13 +08004656static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4657{
4658 int max_errors;
4659
4660 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4661 BTRFS_BLOCK_GROUP_RAID10 |
4662 BTRFS_BLOCK_GROUP_RAID5 |
4663 BTRFS_BLOCK_GROUP_DUP)) {
4664 max_errors = 1;
4665 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4666 max_errors = 2;
4667 } else {
4668 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004669 }
4670
Miao Xied20983b2014-07-03 18:22:13 +08004671 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004672}
4673
4674int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4675{
4676 struct extent_map *em;
4677 struct map_lookup *map;
4678 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4679 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004680 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004681 int i;
4682
Chris Mason890871b2009-09-02 16:24:52 -04004683 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004684 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004685 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004686 if (!em)
4687 return 1;
4688
4689 map = (struct map_lookup *)em->bdev;
4690 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08004691 if (map->stripes[i].dev->missing) {
4692 miss_ndevs++;
4693 continue;
4694 }
4695
Yan Zheng2b820322008-11-17 21:11:30 -05004696 if (!map->stripes[i].dev->writeable) {
4697 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08004698 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05004699 }
4700 }
Miao Xied20983b2014-07-03 18:22:13 +08004701
4702 /*
4703 * If the number of missing devices is larger than max errors,
4704 * we can not write the data into that chunk successfully, so
4705 * set it readonly.
4706 */
4707 if (miss_ndevs > btrfs_chunk_max_errors(map))
4708 readonly = 1;
4709end:
Yan Zheng2b820322008-11-17 21:11:30 -05004710 free_extent_map(em);
4711 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004712}
4713
4714void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4715{
David Sterbaa8067e02011-04-21 00:34:43 +02004716 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004717}
4718
4719void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4720{
4721 struct extent_map *em;
4722
Chris Masond3977122009-01-05 21:25:51 -05004723 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004724 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004725 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4726 if (em)
4727 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004728 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004729 if (!em)
4730 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004731 /* once for us */
4732 free_extent_map(em);
4733 /* once for the tree */
4734 free_extent_map(em);
4735 }
4736}
4737
Stefan Behrens5d964052012-11-05 14:59:07 +01004738int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04004739{
Stefan Behrens5d964052012-11-05 14:59:07 +01004740 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04004741 struct extent_map *em;
4742 struct map_lookup *map;
4743 struct extent_map_tree *em_tree = &map_tree->map_tree;
4744 int ret;
4745
Chris Mason890871b2009-09-02 16:24:52 -04004746 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004747 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04004748 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004749
Josef Bacikfb7669b2013-04-23 10:53:18 -04004750 /*
4751 * We could return errors for these cases, but that could get ugly and
4752 * we'd probably do the same thing which is just not do anything else
4753 * and exit, so return 1 so the callers don't try to use other copies.
4754 */
4755 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02004756 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004757 logical+len);
4758 return 1;
4759 }
4760
4761 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02004762 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02004763 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004764 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08004765 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04004766 return 1;
4767 }
4768
Chris Masonf1885912008-04-09 16:28:12 -04004769 map = (struct map_lookup *)em->bdev;
4770 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
4771 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004772 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4773 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004774 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
4775 ret = 2;
4776 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4777 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04004778 else
4779 ret = 1;
4780 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004781
4782 btrfs_dev_replace_lock(&fs_info->dev_replace);
4783 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
4784 ret++;
4785 btrfs_dev_replace_unlock(&fs_info->dev_replace);
4786
Chris Masonf1885912008-04-09 16:28:12 -04004787 return ret;
4788}
4789
David Woodhouse53b381b2013-01-29 18:40:14 -05004790unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
4791 struct btrfs_mapping_tree *map_tree,
4792 u64 logical)
4793{
4794 struct extent_map *em;
4795 struct map_lookup *map;
4796 struct extent_map_tree *em_tree = &map_tree->map_tree;
4797 unsigned long len = root->sectorsize;
4798
4799 read_lock(&em_tree->lock);
4800 em = lookup_extent_mapping(em_tree, logical, len);
4801 read_unlock(&em_tree->lock);
4802 BUG_ON(!em);
4803
4804 BUG_ON(em->start > logical || em->start + em->len < logical);
4805 map = (struct map_lookup *)em->bdev;
4806 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4807 BTRFS_BLOCK_GROUP_RAID6)) {
4808 len = map->stripe_len * nr_data_stripes(map);
4809 }
4810 free_extent_map(em);
4811 return len;
4812}
4813
4814int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
4815 u64 logical, u64 len, int mirror_num)
4816{
4817 struct extent_map *em;
4818 struct map_lookup *map;
4819 struct extent_map_tree *em_tree = &map_tree->map_tree;
4820 int ret = 0;
4821
4822 read_lock(&em_tree->lock);
4823 em = lookup_extent_mapping(em_tree, logical, len);
4824 read_unlock(&em_tree->lock);
4825 BUG_ON(!em);
4826
4827 BUG_ON(em->start > logical || em->start + em->len < logical);
4828 map = (struct map_lookup *)em->bdev;
4829 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
4830 BTRFS_BLOCK_GROUP_RAID6))
4831 ret = 1;
4832 free_extent_map(em);
4833 return ret;
4834}
4835
Stefan Behrens30d98612012-11-06 14:52:18 +01004836static int find_live_mirror(struct btrfs_fs_info *fs_info,
4837 struct map_lookup *map, int first, int num,
4838 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04004839{
4840 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01004841 int tolerance;
4842 struct btrfs_device *srcdev;
4843
4844 if (dev_replace_is_ongoing &&
4845 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
4846 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
4847 srcdev = fs_info->dev_replace.srcdev;
4848 else
4849 srcdev = NULL;
4850
4851 /*
4852 * try to avoid the drive that is the source drive for a
4853 * dev-replace procedure, only choose it if no other non-missing
4854 * mirror is available
4855 */
4856 for (tolerance = 0; tolerance < 2; tolerance++) {
4857 if (map->stripes[optimal].dev->bdev &&
4858 (tolerance || map->stripes[optimal].dev != srcdev))
4859 return optimal;
4860 for (i = first; i < first + num; i++) {
4861 if (map->stripes[i].dev->bdev &&
4862 (tolerance || map->stripes[i].dev != srcdev))
4863 return i;
4864 }
Chris Masondfe25022008-05-13 13:46:40 -04004865 }
Stefan Behrens30d98612012-11-06 14:52:18 +01004866
Chris Masondfe25022008-05-13 13:46:40 -04004867 /* we couldn't find one that doesn't fail. Just return something
4868 * and the io error handling code will clean up eventually
4869 */
4870 return optimal;
4871}
4872
David Woodhouse53b381b2013-01-29 18:40:14 -05004873static inline int parity_smaller(u64 a, u64 b)
4874{
4875 return a > b;
4876}
4877
4878/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
4879static void sort_parity_stripes(struct btrfs_bio *bbio, u64 *raid_map)
4880{
4881 struct btrfs_bio_stripe s;
Miao Xie2c8cdd62014-11-14 16:06:25 +08004882 int real_stripes = bbio->num_stripes - bbio->num_tgtdevs;
David Woodhouse53b381b2013-01-29 18:40:14 -05004883 int i;
4884 u64 l;
4885 int again = 1;
Miao Xie2c8cdd62014-11-14 16:06:25 +08004886 int m;
David Woodhouse53b381b2013-01-29 18:40:14 -05004887
4888 while (again) {
4889 again = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08004890 for (i = 0; i < real_stripes - 1; i++) {
David Woodhouse53b381b2013-01-29 18:40:14 -05004891 if (parity_smaller(raid_map[i], raid_map[i+1])) {
4892 s = bbio->stripes[i];
4893 l = raid_map[i];
4894 bbio->stripes[i] = bbio->stripes[i+1];
4895 raid_map[i] = raid_map[i+1];
4896 bbio->stripes[i+1] = s;
4897 raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08004898
4899 if (bbio->tgtdev_map) {
4900 m = bbio->tgtdev_map[i];
4901 bbio->tgtdev_map[i] =
4902 bbio->tgtdev_map[i + 1];
4903 bbio->tgtdev_map[i + 1] = m;
4904 }
4905
David Woodhouse53b381b2013-01-29 18:40:14 -05004906 again = 1;
4907 }
4908 }
4909 }
4910}
4911
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004912static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04004913 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02004914 struct btrfs_bio **bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05004915 int mirror_num, u64 **raid_map_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04004916{
4917 struct extent_map *em;
4918 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01004919 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04004920 struct extent_map_tree *em_tree = &map_tree->map_tree;
4921 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04004922 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004923 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04004924 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00004925 u64 stripe_nr_orig;
4926 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05004927 u64 stripe_len;
4928 u64 *raid_map = NULL;
Chris Mason593060d2008-03-25 16:50:33 -04004929 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04004930 int i;
Li Zefande11cc12011-12-01 12:55:47 +08004931 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04004932 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04004933 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08004934 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004935 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01004936 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
4937 int dev_replace_is_ongoing = 0;
4938 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01004939 int patch_the_first_stripe_for_dev_replace = 0;
4940 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05004941 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04004942
Chris Mason890871b2009-09-02 16:24:52 -04004943 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004944 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04004945 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04004946
Chris Mason3b951512008-04-17 11:29:12 -04004947 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004948 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004949 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04004950 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04004951 }
Chris Mason0b86a832008-03-24 15:01:56 -04004952
Josef Bacik9bb91872013-04-19 23:45:33 -04004953 if (em->start > logical || em->start + em->len < logical) {
4954 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02004955 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04004956 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08004957 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04004958 return -EINVAL;
4959 }
4960
Chris Mason0b86a832008-03-24 15:01:56 -04004961 map = (struct map_lookup *)em->bdev;
4962 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04004963
David Woodhouse53b381b2013-01-29 18:40:14 -05004964 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004965 stripe_nr = offset;
4966 /*
4967 * stripe_nr counts the total number of stripes we have to stride
4968 * to get to this block
4969 */
David Woodhouse53b381b2013-01-29 18:40:14 -05004970 do_div(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04004971
David Woodhouse53b381b2013-01-29 18:40:14 -05004972 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004973 BUG_ON(offset < stripe_offset);
4974
4975 /* stripe_offset is the offset of this block in its stripe*/
4976 stripe_offset = offset - stripe_offset;
4977
David Woodhouse53b381b2013-01-29 18:40:14 -05004978 /* if we're here for raid56, we need to know the stripe aligned start */
4979 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4980 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
4981 raid56_full_stripe_start = offset;
4982
4983 /* allow a write of a full stripe, but make sure we don't
4984 * allow straddling of stripes
4985 */
4986 do_div(raid56_full_stripe_start, full_stripe_len);
4987 raid56_full_stripe_start *= full_stripe_len;
4988 }
4989
4990 if (rw & REQ_DISCARD) {
4991 /* we don't discard raid56 yet */
4992 if (map->type &
4993 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) {
4994 ret = -EOPNOTSUPP;
4995 goto out;
4996 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00004997 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05004998 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
4999 u64 max_len;
5000 /* For writes to RAID[56], allow a full stripeset across all disks.
5001 For other RAID types and for RAID[56] reads, just allow a single
5002 stripe (on a single disk). */
5003 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6) &&
5004 (rw & REQ_WRITE)) {
5005 max_len = stripe_len * nr_data_stripes(map) -
5006 (offset - raid56_full_stripe_start);
5007 } else {
5008 /* we limit the length of each bio to what fits in a stripe */
5009 max_len = stripe_len - stripe_offset;
5010 }
5011 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005012 } else {
5013 *length = em->len - offset;
5014 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005015
David Woodhouse53b381b2013-01-29 18:40:14 -05005016 /* This is for when we're called from btrfs_merge_bio_hook() and all
5017 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005018 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005019 goto out;
5020
Stefan Behrens472262f2012-11-06 14:43:46 +01005021 btrfs_dev_replace_lock(dev_replace);
5022 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5023 if (!dev_replace_is_ongoing)
5024 btrfs_dev_replace_unlock(dev_replace);
5025
Stefan Behrensad6d6202012-11-06 15:06:47 +01005026 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5027 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5028 dev_replace->tgtdev != NULL) {
5029 /*
5030 * in dev-replace case, for repair case (that's the only
5031 * case where the mirror is selected explicitly when
5032 * calling btrfs_map_block), blocks left of the left cursor
5033 * can also be read from the target drive.
5034 * For REQ_GET_READ_MIRRORS, the target drive is added as
5035 * the last one to the array of stripes. For READ, it also
5036 * needs to be supported using the same mirror number.
5037 * If the requested block is not left of the left cursor,
5038 * EIO is returned. This can happen because btrfs_num_copies()
5039 * returns one more in the dev-replace case.
5040 */
5041 u64 tmp_length = *length;
5042 struct btrfs_bio *tmp_bbio = NULL;
5043 int tmp_num_stripes;
5044 u64 srcdev_devid = dev_replace->srcdev->devid;
5045 int index_srcdev = 0;
5046 int found = 0;
5047 u64 physical_of_found = 0;
5048
5049 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
David Woodhouse53b381b2013-01-29 18:40:14 -05005050 logical, &tmp_length, &tmp_bbio, 0, NULL);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005051 if (ret) {
5052 WARN_ON(tmp_bbio != NULL);
5053 goto out;
5054 }
5055
5056 tmp_num_stripes = tmp_bbio->num_stripes;
5057 if (mirror_num > tmp_num_stripes) {
5058 /*
5059 * REQ_GET_READ_MIRRORS does not contain this
5060 * mirror, that means that the requested area
5061 * is not left of the left cursor
5062 */
5063 ret = -EIO;
5064 kfree(tmp_bbio);
5065 goto out;
5066 }
5067
5068 /*
5069 * process the rest of the function using the mirror_num
5070 * of the source drive. Therefore look it up first.
5071 * At the end, patch the device pointer to the one of the
5072 * target drive.
5073 */
5074 for (i = 0; i < tmp_num_stripes; i++) {
5075 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
5076 /*
5077 * In case of DUP, in order to keep it
5078 * simple, only add the mirror with the
5079 * lowest physical address
5080 */
5081 if (found &&
5082 physical_of_found <=
5083 tmp_bbio->stripes[i].physical)
5084 continue;
5085 index_srcdev = i;
5086 found = 1;
5087 physical_of_found =
5088 tmp_bbio->stripes[i].physical;
5089 }
5090 }
5091
5092 if (found) {
5093 mirror_num = index_srcdev + 1;
5094 patch_the_first_stripe_for_dev_replace = 1;
5095 physical_to_patch_in_first_stripe = physical_of_found;
5096 } else {
5097 WARN_ON(1);
5098 ret = -EIO;
5099 kfree(tmp_bbio);
5100 goto out;
5101 }
5102
5103 kfree(tmp_bbio);
5104 } else if (mirror_num > map->num_stripes) {
5105 mirror_num = 0;
5106 }
5107
Chris Masonf2d8d742008-04-21 10:03:05 -04005108 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005109 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005110 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005111 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005112 do_div(stripe_nr_end, map->stripe_len);
5113 stripe_end_offset = stripe_nr_end * map->stripe_len -
5114 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005115
Li Dongyangfce3bb92011-03-24 10:24:26 +00005116 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5117 if (rw & REQ_DISCARD)
5118 num_stripes = min_t(u64, map->num_stripes,
5119 stripe_nr_end - stripe_nr_orig);
5120 stripe_index = do_div(stripe_nr, map->num_stripes);
Miao Xie28e1cc72014-09-12 18:44:02 +08005121 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5122 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005123 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005124 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005125 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005126 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005127 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005128 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005129 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005130 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005131 current->pid % map->num_stripes,
5132 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005133 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005134 }
Chris Mason2fff7342008-04-29 14:12:09 -04005135
Chris Mason611f0e02008-04-03 16:29:03 -04005136 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005137 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005138 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005139 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005140 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005141 } else {
5142 mirror_num = 1;
5143 }
Chris Mason2fff7342008-04-29 14:12:09 -04005144
Chris Mason321aecc2008-04-16 10:49:51 -04005145 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5146 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005147
5148 stripe_index = do_div(stripe_nr, factor);
5149 stripe_index *= map->sub_stripes;
5150
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005151 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005152 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005153 else if (rw & REQ_DISCARD)
5154 num_stripes = min_t(u64, map->sub_stripes *
5155 (stripe_nr_end - stripe_nr_orig),
5156 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005157 else if (mirror_num)
5158 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005159 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005160 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005161 stripe_index = find_live_mirror(fs_info, map,
5162 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005163 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005164 current->pid % map->sub_stripes,
5165 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005166 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005167 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005168
5169 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
5170 BTRFS_BLOCK_GROUP_RAID6)) {
5171 u64 tmp;
5172
Miao Xieaf8e2d12014-10-23 14:42:50 +08005173 if (raid_map_ret &&
5174 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5175 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005176 int i, rot;
5177
5178 /* push stripe_nr back to the start of the full stripe */
5179 stripe_nr = raid56_full_stripe_start;
Zhao Lei6de65652014-11-13 11:45:40 +08005180 do_div(stripe_nr, stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005181
5182 /* RAID[56] write or recovery. Return all stripes */
5183 num_stripes = map->num_stripes;
5184 max_errors = nr_parity_stripes(map);
5185
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05305186 raid_map = kmalloc_array(num_stripes, sizeof(u64),
David Woodhouse53b381b2013-01-29 18:40:14 -05005187 GFP_NOFS);
5188 if (!raid_map) {
5189 ret = -ENOMEM;
5190 goto out;
5191 }
5192
5193 /* Work out the disk rotation on this stripe-set */
5194 tmp = stripe_nr;
5195 rot = do_div(tmp, num_stripes);
5196
5197 /* Fill in the logical address of each stripe */
5198 tmp = stripe_nr * nr_data_stripes(map);
5199 for (i = 0; i < nr_data_stripes(map); i++)
5200 raid_map[(i+rot) % num_stripes] =
5201 em->start + (tmp + i) * map->stripe_len;
5202
5203 raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5204 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5205 raid_map[(i+rot+1) % num_stripes] =
5206 RAID6_Q_STRIPE;
5207
5208 *length = map->stripe_len;
5209 stripe_index = 0;
5210 stripe_offset = 0;
5211 } else {
5212 /*
5213 * Mirror #0 or #1 means the original data block.
5214 * Mirror #2 is RAID5 parity block.
5215 * Mirror #3 is RAID6 Q block.
5216 */
5217 stripe_index = do_div(stripe_nr, nr_data_stripes(map));
5218 if (mirror_num > 1)
5219 stripe_index = nr_data_stripes(map) +
5220 mirror_num - 2;
5221
5222 /* We distribute the parity blocks across stripes */
5223 tmp = stripe_nr + stripe_index;
5224 stripe_index = do_div(tmp, map->num_stripes);
Miao Xie28e1cc72014-09-12 18:44:02 +08005225 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5226 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5227 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005228 }
Chris Mason8790d502008-04-03 16:29:03 -04005229 } else {
5230 /*
5231 * after this do_div call, stripe_nr is the number of stripes
5232 * on this device we have to walk to find the data, and
5233 * stripe_index is the number of our device in the stripe array
5234 */
5235 stripe_index = do_div(stripe_nr, map->num_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005236 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005237 }
Chris Mason593060d2008-03-25 16:50:33 -04005238 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04005239
Stefan Behrens472262f2012-11-06 14:43:46 +01005240 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005241 if (dev_replace_is_ongoing) {
5242 if (rw & (REQ_WRITE | REQ_DISCARD))
5243 num_alloc_stripes <<= 1;
5244 if (rw & REQ_GET_READ_MIRRORS)
5245 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005246 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005247 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005248
5249 bbio = kzalloc(btrfs_bio_size(num_alloc_stripes, tgtdev_indexes),
5250 GFP_NOFS);
Li Zefande11cc12011-12-01 12:55:47 +08005251 if (!bbio) {
Dave Joneseb2067f2013-07-30 13:42:17 -04005252 kfree(raid_map);
Li Zefande11cc12011-12-01 12:55:47 +08005253 ret = -ENOMEM;
5254 goto out;
5255 }
5256 atomic_set(&bbio->error, 0);
Miao Xie2c8cdd62014-11-14 16:06:25 +08005257 if (dev_replace_is_ongoing)
5258 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005259
Li Dongyangfce3bb92011-03-24 10:24:26 +00005260 if (rw & REQ_DISCARD) {
Li Zefanec9ef7a2011-12-01 14:06:42 +08005261 int factor = 0;
5262 int sub_stripes = 0;
5263 u64 stripes_per_dev = 0;
5264 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005265 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005266
5267 if (map->type &
5268 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5269 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5270 sub_stripes = 1;
5271 else
5272 sub_stripes = map->sub_stripes;
5273
5274 factor = map->num_stripes / sub_stripes;
5275 stripes_per_dev = div_u64_rem(stripe_nr_end -
5276 stripe_nr_orig,
5277 factor,
5278 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005279 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5280 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005281 }
5282
Li Dongyangfce3bb92011-03-24 10:24:26 +00005283 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005284 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005285 map->stripes[stripe_index].physical +
5286 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005287 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005288
Li Zefanec9ef7a2011-12-01 14:06:42 +08005289 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5290 BTRFS_BLOCK_GROUP_RAID10)) {
5291 bbio->stripes[i].length = stripes_per_dev *
5292 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005293
Li Zefanec9ef7a2011-12-01 14:06:42 +08005294 if (i / sub_stripes < remaining_stripes)
5295 bbio->stripes[i].length +=
5296 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005297
5298 /*
5299 * Special for the first stripe and
5300 * the last stripe:
5301 *
5302 * |-------|...|-------|
5303 * |----------|
5304 * off end_off
5305 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005306 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005307 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005308 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005309
5310 if (stripe_index >= last_stripe &&
5311 stripe_index <= (last_stripe +
5312 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005313 bbio->stripes[i].length -=
5314 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005315
Li Zefanec9ef7a2011-12-01 14:06:42 +08005316 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005317 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005318 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005319 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005320
5321 stripe_index++;
5322 if (stripe_index == map->num_stripes) {
5323 /* This could only happen for RAID0/10 */
5324 stripe_index = 0;
5325 stripe_nr++;
5326 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005327 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005328 } else {
5329 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005330 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005331 map->stripes[stripe_index].physical +
5332 stripe_offset +
5333 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005334 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005335 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005336 stripe_index++;
5337 }
Chris Mason593060d2008-03-25 16:50:33 -04005338 }
Li Zefande11cc12011-12-01 12:55:47 +08005339
Miao Xied20983b2014-07-03 18:22:13 +08005340 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5341 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005342
Miao Xie2c8cdd62014-11-14 16:06:25 +08005343 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005344 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5345 dev_replace->tgtdev != NULL) {
5346 int index_where_to_add;
5347 u64 srcdev_devid = dev_replace->srcdev->devid;
5348
5349 /*
5350 * duplicate the write operations while the dev replace
5351 * procedure is running. Since the copying of the old disk
5352 * to the new disk takes place at run time while the
5353 * filesystem is mounted writable, the regular write
5354 * operations to the old disk have to be duplicated to go
5355 * to the new disk as well.
5356 * Note that device->missing is handled by the caller, and
5357 * that the write to the old disk is already set up in the
5358 * stripes array.
5359 */
5360 index_where_to_add = num_stripes;
5361 for (i = 0; i < num_stripes; i++) {
5362 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5363 /* write to new disk, too */
5364 struct btrfs_bio_stripe *new =
5365 bbio->stripes + index_where_to_add;
5366 struct btrfs_bio_stripe *old =
5367 bbio->stripes + i;
5368
5369 new->physical = old->physical;
5370 new->length = old->length;
5371 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005372 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005373 index_where_to_add++;
5374 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005375 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005376 }
5377 }
5378 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005379 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5380 dev_replace->tgtdev != NULL) {
5381 u64 srcdev_devid = dev_replace->srcdev->devid;
5382 int index_srcdev = 0;
5383 int found = 0;
5384 u64 physical_of_found = 0;
5385
5386 /*
5387 * During the dev-replace procedure, the target drive can
5388 * also be used to read data in case it is needed to repair
5389 * a corrupt block elsewhere. This is possible if the
5390 * requested area is left of the left cursor. In this area,
5391 * the target drive is a full copy of the source drive.
5392 */
5393 for (i = 0; i < num_stripes; i++) {
5394 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5395 /*
5396 * In case of DUP, in order to keep it
5397 * simple, only add the mirror with the
5398 * lowest physical address
5399 */
5400 if (found &&
5401 physical_of_found <=
5402 bbio->stripes[i].physical)
5403 continue;
5404 index_srcdev = i;
5405 found = 1;
5406 physical_of_found = bbio->stripes[i].physical;
5407 }
5408 }
5409 if (found) {
5410 u64 length = map->stripe_len;
5411
5412 if (physical_of_found + length <=
5413 dev_replace->cursor_left) {
5414 struct btrfs_bio_stripe *tgtdev_stripe =
5415 bbio->stripes + num_stripes;
5416
5417 tgtdev_stripe->physical = physical_of_found;
5418 tgtdev_stripe->length =
5419 bbio->stripes[index_srcdev].length;
5420 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005421 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005422
Miao Xie2c8cdd62014-11-14 16:06:25 +08005423 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005424 num_stripes++;
5425 }
5426 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005427 }
5428
Li Zefande11cc12011-12-01 12:55:47 +08005429 *bbio_ret = bbio;
5430 bbio->num_stripes = num_stripes;
5431 bbio->max_errors = max_errors;
5432 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005433 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005434
5435 /*
5436 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5437 * mirror_num == num_stripes + 1 && dev_replace target drive is
5438 * available as a mirror
5439 */
5440 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5441 WARN_ON(num_stripes > 1);
5442 bbio->stripes[0].dev = dev_replace->tgtdev;
5443 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5444 bbio->mirror_num = map->num_stripes + 1;
5445 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005446 if (raid_map) {
5447 sort_parity_stripes(bbio, raid_map);
5448 *raid_map_ret = raid_map;
5449 }
Chris Masoncea9e442008-04-09 16:28:12 -04005450out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005451 if (dev_replace_is_ongoing)
5452 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005453 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005454 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005455}
5456
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005457int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005458 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005459 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005460{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005461 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
David Woodhouse53b381b2013-01-29 18:40:14 -05005462 mirror_num, NULL);
Chris Masonf2d8d742008-04-21 10:03:05 -04005463}
5464
Miao Xieaf8e2d12014-10-23 14:42:50 +08005465/* For Scrub/replace */
5466int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5467 u64 logical, u64 *length,
5468 struct btrfs_bio **bbio_ret, int mirror_num,
5469 u64 **raid_map_ret)
5470{
5471 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
5472 mirror_num, raid_map_ret);
5473}
5474
Yan Zhenga512bbf2008-12-08 16:46:26 -05005475int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5476 u64 chunk_start, u64 physical, u64 devid,
5477 u64 **logical, int *naddrs, int *stripe_len)
5478{
5479 struct extent_map_tree *em_tree = &map_tree->map_tree;
5480 struct extent_map *em;
5481 struct map_lookup *map;
5482 u64 *buf;
5483 u64 bytenr;
5484 u64 length;
5485 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005486 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005487 int i, j, nr = 0;
5488
Chris Mason890871b2009-09-02 16:24:52 -04005489 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005490 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005491 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005492
Josef Bacik835d9742013-03-19 12:13:25 -04005493 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005494 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005495 chunk_start);
5496 return -EIO;
5497 }
5498
5499 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005500 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005501 em->start, chunk_start);
5502 free_extent_map(em);
5503 return -EIO;
5504 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005505 map = (struct map_lookup *)em->bdev;
5506
5507 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005508 rmap_len = map->stripe_len;
5509
Yan Zhenga512bbf2008-12-08 16:46:26 -05005510 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5511 do_div(length, map->num_stripes / map->sub_stripes);
5512 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5513 do_div(length, map->num_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05005514 else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
5515 BTRFS_BLOCK_GROUP_RAID6)) {
5516 do_div(length, nr_data_stripes(map));
5517 rmap_len = map->stripe_len * nr_data_stripes(map);
5518 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005519
5520 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005521 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005522
5523 for (i = 0; i < map->num_stripes; i++) {
5524 if (devid && map->stripes[i].dev->devid != devid)
5525 continue;
5526 if (map->stripes[i].physical > physical ||
5527 map->stripes[i].physical + length <= physical)
5528 continue;
5529
5530 stripe_nr = physical - map->stripes[i].physical;
5531 do_div(stripe_nr, map->stripe_len);
5532
5533 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5534 stripe_nr = stripe_nr * map->num_stripes + i;
5535 do_div(stripe_nr, map->sub_stripes);
5536 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5537 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005538 } /* else if RAID[56], multiply by nr_data_stripes().
5539 * Alternatively, just use rmap_len below instead of
5540 * map->stripe_len */
5541
5542 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005543 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005544 for (j = 0; j < nr; j++) {
5545 if (buf[j] == bytenr)
5546 break;
5547 }
Chris Mason934d3752008-12-08 16:43:10 -05005548 if (j == nr) {
5549 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005550 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005551 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005552 }
5553
Yan Zhenga512bbf2008-12-08 16:46:26 -05005554 *logical = buf;
5555 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005556 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005557
5558 free_extent_map(em);
5559 return 0;
5560}
5561
Miao Xie8408c712014-06-19 10:42:55 +08005562static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio, int err)
5563{
5564 if (likely(bbio->flags & BTRFS_BIO_ORIG_BIO_SUBMITTED))
5565 bio_endio_nodec(bio, err);
5566 else
5567 bio_endio(bio, err);
5568 kfree(bbio);
5569}
5570
Jan Schmidta1d3c472011-08-04 17:15:33 +02005571static void btrfs_end_bio(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04005572{
Chris Mason9be33952013-05-17 18:30:14 -04005573 struct btrfs_bio *bbio = bio->bi_private;
Miao Xiec404e0d2014-01-30 16:46:55 +08005574 struct btrfs_device *dev = bbio->stripes[0].dev;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005575 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005576
Stefan Behrens442a4f62012-05-25 16:06:08 +02005577 if (err) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005578 atomic_inc(&bbio->error);
Stefan Behrens442a4f62012-05-25 16:06:08 +02005579 if (err == -EIO || err == -EREMOTEIO) {
5580 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005581 btrfs_io_bio(bio)->stripe_index;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005582
5583 BUG_ON(stripe_index >= bbio->num_stripes);
5584 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005585 if (dev->bdev) {
5586 if (bio->bi_rw & WRITE)
5587 btrfs_dev_stat_inc(dev,
5588 BTRFS_DEV_STAT_WRITE_ERRS);
5589 else
5590 btrfs_dev_stat_inc(dev,
5591 BTRFS_DEV_STAT_READ_ERRS);
5592 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5593 btrfs_dev_stat_inc(dev,
5594 BTRFS_DEV_STAT_FLUSH_ERRS);
5595 btrfs_dev_stat_print_on_error(dev);
5596 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005597 }
5598 }
Chris Mason8790d502008-04-03 16:29:03 -04005599
Jan Schmidta1d3c472011-08-04 17:15:33 +02005600 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005601 is_orig_bio = 1;
5602
Miao Xiec404e0d2014-01-30 16:46:55 +08005603 btrfs_bio_counter_dec(bbio->fs_info);
5604
Jan Schmidta1d3c472011-08-04 17:15:33 +02005605 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005606 if (!is_orig_bio) {
5607 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005608 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005609 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005610
Jan Schmidta1d3c472011-08-04 17:15:33 +02005611 bio->bi_private = bbio->private;
5612 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005613 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005614 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005615 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005616 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005617 if (atomic_read(&bbio->error) > bbio->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04005618 err = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005619 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005620 /*
5621 * this bio is actually up to date, we didn't
5622 * go over the max number of errors
5623 */
5624 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04005625 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005626 }
Miao Xiec55f1392014-06-19 10:42:54 +08005627
Miao Xie8408c712014-06-19 10:42:55 +08005628 btrfs_end_bbio(bbio, bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005629 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005630 bio_put(bio);
5631 }
Chris Mason8790d502008-04-03 16:29:03 -04005632}
5633
Chris Mason8b712842008-06-11 16:50:36 -04005634/*
5635 * see run_scheduled_bios for a description of why bios are collected for
5636 * async submit.
5637 *
5638 * This will add one bio to the pending list for a device and make sure
5639 * the work struct is scheduled.
5640 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005641static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5642 struct btrfs_device *device,
5643 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005644{
5645 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005646 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005647
David Woodhouse53b381b2013-01-29 18:40:14 -05005648 if (device->missing || !device->bdev) {
5649 bio_endio(bio, -EIO);
5650 return;
5651 }
5652
Chris Mason8b712842008-06-11 16:50:36 -04005653 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005654 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005655 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005656 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005657 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005658 return;
Chris Mason8b712842008-06-11 16:50:36 -04005659 }
5660
5661 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005662 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005663 * higher layers. Otherwise, the async bio makes it appear we have
5664 * made progress against dirty pages when we've really just put it
5665 * on a queue for later
5666 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005667 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005668 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005669 bio->bi_next = NULL;
5670 bio->bi_rw |= rw;
5671
5672 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005673 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005674 pending_bios = &device->pending_sync_bios;
5675 else
5676 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005677
Chris Masonffbd5172009-04-20 15:50:09 -04005678 if (pending_bios->tail)
5679 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005680
Chris Masonffbd5172009-04-20 15:50:09 -04005681 pending_bios->tail = bio;
5682 if (!pending_bios->head)
5683 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005684 if (device->running_pending)
5685 should_queue = 0;
5686
5687 spin_unlock(&device->io_lock);
5688
5689 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08005690 btrfs_queue_work(root->fs_info->submit_workers,
5691 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005692}
5693
Josef Bacikde1ee922012-10-19 16:50:56 -04005694static int bio_size_ok(struct block_device *bdev, struct bio *bio,
5695 sector_t sector)
5696{
5697 struct bio_vec *prev;
5698 struct request_queue *q = bdev_get_queue(bdev);
Akinobu Mita475bf362013-11-18 22:13:18 +09005699 unsigned int max_sectors = queue_max_sectors(q);
Josef Bacikde1ee922012-10-19 16:50:56 -04005700 struct bvec_merge_data bvm = {
5701 .bi_bdev = bdev,
5702 .bi_sector = sector,
5703 .bi_rw = bio->bi_rw,
5704 };
5705
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05305706 if (WARN_ON(bio->bi_vcnt == 0))
Josef Bacikde1ee922012-10-19 16:50:56 -04005707 return 1;
Josef Bacikde1ee922012-10-19 16:50:56 -04005708
5709 prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08005710 if (bio_sectors(bio) > max_sectors)
Josef Bacikde1ee922012-10-19 16:50:56 -04005711 return 0;
5712
5713 if (!q->merge_bvec_fn)
5714 return 1;
5715
Kent Overstreet4f024f32013-10-11 15:44:27 -07005716 bvm.bi_size = bio->bi_iter.bi_size - prev->bv_len;
Josef Bacikde1ee922012-10-19 16:50:56 -04005717 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len)
5718 return 0;
5719 return 1;
5720}
5721
5722static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5723 struct bio *bio, u64 physical, int dev_nr,
5724 int rw, int async)
5725{
5726 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5727
5728 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005729 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005730 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005731 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04005732#ifdef DEBUG
5733 {
5734 struct rcu_string *name;
5735
5736 rcu_read_lock();
5737 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005738 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005739 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02005740 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
5741 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04005742 rcu_read_unlock();
5743 }
5744#endif
5745 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08005746
5747 btrfs_bio_counter_inc_noblocked(root->fs_info);
5748
Josef Bacikde1ee922012-10-19 16:50:56 -04005749 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05005750 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005751 else
5752 btrfsic_submit_bio(rw, bio);
5753}
5754
5755static int breakup_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5756 struct bio *first_bio, struct btrfs_device *dev,
5757 int dev_nr, int rw, int async)
5758{
5759 struct bio_vec *bvec = first_bio->bi_io_vec;
5760 struct bio *bio;
5761 int nr_vecs = bio_get_nr_vecs(dev->bdev);
5762 u64 physical = bbio->stripes[dev_nr].physical;
5763
5764again:
5765 bio = btrfs_bio_alloc(dev->bdev, physical >> 9, nr_vecs, GFP_NOFS);
5766 if (!bio)
5767 return -ENOMEM;
5768
5769 while (bvec <= (first_bio->bi_io_vec + first_bio->bi_vcnt - 1)) {
5770 if (bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5771 bvec->bv_offset) < bvec->bv_len) {
Kent Overstreet4f024f32013-10-11 15:44:27 -07005772 u64 len = bio->bi_iter.bi_size;
Josef Bacikde1ee922012-10-19 16:50:56 -04005773
5774 atomic_inc(&bbio->stripes_pending);
5775 submit_stripe_bio(root, bbio, bio, physical, dev_nr,
5776 rw, async);
5777 physical += len;
5778 goto again;
5779 }
5780 bvec++;
5781 }
5782
5783 submit_stripe_bio(root, bbio, bio, physical, dev_nr, rw, async);
5784 return 0;
5785}
5786
5787static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
5788{
5789 atomic_inc(&bbio->error);
5790 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Miao Xie8408c712014-06-19 10:42:55 +08005791 /* Shoud be the original bio. */
5792 WARN_ON(bio != bbio->orig_bio);
5793
Josef Bacikde1ee922012-10-19 16:50:56 -04005794 bio->bi_private = bbio->private;
5795 bio->bi_end_io = bbio->end_io;
Chris Mason9be33952013-05-17 18:30:14 -04005796 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005797 bio->bi_iter.bi_sector = logical >> 9;
Miao Xie8408c712014-06-19 10:42:55 +08005798
5799 btrfs_end_bbio(bbio, bio, -EIO);
Josef Bacikde1ee922012-10-19 16:50:56 -04005800 }
5801}
5802
Chris Masonf1885912008-04-09 16:28:12 -04005803int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04005804 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04005805{
Chris Mason0b86a832008-03-24 15:01:56 -04005806 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04005807 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005808 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04005809 u64 length = 0;
5810 u64 map_length;
David Woodhouse53b381b2013-01-29 18:40:14 -05005811 u64 *raid_map = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005812 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04005813 int dev_nr = 0;
5814 int total_devs = 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005815 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005816
Kent Overstreet4f024f32013-10-11 15:44:27 -07005817 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04005818 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04005819
Miao Xiec404e0d2014-01-30 16:46:55 +08005820 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05005821 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
5822 mirror_num, &raid_map);
Miao Xiec404e0d2014-01-30 16:46:55 +08005823 if (ret) {
5824 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005825 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08005826 }
Chris Masoncea9e442008-04-09 16:28:12 -04005827
Jan Schmidta1d3c472011-08-04 17:15:33 +02005828 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005829 bbio->orig_bio = first_bio;
5830 bbio->private = first_bio->bi_private;
5831 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08005832 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05005833 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
5834
5835 if (raid_map) {
5836 /* In this case, map_length has been set to the length of
5837 a single stripe; not the whole write */
5838 if (rw & WRITE) {
Miao Xiec404e0d2014-01-30 16:46:55 +08005839 ret = raid56_parity_write(root, bio, bbio,
5840 raid_map, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005841 } else {
Miao Xiec404e0d2014-01-30 16:46:55 +08005842 ret = raid56_parity_recover(root, bio, bbio,
5843 raid_map, map_length,
Miao Xie42452152014-11-25 16:39:28 +08005844 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05005845 }
Miao Xie42452152014-11-25 16:39:28 +08005846
Miao Xiec404e0d2014-01-30 16:46:55 +08005847 btrfs_bio_counter_dec(root->fs_info);
5848 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05005849 }
5850
Chris Masoncea9e442008-04-09 16:28:12 -04005851 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005852 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005853 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04005854 BUG();
5855 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02005856
Chris Masond3977122009-01-05 21:25:51 -05005857 while (dev_nr < total_devs) {
Josef Bacikde1ee922012-10-19 16:50:56 -04005858 dev = bbio->stripes[dev_nr].dev;
5859 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
5860 bbio_error(bbio, first_bio, logical);
5861 dev_nr++;
5862 continue;
5863 }
5864
5865 /*
5866 * Check and see if we're ok with this bio based on it's size
5867 * and offset with the given device.
5868 */
5869 if (!bio_size_ok(dev->bdev, first_bio,
5870 bbio->stripes[dev_nr].physical >> 9)) {
5871 ret = breakup_stripe_bio(root, bbio, first_bio, dev,
5872 dev_nr, rw, async_submit);
5873 BUG_ON(ret);
5874 dev_nr++;
5875 continue;
5876 }
5877
Jan Schmidta1d3c472011-08-04 17:15:33 +02005878 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04005879 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005880 BUG_ON(!bio); /* -ENOMEM */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005881 } else {
5882 bio = first_bio;
Miao Xiec55f1392014-06-19 10:42:54 +08005883 bbio->flags |= BTRFS_BIO_ORIG_BIO_SUBMITTED;
Chris Mason8790d502008-04-03 16:29:03 -04005884 }
Josef Bacik606686e2012-06-04 14:03:51 -04005885
Josef Bacikde1ee922012-10-19 16:50:56 -04005886 submit_stripe_bio(root, bbio, bio,
5887 bbio->stripes[dev_nr].physical, dev_nr, rw,
5888 async_submit);
Chris Mason8790d502008-04-03 16:29:03 -04005889 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04005890 }
Miao Xiec404e0d2014-01-30 16:46:55 +08005891 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04005892 return 0;
5893}
5894
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005895struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05005896 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04005897{
Yan Zheng2b820322008-11-17 21:11:30 -05005898 struct btrfs_device *device;
5899 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04005900
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01005901 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05005902 while (cur_devices) {
5903 if (!fsid ||
5904 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5905 device = __find_device(&cur_devices->devices,
5906 devid, uuid);
5907 if (device)
5908 return device;
5909 }
5910 cur_devices = cur_devices->seed;
5911 }
5912 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005913}
5914
Chris Masondfe25022008-05-13 13:46:40 -04005915static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08005916 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04005917 u64 devid, u8 *dev_uuid)
5918{
5919 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04005920
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005921 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
5922 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05005923 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005924
5925 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05005926 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04005927 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005928
5929 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05005930 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005931
Chris Masondfe25022008-05-13 13:46:40 -04005932 return device;
5933}
5934
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005935/**
5936 * btrfs_alloc_device - allocate struct btrfs_device
5937 * @fs_info: used only for generating a new devid, can be NULL if
5938 * devid is provided (i.e. @devid != NULL).
5939 * @devid: a pointer to devid for this device. If NULL a new devid
5940 * is generated.
5941 * @uuid: a pointer to UUID for this device. If NULL a new UUID
5942 * is generated.
5943 *
5944 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
5945 * on error. Returned struct is not linked onto any lists and can be
5946 * destroyed with kfree() right away.
5947 */
5948struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
5949 const u64 *devid,
5950 const u8 *uuid)
5951{
5952 struct btrfs_device *dev;
5953 u64 tmp;
5954
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05305955 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005956 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005957
5958 dev = __alloc_device();
5959 if (IS_ERR(dev))
5960 return dev;
5961
5962 if (devid)
5963 tmp = *devid;
5964 else {
5965 int ret;
5966
5967 ret = find_next_devid(fs_info, &tmp);
5968 if (ret) {
5969 kfree(dev);
5970 return ERR_PTR(ret);
5971 }
5972 }
5973 dev->devid = tmp;
5974
5975 if (uuid)
5976 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
5977 else
5978 generate_random_uuid(dev->uuid);
5979
Liu Bo9e0af232014-08-15 23:36:53 +08005980 btrfs_init_work(&dev->work, btrfs_submit_helper,
5981 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03005982
5983 return dev;
5984}
5985
Chris Mason0b86a832008-03-24 15:01:56 -04005986static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
5987 struct extent_buffer *leaf,
5988 struct btrfs_chunk *chunk)
5989{
5990 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5991 struct map_lookup *map;
5992 struct extent_map *em;
5993 u64 logical;
5994 u64 length;
5995 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04005996 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04005997 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04005998 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04005999 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006000
Chris Masone17cade2008-04-15 15:41:47 -04006001 logical = key->offset;
6002 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04006003
Chris Mason890871b2009-09-02 16:24:52 -04006004 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006005 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006006 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006007
6008 /* already mapped? */
6009 if (em && em->start <= logical && em->start + em->len > logical) {
6010 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006011 return 0;
6012 } else if (em) {
6013 free_extent_map(em);
6014 }
Chris Mason0b86a832008-03-24 15:01:56 -04006015
David Sterba172ddd62011-04-21 00:48:27 +02006016 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006017 if (!em)
6018 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006019 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6020 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006021 if (!map) {
6022 free_extent_map(em);
6023 return -ENOMEM;
6024 }
6025
Wang Shilong298a8f92014-06-19 10:42:52 +08006026 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Chris Mason0b86a832008-03-24 15:01:56 -04006027 em->bdev = (struct block_device *)map;
6028 em->start = logical;
6029 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006030 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006031 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006032 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006033
Chris Mason593060d2008-03-25 16:50:33 -04006034 map->num_stripes = num_stripes;
6035 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6036 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6037 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6038 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6039 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006040 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006041 for (i = 0; i < num_stripes; i++) {
6042 map->stripes[i].physical =
6043 btrfs_stripe_offset_nr(leaf, chunk, i);
6044 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006045 read_extent_buffer(leaf, uuid, (unsigned long)
6046 btrfs_stripe_dev_uuid_nr(chunk, i),
6047 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006048 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6049 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006050 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006051 free_extent_map(em);
6052 return -EIO;
6053 }
Chris Masondfe25022008-05-13 13:46:40 -04006054 if (!map->stripes[i].dev) {
6055 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006056 add_missing_dev(root, root->fs_info->fs_devices,
6057 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006058 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006059 free_extent_map(em);
6060 return -EIO;
6061 }
6062 }
6063 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006064 }
6065
Chris Mason890871b2009-09-02 16:24:52 -04006066 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006067 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006068 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006069 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006070 free_extent_map(em);
6071
6072 return 0;
6073}
6074
Jeff Mahoney143bede2012-03-01 14:56:26 +01006075static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006076 struct btrfs_dev_item *dev_item,
6077 struct btrfs_device *device)
6078{
6079 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006080
6081 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006082 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6083 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006084 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006085 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006086 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006087 device->type = btrfs_device_type(leaf, dev_item);
6088 device->io_align = btrfs_device_io_align(leaf, dev_item);
6089 device->io_width = btrfs_device_io_width(leaf, dev_item);
6090 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006091 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006092 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006093
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006094 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006095 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006096}
6097
Miao Xie5f375832014-09-03 21:35:46 +08006098static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6099 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006100{
6101 struct btrfs_fs_devices *fs_devices;
6102 int ret;
6103
Li Zefanb367e472011-12-07 11:38:24 +08006104 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006105
6106 fs_devices = root->fs_info->fs_devices->seed;
6107 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006108 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6109 return fs_devices;
6110
Yan Zheng2b820322008-11-17 21:11:30 -05006111 fs_devices = fs_devices->seed;
6112 }
6113
6114 fs_devices = find_fsid(fsid);
6115 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006116 if (!btrfs_test_opt(root, DEGRADED))
6117 return ERR_PTR(-ENOENT);
6118
6119 fs_devices = alloc_fs_devices(fsid);
6120 if (IS_ERR(fs_devices))
6121 return fs_devices;
6122
6123 fs_devices->seeding = 1;
6124 fs_devices->opened = 1;
6125 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006126 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006127
6128 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006129 if (IS_ERR(fs_devices))
6130 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006131
Christoph Hellwig97288f22008-12-02 06:36:09 -05006132 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006133 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006134 if (ret) {
6135 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006136 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006137 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006138 }
Yan Zheng2b820322008-11-17 21:11:30 -05006139
6140 if (!fs_devices->seeding) {
6141 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006142 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006143 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006144 goto out;
6145 }
6146
6147 fs_devices->seed = root->fs_info->fs_devices->seed;
6148 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006149out:
Miao Xie5f375832014-09-03 21:35:46 +08006150 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006151}
6152
Chris Mason0d81ba52008-03-24 15:02:07 -04006153static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006154 struct extent_buffer *leaf,
6155 struct btrfs_dev_item *dev_item)
6156{
Miao Xie5f375832014-09-03 21:35:46 +08006157 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006158 struct btrfs_device *device;
6159 u64 devid;
6160 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006161 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006162 u8 dev_uuid[BTRFS_UUID_SIZE];
6163
Chris Mason0b86a832008-03-24 15:01:56 -04006164 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006165 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006166 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006167 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006168 BTRFS_UUID_SIZE);
6169
6170 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006171 fs_devices = open_seed_devices(root, fs_uuid);
6172 if (IS_ERR(fs_devices))
6173 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006174 }
6175
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006176 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006177 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006178 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006179 return -EIO;
6180
Miao Xie5f375832014-09-03 21:35:46 +08006181 btrfs_warn(root->fs_info, "devid %llu missing", devid);
6182 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6183 if (!device)
6184 return -ENOMEM;
6185 } else {
6186 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6187 return -EIO;
6188
6189 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006190 /*
6191 * this happens when a device that was properly setup
6192 * in the device info lists suddenly goes bad.
6193 * device->bdev is NULL, and so we have to set
6194 * device->missing to one here
6195 */
Miao Xie5f375832014-09-03 21:35:46 +08006196 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006197 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006198 }
Miao Xie5f375832014-09-03 21:35:46 +08006199
6200 /* Move the device to its own fs_devices */
6201 if (device->fs_devices != fs_devices) {
6202 ASSERT(device->missing);
6203
6204 list_move(&device->dev_list, &fs_devices->devices);
6205 device->fs_devices->num_devices--;
6206 fs_devices->num_devices++;
6207
6208 device->fs_devices->missing_devices--;
6209 fs_devices->missing_devices++;
6210
6211 device->fs_devices = fs_devices;
6212 }
Yan Zheng2b820322008-11-17 21:11:30 -05006213 }
6214
6215 if (device->fs_devices != root->fs_info->fs_devices) {
6216 BUG_ON(device->writeable);
6217 if (device->generation !=
6218 btrfs_device_generation(leaf, dev_item))
6219 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006220 }
Chris Mason0b86a832008-03-24 15:01:56 -04006221
6222 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006223 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006224 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006225 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006226 spin_lock(&root->fs_info->free_chunk_lock);
6227 root->fs_info->free_chunk_space += device->total_bytes -
6228 device->bytes_used;
6229 spin_unlock(&root->fs_info->free_chunk_lock);
6230 }
Chris Mason0b86a832008-03-24 15:01:56 -04006231 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006232 return ret;
6233}
6234
Yan Zhenge4404d62008-12-12 10:03:26 -05006235int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006236{
David Sterba6c417612011-04-13 15:41:04 +02006237 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006238 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006239 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006240 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04006241 u8 *ptr;
6242 unsigned long sb_ptr;
6243 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006244 u32 num_stripes;
6245 u32 array_size;
6246 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006247 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04006248 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006249
Yan Zhenge4404d62008-12-12 10:03:26 -05006250 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04006251 BTRFS_SUPER_INFO_SIZE);
6252 if (!sb)
6253 return -ENOMEM;
6254 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006255 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006256 /*
6257 * The sb extent buffer is artifical and just used to read the system array.
6258 * btrfs_set_buffer_uptodate() call does not properly mark all it's
6259 * pages up-to-date when the page is larger: extent does not cover the
6260 * whole page and consequently check_page_uptodate does not find all
6261 * the page's extents up-to-date (the hole beyond sb),
6262 * write_extent_buffer then triggers a WARN_ON.
6263 *
6264 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6265 * but sb spans only this function. Add an explicit SetPageUptodate call
6266 * to silence the warning eg. on PowerPC 64.
6267 */
6268 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006269 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006270
Chris Masona061fc82008-05-07 11:43:44 -04006271 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006272 array_size = btrfs_super_sys_array_size(super_copy);
6273
Chris Mason0b86a832008-03-24 15:01:56 -04006274 ptr = super_copy->sys_chunk_array;
6275 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
6276 cur = 0;
6277
6278 while (cur < array_size) {
6279 disk_key = (struct btrfs_disk_key *)ptr;
6280 btrfs_disk_key_to_cpu(&key, disk_key);
6281
Chris Masona061fc82008-05-07 11:43:44 -04006282 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006283 sb_ptr += len;
6284 cur += len;
6285
Chris Mason0d81ba52008-03-24 15:02:07 -04006286 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04006287 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04006288 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006289 if (ret)
6290 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006291 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
6292 len = btrfs_chunk_item_size(num_stripes);
6293 } else {
Chris Mason84eed902008-04-25 09:04:37 -04006294 ret = -EIO;
6295 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006296 }
6297 ptr += len;
6298 sb_ptr += len;
6299 cur += len;
6300 }
Chris Masona061fc82008-05-07 11:43:44 -04006301 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006302 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04006303}
6304
6305int btrfs_read_chunk_tree(struct btrfs_root *root)
6306{
6307 struct btrfs_path *path;
6308 struct extent_buffer *leaf;
6309 struct btrfs_key key;
6310 struct btrfs_key found_key;
6311 int ret;
6312 int slot;
6313
6314 root = root->fs_info->chunk_root;
6315
6316 path = btrfs_alloc_path();
6317 if (!path)
6318 return -ENOMEM;
6319
Li Zefanb367e472011-12-07 11:38:24 +08006320 mutex_lock(&uuid_mutex);
6321 lock_chunks(root);
6322
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006323 /*
6324 * Read all device items, and then all the chunk items. All
6325 * device items are found before any chunk item (their object id
6326 * is smaller than the lowest possible object id for a chunk
6327 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006328 */
6329 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6330 key.offset = 0;
6331 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006332 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006333 if (ret < 0)
6334 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006335 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006336 leaf = path->nodes[0];
6337 slot = path->slots[0];
6338 if (slot >= btrfs_header_nritems(leaf)) {
6339 ret = btrfs_next_leaf(root, path);
6340 if (ret == 0)
6341 continue;
6342 if (ret < 0)
6343 goto error;
6344 break;
6345 }
6346 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006347 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6348 struct btrfs_dev_item *dev_item;
6349 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006350 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006351 ret = read_one_dev(root, leaf, dev_item);
6352 if (ret)
6353 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006354 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6355 struct btrfs_chunk *chunk;
6356 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6357 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006358 if (ret)
6359 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006360 }
6361 path->slots[0]++;
6362 }
Chris Mason0b86a832008-03-24 15:01:56 -04006363 ret = 0;
6364error:
Li Zefanb367e472011-12-07 11:38:24 +08006365 unlock_chunks(root);
6366 mutex_unlock(&uuid_mutex);
6367
Yan Zheng2b820322008-11-17 21:11:30 -05006368 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006369 return ret;
6370}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006371
Miao Xiecb517ea2013-05-15 07:48:19 +00006372void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6373{
6374 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6375 struct btrfs_device *device;
6376
Liu Bo29cc83f2014-05-11 23:14:59 +08006377 while (fs_devices) {
6378 mutex_lock(&fs_devices->device_list_mutex);
6379 list_for_each_entry(device, &fs_devices->devices, dev_list)
6380 device->dev_root = fs_info->dev_root;
6381 mutex_unlock(&fs_devices->device_list_mutex);
6382
6383 fs_devices = fs_devices->seed;
6384 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006385}
6386
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006387static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6388{
6389 int i;
6390
6391 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6392 btrfs_dev_stat_reset(dev, i);
6393}
6394
6395int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6396{
6397 struct btrfs_key key;
6398 struct btrfs_key found_key;
6399 struct btrfs_root *dev_root = fs_info->dev_root;
6400 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6401 struct extent_buffer *eb;
6402 int slot;
6403 int ret = 0;
6404 struct btrfs_device *device;
6405 struct btrfs_path *path = NULL;
6406 int i;
6407
6408 path = btrfs_alloc_path();
6409 if (!path) {
6410 ret = -ENOMEM;
6411 goto out;
6412 }
6413
6414 mutex_lock(&fs_devices->device_list_mutex);
6415 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6416 int item_size;
6417 struct btrfs_dev_stats_item *ptr;
6418
6419 key.objectid = 0;
6420 key.type = BTRFS_DEV_STATS_KEY;
6421 key.offset = device->devid;
6422 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6423 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006424 __btrfs_reset_dev_stats(device);
6425 device->dev_stats_valid = 1;
6426 btrfs_release_path(path);
6427 continue;
6428 }
6429 slot = path->slots[0];
6430 eb = path->nodes[0];
6431 btrfs_item_key_to_cpu(eb, &found_key, slot);
6432 item_size = btrfs_item_size_nr(eb, slot);
6433
6434 ptr = btrfs_item_ptr(eb, slot,
6435 struct btrfs_dev_stats_item);
6436
6437 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6438 if (item_size >= (1 + i) * sizeof(__le64))
6439 btrfs_dev_stat_set(device, i,
6440 btrfs_dev_stats_value(eb, ptr, i));
6441 else
6442 btrfs_dev_stat_reset(device, i);
6443 }
6444
6445 device->dev_stats_valid = 1;
6446 btrfs_dev_stat_print_on_load(device);
6447 btrfs_release_path(path);
6448 }
6449 mutex_unlock(&fs_devices->device_list_mutex);
6450
6451out:
6452 btrfs_free_path(path);
6453 return ret < 0 ? ret : 0;
6454}
6455
6456static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6457 struct btrfs_root *dev_root,
6458 struct btrfs_device *device)
6459{
6460 struct btrfs_path *path;
6461 struct btrfs_key key;
6462 struct extent_buffer *eb;
6463 struct btrfs_dev_stats_item *ptr;
6464 int ret;
6465 int i;
6466
6467 key.objectid = 0;
6468 key.type = BTRFS_DEV_STATS_KEY;
6469 key.offset = device->devid;
6470
6471 path = btrfs_alloc_path();
6472 BUG_ON(!path);
6473 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6474 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006475 printk_in_rcu(KERN_WARNING "BTRFS: "
6476 "error %d while searching for dev_stats item for device %s!\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006477 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006478 goto out;
6479 }
6480
6481 if (ret == 0 &&
6482 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6483 /* need to delete old one and insert a new one */
6484 ret = btrfs_del_item(trans, dev_root, path);
6485 if (ret != 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006486 printk_in_rcu(KERN_WARNING "BTRFS: "
6487 "delete too small dev_stats item for device %s failed %d!\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006488 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006489 goto out;
6490 }
6491 ret = 1;
6492 }
6493
6494 if (ret == 1) {
6495 /* need to insert a new item */
6496 btrfs_release_path(path);
6497 ret = btrfs_insert_empty_item(trans, dev_root, path,
6498 &key, sizeof(*ptr));
6499 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006500 printk_in_rcu(KERN_WARNING "BTRFS: "
6501 "insert dev_stats item for device %s failed %d!\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006502 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006503 goto out;
6504 }
6505 }
6506
6507 eb = path->nodes[0];
6508 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6509 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6510 btrfs_set_dev_stats_value(eb, ptr, i,
6511 btrfs_dev_stat_read(device, i));
6512 btrfs_mark_buffer_dirty(eb);
6513
6514out:
6515 btrfs_free_path(path);
6516 return ret;
6517}
6518
6519/*
6520 * called from commit_transaction. Writes all changed device stats to disk.
6521 */
6522int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6523 struct btrfs_fs_info *fs_info)
6524{
6525 struct btrfs_root *dev_root = fs_info->dev_root;
6526 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6527 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006528 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006529 int ret = 0;
6530
6531 mutex_lock(&fs_devices->device_list_mutex);
6532 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006533 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006534 continue;
6535
Miao Xieaddc3fa2014-07-24 11:37:11 +08006536 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006537 ret = update_dev_stat_item(trans, dev_root, device);
6538 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006539 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006540 }
6541 mutex_unlock(&fs_devices->device_list_mutex);
6542
6543 return ret;
6544}
6545
Stefan Behrens442a4f62012-05-25 16:06:08 +02006546void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6547{
6548 btrfs_dev_stat_inc(dev, index);
6549 btrfs_dev_stat_print_on_error(dev);
6550}
6551
Eric Sandeen48a3b632013-04-25 20:41:01 +00006552static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006553{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006554 if (!dev->dev_stats_valid)
6555 return;
Frank Holtonefe120a2013-12-20 11:37:06 -05006556 printk_ratelimited_in_rcu(KERN_ERR "BTRFS: "
6557 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006558 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006559 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6560 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6561 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006562 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6563 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006564}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006565
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006566static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6567{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006568 int i;
6569
6570 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6571 if (btrfs_dev_stat_read(dev, i) != 0)
6572 break;
6573 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6574 return; /* all values == 0, suppress message */
6575
Frank Holtonefe120a2013-12-20 11:37:06 -05006576 printk_in_rcu(KERN_INFO "BTRFS: "
6577 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
Josef Bacik606686e2012-06-04 14:03:51 -04006578 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006579 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6580 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6581 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6582 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6583 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6584}
6585
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006586int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006587 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006588{
6589 struct btrfs_device *dev;
6590 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6591 int i;
6592
6593 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006594 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006595 mutex_unlock(&fs_devices->device_list_mutex);
6596
6597 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006598 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006599 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006600 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006601 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006602 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006603 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006604 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6605 if (stats->nr_items > i)
6606 stats->values[i] =
6607 btrfs_dev_stat_read_and_reset(dev, i);
6608 else
6609 btrfs_dev_stat_reset(dev, i);
6610 }
6611 } else {
6612 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6613 if (stats->nr_items > i)
6614 stats->values[i] = btrfs_dev_stat_read(dev, i);
6615 }
6616 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6617 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6618 return 0;
6619}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006620
6621int btrfs_scratch_superblock(struct btrfs_device *device)
6622{
6623 struct buffer_head *bh;
6624 struct btrfs_super_block *disk_super;
6625
6626 bh = btrfs_read_dev_super(device->bdev);
6627 if (!bh)
6628 return -EINVAL;
6629 disk_super = (struct btrfs_super_block *)bh->b_data;
6630
6631 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6632 set_buffer_dirty(bh);
6633 sync_dirty_buffer(bh);
6634 brelse(bh);
6635
6636 return 0;
6637}
Miao Xie935e5cc2014-09-03 21:35:33 +08006638
6639/*
6640 * Update the size of all devices, which is used for writing out the
6641 * super blocks.
6642 */
6643void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6644{
6645 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6646 struct btrfs_device *curr, *next;
6647
6648 if (list_empty(&fs_devices->resized_devices))
6649 return;
6650
6651 mutex_lock(&fs_devices->device_list_mutex);
6652 lock_chunks(fs_info->dev_root);
6653 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6654 resized_list) {
6655 list_del_init(&curr->resized_list);
6656 curr->commit_total_bytes = curr->disk_total_bytes;
6657 }
6658 unlock_chunks(fs_info->dev_root);
6659 mutex_unlock(&fs_devices->device_list_mutex);
6660}
Miao Xiece7213c2014-09-03 21:35:34 +08006661
6662/* Must be invoked during the transaction commit */
6663void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6664 struct btrfs_transaction *transaction)
6665{
6666 struct extent_map *em;
6667 struct map_lookup *map;
6668 struct btrfs_device *dev;
6669 int i;
6670
6671 if (list_empty(&transaction->pending_chunks))
6672 return;
6673
6674 /* In order to kick the device replace finish process */
6675 lock_chunks(root);
6676 list_for_each_entry(em, &transaction->pending_chunks, list) {
6677 map = (struct map_lookup *)em->bdev;
6678
6679 for (i = 0; i < map->num_stripes; i++) {
6680 dev = map->stripes[i].dev;
6681 dev->commit_bytes_used = dev->bytes_used;
6682 }
6683 }
6684 unlock_chunks(root);
6685}