blob: 58aad63e1ad316de08359083365a41e572a87635 [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>
Ilya Dryomov59641012012-01-16 22:04:48 +020026#include <linux/kthread.h>
Chris Mason593060d2008-03-25 16:50:33 -040027#include <asm/div64.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050028#include "compat.h"
Chris Mason0b86a832008-03-24 15:01:56 -040029#include "ctree.h"
30#include "extent_map.h"
31#include "disk-io.h"
32#include "transaction.h"
33#include "print-tree.h"
34#include "volumes.h"
Chris Mason8b712842008-06-11 16:50:36 -040035#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010036#include "check-integrity.h"
Chris Mason0b86a832008-03-24 15:01:56 -040037
Yan Zheng2b820322008-11-17 21:11:30 -050038static int init_first_rw_device(struct btrfs_trans_handle *trans,
39 struct btrfs_root *root,
40 struct btrfs_device *device);
41static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
42
Chris Mason8a4b83c2008-03-24 15:02:07 -040043static DEFINE_MUTEX(uuid_mutex);
44static LIST_HEAD(fs_uuids);
45
Chris Mason7d9eb122008-07-08 14:19:17 -040046static void lock_chunks(struct btrfs_root *root)
47{
Chris Mason7d9eb122008-07-08 14:19:17 -040048 mutex_lock(&root->fs_info->chunk_mutex);
49}
50
51static void unlock_chunks(struct btrfs_root *root)
52{
Chris Mason7d9eb122008-07-08 14:19:17 -040053 mutex_unlock(&root->fs_info->chunk_mutex);
54}
55
Yan Zhenge4404d62008-12-12 10:03:26 -050056static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
57{
58 struct btrfs_device *device;
59 WARN_ON(fs_devices->opened);
60 while (!list_empty(&fs_devices->devices)) {
61 device = list_entry(fs_devices->devices.next,
62 struct btrfs_device, dev_list);
63 list_del(&device->dev_list);
64 kfree(device->name);
65 kfree(device);
66 }
67 kfree(fs_devices);
68}
69
Chris Mason8a4b83c2008-03-24 15:02:07 -040070int btrfs_cleanup_fs_uuids(void)
71{
72 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -040073
Yan Zheng2b820322008-11-17 21:11:30 -050074 while (!list_empty(&fs_uuids)) {
75 fs_devices = list_entry(fs_uuids.next,
76 struct btrfs_fs_devices, list);
77 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -050078 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -040079 }
80 return 0;
81}
82
Chris Masona1b32a52008-09-05 16:09:51 -040083static noinline struct btrfs_device *__find_device(struct list_head *head,
84 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -040085{
86 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -040087
Qinghuang Fengc6e30872009-01-21 10:59:08 -050088 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -040089 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -040090 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -040091 return dev;
Chris Masona4437552008-04-18 10:29:38 -040092 }
Chris Mason8a4b83c2008-03-24 15:02:07 -040093 }
94 return NULL;
95}
96
Chris Masona1b32a52008-09-05 16:09:51 -040097static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -040098{
Chris Mason8a4b83c2008-03-24 15:02:07 -040099 struct btrfs_fs_devices *fs_devices;
100
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500101 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400102 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
103 return fs_devices;
104 }
105 return NULL;
106}
107
Chris Masonffbd5172009-04-20 15:50:09 -0400108static void requeue_list(struct btrfs_pending_bios *pending_bios,
109 struct bio *head, struct bio *tail)
110{
111
112 struct bio *old_head;
113
114 old_head = pending_bios->head;
115 pending_bios->head = head;
116 if (pending_bios->tail)
117 tail->bi_next = old_head;
118 else
119 pending_bios->tail = tail;
120}
121
Chris Mason8b712842008-06-11 16:50:36 -0400122/*
123 * we try to collect pending bios for a device so we don't get a large
124 * number of procs sending bios down to the same device. This greatly
125 * improves the schedulers ability to collect and merge the bios.
126 *
127 * But, it also turns into a long list of bios to process and that is sure
128 * to eventually make the worker thread block. The solution here is to
129 * make some progress and then put this work struct back at the end of
130 * the list if the block device is congested. This way, multiple devices
131 * can make progress from a single worker thread.
132 */
Chris Masond3977122009-01-05 21:25:51 -0500133static noinline int run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400134{
135 struct bio *pending;
136 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400137 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400138 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400139 struct bio *tail;
140 struct bio *cur;
141 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400142 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400143 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400144 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400145 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400146 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000147 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400148 struct blk_plug plug;
149
150 /*
151 * this function runs all the bios we've collected for
152 * a particular device. We don't want to wander off to
153 * another device without first sending all of these down.
154 * So, setup a plug here and finish it off before we return
155 */
156 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400157
Chris Masonbedf7622009-04-03 10:32:58 -0400158 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400159 fs_info = device->dev_root->fs_info;
160 limit = btrfs_async_submit_limit(fs_info);
161 limit = limit * 2 / 3;
162
Chris Mason8b712842008-06-11 16:50:36 -0400163loop:
164 spin_lock(&device->io_lock);
165
Chris Masona6837052009-02-04 09:19:41 -0500166loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400167 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400168
Chris Mason8b712842008-06-11 16:50:36 -0400169 /* take all the bios off the list at once and process them
170 * later on (without the lock held). But, remember the
171 * tail and other pointers so the bios can be properly reinserted
172 * into the list if we hit congestion
173 */
Chris Masond84275c2009-06-09 15:39:08 -0400174 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400175 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400176 force_reg = 1;
177 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400178 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400179 force_reg = 0;
180 }
Chris Masonffbd5172009-04-20 15:50:09 -0400181
182 pending = pending_bios->head;
183 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400184 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400185
186 /*
187 * if pending was null this time around, no bios need processing
188 * at all and we can stop. Otherwise it'll loop back up again
189 * and do an additional check so no bios are missed.
190 *
191 * device->running_pending is used to synchronize with the
192 * schedule_bio code.
193 */
Chris Masonffbd5172009-04-20 15:50:09 -0400194 if (device->pending_sync_bios.head == NULL &&
195 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400196 again = 0;
197 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400198 } else {
199 again = 1;
200 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400201 }
Chris Masonffbd5172009-04-20 15:50:09 -0400202
203 pending_bios->head = NULL;
204 pending_bios->tail = NULL;
205
Chris Mason8b712842008-06-11 16:50:36 -0400206 spin_unlock(&device->io_lock);
207
Chris Masond3977122009-01-05 21:25:51 -0500208 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400209
210 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400211 /* we want to work on both lists, but do more bios on the
212 * sync list than the regular list
213 */
214 if ((num_run > 32 &&
215 pending_bios != &device->pending_sync_bios &&
216 device->pending_sync_bios.head) ||
217 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
218 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400219 spin_lock(&device->io_lock);
220 requeue_list(pending_bios, pending, tail);
221 goto loop_lock;
222 }
223
Chris Mason8b712842008-06-11 16:50:36 -0400224 cur = pending;
225 pending = pending->bi_next;
226 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400227 atomic_dec(&fs_info->nr_async_bios);
228
229 if (atomic_read(&fs_info->nr_async_bios) < limit &&
230 waitqueue_active(&fs_info->async_submit_wait))
231 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400232
233 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400234
Chris Mason2ab1ba62011-08-04 14:28:36 -0400235 /*
236 * if we're doing the sync list, record that our
237 * plug has some sync requests on it
238 *
239 * If we're doing the regular list and there are
240 * sync requests sitting around, unplug before
241 * we add more
242 */
243 if (pending_bios == &device->pending_sync_bios) {
244 sync_pending = 1;
245 } else if (sync_pending) {
246 blk_finish_plug(&plug);
247 blk_start_plug(&plug);
248 sync_pending = 0;
249 }
250
Stefan Behrens21adbd52011-11-09 13:44:05 +0100251 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400252 num_run++;
253 batch_run++;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100254 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400255 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400256
257 /*
258 * we made progress, there is more work to do and the bdi
259 * is now congested. Back off and let other work structs
260 * run instead
261 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400262 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500263 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400264 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400265
Chris Masonb765ead2009-04-03 10:27:10 -0400266 ioc = current->io_context;
267
268 /*
269 * the main goal here is that we don't want to
270 * block if we're going to be able to submit
271 * more requests without blocking.
272 *
273 * This code does two great things, it pokes into
274 * the elevator code from a filesystem _and_
275 * it makes assumptions about how batching works.
276 */
277 if (ioc && ioc->nr_batch_requests > 0 &&
278 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
279 (last_waited == 0 ||
280 ioc->last_waited == last_waited)) {
281 /*
282 * we want to go through our batch of
283 * requests and stop. So, we copy out
284 * the ioc->last_waited time and test
285 * against it before looping
286 */
287 last_waited = ioc->last_waited;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100288 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400289 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400290 continue;
291 }
Chris Mason8b712842008-06-11 16:50:36 -0400292 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400293 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500294 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400295
296 spin_unlock(&device->io_lock);
297 btrfs_requeue_work(&device->work);
298 goto done;
299 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500300 /* unplug every 64 requests just for good measure */
301 if (batch_run % 64 == 0) {
302 blk_finish_plug(&plug);
303 blk_start_plug(&plug);
304 sync_pending = 0;
305 }
Chris Mason8b712842008-06-11 16:50:36 -0400306 }
Chris Masonffbd5172009-04-20 15:50:09 -0400307
Chris Mason51684082010-03-10 15:33:32 -0500308 cond_resched();
309 if (again)
310 goto loop;
311
312 spin_lock(&device->io_lock);
313 if (device->pending_bios.head || device->pending_sync_bios.head)
314 goto loop_lock;
315 spin_unlock(&device->io_lock);
316
Chris Mason8b712842008-06-11 16:50:36 -0400317done:
Chris Mason211588a2011-04-19 20:12:40 -0400318 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400319 return 0;
320}
321
Christoph Hellwigb2950862008-12-02 09:54:17 -0500322static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400323{
324 struct btrfs_device *device;
325
326 device = container_of(work, struct btrfs_device, work);
327 run_scheduled_bios(device);
328}
329
Chris Masona1b32a52008-09-05 16:09:51 -0400330static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400331 struct btrfs_super_block *disk_super,
332 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
333{
334 struct btrfs_device *device;
335 struct btrfs_fs_devices *fs_devices;
336 u64 found_transid = btrfs_super_generation(disk_super);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000337 char *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400338
339 fs_devices = find_fsid(disk_super->fsid);
340 if (!fs_devices) {
Chris Mason515dc322008-05-16 13:30:15 -0400341 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400342 if (!fs_devices)
343 return -ENOMEM;
344 INIT_LIST_HEAD(&fs_devices->devices);
Chris Masonb3075712008-04-22 09:22:07 -0400345 INIT_LIST_HEAD(&fs_devices->alloc_list);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400346 list_add(&fs_devices->list, &fs_uuids);
347 memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
348 fs_devices->latest_devid = devid;
349 fs_devices->latest_trans = found_transid;
Chris Masone5e9a522009-06-10 15:17:02 -0400350 mutex_init(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400351 device = NULL;
352 } else {
Chris Masona4437552008-04-18 10:29:38 -0400353 device = __find_device(&fs_devices->devices, devid,
354 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400355 }
356 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500357 if (fs_devices->opened)
358 return -EBUSY;
359
Chris Mason8a4b83c2008-03-24 15:02:07 -0400360 device = kzalloc(sizeof(*device), GFP_NOFS);
361 if (!device) {
362 /* we can safely leave the fs_devices entry around */
363 return -ENOMEM;
364 }
365 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -0400366 device->work.func = pending_bios_fn;
Chris Masona4437552008-04-18 10:29:38 -0400367 memcpy(device->uuid, disk_super->dev_item.uuid,
368 BTRFS_UUID_SIZE);
Chris Masonb248a412008-04-14 09:48:18 -0400369 spin_lock_init(&device->io_lock);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400370 device->name = kstrdup(path, GFP_NOFS);
371 if (!device->name) {
372 kfree(device);
373 return -ENOMEM;
374 }
Yan Zheng2b820322008-11-17 21:11:30 -0500375 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -0400376
Arne Jansen90519d62011-05-23 14:30:00 +0200377 /* init readahead state */
378 spin_lock_init(&device->reada_lock);
379 device->reada_curr_zone = NULL;
380 atomic_set(&device->reada_in_flight, 0);
381 device->reada_next = 0;
382 INIT_RADIX_TREE(&device->reada_zones, GFP_NOFS & ~__GFP_WAIT);
383 INIT_RADIX_TREE(&device->reada_extents, GFP_NOFS & ~__GFP_WAIT);
384
Chris Masone5e9a522009-06-10 15:17:02 -0400385 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000386 list_add_rcu(&device->dev_list, &fs_devices->devices);
Chris Masone5e9a522009-06-10 15:17:02 -0400387 mutex_unlock(&fs_devices->device_list_mutex);
388
Yan Zheng2b820322008-11-17 21:11:30 -0500389 device->fs_devices = fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400390 fs_devices->num_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -0500391 } else if (!device->name || strcmp(device->name, path)) {
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000392 name = kstrdup(path, GFP_NOFS);
393 if (!name)
394 return -ENOMEM;
395 kfree(device->name);
396 device->name = name;
Chris Masoncd02dca2010-12-13 14:56:23 -0500397 if (device->missing) {
398 fs_devices->missing_devices--;
399 device->missing = 0;
400 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400401 }
402
403 if (found_transid > fs_devices->latest_trans) {
404 fs_devices->latest_devid = devid;
405 fs_devices->latest_trans = found_transid;
406 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400407 *fs_devices_ret = fs_devices;
408 return 0;
409}
410
Yan Zhenge4404d62008-12-12 10:03:26 -0500411static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
412{
413 struct btrfs_fs_devices *fs_devices;
414 struct btrfs_device *device;
415 struct btrfs_device *orig_dev;
416
417 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
418 if (!fs_devices)
419 return ERR_PTR(-ENOMEM);
420
421 INIT_LIST_HEAD(&fs_devices->devices);
422 INIT_LIST_HEAD(&fs_devices->alloc_list);
423 INIT_LIST_HEAD(&fs_devices->list);
Chris Masone5e9a522009-06-10 15:17:02 -0400424 mutex_init(&fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500425 fs_devices->latest_devid = orig->latest_devid;
426 fs_devices->latest_trans = orig->latest_trans;
427 memcpy(fs_devices->fsid, orig->fsid, sizeof(fs_devices->fsid));
428
Xiao Guangrong46224702011-04-20 10:08:47 +0000429 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500430 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
431 device = kzalloc(sizeof(*device), GFP_NOFS);
432 if (!device)
433 goto error;
434
435 device->name = kstrdup(orig_dev->name, GFP_NOFS);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400436 if (!device->name) {
437 kfree(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500438 goto error;
Julia Lawallfd2696f2009-09-29 13:51:04 -0400439 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500440
441 device->devid = orig_dev->devid;
442 device->work.func = pending_bios_fn;
443 memcpy(device->uuid, orig_dev->uuid, sizeof(device->uuid));
Yan Zhenge4404d62008-12-12 10:03:26 -0500444 spin_lock_init(&device->io_lock);
445 INIT_LIST_HEAD(&device->dev_list);
446 INIT_LIST_HEAD(&device->dev_alloc_list);
447
448 list_add(&device->dev_list, &fs_devices->devices);
449 device->fs_devices = fs_devices;
450 fs_devices->num_devices++;
451 }
452 return fs_devices;
453error:
454 free_fs_devices(fs_devices);
455 return ERR_PTR(-ENOMEM);
456}
457
Chris Masondfe25022008-05-13 13:46:40 -0400458int btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices)
459{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500460 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400461
Chris Masona6b0d5c2012-02-20 20:53:43 -0500462 struct block_device *latest_bdev = NULL;
463 u64 latest_devid = 0;
464 u64 latest_transid = 0;
465
Chris Masondfe25022008-05-13 13:46:40 -0400466 mutex_lock(&uuid_mutex);
467again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000468 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500469 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500470 if (device->in_fs_metadata) {
471 if (!latest_transid ||
472 device->generation > latest_transid) {
473 latest_devid = device->devid;
474 latest_transid = device->generation;
475 latest_bdev = device->bdev;
476 }
Yan Zheng2b820322008-11-17 21:11:30 -0500477 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500478 }
Yan Zheng2b820322008-11-17 21:11:30 -0500479
480 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100481 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500482 device->bdev = NULL;
483 fs_devices->open_devices--;
484 }
485 if (device->writeable) {
486 list_del_init(&device->dev_alloc_list);
487 device->writeable = 0;
488 fs_devices->rw_devices--;
489 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500490 list_del_init(&device->dev_list);
491 fs_devices->num_devices--;
492 kfree(device->name);
493 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400494 }
Yan Zheng2b820322008-11-17 21:11:30 -0500495
496 if (fs_devices->seed) {
497 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500498 goto again;
499 }
500
Chris Masona6b0d5c2012-02-20 20:53:43 -0500501 fs_devices->latest_bdev = latest_bdev;
502 fs_devices->latest_devid = latest_devid;
503 fs_devices->latest_trans = latest_transid;
504
Chris Masondfe25022008-05-13 13:46:40 -0400505 mutex_unlock(&uuid_mutex);
506 return 0;
507}
Chris Masona0af4692008-05-13 16:03:06 -0400508
Xiao Guangrong1f781602011-04-20 10:09:16 +0000509static void __free_device(struct work_struct *work)
510{
511 struct btrfs_device *device;
512
513 device = container_of(work, struct btrfs_device, rcu_work);
514
515 if (device->bdev)
516 blkdev_put(device->bdev, device->mode);
517
518 kfree(device->name);
519 kfree(device);
520}
521
522static void free_device(struct rcu_head *head)
523{
524 struct btrfs_device *device;
525
526 device = container_of(head, struct btrfs_device, rcu);
527
528 INIT_WORK(&device->rcu_work, __free_device);
529 schedule_work(&device->rcu_work);
530}
531
Yan Zheng2b820322008-11-17 21:11:30 -0500532static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400533{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400534 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500535
Yan Zheng2b820322008-11-17 21:11:30 -0500536 if (--fs_devices->opened > 0)
537 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400538
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000539 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500540 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Xiao Guangrong1f781602011-04-20 10:09:16 +0000541 struct btrfs_device *new_device;
542
543 if (device->bdev)
Chris Masona0af4692008-05-13 16:03:06 -0400544 fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000545
Yan Zheng2b820322008-11-17 21:11:30 -0500546 if (device->writeable) {
547 list_del_init(&device->dev_alloc_list);
548 fs_devices->rw_devices--;
549 }
550
Josef Bacikd5e20032011-08-04 14:52:27 +0000551 if (device->can_discard)
552 fs_devices->num_can_discard--;
553
Xiao Guangrong1f781602011-04-20 10:09:16 +0000554 new_device = kmalloc(sizeof(*new_device), GFP_NOFS);
555 BUG_ON(!new_device);
556 memcpy(new_device, device, sizeof(*new_device));
557 new_device->name = kstrdup(device->name, GFP_NOFS);
Arne Jansen5f3f3022011-05-30 08:36:16 +0000558 BUG_ON(device->name && !new_device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000559 new_device->bdev = NULL;
560 new_device->writeable = 0;
561 new_device->in_fs_metadata = 0;
Josef Bacikd5e20032011-08-04 14:52:27 +0000562 new_device->can_discard = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000563 list_replace_rcu(&device->dev_list, &new_device->dev_list);
564
565 call_rcu(&device->rcu, free_device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400566 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000567 mutex_unlock(&fs_devices->device_list_mutex);
568
Yan Zhenge4404d62008-12-12 10:03:26 -0500569 WARN_ON(fs_devices->open_devices);
570 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500571 fs_devices->opened = 0;
572 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500573
Chris Mason8a4b83c2008-03-24 15:02:07 -0400574 return 0;
575}
576
Yan Zheng2b820322008-11-17 21:11:30 -0500577int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
578{
Yan Zhenge4404d62008-12-12 10:03:26 -0500579 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500580 int ret;
581
582 mutex_lock(&uuid_mutex);
583 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500584 if (!fs_devices->opened) {
585 seed_devices = fs_devices->seed;
586 fs_devices->seed = NULL;
587 }
Yan Zheng2b820322008-11-17 21:11:30 -0500588 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500589
590 while (seed_devices) {
591 fs_devices = seed_devices;
592 seed_devices = fs_devices->seed;
593 __btrfs_close_devices(fs_devices);
594 free_fs_devices(fs_devices);
595 }
Yan Zheng2b820322008-11-17 21:11:30 -0500596 return ret;
597}
598
Yan Zhenge4404d62008-12-12 10:03:26 -0500599static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
600 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400601{
Josef Bacikd5e20032011-08-04 14:52:27 +0000602 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400603 struct block_device *bdev;
604 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400605 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400606 struct block_device *latest_bdev = NULL;
607 struct buffer_head *bh;
608 struct btrfs_super_block *disk_super;
609 u64 latest_devid = 0;
610 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400611 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500612 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400613 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400614
Tejun Heod4d77622010-11-13 11:55:18 +0100615 flags |= FMODE_EXCL;
616
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500617 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400618 if (device->bdev)
619 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400620 if (!device->name)
621 continue;
622
Tejun Heod4d77622010-11-13 11:55:18 +0100623 bdev = blkdev_get_by_path(device->name, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400624 if (IS_ERR(bdev)) {
Chris Masond3977122009-01-05 21:25:51 -0500625 printk(KERN_INFO "open %s failed\n", device->name);
Chris Masona0af4692008-05-13 16:03:06 -0400626 goto error;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400627 }
Chris Masona061fc82008-05-07 11:43:44 -0400628 set_blocksize(bdev, 4096);
Chris Masona0af4692008-05-13 16:03:06 -0400629
Yan Zhenga512bbf2008-12-08 16:46:26 -0500630 bh = btrfs_read_dev_super(bdev);
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300631 if (!bh)
Chris Masona0af4692008-05-13 16:03:06 -0400632 goto error_close;
633
634 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000635 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400636 if (devid != device->devid)
637 goto error_brelse;
638
Yan Zheng2b820322008-11-17 21:11:30 -0500639 if (memcmp(device->uuid, disk_super->dev_item.uuid,
640 BTRFS_UUID_SIZE))
641 goto error_brelse;
642
643 device->generation = btrfs_super_generation(disk_super);
644 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400645 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500646 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400647 latest_bdev = bdev;
648 }
649
Yan Zheng2b820322008-11-17 21:11:30 -0500650 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
651 device->writeable = 0;
652 } else {
653 device->writeable = !bdev_read_only(bdev);
654 seeding = 0;
655 }
656
Josef Bacikd5e20032011-08-04 14:52:27 +0000657 q = bdev_get_queue(bdev);
658 if (blk_queue_discard(q)) {
659 device->can_discard = 1;
660 fs_devices->num_can_discard++;
661 }
662
Chris Mason8a4b83c2008-03-24 15:02:07 -0400663 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400664 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500665 device->mode = flags;
666
Chris Masonc2898112009-06-10 09:51:32 -0400667 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
668 fs_devices->rotating = 1;
669
Chris Masona0af4692008-05-13 16:03:06 -0400670 fs_devices->open_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -0500671 if (device->writeable) {
672 fs_devices->rw_devices++;
673 list_add(&device->dev_alloc_list,
674 &fs_devices->alloc_list);
675 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000676 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400677 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400678
Chris Masona0af4692008-05-13 16:03:06 -0400679error_brelse:
680 brelse(bh);
681error_close:
Tejun Heod4d77622010-11-13 11:55:18 +0100682 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400683error:
684 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400685 }
Chris Masona0af4692008-05-13 16:03:06 -0400686 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300687 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400688 goto out;
689 }
Yan Zheng2b820322008-11-17 21:11:30 -0500690 fs_devices->seeding = seeding;
691 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400692 fs_devices->latest_bdev = latest_bdev;
693 fs_devices->latest_devid = latest_devid;
694 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500695 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400696out:
Yan Zheng2b820322008-11-17 21:11:30 -0500697 return ret;
698}
699
700int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500701 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500702{
703 int ret;
704
705 mutex_lock(&uuid_mutex);
706 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500707 fs_devices->opened++;
708 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500709 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500710 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500711 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400712 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400713 return ret;
714}
715
Christoph Hellwig97288f22008-12-02 06:36:09 -0500716int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400717 struct btrfs_fs_devices **fs_devices_ret)
718{
719 struct btrfs_super_block *disk_super;
720 struct block_device *bdev;
721 struct buffer_head *bh;
722 int ret;
723 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400724 u64 transid;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400725
Tejun Heod4d77622010-11-13 11:55:18 +0100726 flags |= FMODE_EXCL;
727 bdev = blkdev_get_by_path(path, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400728
729 if (IS_ERR(bdev)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400730 ret = PTR_ERR(bdev);
731 goto error;
732 }
733
Al Viro10f63272011-11-17 15:05:22 -0500734 mutex_lock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400735 ret = set_blocksize(bdev, 4096);
736 if (ret)
737 goto error_close;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500738 bh = btrfs_read_dev_super(bdev);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400739 if (!bh) {
Dave Young20b45072011-01-08 10:09:13 +0000740 ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400741 goto error_close;
742 }
743 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000744 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400745 transid = btrfs_super_generation(disk_super);
Chris Mason7ae9c092008-04-18 10:29:49 -0400746 if (disk_super->label[0])
Chris Masond3977122009-01-05 21:25:51 -0500747 printk(KERN_INFO "device label %s ", disk_super->label);
Ilya Dryomov22b63a22011-02-09 16:05:31 +0200748 else
749 printk(KERN_INFO "device fsid %pU ", disk_super->fsid);
Roland Dreier119e10c2009-01-21 10:49:16 -0500750 printk(KERN_CONT "devid %llu transid %llu %s\n",
Chris Masond3977122009-01-05 21:25:51 -0500751 (unsigned long long)devid, (unsigned long long)transid, path);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400752 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
753
Chris Mason8a4b83c2008-03-24 15:02:07 -0400754 brelse(bh);
755error_close:
Al Viro10f63272011-11-17 15:05:22 -0500756 mutex_unlock(&uuid_mutex);
Tejun Heod4d77622010-11-13 11:55:18 +0100757 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400758error:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400759 return ret;
760}
Chris Mason0b86a832008-03-24 15:01:56 -0400761
Miao Xie6d07bce2011-01-05 10:07:31 +0000762/* helper to account the used device space in the range */
763int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
764 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -0400765{
766 struct btrfs_key key;
767 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +0000768 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500769 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +0000770 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400771 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +0000772 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400773 struct extent_buffer *l;
774
Miao Xie6d07bce2011-01-05 10:07:31 +0000775 *length = 0;
776
777 if (start >= device->total_bytes)
778 return 0;
779
Yan Zheng2b820322008-11-17 21:11:30 -0500780 path = btrfs_alloc_path();
781 if (!path)
782 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400783 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -0400784
Chris Mason0b86a832008-03-24 15:01:56 -0400785 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +0000786 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400787 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +0000788
789 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -0400790 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000791 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400792 if (ret > 0) {
793 ret = btrfs_previous_item(root, path, key.objectid, key.type);
794 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000795 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400796 }
Miao Xie6d07bce2011-01-05 10:07:31 +0000797
Chris Mason0b86a832008-03-24 15:01:56 -0400798 while (1) {
799 l = path->nodes[0];
800 slot = path->slots[0];
801 if (slot >= btrfs_header_nritems(l)) {
802 ret = btrfs_next_leaf(root, path);
803 if (ret == 0)
804 continue;
805 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000806 goto out;
807
808 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400809 }
810 btrfs_item_key_to_cpu(l, &key, slot);
811
812 if (key.objectid < device->devid)
813 goto next;
814
815 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +0000816 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400817
Chris Masond3977122009-01-05 21:25:51 -0500818 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400819 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400820
Chris Mason0b86a832008-03-24 15:01:56 -0400821 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +0000822 extent_end = key.offset + btrfs_dev_extent_length(l,
823 dev_extent);
824 if (key.offset <= start && extent_end > end) {
825 *length = end - start + 1;
826 break;
827 } else if (key.offset <= start && extent_end > start)
828 *length += extent_end - start;
829 else if (key.offset > start && extent_end <= end)
830 *length += extent_end - key.offset;
831 else if (key.offset > start && key.offset <= end) {
832 *length += end - key.offset + 1;
833 break;
834 } else if (key.offset > end)
835 break;
836
837next:
838 path->slots[0]++;
839 }
840 ret = 0;
841out:
842 btrfs_free_path(path);
843 return ret;
844}
845
Chris Mason0b86a832008-03-24 15:01:56 -0400846/*
Miao Xie7bfc8372011-01-05 10:07:26 +0000847 * find_free_dev_extent - find free space in the specified device
Miao Xie7bfc8372011-01-05 10:07:26 +0000848 * @device: the device which we search the free space in
849 * @num_bytes: the size of the free space that we need
850 * @start: store the start of the free space.
851 * @len: the size of the free space. that we find, or the size of the max
852 * free space if we don't find suitable free space
853 *
Chris Mason0b86a832008-03-24 15:01:56 -0400854 * this uses a pretty simple search, the expectation is that it is
855 * called very infrequently and that a given device has a small number
856 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +0000857 *
858 * @start is used to store the start of the free space if we find. But if we
859 * don't find suitable free space, it will be used to store the start position
860 * of the max free space.
861 *
862 * @len is used to store the size of the free space that we find.
863 * But if we don't find suitable free space, it is used to store the size of
864 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -0400865 */
Li Zefan125ccb02011-12-08 15:07:24 +0800866int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +0000867 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -0400868{
869 struct btrfs_key key;
870 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +0000871 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -0400872 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +0000873 u64 hole_size;
874 u64 max_hole_start;
875 u64 max_hole_size;
876 u64 extent_end;
877 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -0400878 u64 search_end = device->total_bytes;
879 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +0000880 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400881 struct extent_buffer *l;
882
Chris Mason0b86a832008-03-24 15:01:56 -0400883 /* FIXME use last free of some kind */
884
885 /* we don't want to overwrite the superblock on the drive,
886 * so we make sure to start at an offset of at least 1MB
887 */
Arne Jansena9c9bf62011-04-12 11:01:20 +0200888 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
Chris Mason0b86a832008-03-24 15:01:56 -0400889
Miao Xie7bfc8372011-01-05 10:07:26 +0000890 max_hole_start = search_start;
891 max_hole_size = 0;
liubo38c01b92011-08-02 02:39:03 +0000892 hole_size = 0;
Miao Xie7bfc8372011-01-05 10:07:26 +0000893
894 if (search_start >= search_end) {
895 ret = -ENOSPC;
896 goto error;
897 }
898
899 path = btrfs_alloc_path();
900 if (!path) {
901 ret = -ENOMEM;
902 goto error;
903 }
904 path->reada = 2;
905
Chris Mason0b86a832008-03-24 15:01:56 -0400906 key.objectid = device->devid;
907 key.offset = search_start;
908 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +0000909
Li Zefan125ccb02011-12-08 15:07:24 +0800910 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -0400911 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000912 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -0400913 if (ret > 0) {
914 ret = btrfs_previous_item(root, path, key.objectid, key.type);
915 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000916 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -0400917 }
Miao Xie7bfc8372011-01-05 10:07:26 +0000918
Chris Mason0b86a832008-03-24 15:01:56 -0400919 while (1) {
920 l = path->nodes[0];
921 slot = path->slots[0];
922 if (slot >= btrfs_header_nritems(l)) {
923 ret = btrfs_next_leaf(root, path);
924 if (ret == 0)
925 continue;
926 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000927 goto out;
928
929 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400930 }
931 btrfs_item_key_to_cpu(l, &key, slot);
932
933 if (key.objectid < device->devid)
934 goto next;
935
936 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +0000937 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400938
Chris Mason0b86a832008-03-24 15:01:56 -0400939 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
940 goto next;
941
Miao Xie7bfc8372011-01-05 10:07:26 +0000942 if (key.offset > search_start) {
943 hole_size = key.offset - search_start;
944
945 if (hole_size > max_hole_size) {
946 max_hole_start = search_start;
947 max_hole_size = hole_size;
948 }
949
950 /*
951 * If this free space is greater than which we need,
952 * it must be the max free space that we have found
953 * until now, so max_hole_start must point to the start
954 * of this free space and the length of this free space
955 * is stored in max_hole_size. Thus, we return
956 * max_hole_start and max_hole_size and go back to the
957 * caller.
958 */
959 if (hole_size >= num_bytes) {
960 ret = 0;
961 goto out;
962 }
963 }
964
Chris Mason0b86a832008-03-24 15:01:56 -0400965 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +0000966 extent_end = key.offset + btrfs_dev_extent_length(l,
967 dev_extent);
968 if (extent_end > search_start)
969 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400970next:
971 path->slots[0]++;
972 cond_resched();
973 }
Chris Mason0b86a832008-03-24 15:01:56 -0400974
liubo38c01b92011-08-02 02:39:03 +0000975 /*
976 * At this point, search_start should be the end of
977 * allocated dev extents, and when shrinking the device,
978 * search_end may be smaller than search_start.
979 */
980 if (search_end > search_start)
981 hole_size = search_end - search_start;
982
Miao Xie7bfc8372011-01-05 10:07:26 +0000983 if (hole_size > max_hole_size) {
984 max_hole_start = search_start;
985 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -0400986 }
Chris Mason0b86a832008-03-24 15:01:56 -0400987
Miao Xie7bfc8372011-01-05 10:07:26 +0000988 /* See above. */
989 if (hole_size < num_bytes)
990 ret = -ENOSPC;
991 else
992 ret = 0;
993
994out:
Yan Zheng2b820322008-11-17 21:11:30 -0500995 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +0000996error:
997 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +0000998 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +0000999 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001000 return ret;
1001}
1002
Christoph Hellwigb2950862008-12-02 09:54:17 -05001003static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001004 struct btrfs_device *device,
1005 u64 start)
1006{
1007 int ret;
1008 struct btrfs_path *path;
1009 struct btrfs_root *root = device->dev_root;
1010 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001011 struct btrfs_key found_key;
1012 struct extent_buffer *leaf = NULL;
1013 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001014
1015 path = btrfs_alloc_path();
1016 if (!path)
1017 return -ENOMEM;
1018
1019 key.objectid = device->devid;
1020 key.offset = start;
1021 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001022again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001023 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001024 if (ret > 0) {
1025 ret = btrfs_previous_item(root, path, key.objectid,
1026 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001027 if (ret)
1028 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001029 leaf = path->nodes[0];
1030 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1031 extent = btrfs_item_ptr(leaf, path->slots[0],
1032 struct btrfs_dev_extent);
1033 BUG_ON(found_key.offset > start || found_key.offset +
1034 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001035 key = found_key;
1036 btrfs_release_path(path);
1037 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001038 } else if (ret == 0) {
1039 leaf = path->nodes[0];
1040 extent = btrfs_item_ptr(leaf, path->slots[0],
1041 struct btrfs_dev_extent);
1042 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001043 BUG_ON(ret);
1044
Josef Bacik2bf64752011-09-26 17:12:22 -04001045 if (device->bytes_used > 0) {
1046 u64 len = btrfs_dev_extent_length(leaf, extent);
1047 device->bytes_used -= len;
1048 spin_lock(&root->fs_info->free_chunk_lock);
1049 root->fs_info->free_chunk_space += len;
1050 spin_unlock(&root->fs_info->free_chunk_lock);
1051 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001052 ret = btrfs_del_item(trans, root, path);
Chris Mason8f18cf12008-04-25 16:53:30 -04001053
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001054out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001055 btrfs_free_path(path);
1056 return ret;
1057}
1058
Yan Zheng2b820322008-11-17 21:11:30 -05001059int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -04001060 struct btrfs_device *device,
Chris Masone17cade2008-04-15 15:41:47 -04001061 u64 chunk_tree, u64 chunk_objectid,
Yan Zheng2b820322008-11-17 21:11:30 -05001062 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001063{
1064 int ret;
1065 struct btrfs_path *path;
1066 struct btrfs_root *root = device->dev_root;
1067 struct btrfs_dev_extent *extent;
1068 struct extent_buffer *leaf;
1069 struct btrfs_key key;
1070
Chris Masondfe25022008-05-13 13:46:40 -04001071 WARN_ON(!device->in_fs_metadata);
Chris Mason0b86a832008-03-24 15:01:56 -04001072 path = btrfs_alloc_path();
1073 if (!path)
1074 return -ENOMEM;
1075
Chris Mason0b86a832008-03-24 15:01:56 -04001076 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001077 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001078 key.type = BTRFS_DEV_EXTENT_KEY;
1079 ret = btrfs_insert_empty_item(trans, root, path, &key,
1080 sizeof(*extent));
1081 BUG_ON(ret);
1082
1083 leaf = path->nodes[0];
1084 extent = btrfs_item_ptr(leaf, path->slots[0],
1085 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001086 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1087 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1088 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1089
1090 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
1091 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
1092 BTRFS_UUID_SIZE);
1093
Chris Mason0b86a832008-03-24 15:01:56 -04001094 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1095 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001096 btrfs_free_path(path);
1097 return ret;
1098}
1099
Chris Masona1b32a52008-09-05 16:09:51 -04001100static noinline int find_next_chunk(struct btrfs_root *root,
1101 u64 objectid, u64 *offset)
Chris Mason0b86a832008-03-24 15:01:56 -04001102{
1103 struct btrfs_path *path;
1104 int ret;
1105 struct btrfs_key key;
Chris Masone17cade2008-04-15 15:41:47 -04001106 struct btrfs_chunk *chunk;
Chris Mason0b86a832008-03-24 15:01:56 -04001107 struct btrfs_key found_key;
1108
1109 path = btrfs_alloc_path();
Mark Fasheh92b8e8972011-07-12 10:57:59 -07001110 if (!path)
1111 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001112
Chris Masone17cade2008-04-15 15:41:47 -04001113 key.objectid = objectid;
Chris Mason0b86a832008-03-24 15:01:56 -04001114 key.offset = (u64)-1;
1115 key.type = BTRFS_CHUNK_ITEM_KEY;
1116
1117 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1118 if (ret < 0)
1119 goto error;
1120
1121 BUG_ON(ret == 0);
1122
1123 ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
1124 if (ret) {
Chris Masone17cade2008-04-15 15:41:47 -04001125 *offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001126 } else {
1127 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1128 path->slots[0]);
Chris Masone17cade2008-04-15 15:41:47 -04001129 if (found_key.objectid != objectid)
1130 *offset = 0;
1131 else {
1132 chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
1133 struct btrfs_chunk);
1134 *offset = found_key.offset +
1135 btrfs_chunk_length(path->nodes[0], chunk);
1136 }
Chris Mason0b86a832008-03-24 15:01:56 -04001137 }
1138 ret = 0;
1139error:
1140 btrfs_free_path(path);
1141 return ret;
1142}
1143
Yan Zheng2b820322008-11-17 21:11:30 -05001144static noinline int find_next_devid(struct btrfs_root *root, u64 *objectid)
Chris Mason0b86a832008-03-24 15:01:56 -04001145{
1146 int ret;
1147 struct btrfs_key key;
1148 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001149 struct btrfs_path *path;
1150
1151 root = root->fs_info->chunk_root;
1152
1153 path = btrfs_alloc_path();
1154 if (!path)
1155 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001156
1157 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1158 key.type = BTRFS_DEV_ITEM_KEY;
1159 key.offset = (u64)-1;
1160
1161 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1162 if (ret < 0)
1163 goto error;
1164
1165 BUG_ON(ret == 0);
1166
1167 ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
1168 BTRFS_DEV_ITEM_KEY);
1169 if (ret) {
1170 *objectid = 1;
1171 } else {
1172 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1173 path->slots[0]);
1174 *objectid = found_key.offset + 1;
1175 }
1176 ret = 0;
1177error:
Yan Zheng2b820322008-11-17 21:11:30 -05001178 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001179 return ret;
1180}
1181
1182/*
1183 * the device information is stored in the chunk root
1184 * the btrfs_device struct should be fully filled in
1185 */
1186int btrfs_add_device(struct btrfs_trans_handle *trans,
1187 struct btrfs_root *root,
1188 struct btrfs_device *device)
1189{
1190 int ret;
1191 struct btrfs_path *path;
1192 struct btrfs_dev_item *dev_item;
1193 struct extent_buffer *leaf;
1194 struct btrfs_key key;
1195 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001196
1197 root = root->fs_info->chunk_root;
1198
1199 path = btrfs_alloc_path();
1200 if (!path)
1201 return -ENOMEM;
1202
Chris Mason0b86a832008-03-24 15:01:56 -04001203 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1204 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001205 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001206
1207 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001208 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001209 if (ret)
1210 goto out;
1211
1212 leaf = path->nodes[0];
1213 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1214
1215 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001216 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001217 btrfs_set_device_type(leaf, dev_item, device->type);
1218 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1219 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1220 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001221 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1222 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001223 btrfs_set_device_group(leaf, dev_item, 0);
1224 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1225 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001226 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001227
Chris Mason0b86a832008-03-24 15:01:56 -04001228 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001229 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05001230 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1231 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001232 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001233
Yan Zheng2b820322008-11-17 21:11:30 -05001234 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001235out:
1236 btrfs_free_path(path);
1237 return ret;
1238}
Chris Mason8f18cf12008-04-25 16:53:30 -04001239
Chris Masona061fc82008-05-07 11:43:44 -04001240static int btrfs_rm_dev_item(struct btrfs_root *root,
1241 struct btrfs_device *device)
1242{
1243 int ret;
1244 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001245 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001246 struct btrfs_trans_handle *trans;
1247
1248 root = root->fs_info->chunk_root;
1249
1250 path = btrfs_alloc_path();
1251 if (!path)
1252 return -ENOMEM;
1253
Yan, Zhenga22285a2010-05-16 10:48:46 -04001254 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001255 if (IS_ERR(trans)) {
1256 btrfs_free_path(path);
1257 return PTR_ERR(trans);
1258 }
Chris Masona061fc82008-05-07 11:43:44 -04001259 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1260 key.type = BTRFS_DEV_ITEM_KEY;
1261 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001262 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001263
1264 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1265 if (ret < 0)
1266 goto out;
1267
1268 if (ret > 0) {
1269 ret = -ENOENT;
1270 goto out;
1271 }
1272
1273 ret = btrfs_del_item(trans, root, path);
1274 if (ret)
1275 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001276out:
1277 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001278 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001279 btrfs_commit_transaction(trans, root);
1280 return ret;
1281}
1282
1283int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1284{
1285 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001286 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001287 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001288 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001289 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001290 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001291 u64 all_avail;
1292 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001293 u64 num_devices;
1294 u8 *dev_uuid;
Chris Masona061fc82008-05-07 11:43:44 -04001295 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001296 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001297
Chris Masona061fc82008-05-07 11:43:44 -04001298 mutex_lock(&uuid_mutex);
1299
1300 all_avail = root->fs_info->avail_data_alloc_bits |
1301 root->fs_info->avail_system_alloc_bits |
1302 root->fs_info->avail_metadata_alloc_bits;
1303
1304 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001305 root->fs_info->fs_devices->num_devices <= 4) {
Chris Masond3977122009-01-05 21:25:51 -05001306 printk(KERN_ERR "btrfs: unable to go below four devices "
1307 "on raid10\n");
Chris Masona061fc82008-05-07 11:43:44 -04001308 ret = -EINVAL;
1309 goto out;
1310 }
1311
1312 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001313 root->fs_info->fs_devices->num_devices <= 2) {
Chris Masond3977122009-01-05 21:25:51 -05001314 printk(KERN_ERR "btrfs: unable to go below two "
1315 "devices on raid1\n");
Chris Masona061fc82008-05-07 11:43:44 -04001316 ret = -EINVAL;
1317 goto out;
1318 }
1319
Chris Masondfe25022008-05-13 13:46:40 -04001320 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001321 struct list_head *devices;
1322 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001323
Chris Masondfe25022008-05-13 13:46:40 -04001324 device = NULL;
1325 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001326 /*
1327 * It is safe to read the devices since the volume_mutex
1328 * is held.
1329 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001330 list_for_each_entry(tmp, devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001331 if (tmp->in_fs_metadata && !tmp->bdev) {
1332 device = tmp;
1333 break;
1334 }
1335 }
1336 bdev = NULL;
1337 bh = NULL;
1338 disk_super = NULL;
1339 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05001340 printk(KERN_ERR "btrfs: no missing devices found to "
1341 "remove\n");
Chris Masondfe25022008-05-13 13:46:40 -04001342 goto out;
1343 }
Chris Masondfe25022008-05-13 13:46:40 -04001344 } else {
Tejun Heod4d77622010-11-13 11:55:18 +01001345 bdev = blkdev_get_by_path(device_path, FMODE_READ | FMODE_EXCL,
1346 root->fs_info->bdev_holder);
Chris Masondfe25022008-05-13 13:46:40 -04001347 if (IS_ERR(bdev)) {
1348 ret = PTR_ERR(bdev);
1349 goto out;
1350 }
1351
Yan Zheng2b820322008-11-17 21:11:30 -05001352 set_blocksize(bdev, 4096);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001353 bh = btrfs_read_dev_super(bdev);
Chris Masondfe25022008-05-13 13:46:40 -04001354 if (!bh) {
Dave Young20b45072011-01-08 10:09:13 +00001355 ret = -EINVAL;
Chris Masondfe25022008-05-13 13:46:40 -04001356 goto error_close;
1357 }
1358 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001359 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001360 dev_uuid = disk_super->dev_item.uuid;
1361 device = btrfs_find_device(root, devid, dev_uuid,
1362 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001363 if (!device) {
1364 ret = -ENOENT;
1365 goto error_brelse;
1366 }
Chris Masondfe25022008-05-13 13:46:40 -04001367 }
Yan Zheng2b820322008-11-17 21:11:30 -05001368
1369 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Chris Masond3977122009-01-05 21:25:51 -05001370 printk(KERN_ERR "btrfs: unable to remove the only writeable "
1371 "device\n");
Yan Zheng2b820322008-11-17 21:11:30 -05001372 ret = -EINVAL;
1373 goto error_brelse;
1374 }
1375
1376 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001377 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001378 list_del_init(&device->dev_alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001379 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001380 root->fs_info->fs_devices->rw_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001381 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001382 }
Chris Masona061fc82008-05-07 11:43:44 -04001383
1384 ret = btrfs_shrink_device(device, 0);
1385 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001386 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001387
Chris Masona061fc82008-05-07 11:43:44 -04001388 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1389 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001390 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001391
Josef Bacik2bf64752011-09-26 17:12:22 -04001392 spin_lock(&root->fs_info->free_chunk_lock);
1393 root->fs_info->free_chunk_space = device->total_bytes -
1394 device->bytes_used;
1395 spin_unlock(&root->fs_info->free_chunk_lock);
1396
Yan Zheng2b820322008-11-17 21:11:30 -05001397 device->in_fs_metadata = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01001398 btrfs_scrub_cancel_dev(root, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001399
1400 /*
1401 * the device list mutex makes sure that we don't change
1402 * the device list while someone else is writing out all
1403 * the device supers.
1404 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001405
1406 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001407 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001408 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001409
Yan Zhenge4404d62008-12-12 10:03:26 -05001410 device->fs_devices->num_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001411
Chris Masoncd02dca2010-12-13 14:56:23 -05001412 if (device->missing)
1413 root->fs_info->fs_devices->missing_devices--;
1414
Yan Zheng2b820322008-11-17 21:11:30 -05001415 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1416 struct btrfs_device, dev_list);
1417 if (device->bdev == root->fs_info->sb->s_bdev)
1418 root->fs_info->sb->s_bdev = next_device->bdev;
1419 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1420 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1421
Xiao Guangrong1f781602011-04-20 10:09:16 +00001422 if (device->bdev)
Yan Zhenge4404d62008-12-12 10:03:26 -05001423 device->fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001424
1425 call_rcu(&device->rcu, free_device);
1426 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001427
David Sterba6c417612011-04-13 15:41:04 +02001428 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1429 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001430
Xiao Guangrong1f781602011-04-20 10:09:16 +00001431 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001432 struct btrfs_fs_devices *fs_devices;
1433 fs_devices = root->fs_info->fs_devices;
1434 while (fs_devices) {
Xiao Guangrong1f781602011-04-20 10:09:16 +00001435 if (fs_devices->seed == cur_devices)
Yan Zhenge4404d62008-12-12 10:03:26 -05001436 break;
1437 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001438 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001439 fs_devices->seed = cur_devices->seed;
1440 cur_devices->seed = NULL;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001441 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001442 __btrfs_close_devices(cur_devices);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001443 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001444 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001445 }
1446
1447 /*
1448 * at this point, the device is zero sized. We want to
1449 * remove it from the devices list and zero out the old super
1450 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001451 if (clear_super) {
Chris Masondfe25022008-05-13 13:46:40 -04001452 /* make sure this device isn't detected as part of
1453 * the FS anymore
1454 */
1455 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1456 set_buffer_dirty(bh);
1457 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001458 }
Chris Masona061fc82008-05-07 11:43:44 -04001459
Chris Masona061fc82008-05-07 11:43:44 -04001460 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001461
1462error_brelse:
1463 brelse(bh);
1464error_close:
Chris Masondfe25022008-05-13 13:46:40 -04001465 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001466 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001467out:
1468 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001469 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001470error_undo:
1471 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001472 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001473 list_add(&device->dev_alloc_list,
1474 &root->fs_info->fs_devices->alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001475 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001476 root->fs_info->fs_devices->rw_devices++;
1477 }
1478 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001479}
1480
Yan Zheng2b820322008-11-17 21:11:30 -05001481/*
1482 * does all the dirty work required for changing file system's UUID.
1483 */
Li Zefan125ccb02011-12-08 15:07:24 +08001484static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05001485{
1486 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1487 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001488 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02001489 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05001490 struct btrfs_device *device;
1491 u64 super_flags;
1492
1493 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001494 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001495 return -EINVAL;
1496
Yan Zhenge4404d62008-12-12 10:03:26 -05001497 seed_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
1498 if (!seed_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001499 return -ENOMEM;
1500
Yan Zhenge4404d62008-12-12 10:03:26 -05001501 old_devices = clone_fs_devices(fs_devices);
1502 if (IS_ERR(old_devices)) {
1503 kfree(seed_devices);
1504 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001505 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001506
Yan Zheng2b820322008-11-17 21:11:30 -05001507 list_add(&old_devices->list, &fs_uuids);
1508
Yan Zhenge4404d62008-12-12 10:03:26 -05001509 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1510 seed_devices->opened = 1;
1511 INIT_LIST_HEAD(&seed_devices->devices);
1512 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001513 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001514
1515 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001516 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1517 synchronize_rcu);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001518 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1519
Yan Zhenge4404d62008-12-12 10:03:26 -05001520 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1521 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1522 device->fs_devices = seed_devices;
1523 }
1524
Yan Zheng2b820322008-11-17 21:11:30 -05001525 fs_devices->seeding = 0;
1526 fs_devices->num_devices = 0;
1527 fs_devices->open_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001528 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001529
1530 generate_random_uuid(fs_devices->fsid);
1531 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1532 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1533 super_flags = btrfs_super_flags(disk_super) &
1534 ~BTRFS_SUPER_FLAG_SEEDING;
1535 btrfs_set_super_flags(disk_super, super_flags);
1536
1537 return 0;
1538}
1539
1540/*
1541 * strore the expected generation for seed devices in device items.
1542 */
1543static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1544 struct btrfs_root *root)
1545{
1546 struct btrfs_path *path;
1547 struct extent_buffer *leaf;
1548 struct btrfs_dev_item *dev_item;
1549 struct btrfs_device *device;
1550 struct btrfs_key key;
1551 u8 fs_uuid[BTRFS_UUID_SIZE];
1552 u8 dev_uuid[BTRFS_UUID_SIZE];
1553 u64 devid;
1554 int ret;
1555
1556 path = btrfs_alloc_path();
1557 if (!path)
1558 return -ENOMEM;
1559
1560 root = root->fs_info->chunk_root;
1561 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1562 key.offset = 0;
1563 key.type = BTRFS_DEV_ITEM_KEY;
1564
1565 while (1) {
1566 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1567 if (ret < 0)
1568 goto error;
1569
1570 leaf = path->nodes[0];
1571next_slot:
1572 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1573 ret = btrfs_next_leaf(root, path);
1574 if (ret > 0)
1575 break;
1576 if (ret < 0)
1577 goto error;
1578 leaf = path->nodes[0];
1579 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001580 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05001581 continue;
1582 }
1583
1584 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1585 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1586 key.type != BTRFS_DEV_ITEM_KEY)
1587 break;
1588
1589 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1590 struct btrfs_dev_item);
1591 devid = btrfs_device_id(leaf, dev_item);
1592 read_extent_buffer(leaf, dev_uuid,
1593 (unsigned long)btrfs_device_uuid(dev_item),
1594 BTRFS_UUID_SIZE);
1595 read_extent_buffer(leaf, fs_uuid,
1596 (unsigned long)btrfs_device_fsid(dev_item),
1597 BTRFS_UUID_SIZE);
1598 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
1599 BUG_ON(!device);
1600
1601 if (device->fs_devices->seeding) {
1602 btrfs_set_device_generation(leaf, dev_item,
1603 device->generation);
1604 btrfs_mark_buffer_dirty(leaf);
1605 }
1606
1607 path->slots[0]++;
1608 goto next_slot;
1609 }
1610 ret = 0;
1611error:
1612 btrfs_free_path(path);
1613 return ret;
1614}
1615
Chris Mason788f20e2008-04-28 15:29:42 -04001616int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1617{
Josef Bacikd5e20032011-08-04 14:52:27 +00001618 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04001619 struct btrfs_trans_handle *trans;
1620 struct btrfs_device *device;
1621 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001622 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001623 struct super_block *sb = root->fs_info->sb;
Chris Mason788f20e2008-04-28 15:29:42 -04001624 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001625 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001626 int ret = 0;
1627
Yan Zheng2b820322008-11-17 21:11:30 -05001628 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
1629 return -EINVAL;
Chris Mason788f20e2008-04-28 15:29:42 -04001630
Li Zefana5d16332011-12-07 20:08:40 -05001631 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01001632 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001633 if (IS_ERR(bdev))
1634 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001635
Yan Zheng2b820322008-11-17 21:11:30 -05001636 if (root->fs_info->fs_devices->seeding) {
1637 seeding_dev = 1;
1638 down_write(&sb->s_umount);
1639 mutex_lock(&uuid_mutex);
1640 }
1641
Chris Mason8c8bee12008-09-29 11:19:10 -04001642 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04001643
Chris Mason788f20e2008-04-28 15:29:42 -04001644 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001645 /*
1646 * we have the volume lock, so we don't need the extra
1647 * device list mutex while reading the list here.
1648 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001649 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001650 if (device->bdev == bdev) {
1651 ret = -EEXIST;
Yan Zheng2b820322008-11-17 21:11:30 -05001652 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001653 }
1654 }
1655
1656 device = kzalloc(sizeof(*device), GFP_NOFS);
1657 if (!device) {
1658 /* we can safely leave the fs_devices entry around */
1659 ret = -ENOMEM;
Yan Zheng2b820322008-11-17 21:11:30 -05001660 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001661 }
1662
Chris Mason788f20e2008-04-28 15:29:42 -04001663 device->name = kstrdup(device_path, GFP_NOFS);
1664 if (!device->name) {
1665 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05001666 ret = -ENOMEM;
1667 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001668 }
Yan Zheng2b820322008-11-17 21:11:30 -05001669
1670 ret = find_next_devid(root, &device->devid);
1671 if (ret) {
Ilya Dryomov67100f22011-02-06 19:58:21 +00001672 kfree(device->name);
Yan Zheng2b820322008-11-17 21:11:30 -05001673 kfree(device);
1674 goto error;
1675 }
1676
Yan, Zhenga22285a2010-05-16 10:48:46 -04001677 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001678 if (IS_ERR(trans)) {
Ilya Dryomov67100f22011-02-06 19:58:21 +00001679 kfree(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001680 kfree(device);
1681 ret = PTR_ERR(trans);
1682 goto error;
1683 }
1684
Yan Zheng2b820322008-11-17 21:11:30 -05001685 lock_chunks(root);
1686
Josef Bacikd5e20032011-08-04 14:52:27 +00001687 q = bdev_get_queue(bdev);
1688 if (blk_queue_discard(q))
1689 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05001690 device->writeable = 1;
1691 device->work.func = pending_bios_fn;
1692 generate_random_uuid(device->uuid);
1693 spin_lock_init(&device->io_lock);
1694 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04001695 device->io_width = root->sectorsize;
1696 device->io_align = root->sectorsize;
1697 device->sector_size = root->sectorsize;
1698 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04001699 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04001700 device->dev_root = root->fs_info->dev_root;
1701 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001702 device->in_fs_metadata = 1;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00001703 device->mode = FMODE_EXCL;
Zheng Yan325cd4b2008-09-05 16:43:54 -04001704 set_blocksize(device->bdev, 4096);
1705
Yan Zheng2b820322008-11-17 21:11:30 -05001706 if (seeding_dev) {
1707 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08001708 ret = btrfs_prepare_sprout(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001709 BUG_ON(ret);
1710 }
1711
1712 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001713
1714 /*
1715 * we don't want write_supers to jump in here with our device
1716 * half setup
1717 */
1718 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001719 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001720 list_add(&device->dev_alloc_list,
1721 &root->fs_info->fs_devices->alloc_list);
1722 root->fs_info->fs_devices->num_devices++;
1723 root->fs_info->fs_devices->open_devices++;
1724 root->fs_info->fs_devices->rw_devices++;
Josef Bacikd5e20032011-08-04 14:52:27 +00001725 if (device->can_discard)
1726 root->fs_info->fs_devices->num_can_discard++;
Yan Zheng2b820322008-11-17 21:11:30 -05001727 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
1728
Josef Bacik2bf64752011-09-26 17:12:22 -04001729 spin_lock(&root->fs_info->free_chunk_lock);
1730 root->fs_info->free_chunk_space += device->total_bytes;
1731 spin_unlock(&root->fs_info->free_chunk_lock);
1732
Chris Masonc2898112009-06-10 09:51:32 -04001733 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
1734 root->fs_info->fs_devices->rotating = 1;
1735
David Sterba6c417612011-04-13 15:41:04 +02001736 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
1737 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04001738 total_bytes + device->total_bytes);
1739
David Sterba6c417612011-04-13 15:41:04 +02001740 total_bytes = btrfs_super_num_devices(root->fs_info->super_copy);
1741 btrfs_set_super_num_devices(root->fs_info->super_copy,
Chris Mason788f20e2008-04-28 15:29:42 -04001742 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04001743 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001744
Yan Zheng2b820322008-11-17 21:11:30 -05001745 if (seeding_dev) {
1746 ret = init_first_rw_device(trans, root, device);
1747 BUG_ON(ret);
1748 ret = btrfs_finish_sprout(trans, root);
1749 BUG_ON(ret);
1750 } else {
1751 ret = btrfs_add_device(trans, root, device);
1752 }
1753
Chris Mason913d9522009-03-10 13:17:18 -04001754 /*
1755 * we've got more storage, clear any full flags on the space
1756 * infos
1757 */
1758 btrfs_clear_space_info_full(root->fs_info);
1759
Chris Mason7d9eb122008-07-08 14:19:17 -04001760 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001761 btrfs_commit_transaction(trans, root);
1762
1763 if (seeding_dev) {
1764 mutex_unlock(&uuid_mutex);
1765 up_write(&sb->s_umount);
1766
1767 ret = btrfs_relocate_sys_chunks(root);
1768 BUG_ON(ret);
1769 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001770
Chris Mason788f20e2008-04-28 15:29:42 -04001771 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05001772error:
Tejun Heoe525fd82010-11-13 11:55:17 +01001773 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05001774 if (seeding_dev) {
1775 mutex_unlock(&uuid_mutex);
1776 up_write(&sb->s_umount);
1777 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001778 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04001779}
1780
Chris Masond3977122009-01-05 21:25:51 -05001781static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
1782 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001783{
1784 int ret;
1785 struct btrfs_path *path;
1786 struct btrfs_root *root;
1787 struct btrfs_dev_item *dev_item;
1788 struct extent_buffer *leaf;
1789 struct btrfs_key key;
1790
1791 root = device->dev_root->fs_info->chunk_root;
1792
1793 path = btrfs_alloc_path();
1794 if (!path)
1795 return -ENOMEM;
1796
1797 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1798 key.type = BTRFS_DEV_ITEM_KEY;
1799 key.offset = device->devid;
1800
1801 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1802 if (ret < 0)
1803 goto out;
1804
1805 if (ret > 0) {
1806 ret = -ENOENT;
1807 goto out;
1808 }
1809
1810 leaf = path->nodes[0];
1811 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1812
1813 btrfs_set_device_id(leaf, dev_item, device->devid);
1814 btrfs_set_device_type(leaf, dev_item, device->type);
1815 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1816 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1817 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04001818 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04001819 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
1820 btrfs_mark_buffer_dirty(leaf);
1821
1822out:
1823 btrfs_free_path(path);
1824 return ret;
1825}
1826
Chris Mason7d9eb122008-07-08 14:19:17 -04001827static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001828 struct btrfs_device *device, u64 new_size)
1829{
1830 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02001831 device->dev_root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04001832 u64 old_total = btrfs_super_total_bytes(super_copy);
1833 u64 diff = new_size - device->total_bytes;
1834
Yan Zheng2b820322008-11-17 21:11:30 -05001835 if (!device->writeable)
1836 return -EACCES;
1837 if (new_size <= device->total_bytes)
1838 return -EINVAL;
1839
Chris Mason8f18cf12008-04-25 16:53:30 -04001840 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05001841 device->fs_devices->total_rw_bytes += diff;
1842
1843 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04001844 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04001845 btrfs_clear_space_info_full(device->dev_root->fs_info);
1846
Chris Mason8f18cf12008-04-25 16:53:30 -04001847 return btrfs_update_device(trans, device);
1848}
1849
Chris Mason7d9eb122008-07-08 14:19:17 -04001850int btrfs_grow_device(struct btrfs_trans_handle *trans,
1851 struct btrfs_device *device, u64 new_size)
1852{
1853 int ret;
1854 lock_chunks(device->dev_root);
1855 ret = __btrfs_grow_device(trans, device, new_size);
1856 unlock_chunks(device->dev_root);
1857 return ret;
1858}
1859
Chris Mason8f18cf12008-04-25 16:53:30 -04001860static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
1861 struct btrfs_root *root,
1862 u64 chunk_tree, u64 chunk_objectid,
1863 u64 chunk_offset)
1864{
1865 int ret;
1866 struct btrfs_path *path;
1867 struct btrfs_key key;
1868
1869 root = root->fs_info->chunk_root;
1870 path = btrfs_alloc_path();
1871 if (!path)
1872 return -ENOMEM;
1873
1874 key.objectid = chunk_objectid;
1875 key.offset = chunk_offset;
1876 key.type = BTRFS_CHUNK_ITEM_KEY;
1877
1878 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1879 BUG_ON(ret);
1880
1881 ret = btrfs_del_item(trans, root, path);
Chris Mason8f18cf12008-04-25 16:53:30 -04001882
1883 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001884 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04001885}
1886
Christoph Hellwigb2950862008-12-02 09:54:17 -05001887static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04001888 chunk_offset)
1889{
David Sterba6c417612011-04-13 15:41:04 +02001890 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04001891 struct btrfs_disk_key *disk_key;
1892 struct btrfs_chunk *chunk;
1893 u8 *ptr;
1894 int ret = 0;
1895 u32 num_stripes;
1896 u32 array_size;
1897 u32 len = 0;
1898 u32 cur;
1899 struct btrfs_key key;
1900
1901 array_size = btrfs_super_sys_array_size(super_copy);
1902
1903 ptr = super_copy->sys_chunk_array;
1904 cur = 0;
1905
1906 while (cur < array_size) {
1907 disk_key = (struct btrfs_disk_key *)ptr;
1908 btrfs_disk_key_to_cpu(&key, disk_key);
1909
1910 len = sizeof(*disk_key);
1911
1912 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1913 chunk = (struct btrfs_chunk *)(ptr + len);
1914 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
1915 len += btrfs_chunk_item_size(num_stripes);
1916 } else {
1917 ret = -EIO;
1918 break;
1919 }
1920 if (key.objectid == chunk_objectid &&
1921 key.offset == chunk_offset) {
1922 memmove(ptr, ptr + len, array_size - (cur + len));
1923 array_size -= len;
1924 btrfs_set_super_sys_array_size(super_copy, array_size);
1925 } else {
1926 ptr += len;
1927 cur += len;
1928 }
1929 }
1930 return ret;
1931}
1932
Christoph Hellwigb2950862008-12-02 09:54:17 -05001933static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04001934 u64 chunk_tree, u64 chunk_objectid,
1935 u64 chunk_offset)
1936{
1937 struct extent_map_tree *em_tree;
1938 struct btrfs_root *extent_root;
1939 struct btrfs_trans_handle *trans;
1940 struct extent_map *em;
1941 struct map_lookup *map;
1942 int ret;
1943 int i;
1944
1945 root = root->fs_info->chunk_root;
1946 extent_root = root->fs_info->extent_root;
1947 em_tree = &root->fs_info->mapping_tree.map_tree;
1948
Josef Bacikba1bf482009-09-11 16:11:19 -04001949 ret = btrfs_can_relocate(extent_root, chunk_offset);
1950 if (ret)
1951 return -ENOSPC;
1952
Chris Mason8f18cf12008-04-25 16:53:30 -04001953 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04001954 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001955 if (ret)
1956 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04001957
Yan, Zhenga22285a2010-05-16 10:48:46 -04001958 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001959 BUG_ON(IS_ERR(trans));
Chris Mason8f18cf12008-04-25 16:53:30 -04001960
Chris Mason7d9eb122008-07-08 14:19:17 -04001961 lock_chunks(root);
1962
Chris Mason8f18cf12008-04-25 16:53:30 -04001963 /*
1964 * step two, delete the device extents and the
1965 * chunk tree entries
1966 */
Chris Mason890871b2009-09-02 16:24:52 -04001967 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001968 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001969 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001970
Tsutomu Itoh285190d2012-02-16 16:23:58 +09001971 BUG_ON(!em || em->start > chunk_offset ||
Chris Masona061fc82008-05-07 11:43:44 -04001972 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04001973 map = (struct map_lookup *)em->bdev;
1974
1975 for (i = 0; i < map->num_stripes; i++) {
1976 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
1977 map->stripes[i].physical);
1978 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04001979
Chris Masondfe25022008-05-13 13:46:40 -04001980 if (map->stripes[i].dev) {
1981 ret = btrfs_update_device(trans, map->stripes[i].dev);
1982 BUG_ON(ret);
1983 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001984 }
1985 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
1986 chunk_offset);
1987
1988 BUG_ON(ret);
1989
liubo1abe9b82011-03-24 11:18:59 +00001990 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
1991
Chris Mason8f18cf12008-04-25 16:53:30 -04001992 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
1993 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
1994 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04001995 }
1996
Zheng Yan1a40e232008-09-26 10:09:34 -04001997 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
1998 BUG_ON(ret);
1999
Chris Mason890871b2009-09-02 16:24:52 -04002000 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04002001 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002002 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04002003
Chris Mason8f18cf12008-04-25 16:53:30 -04002004 kfree(map);
2005 em->bdev = NULL;
2006
2007 /* once for the tree */
2008 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002009 /* once for us */
2010 free_extent_map(em);
2011
Chris Mason7d9eb122008-07-08 14:19:17 -04002012 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002013 btrfs_end_transaction(trans, root);
2014 return 0;
2015}
2016
Yan Zheng2b820322008-11-17 21:11:30 -05002017static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2018{
2019 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2020 struct btrfs_path *path;
2021 struct extent_buffer *leaf;
2022 struct btrfs_chunk *chunk;
2023 struct btrfs_key key;
2024 struct btrfs_key found_key;
2025 u64 chunk_tree = chunk_root->root_key.objectid;
2026 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002027 bool retried = false;
2028 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002029 int ret;
2030
2031 path = btrfs_alloc_path();
2032 if (!path)
2033 return -ENOMEM;
2034
Josef Bacikba1bf482009-09-11 16:11:19 -04002035again:
Yan Zheng2b820322008-11-17 21:11:30 -05002036 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2037 key.offset = (u64)-1;
2038 key.type = BTRFS_CHUNK_ITEM_KEY;
2039
2040 while (1) {
2041 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2042 if (ret < 0)
2043 goto error;
2044 BUG_ON(ret == 0);
2045
2046 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2047 key.type);
2048 if (ret < 0)
2049 goto error;
2050 if (ret > 0)
2051 break;
2052
2053 leaf = path->nodes[0];
2054 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2055
2056 chunk = btrfs_item_ptr(leaf, path->slots[0],
2057 struct btrfs_chunk);
2058 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002059 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002060
2061 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
2062 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
2063 found_key.objectid,
2064 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002065 if (ret == -ENOSPC)
2066 failed++;
2067 else if (ret)
2068 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05002069 }
2070
2071 if (found_key.offset == 0)
2072 break;
2073 key.offset = found_key.offset - 1;
2074 }
2075 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002076 if (failed && !retried) {
2077 failed = 0;
2078 retried = true;
2079 goto again;
2080 } else if (failed && retried) {
2081 WARN_ON(1);
2082 ret = -ENOSPC;
2083 }
Yan Zheng2b820322008-11-17 21:11:30 -05002084error:
2085 btrfs_free_path(path);
2086 return ret;
2087}
2088
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002089static int insert_balance_item(struct btrfs_root *root,
2090 struct btrfs_balance_control *bctl)
2091{
2092 struct btrfs_trans_handle *trans;
2093 struct btrfs_balance_item *item;
2094 struct btrfs_disk_balance_args disk_bargs;
2095 struct btrfs_path *path;
2096 struct extent_buffer *leaf;
2097 struct btrfs_key key;
2098 int ret, err;
2099
2100 path = btrfs_alloc_path();
2101 if (!path)
2102 return -ENOMEM;
2103
2104 trans = btrfs_start_transaction(root, 0);
2105 if (IS_ERR(trans)) {
2106 btrfs_free_path(path);
2107 return PTR_ERR(trans);
2108 }
2109
2110 key.objectid = BTRFS_BALANCE_OBJECTID;
2111 key.type = BTRFS_BALANCE_ITEM_KEY;
2112 key.offset = 0;
2113
2114 ret = btrfs_insert_empty_item(trans, root, path, &key,
2115 sizeof(*item));
2116 if (ret)
2117 goto out;
2118
2119 leaf = path->nodes[0];
2120 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2121
2122 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2123
2124 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2125 btrfs_set_balance_data(leaf, item, &disk_bargs);
2126 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2127 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2128 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2129 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2130
2131 btrfs_set_balance_flags(leaf, item, bctl->flags);
2132
2133 btrfs_mark_buffer_dirty(leaf);
2134out:
2135 btrfs_free_path(path);
2136 err = btrfs_commit_transaction(trans, root);
2137 if (err && !ret)
2138 ret = err;
2139 return ret;
2140}
2141
2142static int del_balance_item(struct btrfs_root *root)
2143{
2144 struct btrfs_trans_handle *trans;
2145 struct btrfs_path *path;
2146 struct btrfs_key key;
2147 int ret, err;
2148
2149 path = btrfs_alloc_path();
2150 if (!path)
2151 return -ENOMEM;
2152
2153 trans = btrfs_start_transaction(root, 0);
2154 if (IS_ERR(trans)) {
2155 btrfs_free_path(path);
2156 return PTR_ERR(trans);
2157 }
2158
2159 key.objectid = BTRFS_BALANCE_OBJECTID;
2160 key.type = BTRFS_BALANCE_ITEM_KEY;
2161 key.offset = 0;
2162
2163 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2164 if (ret < 0)
2165 goto out;
2166 if (ret > 0) {
2167 ret = -ENOENT;
2168 goto out;
2169 }
2170
2171 ret = btrfs_del_item(trans, root, path);
2172out:
2173 btrfs_free_path(path);
2174 err = btrfs_commit_transaction(trans, root);
2175 if (err && !ret)
2176 ret = err;
2177 return ret;
2178}
2179
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002180/*
Ilya Dryomov59641012012-01-16 22:04:48 +02002181 * This is a heuristic used to reduce the number of chunks balanced on
2182 * resume after balance was interrupted.
2183 */
2184static void update_balance_args(struct btrfs_balance_control *bctl)
2185{
2186 /*
2187 * Turn on soft mode for chunk types that were being converted.
2188 */
2189 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
2190 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
2191 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
2192 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
2193 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
2194 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
2195
2196 /*
2197 * Turn on usage filter if is not already used. The idea is
2198 * that chunks that we have already balanced should be
2199 * reasonably full. Don't do it for chunks that are being
2200 * converted - that will keep us from relocating unconverted
2201 * (albeit full) chunks.
2202 */
2203 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2204 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2205 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
2206 bctl->data.usage = 90;
2207 }
2208 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2209 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2210 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
2211 bctl->sys.usage = 90;
2212 }
2213 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2214 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2215 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
2216 bctl->meta.usage = 90;
2217 }
2218}
2219
2220/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002221 * Should be called with both balance and volume mutexes held to
2222 * serialize other volume operations (add_dev/rm_dev/resize) with
2223 * restriper. Same goes for unset_balance_control.
2224 */
2225static void set_balance_control(struct btrfs_balance_control *bctl)
2226{
2227 struct btrfs_fs_info *fs_info = bctl->fs_info;
2228
2229 BUG_ON(fs_info->balance_ctl);
2230
2231 spin_lock(&fs_info->balance_lock);
2232 fs_info->balance_ctl = bctl;
2233 spin_unlock(&fs_info->balance_lock);
2234}
2235
2236static void unset_balance_control(struct btrfs_fs_info *fs_info)
2237{
2238 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
2239
2240 BUG_ON(!fs_info->balance_ctl);
2241
2242 spin_lock(&fs_info->balance_lock);
2243 fs_info->balance_ctl = NULL;
2244 spin_unlock(&fs_info->balance_lock);
2245
2246 kfree(bctl);
2247}
2248
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002249/*
2250 * Balance filters. Return 1 if chunk should be filtered out
2251 * (should not be balanced).
2252 */
2253static int chunk_profiles_filter(u64 chunk_profile,
2254 struct btrfs_balance_args *bargs)
2255{
2256 chunk_profile &= BTRFS_BLOCK_GROUP_PROFILE_MASK;
2257
2258 if (chunk_profile == 0)
2259 chunk_profile = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
2260
2261 if (bargs->profiles & chunk_profile)
2262 return 0;
2263
2264 return 1;
2265}
2266
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002267static u64 div_factor_fine(u64 num, int factor)
2268{
2269 if (factor <= 0)
2270 return 0;
2271 if (factor >= 100)
2272 return num;
2273
2274 num *= factor;
2275 do_div(num, 100);
2276 return num;
2277}
2278
2279static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
2280 struct btrfs_balance_args *bargs)
2281{
2282 struct btrfs_block_group_cache *cache;
2283 u64 chunk_used, user_thresh;
2284 int ret = 1;
2285
2286 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2287 chunk_used = btrfs_block_group_used(&cache->item);
2288
2289 user_thresh = div_factor_fine(cache->key.offset, bargs->usage);
2290 if (chunk_used < user_thresh)
2291 ret = 0;
2292
2293 btrfs_put_block_group(cache);
2294 return ret;
2295}
2296
Ilya Dryomov409d4042012-01-16 22:04:47 +02002297static int chunk_devid_filter(struct extent_buffer *leaf,
2298 struct btrfs_chunk *chunk,
2299 struct btrfs_balance_args *bargs)
2300{
2301 struct btrfs_stripe *stripe;
2302 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2303 int i;
2304
2305 for (i = 0; i < num_stripes; i++) {
2306 stripe = btrfs_stripe_nr(chunk, i);
2307 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
2308 return 0;
2309 }
2310
2311 return 1;
2312}
2313
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002314/* [pstart, pend) */
2315static int chunk_drange_filter(struct extent_buffer *leaf,
2316 struct btrfs_chunk *chunk,
2317 u64 chunk_offset,
2318 struct btrfs_balance_args *bargs)
2319{
2320 struct btrfs_stripe *stripe;
2321 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2322 u64 stripe_offset;
2323 u64 stripe_length;
2324 int factor;
2325 int i;
2326
2327 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
2328 return 0;
2329
2330 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
2331 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10))
2332 factor = 2;
2333 else
2334 factor = 1;
2335 factor = num_stripes / factor;
2336
2337 for (i = 0; i < num_stripes; i++) {
2338 stripe = btrfs_stripe_nr(chunk, i);
2339 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
2340 continue;
2341
2342 stripe_offset = btrfs_stripe_offset(leaf, stripe);
2343 stripe_length = btrfs_chunk_length(leaf, chunk);
2344 do_div(stripe_length, factor);
2345
2346 if (stripe_offset < bargs->pend &&
2347 stripe_offset + stripe_length > bargs->pstart)
2348 return 0;
2349 }
2350
2351 return 1;
2352}
2353
Ilya Dryomovea671762012-01-16 22:04:48 +02002354/* [vstart, vend) */
2355static int chunk_vrange_filter(struct extent_buffer *leaf,
2356 struct btrfs_chunk *chunk,
2357 u64 chunk_offset,
2358 struct btrfs_balance_args *bargs)
2359{
2360 if (chunk_offset < bargs->vend &&
2361 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
2362 /* at least part of the chunk is inside this vrange */
2363 return 0;
2364
2365 return 1;
2366}
2367
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002368static int chunk_soft_convert_filter(u64 chunk_profile,
2369 struct btrfs_balance_args *bargs)
2370{
2371 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
2372 return 0;
2373
2374 chunk_profile &= BTRFS_BLOCK_GROUP_PROFILE_MASK;
2375
2376 if (chunk_profile == 0)
2377 chunk_profile = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
2378
2379 if (bargs->target & chunk_profile)
2380 return 1;
2381
2382 return 0;
2383}
2384
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002385static int should_balance_chunk(struct btrfs_root *root,
2386 struct extent_buffer *leaf,
2387 struct btrfs_chunk *chunk, u64 chunk_offset)
2388{
2389 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
2390 struct btrfs_balance_args *bargs = NULL;
2391 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
2392
2393 /* type filter */
2394 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
2395 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
2396 return 0;
2397 }
2398
2399 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
2400 bargs = &bctl->data;
2401 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
2402 bargs = &bctl->sys;
2403 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
2404 bargs = &bctl->meta;
2405
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02002406 /* profiles filter */
2407 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
2408 chunk_profiles_filter(chunk_type, bargs)) {
2409 return 0;
2410 }
2411
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02002412 /* usage filter */
2413 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
2414 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
2415 return 0;
2416 }
2417
Ilya Dryomov409d4042012-01-16 22:04:47 +02002418 /* devid filter */
2419 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
2420 chunk_devid_filter(leaf, chunk, bargs)) {
2421 return 0;
2422 }
2423
Ilya Dryomov94e60d52012-01-16 22:04:48 +02002424 /* drange filter, makes sense only with devid filter */
2425 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
2426 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
2427 return 0;
2428 }
2429
Ilya Dryomovea671762012-01-16 22:04:48 +02002430 /* vrange filter */
2431 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
2432 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
2433 return 0;
2434 }
2435
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02002436 /* soft profile changing mode */
2437 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
2438 chunk_soft_convert_filter(chunk_type, bargs)) {
2439 return 0;
2440 }
2441
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002442 return 1;
2443}
2444
Chris Masonec44a352008-04-28 15:29:52 -04002445static u64 div_factor(u64 num, int factor)
2446{
2447 if (factor == 10)
2448 return num;
2449 num *= factor;
2450 do_div(num, 10);
2451 return num;
2452}
2453
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002454static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04002455{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002456 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002457 struct btrfs_root *chunk_root = fs_info->chunk_root;
2458 struct btrfs_root *dev_root = fs_info->dev_root;
2459 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04002460 struct btrfs_device *device;
2461 u64 old_size;
2462 u64 size_to_free;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002463 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04002464 struct btrfs_path *path;
2465 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04002466 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002467 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002468 struct extent_buffer *leaf;
2469 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002470 int ret;
2471 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002472 bool counting = true;
Chris Masonec44a352008-04-28 15:29:52 -04002473
Chris Masonec44a352008-04-28 15:29:52 -04002474 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002475 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002476 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04002477 old_size = device->total_bytes;
2478 size_to_free = div_factor(old_size, 1);
2479 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05002480 if (!device->writeable ||
2481 device->total_bytes - device->bytes_used > size_to_free)
Chris Masonec44a352008-04-28 15:29:52 -04002482 continue;
2483
2484 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04002485 if (ret == -ENOSPC)
2486 break;
Chris Masonec44a352008-04-28 15:29:52 -04002487 BUG_ON(ret);
2488
Yan, Zhenga22285a2010-05-16 10:48:46 -04002489 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002490 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04002491
2492 ret = btrfs_grow_device(trans, device, old_size);
2493 BUG_ON(ret);
2494
2495 btrfs_end_transaction(trans, dev_root);
2496 }
2497
2498 /* step two, relocate all the chunks */
2499 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07002500 if (!path) {
2501 ret = -ENOMEM;
2502 goto error;
2503 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002504
2505 /* zero out stat counters */
2506 spin_lock(&fs_info->balance_lock);
2507 memset(&bctl->stat, 0, sizeof(bctl->stat));
2508 spin_unlock(&fs_info->balance_lock);
2509again:
Chris Masonec44a352008-04-28 15:29:52 -04002510 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2511 key.offset = (u64)-1;
2512 key.type = BTRFS_CHUNK_ITEM_KEY;
2513
Chris Masond3977122009-01-05 21:25:51 -05002514 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002515 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002516 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002517 ret = -ECANCELED;
2518 goto error;
2519 }
2520
Chris Masonec44a352008-04-28 15:29:52 -04002521 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2522 if (ret < 0)
2523 goto error;
2524
2525 /*
2526 * this shouldn't happen, it means the last relocate
2527 * failed
2528 */
2529 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002530 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04002531
2532 ret = btrfs_previous_item(chunk_root, path, 0,
2533 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002534 if (ret) {
2535 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04002536 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002537 }
Chris Mason7d9eb122008-07-08 14:19:17 -04002538
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002539 leaf = path->nodes[0];
2540 slot = path->slots[0];
2541 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2542
Chris Masonec44a352008-04-28 15:29:52 -04002543 if (found_key.objectid != key.objectid)
2544 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04002545
Chris Masonec44a352008-04-28 15:29:52 -04002546 /* chunk zero is special */
Josef Bacikba1bf482009-09-11 16:11:19 -04002547 if (found_key.offset == 0)
Chris Masonec44a352008-04-28 15:29:52 -04002548 break;
2549
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002550 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
2551
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002552 if (!counting) {
2553 spin_lock(&fs_info->balance_lock);
2554 bctl->stat.considered++;
2555 spin_unlock(&fs_info->balance_lock);
2556 }
2557
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002558 ret = should_balance_chunk(chunk_root, leaf, chunk,
2559 found_key.offset);
David Sterbab3b4aa72011-04-21 01:20:15 +02002560 btrfs_release_path(path);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002561 if (!ret)
2562 goto loop;
2563
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002564 if (counting) {
2565 spin_lock(&fs_info->balance_lock);
2566 bctl->stat.expected++;
2567 spin_unlock(&fs_info->balance_lock);
2568 goto loop;
2569 }
2570
Chris Masonec44a352008-04-28 15:29:52 -04002571 ret = btrfs_relocate_chunk(chunk_root,
2572 chunk_root->root_key.objectid,
2573 found_key.objectid,
2574 found_key.offset);
Josef Bacik508794e2011-07-02 21:24:41 +00002575 if (ret && ret != -ENOSPC)
2576 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002577 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002578 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002579 } else {
2580 spin_lock(&fs_info->balance_lock);
2581 bctl->stat.completed++;
2582 spin_unlock(&fs_info->balance_lock);
2583 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002584loop:
Josef Bacikba1bf482009-09-11 16:11:19 -04002585 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04002586 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002587
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002588 if (counting) {
2589 btrfs_release_path(path);
2590 counting = false;
2591 goto again;
2592 }
Chris Masonec44a352008-04-28 15:29:52 -04002593error:
2594 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002595 if (enospc_errors) {
2596 printk(KERN_INFO "btrfs: %d enospc errors during balance\n",
2597 enospc_errors);
2598 if (!ret)
2599 ret = -ENOSPC;
2600 }
2601
Chris Masonec44a352008-04-28 15:29:52 -04002602 return ret;
2603}
2604
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002605static inline int balance_need_close(struct btrfs_fs_info *fs_info)
2606{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002607 /* cancel requested || normal exit path */
2608 return atomic_read(&fs_info->balance_cancel_req) ||
2609 (atomic_read(&fs_info->balance_pause_req) == 0 &&
2610 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002611}
2612
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002613static void __cancel_balance(struct btrfs_fs_info *fs_info)
2614{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002615 int ret;
2616
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002617 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002618 ret = del_balance_item(fs_info->tree_root);
2619 BUG_ON(ret);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002620}
2621
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002622void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002623 struct btrfs_ioctl_balance_args *bargs);
2624
2625/*
2626 * Should be called with both balance and volume mutexes held
2627 */
2628int btrfs_balance(struct btrfs_balance_control *bctl,
2629 struct btrfs_ioctl_balance_args *bargs)
2630{
2631 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002632 u64 allowed;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002633 int ret;
2634
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002635 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002636 atomic_read(&fs_info->balance_pause_req) ||
2637 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002638 ret = -EINVAL;
2639 goto out;
2640 }
2641
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02002642 /*
2643 * In case of mixed groups both data and meta should be picked,
2644 * and identical options should be given for both of them.
2645 */
2646 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
2647 if ((allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) &&
2648 (bctl->flags & (BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA))) {
2649 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
2650 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
2651 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
2652 printk(KERN_ERR "btrfs: with mixed groups data and "
2653 "metadata balance options must be the same\n");
2654 ret = -EINVAL;
2655 goto out;
2656 }
2657 }
2658
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02002659 /*
2660 * Profile changing sanity checks. Skip them if a simple
2661 * balance is requested.
2662 */
2663 if (!((bctl->data.flags | bctl->sys.flags | bctl->meta.flags) &
2664 BTRFS_BALANCE_ARGS_CONVERT))
2665 goto do_balance;
2666
2667 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
2668 if (fs_info->fs_devices->num_devices == 1)
2669 allowed |= BTRFS_BLOCK_GROUP_DUP;
2670 else if (fs_info->fs_devices->num_devices < 4)
2671 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
2672 else
2673 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
2674 BTRFS_BLOCK_GROUP_RAID10);
2675
2676 if (!profile_is_valid(bctl->data.target, 1) ||
2677 bctl->data.target & ~allowed) {
2678 printk(KERN_ERR "btrfs: unable to start balance with target "
2679 "data profile %llu\n",
2680 (unsigned long long)bctl->data.target);
2681 ret = -EINVAL;
2682 goto out;
2683 }
2684 if (!profile_is_valid(bctl->meta.target, 1) ||
2685 bctl->meta.target & ~allowed) {
2686 printk(KERN_ERR "btrfs: unable to start balance with target "
2687 "metadata profile %llu\n",
2688 (unsigned long long)bctl->meta.target);
2689 ret = -EINVAL;
2690 goto out;
2691 }
2692 if (!profile_is_valid(bctl->sys.target, 1) ||
2693 bctl->sys.target & ~allowed) {
2694 printk(KERN_ERR "btrfs: unable to start balance with target "
2695 "system profile %llu\n",
2696 (unsigned long long)bctl->sys.target);
2697 ret = -EINVAL;
2698 goto out;
2699 }
2700
2701 if (bctl->data.target & BTRFS_BLOCK_GROUP_DUP) {
2702 printk(KERN_ERR "btrfs: dup for data is not allowed\n");
2703 ret = -EINVAL;
2704 goto out;
2705 }
2706
2707 /* allow to reduce meta or sys integrity only if force set */
2708 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
2709 BTRFS_BLOCK_GROUP_RAID10;
2710 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
2711 (fs_info->avail_system_alloc_bits & allowed) &&
2712 !(bctl->sys.target & allowed)) ||
2713 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
2714 (fs_info->avail_metadata_alloc_bits & allowed) &&
2715 !(bctl->meta.target & allowed))) {
2716 if (bctl->flags & BTRFS_BALANCE_FORCE) {
2717 printk(KERN_INFO "btrfs: force reducing metadata "
2718 "integrity\n");
2719 } else {
2720 printk(KERN_ERR "btrfs: balance will reduce metadata "
2721 "integrity, use force if you want this\n");
2722 ret = -EINVAL;
2723 goto out;
2724 }
2725 }
2726
2727do_balance:
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002728 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02002729 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002730 goto out;
2731
Ilya Dryomov59641012012-01-16 22:04:48 +02002732 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
2733 BUG_ON(ret == -EEXIST);
2734 set_balance_control(bctl);
2735 } else {
2736 BUG_ON(ret != -EEXIST);
2737 spin_lock(&fs_info->balance_lock);
2738 update_balance_args(bctl);
2739 spin_unlock(&fs_info->balance_lock);
2740 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002741
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002742 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002743 mutex_unlock(&fs_info->balance_mutex);
2744
2745 ret = __btrfs_balance(fs_info);
2746
2747 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002748 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002749
2750 if (bargs) {
2751 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02002752 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002753 }
2754
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002755 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
2756 balance_need_close(fs_info)) {
2757 __cancel_balance(fs_info);
2758 }
2759
2760 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002761
2762 return ret;
2763out:
Ilya Dryomov59641012012-01-16 22:04:48 +02002764 if (bctl->flags & BTRFS_BALANCE_RESUME)
2765 __cancel_balance(fs_info);
2766 else
2767 kfree(bctl);
2768 return ret;
2769}
2770
2771static int balance_kthread(void *data)
2772{
2773 struct btrfs_balance_control *bctl =
2774 (struct btrfs_balance_control *)data;
2775 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02002776 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02002777
2778 mutex_lock(&fs_info->volume_mutex);
2779 mutex_lock(&fs_info->balance_mutex);
2780
2781 set_balance_control(bctl);
2782
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02002783 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
2784 printk(KERN_INFO "btrfs: force skipping balance\n");
2785 } else {
2786 printk(KERN_INFO "btrfs: continuing balance\n");
2787 ret = btrfs_balance(bctl, NULL);
2788 }
Ilya Dryomov59641012012-01-16 22:04:48 +02002789
2790 mutex_unlock(&fs_info->balance_mutex);
2791 mutex_unlock(&fs_info->volume_mutex);
2792 return ret;
2793}
2794
2795int btrfs_recover_balance(struct btrfs_root *tree_root)
2796{
2797 struct task_struct *tsk;
2798 struct btrfs_balance_control *bctl;
2799 struct btrfs_balance_item *item;
2800 struct btrfs_disk_balance_args disk_bargs;
2801 struct btrfs_path *path;
2802 struct extent_buffer *leaf;
2803 struct btrfs_key key;
2804 int ret;
2805
2806 path = btrfs_alloc_path();
2807 if (!path)
2808 return -ENOMEM;
2809
2810 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
2811 if (!bctl) {
2812 ret = -ENOMEM;
2813 goto out;
2814 }
2815
2816 key.objectid = BTRFS_BALANCE_OBJECTID;
2817 key.type = BTRFS_BALANCE_ITEM_KEY;
2818 key.offset = 0;
2819
2820 ret = btrfs_search_slot(NULL, tree_root, &key, path, 0, 0);
2821 if (ret < 0)
2822 goto out_bctl;
2823 if (ret > 0) { /* ret = -ENOENT; */
2824 ret = 0;
2825 goto out_bctl;
2826 }
2827
2828 leaf = path->nodes[0];
2829 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2830
2831 bctl->fs_info = tree_root->fs_info;
2832 bctl->flags = btrfs_balance_flags(leaf, item) | BTRFS_BALANCE_RESUME;
2833
2834 btrfs_balance_data(leaf, item, &disk_bargs);
2835 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
2836 btrfs_balance_meta(leaf, item, &disk_bargs);
2837 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
2838 btrfs_balance_sys(leaf, item, &disk_bargs);
2839 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
2840
2841 tsk = kthread_run(balance_kthread, bctl, "btrfs-balance");
2842 if (IS_ERR(tsk))
2843 ret = PTR_ERR(tsk);
2844 else
2845 goto out;
2846
2847out_bctl:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002848 kfree(bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02002849out:
2850 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04002851 return ret;
2852}
2853
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002854int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
2855{
2856 int ret = 0;
2857
2858 mutex_lock(&fs_info->balance_mutex);
2859 if (!fs_info->balance_ctl) {
2860 mutex_unlock(&fs_info->balance_mutex);
2861 return -ENOTCONN;
2862 }
2863
2864 if (atomic_read(&fs_info->balance_running)) {
2865 atomic_inc(&fs_info->balance_pause_req);
2866 mutex_unlock(&fs_info->balance_mutex);
2867
2868 wait_event(fs_info->balance_wait_q,
2869 atomic_read(&fs_info->balance_running) == 0);
2870
2871 mutex_lock(&fs_info->balance_mutex);
2872 /* we are good with balance_ctl ripped off from under us */
2873 BUG_ON(atomic_read(&fs_info->balance_running));
2874 atomic_dec(&fs_info->balance_pause_req);
2875 } else {
2876 ret = -ENOTCONN;
2877 }
2878
2879 mutex_unlock(&fs_info->balance_mutex);
2880 return ret;
2881}
2882
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002883int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
2884{
2885 mutex_lock(&fs_info->balance_mutex);
2886 if (!fs_info->balance_ctl) {
2887 mutex_unlock(&fs_info->balance_mutex);
2888 return -ENOTCONN;
2889 }
2890
2891 atomic_inc(&fs_info->balance_cancel_req);
2892 /*
2893 * if we are running just wait and return, balance item is
2894 * deleted in btrfs_balance in this case
2895 */
2896 if (atomic_read(&fs_info->balance_running)) {
2897 mutex_unlock(&fs_info->balance_mutex);
2898 wait_event(fs_info->balance_wait_q,
2899 atomic_read(&fs_info->balance_running) == 0);
2900 mutex_lock(&fs_info->balance_mutex);
2901 } else {
2902 /* __cancel_balance needs volume_mutex */
2903 mutex_unlock(&fs_info->balance_mutex);
2904 mutex_lock(&fs_info->volume_mutex);
2905 mutex_lock(&fs_info->balance_mutex);
2906
2907 if (fs_info->balance_ctl)
2908 __cancel_balance(fs_info);
2909
2910 mutex_unlock(&fs_info->volume_mutex);
2911 }
2912
2913 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
2914 atomic_dec(&fs_info->balance_cancel_req);
2915 mutex_unlock(&fs_info->balance_mutex);
2916 return 0;
2917}
2918
Chris Mason8f18cf12008-04-25 16:53:30 -04002919/*
2920 * shrinking a device means finding all of the device extents past
2921 * the new size, and then following the back refs to the chunks.
2922 * The chunk relocation code actually frees the device extent
2923 */
2924int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
2925{
2926 struct btrfs_trans_handle *trans;
2927 struct btrfs_root *root = device->dev_root;
2928 struct btrfs_dev_extent *dev_extent = NULL;
2929 struct btrfs_path *path;
2930 u64 length;
2931 u64 chunk_tree;
2932 u64 chunk_objectid;
2933 u64 chunk_offset;
2934 int ret;
2935 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04002936 int failed = 0;
2937 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04002938 struct extent_buffer *l;
2939 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02002940 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002941 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04002942 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04002943 u64 diff = device->total_bytes - new_size;
2944
Yan Zheng2b820322008-11-17 21:11:30 -05002945 if (new_size >= device->total_bytes)
2946 return -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04002947
2948 path = btrfs_alloc_path();
2949 if (!path)
2950 return -ENOMEM;
2951
Chris Mason8f18cf12008-04-25 16:53:30 -04002952 path->reada = 2;
2953
Chris Mason7d9eb122008-07-08 14:19:17 -04002954 lock_chunks(root);
2955
Chris Mason8f18cf12008-04-25 16:53:30 -04002956 device->total_bytes = new_size;
Josef Bacik2bf64752011-09-26 17:12:22 -04002957 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05002958 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04002959 spin_lock(&root->fs_info->free_chunk_lock);
2960 root->fs_info->free_chunk_space -= diff;
2961 spin_unlock(&root->fs_info->free_chunk_lock);
2962 }
Chris Mason7d9eb122008-07-08 14:19:17 -04002963 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002964
Josef Bacikba1bf482009-09-11 16:11:19 -04002965again:
Chris Mason8f18cf12008-04-25 16:53:30 -04002966 key.objectid = device->devid;
2967 key.offset = (u64)-1;
2968 key.type = BTRFS_DEV_EXTENT_KEY;
2969
2970 while (1) {
2971 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2972 if (ret < 0)
2973 goto done;
2974
2975 ret = btrfs_previous_item(root, path, 0, key.type);
2976 if (ret < 0)
2977 goto done;
2978 if (ret) {
2979 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02002980 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002981 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04002982 }
2983
2984 l = path->nodes[0];
2985 slot = path->slots[0];
2986 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
2987
Josef Bacikba1bf482009-09-11 16:11:19 -04002988 if (key.objectid != device->devid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002989 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002990 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002991 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002992
2993 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
2994 length = btrfs_dev_extent_length(l, dev_extent);
2995
Josef Bacikba1bf482009-09-11 16:11:19 -04002996 if (key.offset + length <= new_size) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002997 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04002998 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002999 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003000
3001 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
3002 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
3003 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02003004 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003005
3006 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
3007 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003008 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04003009 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04003010 if (ret == -ENOSPC)
3011 failed++;
3012 key.offset -= 1;
3013 }
3014
3015 if (failed && !retried) {
3016 failed = 0;
3017 retried = true;
3018 goto again;
3019 } else if (failed && retried) {
3020 ret = -ENOSPC;
3021 lock_chunks(root);
3022
3023 device->total_bytes = old_size;
3024 if (device->writeable)
3025 device->fs_devices->total_rw_bytes += diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04003026 spin_lock(&root->fs_info->free_chunk_lock);
3027 root->fs_info->free_chunk_space += diff;
3028 spin_unlock(&root->fs_info->free_chunk_lock);
Josef Bacikba1bf482009-09-11 16:11:19 -04003029 unlock_chunks(root);
3030 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04003031 }
3032
Chris Balld6397ba2009-04-27 07:29:03 -04003033 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003034 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003035 if (IS_ERR(trans)) {
3036 ret = PTR_ERR(trans);
3037 goto done;
3038 }
3039
Chris Balld6397ba2009-04-27 07:29:03 -04003040 lock_chunks(root);
3041
3042 device->disk_total_bytes = new_size;
3043 /* Now btrfs_update_device() will change the on-disk size. */
3044 ret = btrfs_update_device(trans, device);
3045 if (ret) {
3046 unlock_chunks(root);
3047 btrfs_end_transaction(trans, root);
3048 goto done;
3049 }
3050 WARN_ON(diff > old_total);
3051 btrfs_set_super_total_bytes(super_copy, old_total - diff);
3052 unlock_chunks(root);
3053 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003054done:
3055 btrfs_free_path(path);
3056 return ret;
3057}
3058
Li Zefan125ccb02011-12-08 15:07:24 +08003059static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003060 struct btrfs_key *key,
3061 struct btrfs_chunk *chunk, int item_size)
3062{
David Sterba6c417612011-04-13 15:41:04 +02003063 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04003064 struct btrfs_disk_key disk_key;
3065 u32 array_size;
3066 u8 *ptr;
3067
3068 array_size = btrfs_super_sys_array_size(super_copy);
3069 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
3070 return -EFBIG;
3071
3072 ptr = super_copy->sys_chunk_array + array_size;
3073 btrfs_cpu_key_to_disk(&disk_key, key);
3074 memcpy(ptr, &disk_key, sizeof(disk_key));
3075 ptr += sizeof(disk_key);
3076 memcpy(ptr, chunk, item_size);
3077 item_size += sizeof(disk_key);
3078 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
3079 return 0;
3080}
3081
Miao Xieb2117a32011-01-05 10:07:28 +00003082/*
Arne Jansen73c5de02011-04-12 12:07:57 +02003083 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00003084 */
Arne Jansen73c5de02011-04-12 12:07:57 +02003085static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00003086{
Arne Jansen73c5de02011-04-12 12:07:57 +02003087 const struct btrfs_device_info *di_a = a;
3088 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00003089
Arne Jansen73c5de02011-04-12 12:07:57 +02003090 if (di_a->max_avail > di_b->max_avail)
3091 return -1;
3092 if (di_a->max_avail < di_b->max_avail)
3093 return 1;
3094 if (di_a->total_avail > di_b->total_avail)
3095 return -1;
3096 if (di_a->total_avail < di_b->total_avail)
3097 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00003098 return 0;
3099}
3100
3101static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
3102 struct btrfs_root *extent_root,
3103 struct map_lookup **map_ret,
Arne Jansen73c5de02011-04-12 12:07:57 +02003104 u64 *num_bytes_out, u64 *stripe_size_out,
Miao Xieb2117a32011-01-05 10:07:28 +00003105 u64 start, u64 type)
3106{
3107 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00003108 struct btrfs_fs_devices *fs_devices = info->fs_devices;
3109 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02003110 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00003111 struct extent_map_tree *em_tree;
3112 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02003113 struct btrfs_device_info *devices_info = NULL;
3114 u64 total_avail;
3115 int num_stripes; /* total number of stripes to allocate */
3116 int sub_stripes; /* sub_stripes info for map */
3117 int dev_stripes; /* stripes per dev */
3118 int devs_max; /* max devs to use */
3119 int devs_min; /* min devs needed */
3120 int devs_increment; /* ndevs has to be a multiple of this */
3121 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00003122 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02003123 u64 max_stripe_size;
3124 u64 max_chunk_size;
3125 u64 stripe_size;
3126 u64 num_bytes;
3127 int ndevs;
3128 int i;
3129 int j;
Miao Xieb2117a32011-01-05 10:07:28 +00003130
3131 if ((type & BTRFS_BLOCK_GROUP_RAID1) &&
3132 (type & BTRFS_BLOCK_GROUP_DUP)) {
3133 WARN_ON(1);
3134 type &= ~BTRFS_BLOCK_GROUP_DUP;
3135 }
Arne Jansen73c5de02011-04-12 12:07:57 +02003136
Miao Xieb2117a32011-01-05 10:07:28 +00003137 if (list_empty(&fs_devices->alloc_list))
3138 return -ENOSPC;
3139
Arne Jansen73c5de02011-04-12 12:07:57 +02003140 sub_stripes = 1;
3141 dev_stripes = 1;
3142 devs_increment = 1;
3143 ncopies = 1;
3144 devs_max = 0; /* 0 == as many as possible */
3145 devs_min = 1;
3146
3147 /*
3148 * define the properties of each RAID type.
3149 * FIXME: move this to a global table and use it in all RAID
3150 * calculation code
3151 */
3152 if (type & (BTRFS_BLOCK_GROUP_DUP)) {
3153 dev_stripes = 2;
3154 ncopies = 2;
3155 devs_max = 1;
3156 } else if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
3157 devs_min = 2;
3158 } else if (type & (BTRFS_BLOCK_GROUP_RAID1)) {
3159 devs_increment = 2;
3160 ncopies = 2;
3161 devs_max = 2;
3162 devs_min = 2;
3163 } else if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
3164 sub_stripes = 2;
3165 devs_increment = 2;
3166 ncopies = 2;
3167 devs_min = 4;
3168 } else {
3169 devs_max = 1;
3170 }
3171
3172 if (type & BTRFS_BLOCK_GROUP_DATA) {
3173 max_stripe_size = 1024 * 1024 * 1024;
3174 max_chunk_size = 10 * max_stripe_size;
3175 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05003176 /* for larger filesystems, use larger metadata chunks */
3177 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
3178 max_stripe_size = 1024 * 1024 * 1024;
3179 else
3180 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02003181 max_chunk_size = max_stripe_size;
3182 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05003183 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02003184 max_chunk_size = 2 * max_stripe_size;
3185 } else {
3186 printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
3187 type);
3188 BUG_ON(1);
3189 }
3190
3191 /* we don't want a chunk larger than 10% of writeable space */
3192 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
3193 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00003194
3195 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
3196 GFP_NOFS);
3197 if (!devices_info)
3198 return -ENOMEM;
3199
Arne Jansen73c5de02011-04-12 12:07:57 +02003200 cur = fs_devices->alloc_list.next;
3201
3202 /*
3203 * in the first pass through the devices list, we gather information
3204 * about the available holes on each device.
3205 */
3206 ndevs = 0;
3207 while (cur != &fs_devices->alloc_list) {
3208 struct btrfs_device *device;
3209 u64 max_avail;
3210 u64 dev_offset;
3211
3212 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
3213
3214 cur = cur->next;
3215
3216 if (!device->writeable) {
3217 printk(KERN_ERR
3218 "btrfs: read-only device in alloc_list\n");
3219 WARN_ON(1);
3220 continue;
3221 }
3222
3223 if (!device->in_fs_metadata)
3224 continue;
3225
3226 if (device->total_bytes > device->bytes_used)
3227 total_avail = device->total_bytes - device->bytes_used;
3228 else
3229 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00003230
3231 /* If there is no space on this device, skip it. */
3232 if (total_avail == 0)
3233 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02003234
Li Zefan125ccb02011-12-08 15:07:24 +08003235 ret = find_free_dev_extent(device,
Arne Jansen73c5de02011-04-12 12:07:57 +02003236 max_stripe_size * dev_stripes,
3237 &dev_offset, &max_avail);
3238 if (ret && ret != -ENOSPC)
3239 goto error;
3240
3241 if (ret == 0)
3242 max_avail = max_stripe_size * dev_stripes;
3243
3244 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
3245 continue;
3246
3247 devices_info[ndevs].dev_offset = dev_offset;
3248 devices_info[ndevs].max_avail = max_avail;
3249 devices_info[ndevs].total_avail = total_avail;
3250 devices_info[ndevs].dev = device;
3251 ++ndevs;
3252 }
3253
3254 /*
3255 * now sort the devices by hole size / available space
3256 */
3257 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
3258 btrfs_cmp_device_info, NULL);
3259
3260 /* round down to number of usable stripes */
3261 ndevs -= ndevs % devs_increment;
3262
3263 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
3264 ret = -ENOSPC;
3265 goto error;
3266 }
3267
3268 if (devs_max && ndevs > devs_max)
3269 ndevs = devs_max;
3270 /*
3271 * the primary goal is to maximize the number of stripes, so use as many
3272 * devices as possible, even if the stripes are not maximum sized.
3273 */
3274 stripe_size = devices_info[ndevs-1].max_avail;
3275 num_stripes = ndevs * dev_stripes;
3276
3277 if (stripe_size * num_stripes > max_chunk_size * ncopies) {
3278 stripe_size = max_chunk_size * ncopies;
3279 do_div(stripe_size, num_stripes);
3280 }
3281
3282 do_div(stripe_size, dev_stripes);
3283 do_div(stripe_size, BTRFS_STRIPE_LEN);
3284 stripe_size *= BTRFS_STRIPE_LEN;
3285
Miao Xieb2117a32011-01-05 10:07:28 +00003286 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
3287 if (!map) {
3288 ret = -ENOMEM;
3289 goto error;
3290 }
3291 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04003292
Arne Jansen73c5de02011-04-12 12:07:57 +02003293 for (i = 0; i < ndevs; ++i) {
3294 for (j = 0; j < dev_stripes; ++j) {
3295 int s = i * dev_stripes + j;
3296 map->stripes[s].dev = devices_info[i].dev;
3297 map->stripes[s].physical = devices_info[i].dev_offset +
3298 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04003299 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003300 }
Chris Mason593060d2008-03-25 16:50:33 -04003301 map->sector_size = extent_root->sectorsize;
Miao Xieb2117a32011-01-05 10:07:28 +00003302 map->stripe_len = BTRFS_STRIPE_LEN;
3303 map->io_align = BTRFS_STRIPE_LEN;
3304 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04003305 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04003306 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04003307
Yan Zheng2b820322008-11-17 21:11:30 -05003308 *map_ret = map;
Arne Jansen73c5de02011-04-12 12:07:57 +02003309 num_bytes = stripe_size * (num_stripes / ncopies);
Chris Mason0b86a832008-03-24 15:01:56 -04003310
Arne Jansen73c5de02011-04-12 12:07:57 +02003311 *stripe_size_out = stripe_size;
3312 *num_bytes_out = num_bytes;
3313
3314 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00003315
David Sterba172ddd62011-04-21 00:48:27 +02003316 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05003317 if (!em) {
Miao Xieb2117a32011-01-05 10:07:28 +00003318 ret = -ENOMEM;
3319 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05003320 }
Chris Mason0b86a832008-03-24 15:01:56 -04003321 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05003322 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02003323 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003324 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003325 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04003326
Chris Mason0b86a832008-03-24 15:01:56 -04003327 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04003328 write_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003329 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04003330 write_unlock(&em_tree->lock);
Chris Masonb248a412008-04-14 09:48:18 -04003331 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04003332 free_extent_map(em);
Yan Zheng2b820322008-11-17 21:11:30 -05003333
3334 ret = btrfs_make_block_group(trans, extent_root, 0, type,
3335 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
Arne Jansen73c5de02011-04-12 12:07:57 +02003336 start, num_bytes);
Yan Zheng2b820322008-11-17 21:11:30 -05003337 BUG_ON(ret);
3338
Arne Jansen73c5de02011-04-12 12:07:57 +02003339 for (i = 0; i < map->num_stripes; ++i) {
3340 struct btrfs_device *device;
3341 u64 dev_offset;
3342
3343 device = map->stripes[i].dev;
3344 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05003345
3346 ret = btrfs_alloc_dev_extent(trans, device,
3347 info->chunk_root->root_key.objectid,
3348 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
Arne Jansen73c5de02011-04-12 12:07:57 +02003349 start, dev_offset, stripe_size);
Yan Zheng2b820322008-11-17 21:11:30 -05003350 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003351 }
3352
Miao Xieb2117a32011-01-05 10:07:28 +00003353 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05003354 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00003355
3356error:
3357 kfree(map);
3358 kfree(devices_info);
3359 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003360}
3361
3362static int __finish_chunk_alloc(struct btrfs_trans_handle *trans,
3363 struct btrfs_root *extent_root,
3364 struct map_lookup *map, u64 chunk_offset,
3365 u64 chunk_size, u64 stripe_size)
3366{
3367 u64 dev_offset;
3368 struct btrfs_key key;
3369 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
3370 struct btrfs_device *device;
3371 struct btrfs_chunk *chunk;
3372 struct btrfs_stripe *stripe;
3373 size_t item_size = btrfs_chunk_item_size(map->num_stripes);
3374 int index = 0;
3375 int ret;
3376
3377 chunk = kzalloc(item_size, GFP_NOFS);
3378 if (!chunk)
3379 return -ENOMEM;
3380
3381 index = 0;
3382 while (index < map->num_stripes) {
3383 device = map->stripes[index].dev;
3384 device->bytes_used += stripe_size;
3385 ret = btrfs_update_device(trans, device);
3386 BUG_ON(ret);
3387 index++;
3388 }
3389
Josef Bacik2bf64752011-09-26 17:12:22 -04003390 spin_lock(&extent_root->fs_info->free_chunk_lock);
3391 extent_root->fs_info->free_chunk_space -= (stripe_size *
3392 map->num_stripes);
3393 spin_unlock(&extent_root->fs_info->free_chunk_lock);
3394
Yan Zheng2b820322008-11-17 21:11:30 -05003395 index = 0;
3396 stripe = &chunk->stripe;
3397 while (index < map->num_stripes) {
3398 device = map->stripes[index].dev;
3399 dev_offset = map->stripes[index].physical;
3400
3401 btrfs_set_stack_stripe_devid(stripe, device->devid);
3402 btrfs_set_stack_stripe_offset(stripe, dev_offset);
3403 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
3404 stripe++;
3405 index++;
3406 }
3407
3408 btrfs_set_stack_chunk_length(chunk, chunk_size);
3409 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
3410 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
3411 btrfs_set_stack_chunk_type(chunk, map->type);
3412 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
3413 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
3414 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
3415 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
3416 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
3417
3418 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3419 key.type = BTRFS_CHUNK_ITEM_KEY;
3420 key.offset = chunk_offset;
3421
3422 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
3423 BUG_ON(ret);
3424
3425 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Li Zefan125ccb02011-12-08 15:07:24 +08003426 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05003427 item_size);
3428 BUG_ON(ret);
3429 }
liubo1abe9b82011-03-24 11:18:59 +00003430
Yan Zheng2b820322008-11-17 21:11:30 -05003431 kfree(chunk);
3432 return 0;
3433}
3434
3435/*
3436 * Chunk allocation falls into two parts. The first part does works
3437 * that make the new allocated chunk useable, but not do any operation
3438 * that modifies the chunk tree. The second part does the works that
3439 * require modifying the chunk tree. This division is important for the
3440 * bootstrap process of adding storage to a seed btrfs.
3441 */
3442int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
3443 struct btrfs_root *extent_root, u64 type)
3444{
3445 u64 chunk_offset;
3446 u64 chunk_size;
3447 u64 stripe_size;
3448 struct map_lookup *map;
3449 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
3450 int ret;
3451
3452 ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
3453 &chunk_offset);
3454 if (ret)
3455 return ret;
3456
3457 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
3458 &stripe_size, chunk_offset, type);
3459 if (ret)
3460 return ret;
3461
3462 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
3463 chunk_size, stripe_size);
3464 BUG_ON(ret);
3465 return 0;
3466}
3467
Chris Masond3977122009-01-05 21:25:51 -05003468static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05003469 struct btrfs_root *root,
3470 struct btrfs_device *device)
3471{
3472 u64 chunk_offset;
3473 u64 sys_chunk_offset;
3474 u64 chunk_size;
3475 u64 sys_chunk_size;
3476 u64 stripe_size;
3477 u64 sys_stripe_size;
3478 u64 alloc_profile;
3479 struct map_lookup *map;
3480 struct map_lookup *sys_map;
3481 struct btrfs_fs_info *fs_info = root->fs_info;
3482 struct btrfs_root *extent_root = fs_info->extent_root;
3483 int ret;
3484
3485 ret = find_next_chunk(fs_info->chunk_root,
3486 BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003487 if (ret)
3488 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003489
3490 alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003491 fs_info->avail_metadata_alloc_bits;
Yan Zheng2b820322008-11-17 21:11:30 -05003492 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
3493
3494 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
3495 &stripe_size, chunk_offset, alloc_profile);
3496 BUG_ON(ret);
3497
3498 sys_chunk_offset = chunk_offset + chunk_size;
3499
3500 alloc_profile = BTRFS_BLOCK_GROUP_SYSTEM |
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003501 fs_info->avail_system_alloc_bits;
Yan Zheng2b820322008-11-17 21:11:30 -05003502 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
3503
3504 ret = __btrfs_alloc_chunk(trans, extent_root, &sys_map,
3505 &sys_chunk_size, &sys_stripe_size,
3506 sys_chunk_offset, alloc_profile);
3507 BUG_ON(ret);
3508
3509 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
3510 BUG_ON(ret);
3511
3512 /*
3513 * Modifying chunk tree needs allocating new blocks from both
3514 * system block group and metadata block group. So we only can
3515 * do operations require modifying the chunk tree after both
3516 * block groups were created.
3517 */
3518 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
3519 chunk_size, stripe_size);
3520 BUG_ON(ret);
3521
3522 ret = __finish_chunk_alloc(trans, extent_root, sys_map,
3523 sys_chunk_offset, sys_chunk_size,
3524 sys_stripe_size);
3525 BUG_ON(ret);
3526 return 0;
3527}
3528
3529int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
3530{
3531 struct extent_map *em;
3532 struct map_lookup *map;
3533 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
3534 int readonly = 0;
3535 int i;
3536
Chris Mason890871b2009-09-02 16:24:52 -04003537 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003538 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003539 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003540 if (!em)
3541 return 1;
3542
Josef Bacikf48b9072010-01-27 02:07:59 +00003543 if (btrfs_test_opt(root, DEGRADED)) {
3544 free_extent_map(em);
3545 return 0;
3546 }
3547
Yan Zheng2b820322008-11-17 21:11:30 -05003548 map = (struct map_lookup *)em->bdev;
3549 for (i = 0; i < map->num_stripes; i++) {
3550 if (!map->stripes[i].dev->writeable) {
3551 readonly = 1;
3552 break;
3553 }
3554 }
3555 free_extent_map(em);
3556 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04003557}
3558
3559void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
3560{
David Sterbaa8067e02011-04-21 00:34:43 +02003561 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04003562}
3563
3564void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
3565{
3566 struct extent_map *em;
3567
Chris Masond3977122009-01-05 21:25:51 -05003568 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04003569 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003570 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
3571 if (em)
3572 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04003573 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003574 if (!em)
3575 break;
3576 kfree(em->bdev);
3577 /* once for us */
3578 free_extent_map(em);
3579 /* once for the tree */
3580 free_extent_map(em);
3581 }
3582}
3583
Chris Masonf1885912008-04-09 16:28:12 -04003584int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
3585{
3586 struct extent_map *em;
3587 struct map_lookup *map;
3588 struct extent_map_tree *em_tree = &map_tree->map_tree;
3589 int ret;
3590
Chris Mason890871b2009-09-02 16:24:52 -04003591 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04003592 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04003593 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04003594 BUG_ON(!em);
3595
3596 BUG_ON(em->start > logical || em->start + em->len < logical);
3597 map = (struct map_lookup *)em->bdev;
3598 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
3599 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04003600 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
3601 ret = map->sub_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04003602 else
3603 ret = 1;
3604 free_extent_map(em);
Chris Masonf1885912008-04-09 16:28:12 -04003605 return ret;
3606}
3607
Chris Masondfe25022008-05-13 13:46:40 -04003608static int find_live_mirror(struct map_lookup *map, int first, int num,
3609 int optimal)
3610{
3611 int i;
3612 if (map->stripes[optimal].dev->bdev)
3613 return optimal;
3614 for (i = first; i < first + num; i++) {
3615 if (map->stripes[i].dev->bdev)
3616 return i;
3617 }
3618 /* we couldn't find one that doesn't fail. Just return something
3619 * and the io error handling code will clean up eventually
3620 */
3621 return optimal;
3622}
3623
Chris Masonf2d8d742008-04-21 10:03:05 -04003624static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
3625 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02003626 struct btrfs_bio **bbio_ret,
Jens Axboe7eaceac2011-03-10 08:52:07 +01003627 int mirror_num)
Chris Mason0b86a832008-03-24 15:01:56 -04003628{
3629 struct extent_map *em;
3630 struct map_lookup *map;
3631 struct extent_map_tree *em_tree = &map_tree->map_tree;
3632 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04003633 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003634 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04003635 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003636 u64 stripe_nr_orig;
3637 u64 stripe_nr_end;
Chris Mason593060d2008-03-25 16:50:33 -04003638 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04003639 int i;
Li Zefande11cc12011-12-01 12:55:47 +08003640 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04003641 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04003642 int max_errors = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02003643 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04003644
Chris Mason890871b2009-09-02 16:24:52 -04003645 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003646 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04003647 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04003648
Chris Mason3b951512008-04-17 11:29:12 -04003649 if (!em) {
Chris Masond3977122009-01-05 21:25:51 -05003650 printk(KERN_CRIT "unable to find logical %llu len %llu\n",
3651 (unsigned long long)logical,
3652 (unsigned long long)*length);
Chris Masonf2d8d742008-04-21 10:03:05 -04003653 BUG();
Chris Mason3b951512008-04-17 11:29:12 -04003654 }
Chris Mason0b86a832008-03-24 15:01:56 -04003655
3656 BUG_ON(em->start > logical || em->start + em->len < logical);
3657 map = (struct map_lookup *)em->bdev;
3658 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04003659
Chris Masonf1885912008-04-09 16:28:12 -04003660 if (mirror_num > map->num_stripes)
3661 mirror_num = 0;
3662
Chris Mason593060d2008-03-25 16:50:33 -04003663 stripe_nr = offset;
3664 /*
3665 * stripe_nr counts the total number of stripes we have to stride
3666 * to get to this block
3667 */
3668 do_div(stripe_nr, map->stripe_len);
3669
3670 stripe_offset = stripe_nr * map->stripe_len;
3671 BUG_ON(offset < stripe_offset);
3672
3673 /* stripe_offset is the offset of this block in its stripe*/
3674 stripe_offset = offset - stripe_offset;
3675
Li Dongyangfce3bb92011-03-24 10:24:26 +00003676 if (rw & REQ_DISCARD)
3677 *length = min_t(u64, em->len - offset, *length);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003678 else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
Chris Masoncea9e442008-04-09 16:28:12 -04003679 /* we limit the length of each bio to what fits in a stripe */
3680 *length = min_t(u64, em->len - offset,
Li Dongyangfce3bb92011-03-24 10:24:26 +00003681 map->stripe_len - stripe_offset);
Chris Masoncea9e442008-04-09 16:28:12 -04003682 } else {
3683 *length = em->len - offset;
3684 }
Chris Masonf2d8d742008-04-21 10:03:05 -04003685
Jan Schmidta1d3c472011-08-04 17:15:33 +02003686 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04003687 goto out;
3688
Chris Masonf2d8d742008-04-21 10:03:05 -04003689 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04003690 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003691 stripe_nr_orig = stripe_nr;
3692 stripe_nr_end = (offset + *length + map->stripe_len - 1) &
3693 (~(map->stripe_len - 1));
3694 do_div(stripe_nr_end, map->stripe_len);
3695 stripe_end_offset = stripe_nr_end * map->stripe_len -
3696 (offset + *length);
3697 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3698 if (rw & REQ_DISCARD)
3699 num_stripes = min_t(u64, map->num_stripes,
3700 stripe_nr_end - stripe_nr_orig);
3701 stripe_index = do_div(stripe_nr, map->num_stripes);
3702 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Linus Torvalds212a17a2011-03-28 15:31:05 -07003703 if (rw & (REQ_WRITE | REQ_DISCARD))
Chris Masonf2d8d742008-04-21 10:03:05 -04003704 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04003705 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04003706 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04003707 else {
3708 stripe_index = find_live_mirror(map, 0,
3709 map->num_stripes,
3710 current->pid % map->num_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02003711 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04003712 }
Chris Mason2fff7342008-04-29 14:12:09 -04003713
Chris Mason611f0e02008-04-03 16:29:03 -04003714 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02003715 if (rw & (REQ_WRITE | REQ_DISCARD)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04003716 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02003717 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04003718 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02003719 } else {
3720 mirror_num = 1;
3721 }
Chris Mason2fff7342008-04-29 14:12:09 -04003722
Chris Mason321aecc2008-04-16 10:49:51 -04003723 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3724 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04003725
3726 stripe_index = do_div(stripe_nr, factor);
3727 stripe_index *= map->sub_stripes;
3728
Jens Axboe7eaceac2011-03-10 08:52:07 +01003729 if (rw & REQ_WRITE)
Chris Masonf2d8d742008-04-21 10:03:05 -04003730 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003731 else if (rw & REQ_DISCARD)
3732 num_stripes = min_t(u64, map->sub_stripes *
3733 (stripe_nr_end - stripe_nr_orig),
3734 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04003735 else if (mirror_num)
3736 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04003737 else {
3738 stripe_index = find_live_mirror(map, stripe_index,
3739 map->sub_stripes, stripe_index +
3740 current->pid % map->sub_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02003741 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04003742 }
Chris Mason8790d502008-04-03 16:29:03 -04003743 } else {
3744 /*
3745 * after this do_div call, stripe_nr is the number of stripes
3746 * on this device we have to walk to find the data, and
3747 * stripe_index is the number of our device in the stripe array
3748 */
3749 stripe_index = do_div(stripe_nr, map->num_stripes);
Jan Schmidta1d3c472011-08-04 17:15:33 +02003750 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04003751 }
Chris Mason593060d2008-03-25 16:50:33 -04003752 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04003753
Li Zefande11cc12011-12-01 12:55:47 +08003754 bbio = kzalloc(btrfs_bio_size(num_stripes), GFP_NOFS);
3755 if (!bbio) {
3756 ret = -ENOMEM;
3757 goto out;
3758 }
3759 atomic_set(&bbio->error, 0);
3760
Li Dongyangfce3bb92011-03-24 10:24:26 +00003761 if (rw & REQ_DISCARD) {
Li Zefanec9ef7a2011-12-01 14:06:42 +08003762 int factor = 0;
3763 int sub_stripes = 0;
3764 u64 stripes_per_dev = 0;
3765 u32 remaining_stripes = 0;
3766
3767 if (map->type &
3768 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
3769 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
3770 sub_stripes = 1;
3771 else
3772 sub_stripes = map->sub_stripes;
3773
3774 factor = map->num_stripes / sub_stripes;
3775 stripes_per_dev = div_u64_rem(stripe_nr_end -
3776 stripe_nr_orig,
3777 factor,
3778 &remaining_stripes);
3779 }
3780
Li Dongyangfce3bb92011-03-24 10:24:26 +00003781 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02003782 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04003783 map->stripes[stripe_index].physical +
3784 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02003785 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003786
Li Zefanec9ef7a2011-12-01 14:06:42 +08003787 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
3788 BTRFS_BLOCK_GROUP_RAID10)) {
3789 bbio->stripes[i].length = stripes_per_dev *
3790 map->stripe_len;
3791 if (i / sub_stripes < remaining_stripes)
3792 bbio->stripes[i].length +=
3793 map->stripe_len;
3794 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02003795 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00003796 stripe_offset;
Li Zefanec9ef7a2011-12-01 14:06:42 +08003797 if ((i / sub_stripes + 1) %
3798 sub_stripes == remaining_stripes)
3799 bbio->stripes[i].length -=
3800 stripe_end_offset;
3801 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00003802 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003803 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02003804 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003805
3806 stripe_index++;
3807 if (stripe_index == map->num_stripes) {
3808 /* This could only happen for RAID0/10 */
3809 stripe_index = 0;
3810 stripe_nr++;
3811 }
Chris Masonf2d8d742008-04-21 10:03:05 -04003812 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00003813 } else {
3814 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02003815 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07003816 map->stripes[stripe_index].physical +
3817 stripe_offset +
3818 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02003819 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07003820 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003821 stripe_index++;
3822 }
Chris Mason593060d2008-03-25 16:50:33 -04003823 }
Li Zefande11cc12011-12-01 12:55:47 +08003824
3825 if (rw & REQ_WRITE) {
3826 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
3827 BTRFS_BLOCK_GROUP_RAID10 |
3828 BTRFS_BLOCK_GROUP_DUP)) {
3829 max_errors = 1;
3830 }
Chris Masonf2d8d742008-04-21 10:03:05 -04003831 }
Li Zefande11cc12011-12-01 12:55:47 +08003832
3833 *bbio_ret = bbio;
3834 bbio->num_stripes = num_stripes;
3835 bbio->max_errors = max_errors;
3836 bbio->mirror_num = mirror_num;
Chris Masoncea9e442008-04-09 16:28:12 -04003837out:
Chris Mason0b86a832008-03-24 15:01:56 -04003838 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08003839 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04003840}
3841
Chris Masonf2d8d742008-04-21 10:03:05 -04003842int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
3843 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02003844 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04003845{
Jan Schmidta1d3c472011-08-04 17:15:33 +02003846 return __btrfs_map_block(map_tree, rw, logical, length, bbio_ret,
Jens Axboe7eaceac2011-03-10 08:52:07 +01003847 mirror_num);
Chris Masonf2d8d742008-04-21 10:03:05 -04003848}
3849
Yan Zhenga512bbf2008-12-08 16:46:26 -05003850int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
3851 u64 chunk_start, u64 physical, u64 devid,
3852 u64 **logical, int *naddrs, int *stripe_len)
3853{
3854 struct extent_map_tree *em_tree = &map_tree->map_tree;
3855 struct extent_map *em;
3856 struct map_lookup *map;
3857 u64 *buf;
3858 u64 bytenr;
3859 u64 length;
3860 u64 stripe_nr;
3861 int i, j, nr = 0;
3862
Chris Mason890871b2009-09-02 16:24:52 -04003863 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003864 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003865 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003866
3867 BUG_ON(!em || em->start != chunk_start);
3868 map = (struct map_lookup *)em->bdev;
3869
3870 length = em->len;
3871 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
3872 do_div(length, map->num_stripes / map->sub_stripes);
3873 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
3874 do_div(length, map->num_stripes);
3875
3876 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
3877 BUG_ON(!buf);
3878
3879 for (i = 0; i < map->num_stripes; i++) {
3880 if (devid && map->stripes[i].dev->devid != devid)
3881 continue;
3882 if (map->stripes[i].physical > physical ||
3883 map->stripes[i].physical + length <= physical)
3884 continue;
3885
3886 stripe_nr = physical - map->stripes[i].physical;
3887 do_div(stripe_nr, map->stripe_len);
3888
3889 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3890 stripe_nr = stripe_nr * map->num_stripes + i;
3891 do_div(stripe_nr, map->sub_stripes);
3892 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3893 stripe_nr = stripe_nr * map->num_stripes + i;
3894 }
3895 bytenr = chunk_start + stripe_nr * map->stripe_len;
Chris Mason934d3752008-12-08 16:43:10 -05003896 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003897 for (j = 0; j < nr; j++) {
3898 if (buf[j] == bytenr)
3899 break;
3900 }
Chris Mason934d3752008-12-08 16:43:10 -05003901 if (j == nr) {
3902 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003903 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05003904 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05003905 }
3906
Yan Zhenga512bbf2008-12-08 16:46:26 -05003907 *logical = buf;
3908 *naddrs = nr;
3909 *stripe_len = map->stripe_len;
3910
3911 free_extent_map(em);
3912 return 0;
3913}
3914
Jan Schmidta1d3c472011-08-04 17:15:33 +02003915static void btrfs_end_bio(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04003916{
Jan Schmidta1d3c472011-08-04 17:15:33 +02003917 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04003918 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04003919
Chris Mason8790d502008-04-03 16:29:03 -04003920 if (err)
Jan Schmidta1d3c472011-08-04 17:15:33 +02003921 atomic_inc(&bbio->error);
Chris Mason8790d502008-04-03 16:29:03 -04003922
Jan Schmidta1d3c472011-08-04 17:15:33 +02003923 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04003924 is_orig_bio = 1;
3925
Jan Schmidta1d3c472011-08-04 17:15:33 +02003926 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04003927 if (!is_orig_bio) {
3928 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02003929 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04003930 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02003931 bio->bi_private = bbio->private;
3932 bio->bi_end_io = bbio->end_io;
Jan Schmidt2774b2c2011-06-16 12:05:19 +02003933 bio->bi_bdev = (struct block_device *)
3934 (unsigned long)bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04003935 /* only send an error to the higher layers if it is
3936 * beyond the tolerance of the multi-bio
3937 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02003938 if (atomic_read(&bbio->error) > bbio->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04003939 err = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05003940 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04003941 /*
3942 * this bio is actually up to date, we didn't
3943 * go over the max number of errors
3944 */
3945 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04003946 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04003947 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02003948 kfree(bbio);
Chris Mason8790d502008-04-03 16:29:03 -04003949
3950 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04003951 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04003952 bio_put(bio);
3953 }
Chris Mason8790d502008-04-03 16:29:03 -04003954}
3955
Chris Mason8b712842008-06-11 16:50:36 -04003956struct async_sched {
3957 struct bio *bio;
3958 int rw;
3959 struct btrfs_fs_info *info;
3960 struct btrfs_work work;
3961};
3962
3963/*
3964 * see run_scheduled_bios for a description of why bios are collected for
3965 * async submit.
3966 *
3967 * This will add one bio to the pending list for a device and make sure
3968 * the work struct is scheduled.
3969 */
Chris Masond3977122009-01-05 21:25:51 -05003970static noinline int schedule_bio(struct btrfs_root *root,
Chris Masona1b32a52008-09-05 16:09:51 -04003971 struct btrfs_device *device,
3972 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04003973{
3974 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04003975 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04003976
3977 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003978 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04003979 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01003980 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04003981 bio_put(bio);
Chris Mason8b712842008-06-11 16:50:36 -04003982 return 0;
3983 }
3984
3985 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04003986 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04003987 * higher layers. Otherwise, the async bio makes it appear we have
3988 * made progress against dirty pages when we've really just put it
3989 * on a queue for later
3990 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04003991 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04003992 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04003993 bio->bi_next = NULL;
3994 bio->bi_rw |= rw;
3995
3996 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003997 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04003998 pending_bios = &device->pending_sync_bios;
3999 else
4000 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04004001
Chris Masonffbd5172009-04-20 15:50:09 -04004002 if (pending_bios->tail)
4003 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04004004
Chris Masonffbd5172009-04-20 15:50:09 -04004005 pending_bios->tail = bio;
4006 if (!pending_bios->head)
4007 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04004008 if (device->running_pending)
4009 should_queue = 0;
4010
4011 spin_unlock(&device->io_lock);
4012
4013 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04004014 btrfs_queue_worker(&root->fs_info->submit_workers,
4015 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04004016 return 0;
4017}
4018
Chris Masonf1885912008-04-09 16:28:12 -04004019int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04004020 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04004021{
4022 struct btrfs_mapping_tree *map_tree;
4023 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04004024 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04004025 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04004026 u64 length = 0;
4027 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04004028 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04004029 int dev_nr = 0;
4030 int total_devs = 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02004031 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04004032
Chris Masonf2d8d742008-04-21 10:03:05 -04004033 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004034 map_tree = &root->fs_info->mapping_tree;
4035 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04004036
Jan Schmidta1d3c472011-08-04 17:15:33 +02004037 ret = btrfs_map_block(map_tree, rw, logical, &map_length, &bbio,
Chris Masonf1885912008-04-09 16:28:12 -04004038 mirror_num);
Chris Masoncea9e442008-04-09 16:28:12 -04004039 BUG_ON(ret);
4040
Jan Schmidta1d3c472011-08-04 17:15:33 +02004041 total_devs = bbio->num_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04004042 if (map_length < length) {
Chris Masond3977122009-01-05 21:25:51 -05004043 printk(KERN_CRIT "mapping failed logical %llu bio len %llu "
4044 "len %llu\n", (unsigned long long)logical,
4045 (unsigned long long)length,
4046 (unsigned long long)map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04004047 BUG();
4048 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02004049
4050 bbio->orig_bio = first_bio;
4051 bbio->private = first_bio->bi_private;
4052 bbio->end_io = first_bio->bi_end_io;
4053 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
Chris Masoncea9e442008-04-09 16:28:12 -04004054
Chris Masond3977122009-01-05 21:25:51 -05004055 while (dev_nr < total_devs) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02004056 if (dev_nr < total_devs - 1) {
4057 bio = bio_clone(first_bio, GFP_NOFS);
4058 BUG_ON(!bio);
4059 } else {
4060 bio = first_bio;
Chris Mason8790d502008-04-03 16:29:03 -04004061 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02004062 bio->bi_private = bbio;
4063 bio->bi_end_io = btrfs_end_bio;
4064 bio->bi_sector = bbio->stripes[dev_nr].physical >> 9;
4065 dev = bbio->stripes[dev_nr].dev;
Chris Mason18e503d2010-10-28 15:30:42 -04004066 if (dev && dev->bdev && (rw != WRITE || dev->writeable)) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02004067 pr_debug("btrfs_map_bio: rw %d, secor=%llu, dev=%lu "
4068 "(%s id %llu), size=%u\n", rw,
4069 (u64)bio->bi_sector, (u_long)dev->bdev->bd_dev,
4070 dev->name, dev->devid, bio->bi_size);
Chris Masondfe25022008-05-13 13:46:40 -04004071 bio->bi_bdev = dev->bdev;
Chris Mason8b712842008-06-11 16:50:36 -04004072 if (async_submit)
4073 schedule_bio(root, dev, rw, bio);
4074 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01004075 btrfsic_submit_bio(rw, bio);
Chris Masondfe25022008-05-13 13:46:40 -04004076 } else {
4077 bio->bi_bdev = root->fs_info->fs_devices->latest_bdev;
4078 bio->bi_sector = logical >> 9;
Chris Masondfe25022008-05-13 13:46:40 -04004079 bio_endio(bio, -EIO);
Chris Masondfe25022008-05-13 13:46:40 -04004080 }
Chris Mason8790d502008-04-03 16:29:03 -04004081 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04004082 }
Chris Mason0b86a832008-03-24 15:01:56 -04004083 return 0;
4084}
4085
Chris Masona4437552008-04-18 10:29:38 -04004086struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05004087 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04004088{
Yan Zheng2b820322008-11-17 21:11:30 -05004089 struct btrfs_device *device;
4090 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04004091
Yan Zheng2b820322008-11-17 21:11:30 -05004092 cur_devices = root->fs_info->fs_devices;
4093 while (cur_devices) {
4094 if (!fsid ||
4095 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
4096 device = __find_device(&cur_devices->devices,
4097 devid, uuid);
4098 if (device)
4099 return device;
4100 }
4101 cur_devices = cur_devices->seed;
4102 }
4103 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04004104}
4105
Chris Masondfe25022008-05-13 13:46:40 -04004106static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
4107 u64 devid, u8 *dev_uuid)
4108{
4109 struct btrfs_device *device;
4110 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
4111
4112 device = kzalloc(sizeof(*device), GFP_NOFS);
yanhai zhu7cbd8a82008-11-12 14:38:54 -05004113 if (!device)
4114 return NULL;
Chris Masondfe25022008-05-13 13:46:40 -04004115 list_add(&device->dev_list,
4116 &fs_devices->devices);
Chris Masondfe25022008-05-13 13:46:40 -04004117 device->dev_root = root->fs_info->dev_root;
4118 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -04004119 device->work.func = pending_bios_fn;
Yan Zhenge4404d62008-12-12 10:03:26 -05004120 device->fs_devices = fs_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05004121 device->missing = 1;
Chris Masondfe25022008-05-13 13:46:40 -04004122 fs_devices->num_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05004123 fs_devices->missing_devices++;
Chris Masondfe25022008-05-13 13:46:40 -04004124 spin_lock_init(&device->io_lock);
Chris Masond20f7042008-12-08 16:58:54 -05004125 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masondfe25022008-05-13 13:46:40 -04004126 memcpy(device->uuid, dev_uuid, BTRFS_UUID_SIZE);
4127 return device;
4128}
4129
Chris Mason0b86a832008-03-24 15:01:56 -04004130static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
4131 struct extent_buffer *leaf,
4132 struct btrfs_chunk *chunk)
4133{
4134 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4135 struct map_lookup *map;
4136 struct extent_map *em;
4137 u64 logical;
4138 u64 length;
4139 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04004140 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04004141 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004142 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04004143 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04004144
Chris Masone17cade2008-04-15 15:41:47 -04004145 logical = key->offset;
4146 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04004147
Chris Mason890871b2009-09-02 16:24:52 -04004148 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004149 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004150 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004151
4152 /* already mapped? */
4153 if (em && em->start <= logical && em->start + em->len > logical) {
4154 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04004155 return 0;
4156 } else if (em) {
4157 free_extent_map(em);
4158 }
Chris Mason0b86a832008-03-24 15:01:56 -04004159
David Sterba172ddd62011-04-21 00:48:27 +02004160 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04004161 if (!em)
4162 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04004163 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
4164 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04004165 if (!map) {
4166 free_extent_map(em);
4167 return -ENOMEM;
4168 }
4169
4170 em->bdev = (struct block_device *)map;
4171 em->start = logical;
4172 em->len = length;
4173 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004174 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04004175
Chris Mason593060d2008-03-25 16:50:33 -04004176 map->num_stripes = num_stripes;
4177 map->io_width = btrfs_chunk_io_width(leaf, chunk);
4178 map->io_align = btrfs_chunk_io_align(leaf, chunk);
4179 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
4180 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
4181 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04004182 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04004183 for (i = 0; i < num_stripes; i++) {
4184 map->stripes[i].physical =
4185 btrfs_stripe_offset_nr(leaf, chunk, i);
4186 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04004187 read_extent_buffer(leaf, uuid, (unsigned long)
4188 btrfs_stripe_dev_uuid_nr(chunk, i),
4189 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05004190 map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
4191 NULL);
Chris Masondfe25022008-05-13 13:46:40 -04004192 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04004193 kfree(map);
4194 free_extent_map(em);
4195 return -EIO;
4196 }
Chris Masondfe25022008-05-13 13:46:40 -04004197 if (!map->stripes[i].dev) {
4198 map->stripes[i].dev =
4199 add_missing_dev(root, devid, uuid);
4200 if (!map->stripes[i].dev) {
4201 kfree(map);
4202 free_extent_map(em);
4203 return -EIO;
4204 }
4205 }
4206 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04004207 }
4208
Chris Mason890871b2009-09-02 16:24:52 -04004209 write_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004210 ret = add_extent_mapping(&map_tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004211 write_unlock(&map_tree->map_tree.lock);
Chris Masonb248a412008-04-14 09:48:18 -04004212 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04004213 free_extent_map(em);
4214
4215 return 0;
4216}
4217
4218static int fill_device_from_item(struct extent_buffer *leaf,
4219 struct btrfs_dev_item *dev_item,
4220 struct btrfs_device *device)
4221{
4222 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04004223
4224 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04004225 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
4226 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004227 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
4228 device->type = btrfs_device_type(leaf, dev_item);
4229 device->io_align = btrfs_device_io_align(leaf, dev_item);
4230 device->io_width = btrfs_device_io_width(leaf, dev_item);
4231 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Chris Mason0b86a832008-03-24 15:01:56 -04004232
4233 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04004234 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04004235
Chris Mason0b86a832008-03-24 15:01:56 -04004236 return 0;
4237}
4238
Yan Zheng2b820322008-11-17 21:11:30 -05004239static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
4240{
4241 struct btrfs_fs_devices *fs_devices;
4242 int ret;
4243
Li Zefanb367e472011-12-07 11:38:24 +08004244 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05004245
4246 fs_devices = root->fs_info->fs_devices->seed;
4247 while (fs_devices) {
4248 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
4249 ret = 0;
4250 goto out;
4251 }
4252 fs_devices = fs_devices->seed;
4253 }
4254
4255 fs_devices = find_fsid(fsid);
4256 if (!fs_devices) {
4257 ret = -ENOENT;
4258 goto out;
4259 }
Yan Zhenge4404d62008-12-12 10:03:26 -05004260
4261 fs_devices = clone_fs_devices(fs_devices);
4262 if (IS_ERR(fs_devices)) {
4263 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05004264 goto out;
4265 }
4266
Christoph Hellwig97288f22008-12-02 06:36:09 -05004267 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05004268 root->fs_info->bdev_holder);
Yan Zheng2b820322008-11-17 21:11:30 -05004269 if (ret)
4270 goto out;
4271
4272 if (!fs_devices->seeding) {
4273 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05004274 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05004275 ret = -EINVAL;
4276 goto out;
4277 }
4278
4279 fs_devices->seed = root->fs_info->fs_devices->seed;
4280 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05004281out:
Yan Zheng2b820322008-11-17 21:11:30 -05004282 return ret;
4283}
4284
Chris Mason0d81ba52008-03-24 15:02:07 -04004285static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004286 struct extent_buffer *leaf,
4287 struct btrfs_dev_item *dev_item)
4288{
4289 struct btrfs_device *device;
4290 u64 devid;
4291 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004292 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04004293 u8 dev_uuid[BTRFS_UUID_SIZE];
4294
Chris Mason0b86a832008-03-24 15:01:56 -04004295 devid = btrfs_device_id(leaf, dev_item);
Chris Masona4437552008-04-18 10:29:38 -04004296 read_extent_buffer(leaf, dev_uuid,
4297 (unsigned long)btrfs_device_uuid(dev_item),
4298 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05004299 read_extent_buffer(leaf, fs_uuid,
4300 (unsigned long)btrfs_device_fsid(dev_item),
4301 BTRFS_UUID_SIZE);
4302
4303 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
4304 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05004305 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05004306 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004307 }
4308
4309 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
4310 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05004311 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05004312 return -EIO;
4313
4314 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05004315 printk(KERN_WARNING "warning devid %llu missing\n",
4316 (unsigned long long)devid);
Yan Zheng2b820322008-11-17 21:11:30 -05004317 device = add_missing_dev(root, devid, dev_uuid);
4318 if (!device)
4319 return -ENOMEM;
Chris Masoncd02dca2010-12-13 14:56:23 -05004320 } else if (!device->missing) {
4321 /*
4322 * this happens when a device that was properly setup
4323 * in the device info lists suddenly goes bad.
4324 * device->bdev is NULL, and so we have to set
4325 * device->missing to one here
4326 */
4327 root->fs_info->fs_devices->missing_devices++;
4328 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05004329 }
4330 }
4331
4332 if (device->fs_devices != root->fs_info->fs_devices) {
4333 BUG_ON(device->writeable);
4334 if (device->generation !=
4335 btrfs_device_generation(leaf, dev_item))
4336 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04004337 }
Chris Mason0b86a832008-03-24 15:01:56 -04004338
4339 fill_device_from_item(leaf, dev_item, device);
4340 device->dev_root = root->fs_info->dev_root;
Chris Masondfe25022008-05-13 13:46:40 -04004341 device->in_fs_metadata = 1;
Josef Bacik2bf64752011-09-26 17:12:22 -04004342 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004343 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04004344 spin_lock(&root->fs_info->free_chunk_lock);
4345 root->fs_info->free_chunk_space += device->total_bytes -
4346 device->bytes_used;
4347 spin_unlock(&root->fs_info->free_chunk_lock);
4348 }
Chris Mason0b86a832008-03-24 15:01:56 -04004349 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04004350 return ret;
4351}
4352
Yan Zhenge4404d62008-12-12 10:03:26 -05004353int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04004354{
David Sterba6c417612011-04-13 15:41:04 +02004355 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04004356 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04004357 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04004358 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04004359 u8 *ptr;
4360 unsigned long sb_ptr;
4361 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04004362 u32 num_stripes;
4363 u32 array_size;
4364 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04004365 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04004366 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04004367
Yan Zhenge4404d62008-12-12 10:03:26 -05004368 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04004369 BTRFS_SUPER_INFO_SIZE);
4370 if (!sb)
4371 return -ENOMEM;
4372 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04004373 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02004374 /*
4375 * The sb extent buffer is artifical and just used to read the system array.
4376 * btrfs_set_buffer_uptodate() call does not properly mark all it's
4377 * pages up-to-date when the page is larger: extent does not cover the
4378 * whole page and consequently check_page_uptodate does not find all
4379 * the page's extents up-to-date (the hole beyond sb),
4380 * write_extent_buffer then triggers a WARN_ON.
4381 *
4382 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
4383 * but sb spans only this function. Add an explicit SetPageUptodate call
4384 * to silence the warning eg. on PowerPC 64.
4385 */
4386 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04004387 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05004388
Chris Masona061fc82008-05-07 11:43:44 -04004389 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04004390 array_size = btrfs_super_sys_array_size(super_copy);
4391
Chris Mason0b86a832008-03-24 15:01:56 -04004392 ptr = super_copy->sys_chunk_array;
4393 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
4394 cur = 0;
4395
4396 while (cur < array_size) {
4397 disk_key = (struct btrfs_disk_key *)ptr;
4398 btrfs_disk_key_to_cpu(&key, disk_key);
4399
Chris Masona061fc82008-05-07 11:43:44 -04004400 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04004401 sb_ptr += len;
4402 cur += len;
4403
Chris Mason0d81ba52008-03-24 15:02:07 -04004404 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04004405 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04004406 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04004407 if (ret)
4408 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004409 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
4410 len = btrfs_chunk_item_size(num_stripes);
4411 } else {
Chris Mason84eed902008-04-25 09:04:37 -04004412 ret = -EIO;
4413 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004414 }
4415 ptr += len;
4416 sb_ptr += len;
4417 cur += len;
4418 }
Chris Masona061fc82008-05-07 11:43:44 -04004419 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04004420 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04004421}
4422
4423int btrfs_read_chunk_tree(struct btrfs_root *root)
4424{
4425 struct btrfs_path *path;
4426 struct extent_buffer *leaf;
4427 struct btrfs_key key;
4428 struct btrfs_key found_key;
4429 int ret;
4430 int slot;
4431
4432 root = root->fs_info->chunk_root;
4433
4434 path = btrfs_alloc_path();
4435 if (!path)
4436 return -ENOMEM;
4437
Li Zefanb367e472011-12-07 11:38:24 +08004438 mutex_lock(&uuid_mutex);
4439 lock_chunks(root);
4440
Chris Mason0b86a832008-03-24 15:01:56 -04004441 /* first we search for all of the device items, and then we
4442 * read in all of the chunk items. This way we can create chunk
4443 * mappings that reference all of the devices that are afound
4444 */
4445 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
4446 key.offset = 0;
4447 key.type = 0;
4448again:
4449 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00004450 if (ret < 0)
4451 goto error;
Chris Masond3977122009-01-05 21:25:51 -05004452 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004453 leaf = path->nodes[0];
4454 slot = path->slots[0];
4455 if (slot >= btrfs_header_nritems(leaf)) {
4456 ret = btrfs_next_leaf(root, path);
4457 if (ret == 0)
4458 continue;
4459 if (ret < 0)
4460 goto error;
4461 break;
4462 }
4463 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4464 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
4465 if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
4466 break;
4467 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
4468 struct btrfs_dev_item *dev_item;
4469 dev_item = btrfs_item_ptr(leaf, slot,
4470 struct btrfs_dev_item);
Chris Mason0d81ba52008-03-24 15:02:07 -04004471 ret = read_one_dev(root, leaf, dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05004472 if (ret)
4473 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04004474 }
4475 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
4476 struct btrfs_chunk *chunk;
4477 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
4478 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05004479 if (ret)
4480 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04004481 }
4482 path->slots[0]++;
4483 }
4484 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
4485 key.objectid = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004486 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004487 goto again;
4488 }
Chris Mason0b86a832008-03-24 15:01:56 -04004489 ret = 0;
4490error:
Li Zefanb367e472011-12-07 11:38:24 +08004491 unlock_chunks(root);
4492 mutex_unlock(&uuid_mutex);
4493
Yan Zheng2b820322008-11-17 21:11:30 -05004494 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004495 return ret;
4496}