blob: c22784b989b74324bc9cbf687b0384542cc95b07 [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>
Chris Mason593060d2008-03-25 16:50:33 -040025#include <asm/div64.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050026#include "compat.h"
Chris Mason0b86a832008-03-24 15:01:56 -040027#include "ctree.h"
28#include "extent_map.h"
29#include "disk-io.h"
30#include "transaction.h"
31#include "print-tree.h"
32#include "volumes.h"
Chris Mason8b712842008-06-11 16:50:36 -040033#include "async-thread.h"
Chris Mason0b86a832008-03-24 15:01:56 -040034
Chris Mason593060d2008-03-25 16:50:33 -040035struct map_lookup {
36 u64 type;
37 int io_align;
38 int io_width;
39 int stripe_len;
40 int sector_size;
41 int num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -040042 int sub_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -040043 struct btrfs_bio_stripe stripes[];
Chris Mason593060d2008-03-25 16:50:33 -040044};
45
Yan Zheng2b820322008-11-17 21:11:30 -050046static int init_first_rw_device(struct btrfs_trans_handle *trans,
47 struct btrfs_root *root,
48 struct btrfs_device *device);
49static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
50
Chris Mason593060d2008-03-25 16:50:33 -040051#define map_lookup_size(n) (sizeof(struct map_lookup) + \
Chris Masoncea9e442008-04-09 16:28:12 -040052 (sizeof(struct btrfs_bio_stripe) * (n)))
Chris Mason593060d2008-03-25 16:50:33 -040053
Chris Mason8a4b83c2008-03-24 15:02:07 -040054static DEFINE_MUTEX(uuid_mutex);
55static LIST_HEAD(fs_uuids);
56
Chris Masona061fc82008-05-07 11:43:44 -040057void btrfs_lock_volumes(void)
58{
59 mutex_lock(&uuid_mutex);
60}
61
62void btrfs_unlock_volumes(void)
63{
64 mutex_unlock(&uuid_mutex);
65}
66
Chris Mason7d9eb122008-07-08 14:19:17 -040067static void lock_chunks(struct btrfs_root *root)
68{
Chris Mason7d9eb122008-07-08 14:19:17 -040069 mutex_lock(&root->fs_info->chunk_mutex);
70}
71
72static void unlock_chunks(struct btrfs_root *root)
73{
Chris Mason7d9eb122008-07-08 14:19:17 -040074 mutex_unlock(&root->fs_info->chunk_mutex);
75}
76
Yan Zhenge4404d62008-12-12 10:03:26 -050077static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
78{
79 struct btrfs_device *device;
80 WARN_ON(fs_devices->opened);
81 while (!list_empty(&fs_devices->devices)) {
82 device = list_entry(fs_devices->devices.next,
83 struct btrfs_device, dev_list);
84 list_del(&device->dev_list);
85 kfree(device->name);
86 kfree(device);
87 }
88 kfree(fs_devices);
89}
90
Chris Mason8a4b83c2008-03-24 15:02:07 -040091int btrfs_cleanup_fs_uuids(void)
92{
93 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -040094
Yan Zheng2b820322008-11-17 21:11:30 -050095 while (!list_empty(&fs_uuids)) {
96 fs_devices = list_entry(fs_uuids.next,
97 struct btrfs_fs_devices, list);
98 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -050099 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400100 }
101 return 0;
102}
103
Chris Masona1b32a52008-09-05 16:09:51 -0400104static noinline struct btrfs_device *__find_device(struct list_head *head,
105 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400106{
107 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400108
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500109 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400110 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400111 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400112 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400113 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400114 }
115 return NULL;
116}
117
Chris Masona1b32a52008-09-05 16:09:51 -0400118static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400119{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400120 struct btrfs_fs_devices *fs_devices;
121
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500122 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400123 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
124 return fs_devices;
125 }
126 return NULL;
127}
128
Chris Masonffbd5172009-04-20 15:50:09 -0400129static void requeue_list(struct btrfs_pending_bios *pending_bios,
130 struct bio *head, struct bio *tail)
131{
132
133 struct bio *old_head;
134
135 old_head = pending_bios->head;
136 pending_bios->head = head;
137 if (pending_bios->tail)
138 tail->bi_next = old_head;
139 else
140 pending_bios->tail = tail;
141}
142
Chris Mason8b712842008-06-11 16:50:36 -0400143/*
144 * we try to collect pending bios for a device so we don't get a large
145 * number of procs sending bios down to the same device. This greatly
146 * improves the schedulers ability to collect and merge the bios.
147 *
148 * But, it also turns into a long list of bios to process and that is sure
149 * to eventually make the worker thread block. The solution here is to
150 * make some progress and then put this work struct back at the end of
151 * the list if the block device is congested. This way, multiple devices
152 * can make progress from a single worker thread.
153 */
Chris Masond3977122009-01-05 21:25:51 -0500154static noinline int run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400155{
156 struct bio *pending;
157 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400158 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400159 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400160 struct bio *tail;
161 struct bio *cur;
162 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400163 unsigned long num_run;
164 unsigned long num_sync_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400165 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400166 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400167 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400168 int force_reg = 0;
Chris Mason8b712842008-06-11 16:50:36 -0400169
Chris Masonbedf7622009-04-03 10:32:58 -0400170 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400171 fs_info = device->dev_root->fs_info;
172 limit = btrfs_async_submit_limit(fs_info);
173 limit = limit * 2 / 3;
174
Chris Masonffbd5172009-04-20 15:50:09 -0400175 /* we want to make sure that every time we switch from the sync
176 * list to the normal list, we unplug
177 */
178 num_sync_run = 0;
179
Chris Mason8b712842008-06-11 16:50:36 -0400180loop:
181 spin_lock(&device->io_lock);
182
Chris Masona6837052009-02-04 09:19:41 -0500183loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400184 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400185
Chris Mason8b712842008-06-11 16:50:36 -0400186 /* take all the bios off the list at once and process them
187 * later on (without the lock held). But, remember the
188 * tail and other pointers so the bios can be properly reinserted
189 * into the list if we hit congestion
190 */
Chris Masond84275c2009-06-09 15:39:08 -0400191 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400192 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400193 force_reg = 1;
194 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400195 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400196 force_reg = 0;
197 }
Chris Masonffbd5172009-04-20 15:50:09 -0400198
199 pending = pending_bios->head;
200 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400201 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400202
203 /*
204 * if pending was null this time around, no bios need processing
205 * at all and we can stop. Otherwise it'll loop back up again
206 * and do an additional check so no bios are missed.
207 *
208 * device->running_pending is used to synchronize with the
209 * schedule_bio code.
210 */
Chris Masonffbd5172009-04-20 15:50:09 -0400211 if (device->pending_sync_bios.head == NULL &&
212 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400213 again = 0;
214 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400215 } else {
216 again = 1;
217 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400218 }
Chris Masonffbd5172009-04-20 15:50:09 -0400219
220 pending_bios->head = NULL;
221 pending_bios->tail = NULL;
222
Chris Mason8b712842008-06-11 16:50:36 -0400223 spin_unlock(&device->io_lock);
224
Chris Masonffbd5172009-04-20 15:50:09 -0400225 /*
226 * if we're doing the regular priority list, make sure we unplug
227 * for any high prio bios we've sent down
228 */
229 if (pending_bios == &device->pending_bios && num_sync_run > 0) {
230 num_sync_run = 0;
231 blk_run_backing_dev(bdi, NULL);
232 }
233
Chris Masond3977122009-01-05 21:25:51 -0500234 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400235
236 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400237 /* we want to work on both lists, but do more bios on the
238 * sync list than the regular list
239 */
240 if ((num_run > 32 &&
241 pending_bios != &device->pending_sync_bios &&
242 device->pending_sync_bios.head) ||
243 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
244 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400245 spin_lock(&device->io_lock);
246 requeue_list(pending_bios, pending, tail);
247 goto loop_lock;
248 }
249
Chris Mason8b712842008-06-11 16:50:36 -0400250 cur = pending;
251 pending = pending->bi_next;
252 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400253 atomic_dec(&fs_info->nr_async_bios);
254
255 if (atomic_read(&fs_info->nr_async_bios) < limit &&
256 waitqueue_active(&fs_info->async_submit_wait))
257 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400258
259 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400260
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200261 if (cur->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -0400262 num_sync_run++;
263
Chris Mason5ff7ba32010-03-15 10:21:30 -0400264 submit_bio(cur->bi_rw, cur);
265 num_run++;
266 batch_run++;
Chris Masonffbd5172009-04-20 15:50:09 -0400267 if (need_resched()) {
268 if (num_sync_run) {
269 blk_run_backing_dev(bdi, NULL);
270 num_sync_run = 0;
271 }
272 cond_resched();
273 }
Chris Mason8b712842008-06-11 16:50:36 -0400274
275 /*
276 * we made progress, there is more work to do and the bdi
277 * is now congested. Back off and let other work structs
278 * run instead
279 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400280 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500281 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400282 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400283
Chris Masonb765ead2009-04-03 10:27:10 -0400284 ioc = current->io_context;
285
286 /*
287 * the main goal here is that we don't want to
288 * block if we're going to be able to submit
289 * more requests without blocking.
290 *
291 * This code does two great things, it pokes into
292 * the elevator code from a filesystem _and_
293 * it makes assumptions about how batching works.
294 */
295 if (ioc && ioc->nr_batch_requests > 0 &&
296 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
297 (last_waited == 0 ||
298 ioc->last_waited == last_waited)) {
299 /*
300 * we want to go through our batch of
301 * requests and stop. So, we copy out
302 * the ioc->last_waited time and test
303 * against it before looping
304 */
305 last_waited = ioc->last_waited;
Chris Masonffbd5172009-04-20 15:50:09 -0400306 if (need_resched()) {
307 if (num_sync_run) {
308 blk_run_backing_dev(bdi, NULL);
309 num_sync_run = 0;
310 }
311 cond_resched();
312 }
Chris Masonb765ead2009-04-03 10:27:10 -0400313 continue;
314 }
Chris Mason8b712842008-06-11 16:50:36 -0400315 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400316 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500317 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400318
319 spin_unlock(&device->io_lock);
320 btrfs_requeue_work(&device->work);
321 goto done;
322 }
323 }
Chris Masonffbd5172009-04-20 15:50:09 -0400324
325 if (num_sync_run) {
326 num_sync_run = 0;
327 blk_run_backing_dev(bdi, NULL);
328 }
Chris Masonbedf7622009-04-03 10:32:58 -0400329 /*
330 * IO has already been through a long path to get here. Checksumming,
331 * async helper threads, perhaps compression. We've done a pretty
332 * good job of collecting a batch of IO and should just unplug
333 * the device right away.
334 *
335 * This will help anyone who is waiting on the IO, they might have
336 * already unplugged, but managed to do so before the bio they
337 * cared about found its way down here.
338 */
339 blk_run_backing_dev(bdi, NULL);
Chris Mason51684082010-03-10 15:33:32 -0500340
341 cond_resched();
342 if (again)
343 goto loop;
344
345 spin_lock(&device->io_lock);
346 if (device->pending_bios.head || device->pending_sync_bios.head)
347 goto loop_lock;
348 spin_unlock(&device->io_lock);
349
Chris Mason8b712842008-06-11 16:50:36 -0400350done:
351 return 0;
352}
353
Christoph Hellwigb2950862008-12-02 09:54:17 -0500354static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400355{
356 struct btrfs_device *device;
357
358 device = container_of(work, struct btrfs_device, work);
359 run_scheduled_bios(device);
360}
361
Chris Masona1b32a52008-09-05 16:09:51 -0400362static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400363 struct btrfs_super_block *disk_super,
364 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
365{
366 struct btrfs_device *device;
367 struct btrfs_fs_devices *fs_devices;
368 u64 found_transid = btrfs_super_generation(disk_super);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000369 char *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400370
371 fs_devices = find_fsid(disk_super->fsid);
372 if (!fs_devices) {
Chris Mason515dc322008-05-16 13:30:15 -0400373 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400374 if (!fs_devices)
375 return -ENOMEM;
376 INIT_LIST_HEAD(&fs_devices->devices);
Chris Masonb3075712008-04-22 09:22:07 -0400377 INIT_LIST_HEAD(&fs_devices->alloc_list);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400378 list_add(&fs_devices->list, &fs_uuids);
379 memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
380 fs_devices->latest_devid = devid;
381 fs_devices->latest_trans = found_transid;
Chris Masone5e9a522009-06-10 15:17:02 -0400382 mutex_init(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400383 device = NULL;
384 } else {
Chris Masona4437552008-04-18 10:29:38 -0400385 device = __find_device(&fs_devices->devices, devid,
386 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400387 }
388 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500389 if (fs_devices->opened)
390 return -EBUSY;
391
Chris Mason8a4b83c2008-03-24 15:02:07 -0400392 device = kzalloc(sizeof(*device), GFP_NOFS);
393 if (!device) {
394 /* we can safely leave the fs_devices entry around */
395 return -ENOMEM;
396 }
397 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -0400398 device->work.func = pending_bios_fn;
Chris Masona4437552008-04-18 10:29:38 -0400399 memcpy(device->uuid, disk_super->dev_item.uuid,
400 BTRFS_UUID_SIZE);
Chris Masonf2984462008-04-10 16:19:33 -0400401 device->barriers = 1;
Chris Masonb248a412008-04-14 09:48:18 -0400402 spin_lock_init(&device->io_lock);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400403 device->name = kstrdup(path, GFP_NOFS);
404 if (!device->name) {
405 kfree(device);
406 return -ENOMEM;
407 }
Yan Zheng2b820322008-11-17 21:11:30 -0500408 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -0400409
410 mutex_lock(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400411 list_add(&device->dev_list, &fs_devices->devices);
Chris Masone5e9a522009-06-10 15:17:02 -0400412 mutex_unlock(&fs_devices->device_list_mutex);
413
Yan Zheng2b820322008-11-17 21:11:30 -0500414 device->fs_devices = fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400415 fs_devices->num_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -0500416 } else if (!device->name || strcmp(device->name, path)) {
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000417 name = kstrdup(path, GFP_NOFS);
418 if (!name)
419 return -ENOMEM;
420 kfree(device->name);
421 device->name = name;
Chris Masoncd02dca2010-12-13 14:56:23 -0500422 if (device->missing) {
423 fs_devices->missing_devices--;
424 device->missing = 0;
425 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400426 }
427
428 if (found_transid > fs_devices->latest_trans) {
429 fs_devices->latest_devid = devid;
430 fs_devices->latest_trans = found_transid;
431 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400432 *fs_devices_ret = fs_devices;
433 return 0;
434}
435
Yan Zhenge4404d62008-12-12 10:03:26 -0500436static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
437{
438 struct btrfs_fs_devices *fs_devices;
439 struct btrfs_device *device;
440 struct btrfs_device *orig_dev;
441
442 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
443 if (!fs_devices)
444 return ERR_PTR(-ENOMEM);
445
446 INIT_LIST_HEAD(&fs_devices->devices);
447 INIT_LIST_HEAD(&fs_devices->alloc_list);
448 INIT_LIST_HEAD(&fs_devices->list);
Chris Masone5e9a522009-06-10 15:17:02 -0400449 mutex_init(&fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500450 fs_devices->latest_devid = orig->latest_devid;
451 fs_devices->latest_trans = orig->latest_trans;
452 memcpy(fs_devices->fsid, orig->fsid, sizeof(fs_devices->fsid));
453
Chris Masone5e9a522009-06-10 15:17:02 -0400454 mutex_lock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500455 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
456 device = kzalloc(sizeof(*device), GFP_NOFS);
457 if (!device)
458 goto error;
459
460 device->name = kstrdup(orig_dev->name, GFP_NOFS);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400461 if (!device->name) {
462 kfree(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500463 goto error;
Julia Lawallfd2696f2009-09-29 13:51:04 -0400464 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500465
466 device->devid = orig_dev->devid;
467 device->work.func = pending_bios_fn;
468 memcpy(device->uuid, orig_dev->uuid, sizeof(device->uuid));
469 device->barriers = 1;
470 spin_lock_init(&device->io_lock);
471 INIT_LIST_HEAD(&device->dev_list);
472 INIT_LIST_HEAD(&device->dev_alloc_list);
473
474 list_add(&device->dev_list, &fs_devices->devices);
475 device->fs_devices = fs_devices;
476 fs_devices->num_devices++;
477 }
Chris Masone5e9a522009-06-10 15:17:02 -0400478 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500479 return fs_devices;
480error:
Chris Masone5e9a522009-06-10 15:17:02 -0400481 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500482 free_fs_devices(fs_devices);
483 return ERR_PTR(-ENOMEM);
484}
485
Chris Masondfe25022008-05-13 13:46:40 -0400486int btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices)
487{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500488 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400489
490 mutex_lock(&uuid_mutex);
491again:
Chris Masone5e9a522009-06-10 15:17:02 -0400492 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500493 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Yan Zheng2b820322008-11-17 21:11:30 -0500494 if (device->in_fs_metadata)
495 continue;
496
497 if (device->bdev) {
Chris Mason15916de2008-11-19 21:17:22 -0500498 close_bdev_exclusive(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500499 device->bdev = NULL;
500 fs_devices->open_devices--;
501 }
502 if (device->writeable) {
503 list_del_init(&device->dev_alloc_list);
504 device->writeable = 0;
505 fs_devices->rw_devices--;
506 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500507 list_del_init(&device->dev_list);
508 fs_devices->num_devices--;
509 kfree(device->name);
510 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400511 }
Chris Masone5e9a522009-06-10 15:17:02 -0400512 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -0500513
514 if (fs_devices->seed) {
515 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500516 goto again;
517 }
518
Chris Masondfe25022008-05-13 13:46:40 -0400519 mutex_unlock(&uuid_mutex);
520 return 0;
521}
Chris Masona0af4692008-05-13 16:03:06 -0400522
Yan Zheng2b820322008-11-17 21:11:30 -0500523static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400524{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400525 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500526
Yan Zheng2b820322008-11-17 21:11:30 -0500527 if (--fs_devices->opened > 0)
528 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400529
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500530 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400531 if (device->bdev) {
Chris Mason15916de2008-11-19 21:17:22 -0500532 close_bdev_exclusive(device->bdev, device->mode);
Chris Masona0af4692008-05-13 16:03:06 -0400533 fs_devices->open_devices--;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400534 }
Yan Zheng2b820322008-11-17 21:11:30 -0500535 if (device->writeable) {
536 list_del_init(&device->dev_alloc_list);
537 fs_devices->rw_devices--;
538 }
539
Chris Mason8a4b83c2008-03-24 15:02:07 -0400540 device->bdev = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500541 device->writeable = 0;
Chris Masondfe25022008-05-13 13:46:40 -0400542 device->in_fs_metadata = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400543 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500544 WARN_ON(fs_devices->open_devices);
545 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500546 fs_devices->opened = 0;
547 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500548
Chris Mason8a4b83c2008-03-24 15:02:07 -0400549 return 0;
550}
551
Yan Zheng2b820322008-11-17 21:11:30 -0500552int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
553{
Yan Zhenge4404d62008-12-12 10:03:26 -0500554 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500555 int ret;
556
557 mutex_lock(&uuid_mutex);
558 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500559 if (!fs_devices->opened) {
560 seed_devices = fs_devices->seed;
561 fs_devices->seed = NULL;
562 }
Yan Zheng2b820322008-11-17 21:11:30 -0500563 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500564
565 while (seed_devices) {
566 fs_devices = seed_devices;
567 seed_devices = fs_devices->seed;
568 __btrfs_close_devices(fs_devices);
569 free_fs_devices(fs_devices);
570 }
Yan Zheng2b820322008-11-17 21:11:30 -0500571 return ret;
572}
573
Yan Zhenge4404d62008-12-12 10:03:26 -0500574static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
575 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400576{
577 struct block_device *bdev;
578 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400579 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400580 struct block_device *latest_bdev = NULL;
581 struct buffer_head *bh;
582 struct btrfs_super_block *disk_super;
583 u64 latest_devid = 0;
584 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400585 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500586 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400587 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400588
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500589 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400590 if (device->bdev)
591 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400592 if (!device->name)
593 continue;
594
Chris Mason15916de2008-11-19 21:17:22 -0500595 bdev = open_bdev_exclusive(device->name, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400596 if (IS_ERR(bdev)) {
Chris Masond3977122009-01-05 21:25:51 -0500597 printk(KERN_INFO "open %s failed\n", device->name);
Chris Masona0af4692008-05-13 16:03:06 -0400598 goto error;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400599 }
Chris Masona061fc82008-05-07 11:43:44 -0400600 set_blocksize(bdev, 4096);
Chris Masona0af4692008-05-13 16:03:06 -0400601
Yan Zhenga512bbf2008-12-08 16:46:26 -0500602 bh = btrfs_read_dev_super(bdev);
Chris Masona0af4692008-05-13 16:03:06 -0400603 if (!bh)
604 goto error_close;
605
606 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000607 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400608 if (devid != device->devid)
609 goto error_brelse;
610
Yan Zheng2b820322008-11-17 21:11:30 -0500611 if (memcmp(device->uuid, disk_super->dev_item.uuid,
612 BTRFS_UUID_SIZE))
613 goto error_brelse;
614
615 device->generation = btrfs_super_generation(disk_super);
616 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400617 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500618 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400619 latest_bdev = bdev;
620 }
621
Yan Zheng2b820322008-11-17 21:11:30 -0500622 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
623 device->writeable = 0;
624 } else {
625 device->writeable = !bdev_read_only(bdev);
626 seeding = 0;
627 }
628
Chris Mason8a4b83c2008-03-24 15:02:07 -0400629 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400630 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500631 device->mode = flags;
632
Chris Masonc2898112009-06-10 09:51:32 -0400633 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
634 fs_devices->rotating = 1;
635
Chris Masona0af4692008-05-13 16:03:06 -0400636 fs_devices->open_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -0500637 if (device->writeable) {
638 fs_devices->rw_devices++;
639 list_add(&device->dev_alloc_list,
640 &fs_devices->alloc_list);
641 }
Chris Masona0af4692008-05-13 16:03:06 -0400642 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400643
Chris Masona0af4692008-05-13 16:03:06 -0400644error_brelse:
645 brelse(bh);
646error_close:
Christoph Hellwig97288f22008-12-02 06:36:09 -0500647 close_bdev_exclusive(bdev, FMODE_READ);
Chris Masona0af4692008-05-13 16:03:06 -0400648error:
649 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400650 }
Chris Masona0af4692008-05-13 16:03:06 -0400651 if (fs_devices->open_devices == 0) {
652 ret = -EIO;
653 goto out;
654 }
Yan Zheng2b820322008-11-17 21:11:30 -0500655 fs_devices->seeding = seeding;
656 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400657 fs_devices->latest_bdev = latest_bdev;
658 fs_devices->latest_devid = latest_devid;
659 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500660 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400661out:
Yan Zheng2b820322008-11-17 21:11:30 -0500662 return ret;
663}
664
665int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500666 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500667{
668 int ret;
669
670 mutex_lock(&uuid_mutex);
671 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500672 fs_devices->opened++;
673 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500674 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500675 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500676 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400677 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400678 return ret;
679}
680
Christoph Hellwig97288f22008-12-02 06:36:09 -0500681int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400682 struct btrfs_fs_devices **fs_devices_ret)
683{
684 struct btrfs_super_block *disk_super;
685 struct block_device *bdev;
686 struct buffer_head *bh;
687 int ret;
688 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400689 u64 transid;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400690
691 mutex_lock(&uuid_mutex);
692
Chris Mason15916de2008-11-19 21:17:22 -0500693 bdev = open_bdev_exclusive(path, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400694
695 if (IS_ERR(bdev)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400696 ret = PTR_ERR(bdev);
697 goto error;
698 }
699
700 ret = set_blocksize(bdev, 4096);
701 if (ret)
702 goto error_close;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500703 bh = btrfs_read_dev_super(bdev);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400704 if (!bh) {
705 ret = -EIO;
706 goto error_close;
707 }
708 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000709 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400710 transid = btrfs_super_generation(disk_super);
Chris Mason7ae9c092008-04-18 10:29:49 -0400711 if (disk_super->label[0])
Chris Masond3977122009-01-05 21:25:51 -0500712 printk(KERN_INFO "device label %s ", disk_super->label);
Chris Mason7ae9c092008-04-18 10:29:49 -0400713 else {
714 /* FIXME, make a readl uuid parser */
Chris Masond3977122009-01-05 21:25:51 -0500715 printk(KERN_INFO "device fsid %llx-%llx ",
Chris Mason7ae9c092008-04-18 10:29:49 -0400716 *(unsigned long long *)disk_super->fsid,
717 *(unsigned long long *)(disk_super->fsid + 8));
718 }
Roland Dreier119e10c2009-01-21 10:49:16 -0500719 printk(KERN_CONT "devid %llu transid %llu %s\n",
Chris Masond3977122009-01-05 21:25:51 -0500720 (unsigned long long)devid, (unsigned long long)transid, path);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400721 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
722
Chris Mason8a4b83c2008-03-24 15:02:07 -0400723 brelse(bh);
724error_close:
Chris Mason15916de2008-11-19 21:17:22 -0500725 close_bdev_exclusive(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400726error:
727 mutex_unlock(&uuid_mutex);
728 return ret;
729}
Chris Mason0b86a832008-03-24 15:01:56 -0400730
731/*
Miao Xie7bfc8372011-01-05 10:07:26 +0000732 * find_free_dev_extent - find free space in the specified device
733 * @trans: transaction handler
734 * @device: the device which we search the free space in
735 * @num_bytes: the size of the free space that we need
736 * @start: store the start of the free space.
737 * @len: the size of the free space. that we find, or the size of the max
738 * free space if we don't find suitable free space
739 *
Chris Mason0b86a832008-03-24 15:01:56 -0400740 * this uses a pretty simple search, the expectation is that it is
741 * called very infrequently and that a given device has a small number
742 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +0000743 *
744 * @start is used to store the start of the free space if we find. But if we
745 * don't find suitable free space, it will be used to store the start position
746 * of the max free space.
747 *
748 * @len is used to store the size of the free space that we find.
749 * But if we don't find suitable free space, it is used to store the size of
750 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -0400751 */
Josef Bacikba1bf482009-09-11 16:11:19 -0400752int find_free_dev_extent(struct btrfs_trans_handle *trans,
753 struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +0000754 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -0400755{
756 struct btrfs_key key;
757 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +0000758 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500759 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +0000760 u64 hole_size;
761 u64 max_hole_start;
762 u64 max_hole_size;
763 u64 extent_end;
764 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -0400765 u64 search_end = device->total_bytes;
766 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +0000767 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400768 struct extent_buffer *l;
769
Chris Mason0b86a832008-03-24 15:01:56 -0400770 /* FIXME use last free of some kind */
771
Chris Mason8a4b83c2008-03-24 15:02:07 -0400772 /* we don't want to overwrite the superblock on the drive,
773 * so we make sure to start at an offset of at least 1MB
774 */
Miao Xie7bfc8372011-01-05 10:07:26 +0000775 search_start = 1024 * 1024;
Chris Mason8f18cf12008-04-25 16:53:30 -0400776
Miao Xie7bfc8372011-01-05 10:07:26 +0000777 if (root->fs_info->alloc_start + num_bytes <= search_end)
Chris Mason8f18cf12008-04-25 16:53:30 -0400778 search_start = max(root->fs_info->alloc_start, search_start);
779
Miao Xie7bfc8372011-01-05 10:07:26 +0000780 max_hole_start = search_start;
781 max_hole_size = 0;
782
783 if (search_start >= search_end) {
784 ret = -ENOSPC;
785 goto error;
786 }
787
788 path = btrfs_alloc_path();
789 if (!path) {
790 ret = -ENOMEM;
791 goto error;
792 }
793 path->reada = 2;
794
Chris Mason0b86a832008-03-24 15:01:56 -0400795 key.objectid = device->devid;
796 key.offset = search_start;
797 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +0000798
Chris Mason0b86a832008-03-24 15:01:56 -0400799 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
800 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000801 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400802 if (ret > 0) {
803 ret = btrfs_previous_item(root, path, key.objectid, key.type);
804 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000805 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400806 }
Miao Xie7bfc8372011-01-05 10:07:26 +0000807
Chris Mason0b86a832008-03-24 15:01:56 -0400808 while (1) {
809 l = path->nodes[0];
810 slot = path->slots[0];
811 if (slot >= btrfs_header_nritems(l)) {
812 ret = btrfs_next_leaf(root, path);
813 if (ret == 0)
814 continue;
815 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000816 goto out;
817
818 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400819 }
820 btrfs_item_key_to_cpu(l, &key, slot);
821
822 if (key.objectid < device->devid)
823 goto next;
824
825 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +0000826 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400827
Chris Masond3977122009-01-05 21:25:51 -0500828 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400829 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400830
Miao Xie7bfc8372011-01-05 10:07:26 +0000831 if (key.offset > search_start) {
832 hole_size = key.offset - search_start;
833
834 if (hole_size > max_hole_size) {
835 max_hole_start = search_start;
836 max_hole_size = hole_size;
837 }
838
839 /*
840 * If this free space is greater than which we need,
841 * it must be the max free space that we have found
842 * until now, so max_hole_start must point to the start
843 * of this free space and the length of this free space
844 * is stored in max_hole_size. Thus, we return
845 * max_hole_start and max_hole_size and go back to the
846 * caller.
847 */
848 if (hole_size >= num_bytes) {
849 ret = 0;
850 goto out;
851 }
852 }
853
Chris Mason0b86a832008-03-24 15:01:56 -0400854 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +0000855 extent_end = key.offset + btrfs_dev_extent_length(l,
856 dev_extent);
857 if (extent_end > search_start)
858 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400859next:
860 path->slots[0]++;
861 cond_resched();
862 }
Chris Mason0b86a832008-03-24 15:01:56 -0400863
Miao Xie7bfc8372011-01-05 10:07:26 +0000864 hole_size = search_end- search_start;
865 if (hole_size > max_hole_size) {
866 max_hole_start = search_start;
867 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -0400868 }
Chris Mason0b86a832008-03-24 15:01:56 -0400869
Miao Xie7bfc8372011-01-05 10:07:26 +0000870 /* See above. */
871 if (hole_size < num_bytes)
872 ret = -ENOSPC;
873 else
874 ret = 0;
875
876out:
Yan Zheng2b820322008-11-17 21:11:30 -0500877 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +0000878error:
879 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +0000880 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +0000881 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -0400882 return ret;
883}
884
Christoph Hellwigb2950862008-12-02 09:54:17 -0500885static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -0400886 struct btrfs_device *device,
887 u64 start)
888{
889 int ret;
890 struct btrfs_path *path;
891 struct btrfs_root *root = device->dev_root;
892 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -0400893 struct btrfs_key found_key;
894 struct extent_buffer *leaf = NULL;
895 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -0400896
897 path = btrfs_alloc_path();
898 if (!path)
899 return -ENOMEM;
900
901 key.objectid = device->devid;
902 key.offset = start;
903 key.type = BTRFS_DEV_EXTENT_KEY;
904
905 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -0400906 if (ret > 0) {
907 ret = btrfs_previous_item(root, path, key.objectid,
908 BTRFS_DEV_EXTENT_KEY);
909 BUG_ON(ret);
910 leaf = path->nodes[0];
911 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
912 extent = btrfs_item_ptr(leaf, path->slots[0],
913 struct btrfs_dev_extent);
914 BUG_ON(found_key.offset > start || found_key.offset +
915 btrfs_dev_extent_length(leaf, extent) < start);
916 ret = 0;
917 } else if (ret == 0) {
918 leaf = path->nodes[0];
919 extent = btrfs_item_ptr(leaf, path->slots[0],
920 struct btrfs_dev_extent);
921 }
Chris Mason8f18cf12008-04-25 16:53:30 -0400922 BUG_ON(ret);
923
Chris Masondfe25022008-05-13 13:46:40 -0400924 if (device->bytes_used > 0)
925 device->bytes_used -= btrfs_dev_extent_length(leaf, extent);
Chris Mason8f18cf12008-04-25 16:53:30 -0400926 ret = btrfs_del_item(trans, root, path);
927 BUG_ON(ret);
928
929 btrfs_free_path(path);
930 return ret;
931}
932
Yan Zheng2b820322008-11-17 21:11:30 -0500933int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -0400934 struct btrfs_device *device,
Chris Masone17cade2008-04-15 15:41:47 -0400935 u64 chunk_tree, u64 chunk_objectid,
Yan Zheng2b820322008-11-17 21:11:30 -0500936 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -0400937{
938 int ret;
939 struct btrfs_path *path;
940 struct btrfs_root *root = device->dev_root;
941 struct btrfs_dev_extent *extent;
942 struct extent_buffer *leaf;
943 struct btrfs_key key;
944
Chris Masondfe25022008-05-13 13:46:40 -0400945 WARN_ON(!device->in_fs_metadata);
Chris Mason0b86a832008-03-24 15:01:56 -0400946 path = btrfs_alloc_path();
947 if (!path)
948 return -ENOMEM;
949
Chris Mason0b86a832008-03-24 15:01:56 -0400950 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500951 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400952 key.type = BTRFS_DEV_EXTENT_KEY;
953 ret = btrfs_insert_empty_item(trans, root, path, &key,
954 sizeof(*extent));
955 BUG_ON(ret);
956
957 leaf = path->nodes[0];
958 extent = btrfs_item_ptr(leaf, path->slots[0],
959 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -0400960 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
961 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
962 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
963
964 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
965 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
966 BTRFS_UUID_SIZE);
967
Chris Mason0b86a832008-03-24 15:01:56 -0400968 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
969 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -0400970 btrfs_free_path(path);
971 return ret;
972}
973
Chris Masona1b32a52008-09-05 16:09:51 -0400974static noinline int find_next_chunk(struct btrfs_root *root,
975 u64 objectid, u64 *offset)
Chris Mason0b86a832008-03-24 15:01:56 -0400976{
977 struct btrfs_path *path;
978 int ret;
979 struct btrfs_key key;
Chris Masone17cade2008-04-15 15:41:47 -0400980 struct btrfs_chunk *chunk;
Chris Mason0b86a832008-03-24 15:01:56 -0400981 struct btrfs_key found_key;
982
983 path = btrfs_alloc_path();
984 BUG_ON(!path);
985
Chris Masone17cade2008-04-15 15:41:47 -0400986 key.objectid = objectid;
Chris Mason0b86a832008-03-24 15:01:56 -0400987 key.offset = (u64)-1;
988 key.type = BTRFS_CHUNK_ITEM_KEY;
989
990 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
991 if (ret < 0)
992 goto error;
993
994 BUG_ON(ret == 0);
995
996 ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
997 if (ret) {
Chris Masone17cade2008-04-15 15:41:47 -0400998 *offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400999 } else {
1000 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1001 path->slots[0]);
Chris Masone17cade2008-04-15 15:41:47 -04001002 if (found_key.objectid != objectid)
1003 *offset = 0;
1004 else {
1005 chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
1006 struct btrfs_chunk);
1007 *offset = found_key.offset +
1008 btrfs_chunk_length(path->nodes[0], chunk);
1009 }
Chris Mason0b86a832008-03-24 15:01:56 -04001010 }
1011 ret = 0;
1012error:
1013 btrfs_free_path(path);
1014 return ret;
1015}
1016
Yan Zheng2b820322008-11-17 21:11:30 -05001017static noinline int find_next_devid(struct btrfs_root *root, u64 *objectid)
Chris Mason0b86a832008-03-24 15:01:56 -04001018{
1019 int ret;
1020 struct btrfs_key key;
1021 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001022 struct btrfs_path *path;
1023
1024 root = root->fs_info->chunk_root;
1025
1026 path = btrfs_alloc_path();
1027 if (!path)
1028 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001029
1030 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1031 key.type = BTRFS_DEV_ITEM_KEY;
1032 key.offset = (u64)-1;
1033
1034 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1035 if (ret < 0)
1036 goto error;
1037
1038 BUG_ON(ret == 0);
1039
1040 ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
1041 BTRFS_DEV_ITEM_KEY);
1042 if (ret) {
1043 *objectid = 1;
1044 } else {
1045 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1046 path->slots[0]);
1047 *objectid = found_key.offset + 1;
1048 }
1049 ret = 0;
1050error:
Yan Zheng2b820322008-11-17 21:11:30 -05001051 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001052 return ret;
1053}
1054
1055/*
1056 * the device information is stored in the chunk root
1057 * the btrfs_device struct should be fully filled in
1058 */
1059int btrfs_add_device(struct btrfs_trans_handle *trans,
1060 struct btrfs_root *root,
1061 struct btrfs_device *device)
1062{
1063 int ret;
1064 struct btrfs_path *path;
1065 struct btrfs_dev_item *dev_item;
1066 struct extent_buffer *leaf;
1067 struct btrfs_key key;
1068 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001069
1070 root = root->fs_info->chunk_root;
1071
1072 path = btrfs_alloc_path();
1073 if (!path)
1074 return -ENOMEM;
1075
Chris Mason0b86a832008-03-24 15:01:56 -04001076 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1077 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001078 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001079
1080 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001081 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001082 if (ret)
1083 goto out;
1084
1085 leaf = path->nodes[0];
1086 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1087
1088 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001089 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001090 btrfs_set_device_type(leaf, dev_item, device->type);
1091 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1092 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1093 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001094 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1095 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001096 btrfs_set_device_group(leaf, dev_item, 0);
1097 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1098 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001099 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001100
Chris Mason0b86a832008-03-24 15:01:56 -04001101 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001102 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05001103 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1104 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001105 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001106
Yan Zheng2b820322008-11-17 21:11:30 -05001107 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001108out:
1109 btrfs_free_path(path);
1110 return ret;
1111}
Chris Mason8f18cf12008-04-25 16:53:30 -04001112
Chris Masona061fc82008-05-07 11:43:44 -04001113static int btrfs_rm_dev_item(struct btrfs_root *root,
1114 struct btrfs_device *device)
1115{
1116 int ret;
1117 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001118 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001119 struct btrfs_trans_handle *trans;
1120
1121 root = root->fs_info->chunk_root;
1122
1123 path = btrfs_alloc_path();
1124 if (!path)
1125 return -ENOMEM;
1126
Yan, Zhenga22285a2010-05-16 10:48:46 -04001127 trans = btrfs_start_transaction(root, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001128 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1129 key.type = BTRFS_DEV_ITEM_KEY;
1130 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001131 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001132
1133 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1134 if (ret < 0)
1135 goto out;
1136
1137 if (ret > 0) {
1138 ret = -ENOENT;
1139 goto out;
1140 }
1141
1142 ret = btrfs_del_item(trans, root, path);
1143 if (ret)
1144 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001145out:
1146 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001147 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001148 btrfs_commit_transaction(trans, root);
1149 return ret;
1150}
1151
1152int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1153{
1154 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001155 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001156 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001157 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001158 struct btrfs_super_block *disk_super;
1159 u64 all_avail;
1160 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001161 u64 num_devices;
1162 u8 *dev_uuid;
Chris Masona061fc82008-05-07 11:43:44 -04001163 int ret = 0;
1164
Chris Masona061fc82008-05-07 11:43:44 -04001165 mutex_lock(&uuid_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001166 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001167
1168 all_avail = root->fs_info->avail_data_alloc_bits |
1169 root->fs_info->avail_system_alloc_bits |
1170 root->fs_info->avail_metadata_alloc_bits;
1171
1172 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001173 root->fs_info->fs_devices->num_devices <= 4) {
Chris Masond3977122009-01-05 21:25:51 -05001174 printk(KERN_ERR "btrfs: unable to go below four devices "
1175 "on raid10\n");
Chris Masona061fc82008-05-07 11:43:44 -04001176 ret = -EINVAL;
1177 goto out;
1178 }
1179
1180 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001181 root->fs_info->fs_devices->num_devices <= 2) {
Chris Masond3977122009-01-05 21:25:51 -05001182 printk(KERN_ERR "btrfs: unable to go below two "
1183 "devices on raid1\n");
Chris Masona061fc82008-05-07 11:43:44 -04001184 ret = -EINVAL;
1185 goto out;
1186 }
1187
Chris Masondfe25022008-05-13 13:46:40 -04001188 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001189 struct list_head *devices;
1190 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001191
Chris Masondfe25022008-05-13 13:46:40 -04001192 device = NULL;
1193 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001194 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001195 list_for_each_entry(tmp, devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001196 if (tmp->in_fs_metadata && !tmp->bdev) {
1197 device = tmp;
1198 break;
1199 }
1200 }
Chris Masone5e9a522009-06-10 15:17:02 -04001201 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masondfe25022008-05-13 13:46:40 -04001202 bdev = NULL;
1203 bh = NULL;
1204 disk_super = NULL;
1205 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05001206 printk(KERN_ERR "btrfs: no missing devices found to "
1207 "remove\n");
Chris Masondfe25022008-05-13 13:46:40 -04001208 goto out;
1209 }
Chris Masondfe25022008-05-13 13:46:40 -04001210 } else {
Christoph Hellwig97288f22008-12-02 06:36:09 -05001211 bdev = open_bdev_exclusive(device_path, FMODE_READ,
Chris Masondfe25022008-05-13 13:46:40 -04001212 root->fs_info->bdev_holder);
1213 if (IS_ERR(bdev)) {
1214 ret = PTR_ERR(bdev);
1215 goto out;
1216 }
1217
Yan Zheng2b820322008-11-17 21:11:30 -05001218 set_blocksize(bdev, 4096);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001219 bh = btrfs_read_dev_super(bdev);
Chris Masondfe25022008-05-13 13:46:40 -04001220 if (!bh) {
1221 ret = -EIO;
1222 goto error_close;
1223 }
1224 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001225 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001226 dev_uuid = disk_super->dev_item.uuid;
1227 device = btrfs_find_device(root, devid, dev_uuid,
1228 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001229 if (!device) {
1230 ret = -ENOENT;
1231 goto error_brelse;
1232 }
Chris Masondfe25022008-05-13 13:46:40 -04001233 }
Yan Zheng2b820322008-11-17 21:11:30 -05001234
1235 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Chris Masond3977122009-01-05 21:25:51 -05001236 printk(KERN_ERR "btrfs: unable to remove the only writeable "
1237 "device\n");
Yan Zheng2b820322008-11-17 21:11:30 -05001238 ret = -EINVAL;
1239 goto error_brelse;
1240 }
1241
1242 if (device->writeable) {
1243 list_del_init(&device->dev_alloc_list);
1244 root->fs_info->fs_devices->rw_devices--;
1245 }
Chris Masona061fc82008-05-07 11:43:44 -04001246
1247 ret = btrfs_shrink_device(device, 0);
1248 if (ret)
1249 goto error_brelse;
1250
Chris Masona061fc82008-05-07 11:43:44 -04001251 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1252 if (ret)
1253 goto error_brelse;
1254
Yan Zheng2b820322008-11-17 21:11:30 -05001255 device->in_fs_metadata = 0;
Chris Masone5e9a522009-06-10 15:17:02 -04001256
1257 /*
1258 * the device list mutex makes sure that we don't change
1259 * the device list while someone else is writing out all
1260 * the device supers.
1261 */
1262 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001263 list_del_init(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001264 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1265
Yan Zhenge4404d62008-12-12 10:03:26 -05001266 device->fs_devices->num_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001267
Chris Masoncd02dca2010-12-13 14:56:23 -05001268 if (device->missing)
1269 root->fs_info->fs_devices->missing_devices--;
1270
Yan Zheng2b820322008-11-17 21:11:30 -05001271 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1272 struct btrfs_device, dev_list);
1273 if (device->bdev == root->fs_info->sb->s_bdev)
1274 root->fs_info->sb->s_bdev = next_device->bdev;
1275 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1276 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1277
Yan Zhenge4404d62008-12-12 10:03:26 -05001278 if (device->bdev) {
1279 close_bdev_exclusive(device->bdev, device->mode);
1280 device->bdev = NULL;
1281 device->fs_devices->open_devices--;
1282 }
1283
Yan Zheng2b820322008-11-17 21:11:30 -05001284 num_devices = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
1285 btrfs_set_super_num_devices(&root->fs_info->super_copy, num_devices);
1286
Yan Zhenge4404d62008-12-12 10:03:26 -05001287 if (device->fs_devices->open_devices == 0) {
1288 struct btrfs_fs_devices *fs_devices;
1289 fs_devices = root->fs_info->fs_devices;
1290 while (fs_devices) {
1291 if (fs_devices->seed == device->fs_devices)
1292 break;
1293 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001294 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001295 fs_devices->seed = device->fs_devices->seed;
1296 device->fs_devices->seed = NULL;
1297 __btrfs_close_devices(device->fs_devices);
1298 free_fs_devices(device->fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001299 }
1300
1301 /*
1302 * at this point, the device is zero sized. We want to
1303 * remove it from the devices list and zero out the old super
1304 */
1305 if (device->writeable) {
Chris Masondfe25022008-05-13 13:46:40 -04001306 /* make sure this device isn't detected as part of
1307 * the FS anymore
1308 */
1309 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1310 set_buffer_dirty(bh);
1311 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001312 }
Chris Masona061fc82008-05-07 11:43:44 -04001313
Chris Masona061fc82008-05-07 11:43:44 -04001314 kfree(device->name);
1315 kfree(device);
1316 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001317
1318error_brelse:
1319 brelse(bh);
1320error_close:
Chris Masondfe25022008-05-13 13:46:40 -04001321 if (bdev)
Christoph Hellwig97288f22008-12-02 06:36:09 -05001322 close_bdev_exclusive(bdev, FMODE_READ);
Chris Masona061fc82008-05-07 11:43:44 -04001323out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001324 mutex_unlock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001325 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001326 return ret;
1327}
1328
Yan Zheng2b820322008-11-17 21:11:30 -05001329/*
1330 * does all the dirty work required for changing file system's UUID.
1331 */
1332static int btrfs_prepare_sprout(struct btrfs_trans_handle *trans,
1333 struct btrfs_root *root)
1334{
1335 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1336 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001337 struct btrfs_fs_devices *seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001338 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
1339 struct btrfs_device *device;
1340 u64 super_flags;
1341
1342 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001343 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001344 return -EINVAL;
1345
Yan Zhenge4404d62008-12-12 10:03:26 -05001346 seed_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
1347 if (!seed_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001348 return -ENOMEM;
1349
Yan Zhenge4404d62008-12-12 10:03:26 -05001350 old_devices = clone_fs_devices(fs_devices);
1351 if (IS_ERR(old_devices)) {
1352 kfree(seed_devices);
1353 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001354 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001355
Yan Zheng2b820322008-11-17 21:11:30 -05001356 list_add(&old_devices->list, &fs_uuids);
1357
Yan Zhenge4404d62008-12-12 10:03:26 -05001358 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1359 seed_devices->opened = 1;
1360 INIT_LIST_HEAD(&seed_devices->devices);
1361 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001362 mutex_init(&seed_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001363 list_splice_init(&fs_devices->devices, &seed_devices->devices);
1364 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1365 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1366 device->fs_devices = seed_devices;
1367 }
1368
Yan Zheng2b820322008-11-17 21:11:30 -05001369 fs_devices->seeding = 0;
1370 fs_devices->num_devices = 0;
1371 fs_devices->open_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001372 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001373
1374 generate_random_uuid(fs_devices->fsid);
1375 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1376 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1377 super_flags = btrfs_super_flags(disk_super) &
1378 ~BTRFS_SUPER_FLAG_SEEDING;
1379 btrfs_set_super_flags(disk_super, super_flags);
1380
1381 return 0;
1382}
1383
1384/*
1385 * strore the expected generation for seed devices in device items.
1386 */
1387static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1388 struct btrfs_root *root)
1389{
1390 struct btrfs_path *path;
1391 struct extent_buffer *leaf;
1392 struct btrfs_dev_item *dev_item;
1393 struct btrfs_device *device;
1394 struct btrfs_key key;
1395 u8 fs_uuid[BTRFS_UUID_SIZE];
1396 u8 dev_uuid[BTRFS_UUID_SIZE];
1397 u64 devid;
1398 int ret;
1399
1400 path = btrfs_alloc_path();
1401 if (!path)
1402 return -ENOMEM;
1403
1404 root = root->fs_info->chunk_root;
1405 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1406 key.offset = 0;
1407 key.type = BTRFS_DEV_ITEM_KEY;
1408
1409 while (1) {
1410 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1411 if (ret < 0)
1412 goto error;
1413
1414 leaf = path->nodes[0];
1415next_slot:
1416 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1417 ret = btrfs_next_leaf(root, path);
1418 if (ret > 0)
1419 break;
1420 if (ret < 0)
1421 goto error;
1422 leaf = path->nodes[0];
1423 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1424 btrfs_release_path(root, path);
1425 continue;
1426 }
1427
1428 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1429 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1430 key.type != BTRFS_DEV_ITEM_KEY)
1431 break;
1432
1433 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1434 struct btrfs_dev_item);
1435 devid = btrfs_device_id(leaf, dev_item);
1436 read_extent_buffer(leaf, dev_uuid,
1437 (unsigned long)btrfs_device_uuid(dev_item),
1438 BTRFS_UUID_SIZE);
1439 read_extent_buffer(leaf, fs_uuid,
1440 (unsigned long)btrfs_device_fsid(dev_item),
1441 BTRFS_UUID_SIZE);
1442 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
1443 BUG_ON(!device);
1444
1445 if (device->fs_devices->seeding) {
1446 btrfs_set_device_generation(leaf, dev_item,
1447 device->generation);
1448 btrfs_mark_buffer_dirty(leaf);
1449 }
1450
1451 path->slots[0]++;
1452 goto next_slot;
1453 }
1454 ret = 0;
1455error:
1456 btrfs_free_path(path);
1457 return ret;
1458}
1459
Chris Mason788f20e2008-04-28 15:29:42 -04001460int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1461{
1462 struct btrfs_trans_handle *trans;
1463 struct btrfs_device *device;
1464 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001465 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001466 struct super_block *sb = root->fs_info->sb;
Chris Mason788f20e2008-04-28 15:29:42 -04001467 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001468 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001469 int ret = 0;
1470
Yan Zheng2b820322008-11-17 21:11:30 -05001471 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
1472 return -EINVAL;
Chris Mason788f20e2008-04-28 15:29:42 -04001473
Chris Mason15916de2008-11-19 21:17:22 -05001474 bdev = open_bdev_exclusive(device_path, 0, root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001475 if (IS_ERR(bdev))
1476 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001477
Yan Zheng2b820322008-11-17 21:11:30 -05001478 if (root->fs_info->fs_devices->seeding) {
1479 seeding_dev = 1;
1480 down_write(&sb->s_umount);
1481 mutex_lock(&uuid_mutex);
1482 }
1483
Chris Mason8c8bee12008-09-29 11:19:10 -04001484 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Mason7d9eb122008-07-08 14:19:17 -04001485 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001486
Chris Mason788f20e2008-04-28 15:29:42 -04001487 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001488 /*
1489 * we have the volume lock, so we don't need the extra
1490 * device list mutex while reading the list here.
1491 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001492 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001493 if (device->bdev == bdev) {
1494 ret = -EEXIST;
Yan Zheng2b820322008-11-17 21:11:30 -05001495 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001496 }
1497 }
1498
1499 device = kzalloc(sizeof(*device), GFP_NOFS);
1500 if (!device) {
1501 /* we can safely leave the fs_devices entry around */
1502 ret = -ENOMEM;
Yan Zheng2b820322008-11-17 21:11:30 -05001503 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001504 }
1505
Chris Mason788f20e2008-04-28 15:29:42 -04001506 device->name = kstrdup(device_path, GFP_NOFS);
1507 if (!device->name) {
1508 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05001509 ret = -ENOMEM;
1510 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001511 }
Yan Zheng2b820322008-11-17 21:11:30 -05001512
1513 ret = find_next_devid(root, &device->devid);
1514 if (ret) {
1515 kfree(device);
1516 goto error;
1517 }
1518
Yan, Zhenga22285a2010-05-16 10:48:46 -04001519 trans = btrfs_start_transaction(root, 0);
Yan Zheng2b820322008-11-17 21:11:30 -05001520 lock_chunks(root);
1521
1522 device->barriers = 1;
1523 device->writeable = 1;
1524 device->work.func = pending_bios_fn;
1525 generate_random_uuid(device->uuid);
1526 spin_lock_init(&device->io_lock);
1527 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04001528 device->io_width = root->sectorsize;
1529 device->io_align = root->sectorsize;
1530 device->sector_size = root->sectorsize;
1531 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04001532 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04001533 device->dev_root = root->fs_info->dev_root;
1534 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001535 device->in_fs_metadata = 1;
Chris Mason15916de2008-11-19 21:17:22 -05001536 device->mode = 0;
Zheng Yan325cd4b2008-09-05 16:43:54 -04001537 set_blocksize(device->bdev, 4096);
1538
Yan Zheng2b820322008-11-17 21:11:30 -05001539 if (seeding_dev) {
1540 sb->s_flags &= ~MS_RDONLY;
1541 ret = btrfs_prepare_sprout(trans, root);
1542 BUG_ON(ret);
1543 }
1544
1545 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001546
1547 /*
1548 * we don't want write_supers to jump in here with our device
1549 * half setup
1550 */
1551 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001552 list_add(&device->dev_list, &root->fs_info->fs_devices->devices);
1553 list_add(&device->dev_alloc_list,
1554 &root->fs_info->fs_devices->alloc_list);
1555 root->fs_info->fs_devices->num_devices++;
1556 root->fs_info->fs_devices->open_devices++;
1557 root->fs_info->fs_devices->rw_devices++;
1558 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
1559
Chris Masonc2898112009-06-10 09:51:32 -04001560 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
1561 root->fs_info->fs_devices->rotating = 1;
1562
Chris Mason788f20e2008-04-28 15:29:42 -04001563 total_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
1564 btrfs_set_super_total_bytes(&root->fs_info->super_copy,
1565 total_bytes + device->total_bytes);
1566
1567 total_bytes = btrfs_super_num_devices(&root->fs_info->super_copy);
1568 btrfs_set_super_num_devices(&root->fs_info->super_copy,
1569 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04001570 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001571
Yan Zheng2b820322008-11-17 21:11:30 -05001572 if (seeding_dev) {
1573 ret = init_first_rw_device(trans, root, device);
1574 BUG_ON(ret);
1575 ret = btrfs_finish_sprout(trans, root);
1576 BUG_ON(ret);
1577 } else {
1578 ret = btrfs_add_device(trans, root, device);
1579 }
1580
Chris Mason913d9522009-03-10 13:17:18 -04001581 /*
1582 * we've got more storage, clear any full flags on the space
1583 * infos
1584 */
1585 btrfs_clear_space_info_full(root->fs_info);
1586
Chris Mason7d9eb122008-07-08 14:19:17 -04001587 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001588 btrfs_commit_transaction(trans, root);
1589
1590 if (seeding_dev) {
1591 mutex_unlock(&uuid_mutex);
1592 up_write(&sb->s_umount);
1593
1594 ret = btrfs_relocate_sys_chunks(root);
1595 BUG_ON(ret);
1596 }
1597out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001598 mutex_unlock(&root->fs_info->volume_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001599 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05001600error:
Chris Mason15916de2008-11-19 21:17:22 -05001601 close_bdev_exclusive(bdev, 0);
Yan Zheng2b820322008-11-17 21:11:30 -05001602 if (seeding_dev) {
1603 mutex_unlock(&uuid_mutex);
1604 up_write(&sb->s_umount);
1605 }
Chris Mason788f20e2008-04-28 15:29:42 -04001606 goto out;
1607}
1608
Chris Masond3977122009-01-05 21:25:51 -05001609static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
1610 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001611{
1612 int ret;
1613 struct btrfs_path *path;
1614 struct btrfs_root *root;
1615 struct btrfs_dev_item *dev_item;
1616 struct extent_buffer *leaf;
1617 struct btrfs_key key;
1618
1619 root = device->dev_root->fs_info->chunk_root;
1620
1621 path = btrfs_alloc_path();
1622 if (!path)
1623 return -ENOMEM;
1624
1625 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1626 key.type = BTRFS_DEV_ITEM_KEY;
1627 key.offset = device->devid;
1628
1629 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1630 if (ret < 0)
1631 goto out;
1632
1633 if (ret > 0) {
1634 ret = -ENOENT;
1635 goto out;
1636 }
1637
1638 leaf = path->nodes[0];
1639 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1640
1641 btrfs_set_device_id(leaf, dev_item, device->devid);
1642 btrfs_set_device_type(leaf, dev_item, device->type);
1643 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1644 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1645 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04001646 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04001647 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
1648 btrfs_mark_buffer_dirty(leaf);
1649
1650out:
1651 btrfs_free_path(path);
1652 return ret;
1653}
1654
Chris Mason7d9eb122008-07-08 14:19:17 -04001655static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001656 struct btrfs_device *device, u64 new_size)
1657{
1658 struct btrfs_super_block *super_copy =
1659 &device->dev_root->fs_info->super_copy;
1660 u64 old_total = btrfs_super_total_bytes(super_copy);
1661 u64 diff = new_size - device->total_bytes;
1662
Yan Zheng2b820322008-11-17 21:11:30 -05001663 if (!device->writeable)
1664 return -EACCES;
1665 if (new_size <= device->total_bytes)
1666 return -EINVAL;
1667
Chris Mason8f18cf12008-04-25 16:53:30 -04001668 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05001669 device->fs_devices->total_rw_bytes += diff;
1670
1671 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04001672 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04001673 btrfs_clear_space_info_full(device->dev_root->fs_info);
1674
Chris Mason8f18cf12008-04-25 16:53:30 -04001675 return btrfs_update_device(trans, device);
1676}
1677
Chris Mason7d9eb122008-07-08 14:19:17 -04001678int btrfs_grow_device(struct btrfs_trans_handle *trans,
1679 struct btrfs_device *device, u64 new_size)
1680{
1681 int ret;
1682 lock_chunks(device->dev_root);
1683 ret = __btrfs_grow_device(trans, device, new_size);
1684 unlock_chunks(device->dev_root);
1685 return ret;
1686}
1687
Chris Mason8f18cf12008-04-25 16:53:30 -04001688static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
1689 struct btrfs_root *root,
1690 u64 chunk_tree, u64 chunk_objectid,
1691 u64 chunk_offset)
1692{
1693 int ret;
1694 struct btrfs_path *path;
1695 struct btrfs_key key;
1696
1697 root = root->fs_info->chunk_root;
1698 path = btrfs_alloc_path();
1699 if (!path)
1700 return -ENOMEM;
1701
1702 key.objectid = chunk_objectid;
1703 key.offset = chunk_offset;
1704 key.type = BTRFS_CHUNK_ITEM_KEY;
1705
1706 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1707 BUG_ON(ret);
1708
1709 ret = btrfs_del_item(trans, root, path);
1710 BUG_ON(ret);
1711
1712 btrfs_free_path(path);
1713 return 0;
1714}
1715
Christoph Hellwigb2950862008-12-02 09:54:17 -05001716static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04001717 chunk_offset)
1718{
1719 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
1720 struct btrfs_disk_key *disk_key;
1721 struct btrfs_chunk *chunk;
1722 u8 *ptr;
1723 int ret = 0;
1724 u32 num_stripes;
1725 u32 array_size;
1726 u32 len = 0;
1727 u32 cur;
1728 struct btrfs_key key;
1729
1730 array_size = btrfs_super_sys_array_size(super_copy);
1731
1732 ptr = super_copy->sys_chunk_array;
1733 cur = 0;
1734
1735 while (cur < array_size) {
1736 disk_key = (struct btrfs_disk_key *)ptr;
1737 btrfs_disk_key_to_cpu(&key, disk_key);
1738
1739 len = sizeof(*disk_key);
1740
1741 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1742 chunk = (struct btrfs_chunk *)(ptr + len);
1743 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
1744 len += btrfs_chunk_item_size(num_stripes);
1745 } else {
1746 ret = -EIO;
1747 break;
1748 }
1749 if (key.objectid == chunk_objectid &&
1750 key.offset == chunk_offset) {
1751 memmove(ptr, ptr + len, array_size - (cur + len));
1752 array_size -= len;
1753 btrfs_set_super_sys_array_size(super_copy, array_size);
1754 } else {
1755 ptr += len;
1756 cur += len;
1757 }
1758 }
1759 return ret;
1760}
1761
Christoph Hellwigb2950862008-12-02 09:54:17 -05001762static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04001763 u64 chunk_tree, u64 chunk_objectid,
1764 u64 chunk_offset)
1765{
1766 struct extent_map_tree *em_tree;
1767 struct btrfs_root *extent_root;
1768 struct btrfs_trans_handle *trans;
1769 struct extent_map *em;
1770 struct map_lookup *map;
1771 int ret;
1772 int i;
1773
1774 root = root->fs_info->chunk_root;
1775 extent_root = root->fs_info->extent_root;
1776 em_tree = &root->fs_info->mapping_tree.map_tree;
1777
Josef Bacikba1bf482009-09-11 16:11:19 -04001778 ret = btrfs_can_relocate(extent_root, chunk_offset);
1779 if (ret)
1780 return -ENOSPC;
1781
Chris Mason8f18cf12008-04-25 16:53:30 -04001782 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04001783 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001784 if (ret)
1785 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04001786
Yan, Zhenga22285a2010-05-16 10:48:46 -04001787 trans = btrfs_start_transaction(root, 0);
Chris Mason8f18cf12008-04-25 16:53:30 -04001788 BUG_ON(!trans);
1789
Chris Mason7d9eb122008-07-08 14:19:17 -04001790 lock_chunks(root);
1791
Chris Mason8f18cf12008-04-25 16:53:30 -04001792 /*
1793 * step two, delete the device extents and the
1794 * chunk tree entries
1795 */
Chris Mason890871b2009-09-02 16:24:52 -04001796 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001797 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001798 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001799
Chris Masona061fc82008-05-07 11:43:44 -04001800 BUG_ON(em->start > chunk_offset ||
1801 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04001802 map = (struct map_lookup *)em->bdev;
1803
1804 for (i = 0; i < map->num_stripes; i++) {
1805 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
1806 map->stripes[i].physical);
1807 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04001808
Chris Masondfe25022008-05-13 13:46:40 -04001809 if (map->stripes[i].dev) {
1810 ret = btrfs_update_device(trans, map->stripes[i].dev);
1811 BUG_ON(ret);
1812 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001813 }
1814 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
1815 chunk_offset);
1816
1817 BUG_ON(ret);
1818
1819 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
1820 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
1821 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04001822 }
1823
Zheng Yan1a40e232008-09-26 10:09:34 -04001824 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
1825 BUG_ON(ret);
1826
Chris Mason890871b2009-09-02 16:24:52 -04001827 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001828 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001829 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04001830
Chris Mason8f18cf12008-04-25 16:53:30 -04001831 kfree(map);
1832 em->bdev = NULL;
1833
1834 /* once for the tree */
1835 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04001836 /* once for us */
1837 free_extent_map(em);
1838
Chris Mason7d9eb122008-07-08 14:19:17 -04001839 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04001840 btrfs_end_transaction(trans, root);
1841 return 0;
1842}
1843
Yan Zheng2b820322008-11-17 21:11:30 -05001844static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
1845{
1846 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
1847 struct btrfs_path *path;
1848 struct extent_buffer *leaf;
1849 struct btrfs_chunk *chunk;
1850 struct btrfs_key key;
1851 struct btrfs_key found_key;
1852 u64 chunk_tree = chunk_root->root_key.objectid;
1853 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04001854 bool retried = false;
1855 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001856 int ret;
1857
1858 path = btrfs_alloc_path();
1859 if (!path)
1860 return -ENOMEM;
1861
Josef Bacikba1bf482009-09-11 16:11:19 -04001862again:
Yan Zheng2b820322008-11-17 21:11:30 -05001863 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1864 key.offset = (u64)-1;
1865 key.type = BTRFS_CHUNK_ITEM_KEY;
1866
1867 while (1) {
1868 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
1869 if (ret < 0)
1870 goto error;
1871 BUG_ON(ret == 0);
1872
1873 ret = btrfs_previous_item(chunk_root, path, key.objectid,
1874 key.type);
1875 if (ret < 0)
1876 goto error;
1877 if (ret > 0)
1878 break;
1879
1880 leaf = path->nodes[0];
1881 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1882
1883 chunk = btrfs_item_ptr(leaf, path->slots[0],
1884 struct btrfs_chunk);
1885 chunk_type = btrfs_chunk_type(leaf, chunk);
1886 btrfs_release_path(chunk_root, path);
1887
1888 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
1889 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
1890 found_key.objectid,
1891 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04001892 if (ret == -ENOSPC)
1893 failed++;
1894 else if (ret)
1895 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05001896 }
1897
1898 if (found_key.offset == 0)
1899 break;
1900 key.offset = found_key.offset - 1;
1901 }
1902 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04001903 if (failed && !retried) {
1904 failed = 0;
1905 retried = true;
1906 goto again;
1907 } else if (failed && retried) {
1908 WARN_ON(1);
1909 ret = -ENOSPC;
1910 }
Yan Zheng2b820322008-11-17 21:11:30 -05001911error:
1912 btrfs_free_path(path);
1913 return ret;
1914}
1915
Chris Masonec44a352008-04-28 15:29:52 -04001916static u64 div_factor(u64 num, int factor)
1917{
1918 if (factor == 10)
1919 return num;
1920 num *= factor;
1921 do_div(num, 10);
1922 return num;
1923}
1924
Chris Masonec44a352008-04-28 15:29:52 -04001925int btrfs_balance(struct btrfs_root *dev_root)
1926{
1927 int ret;
Chris Masonec44a352008-04-28 15:29:52 -04001928 struct list_head *devices = &dev_root->fs_info->fs_devices->devices;
1929 struct btrfs_device *device;
1930 u64 old_size;
1931 u64 size_to_free;
1932 struct btrfs_path *path;
1933 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04001934 struct btrfs_root *chunk_root = dev_root->fs_info->chunk_root;
1935 struct btrfs_trans_handle *trans;
1936 struct btrfs_key found_key;
1937
Yan Zheng2b820322008-11-17 21:11:30 -05001938 if (dev_root->fs_info->sb->s_flags & MS_RDONLY)
1939 return -EROFS;
Chris Masonec44a352008-04-28 15:29:52 -04001940
Chris Mason7d9eb122008-07-08 14:19:17 -04001941 mutex_lock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04001942 dev_root = dev_root->fs_info->dev_root;
1943
Chris Masonec44a352008-04-28 15:29:52 -04001944 /* step one make some room on all the devices */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001945 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04001946 old_size = device->total_bytes;
1947 size_to_free = div_factor(old_size, 1);
1948 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05001949 if (!device->writeable ||
1950 device->total_bytes - device->bytes_used > size_to_free)
Chris Masonec44a352008-04-28 15:29:52 -04001951 continue;
1952
1953 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04001954 if (ret == -ENOSPC)
1955 break;
Chris Masonec44a352008-04-28 15:29:52 -04001956 BUG_ON(ret);
1957
Yan, Zhenga22285a2010-05-16 10:48:46 -04001958 trans = btrfs_start_transaction(dev_root, 0);
Chris Masonec44a352008-04-28 15:29:52 -04001959 BUG_ON(!trans);
1960
1961 ret = btrfs_grow_device(trans, device, old_size);
1962 BUG_ON(ret);
1963
1964 btrfs_end_transaction(trans, dev_root);
1965 }
1966
1967 /* step two, relocate all the chunks */
1968 path = btrfs_alloc_path();
1969 BUG_ON(!path);
1970
1971 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1972 key.offset = (u64)-1;
1973 key.type = BTRFS_CHUNK_ITEM_KEY;
1974
Chris Masond3977122009-01-05 21:25:51 -05001975 while (1) {
Chris Masonec44a352008-04-28 15:29:52 -04001976 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
1977 if (ret < 0)
1978 goto error;
1979
1980 /*
1981 * this shouldn't happen, it means the last relocate
1982 * failed
1983 */
1984 if (ret == 0)
1985 break;
1986
1987 ret = btrfs_previous_item(chunk_root, path, 0,
1988 BTRFS_CHUNK_ITEM_KEY);
Chris Mason7d9eb122008-07-08 14:19:17 -04001989 if (ret)
Chris Masonec44a352008-04-28 15:29:52 -04001990 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04001991
Chris Masonec44a352008-04-28 15:29:52 -04001992 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1993 path->slots[0]);
1994 if (found_key.objectid != key.objectid)
1995 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04001996
Chris Masonec44a352008-04-28 15:29:52 -04001997 /* chunk zero is special */
Josef Bacikba1bf482009-09-11 16:11:19 -04001998 if (found_key.offset == 0)
Chris Masonec44a352008-04-28 15:29:52 -04001999 break;
2000
Chris Mason7d9eb122008-07-08 14:19:17 -04002001 btrfs_release_path(chunk_root, path);
Chris Masonec44a352008-04-28 15:29:52 -04002002 ret = btrfs_relocate_chunk(chunk_root,
2003 chunk_root->root_key.objectid,
2004 found_key.objectid,
2005 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002006 BUG_ON(ret && ret != -ENOSPC);
2007 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04002008 }
2009 ret = 0;
2010error:
2011 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04002012 mutex_unlock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04002013 return ret;
2014}
2015
Chris Mason8f18cf12008-04-25 16:53:30 -04002016/*
2017 * shrinking a device means finding all of the device extents past
2018 * the new size, and then following the back refs to the chunks.
2019 * The chunk relocation code actually frees the device extent
2020 */
2021int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
2022{
2023 struct btrfs_trans_handle *trans;
2024 struct btrfs_root *root = device->dev_root;
2025 struct btrfs_dev_extent *dev_extent = NULL;
2026 struct btrfs_path *path;
2027 u64 length;
2028 u64 chunk_tree;
2029 u64 chunk_objectid;
2030 u64 chunk_offset;
2031 int ret;
2032 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04002033 int failed = 0;
2034 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04002035 struct extent_buffer *l;
2036 struct btrfs_key key;
2037 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
2038 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04002039 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04002040 u64 diff = device->total_bytes - new_size;
2041
Yan Zheng2b820322008-11-17 21:11:30 -05002042 if (new_size >= device->total_bytes)
2043 return -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04002044
2045 path = btrfs_alloc_path();
2046 if (!path)
2047 return -ENOMEM;
2048
Chris Mason8f18cf12008-04-25 16:53:30 -04002049 path->reada = 2;
2050
Chris Mason7d9eb122008-07-08 14:19:17 -04002051 lock_chunks(root);
2052
Chris Mason8f18cf12008-04-25 16:53:30 -04002053 device->total_bytes = new_size;
Yan Zheng2b820322008-11-17 21:11:30 -05002054 if (device->writeable)
2055 device->fs_devices->total_rw_bytes -= diff;
Chris Mason7d9eb122008-07-08 14:19:17 -04002056 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002057
Josef Bacikba1bf482009-09-11 16:11:19 -04002058again:
Chris Mason8f18cf12008-04-25 16:53:30 -04002059 key.objectid = device->devid;
2060 key.offset = (u64)-1;
2061 key.type = BTRFS_DEV_EXTENT_KEY;
2062
2063 while (1) {
2064 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2065 if (ret < 0)
2066 goto done;
2067
2068 ret = btrfs_previous_item(root, path, 0, key.type);
2069 if (ret < 0)
2070 goto done;
2071 if (ret) {
2072 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002073 btrfs_release_path(root, path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002074 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04002075 }
2076
2077 l = path->nodes[0];
2078 slot = path->slots[0];
2079 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
2080
Josef Bacikba1bf482009-09-11 16:11:19 -04002081 if (key.objectid != device->devid) {
2082 btrfs_release_path(root, path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002083 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002084 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002085
2086 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
2087 length = btrfs_dev_extent_length(l, dev_extent);
2088
Josef Bacikba1bf482009-09-11 16:11:19 -04002089 if (key.offset + length <= new_size) {
2090 btrfs_release_path(root, path);
Chris Balld6397ba2009-04-27 07:29:03 -04002091 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002092 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002093
2094 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
2095 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
2096 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
2097 btrfs_release_path(root, path);
2098
2099 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
2100 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002101 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04002102 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04002103 if (ret == -ENOSPC)
2104 failed++;
2105 key.offset -= 1;
2106 }
2107
2108 if (failed && !retried) {
2109 failed = 0;
2110 retried = true;
2111 goto again;
2112 } else if (failed && retried) {
2113 ret = -ENOSPC;
2114 lock_chunks(root);
2115
2116 device->total_bytes = old_size;
2117 if (device->writeable)
2118 device->fs_devices->total_rw_bytes += diff;
2119 unlock_chunks(root);
2120 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04002121 }
2122
Chris Balld6397ba2009-04-27 07:29:03 -04002123 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002124 trans = btrfs_start_transaction(root, 0);
Chris Balld6397ba2009-04-27 07:29:03 -04002125 lock_chunks(root);
2126
2127 device->disk_total_bytes = new_size;
2128 /* Now btrfs_update_device() will change the on-disk size. */
2129 ret = btrfs_update_device(trans, device);
2130 if (ret) {
2131 unlock_chunks(root);
2132 btrfs_end_transaction(trans, root);
2133 goto done;
2134 }
2135 WARN_ON(diff > old_total);
2136 btrfs_set_super_total_bytes(super_copy, old_total - diff);
2137 unlock_chunks(root);
2138 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002139done:
2140 btrfs_free_path(path);
2141 return ret;
2142}
2143
Christoph Hellwigb2950862008-12-02 09:54:17 -05002144static int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -04002145 struct btrfs_root *root,
2146 struct btrfs_key *key,
2147 struct btrfs_chunk *chunk, int item_size)
2148{
2149 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
2150 struct btrfs_disk_key disk_key;
2151 u32 array_size;
2152 u8 *ptr;
2153
2154 array_size = btrfs_super_sys_array_size(super_copy);
2155 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
2156 return -EFBIG;
2157
2158 ptr = super_copy->sys_chunk_array + array_size;
2159 btrfs_cpu_key_to_disk(&disk_key, key);
2160 memcpy(ptr, &disk_key, sizeof(disk_key));
2161 ptr += sizeof(disk_key);
2162 memcpy(ptr, chunk, item_size);
2163 item_size += sizeof(disk_key);
2164 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
2165 return 0;
2166}
2167
Chris Masond3977122009-01-05 21:25:51 -05002168static noinline u64 chunk_bytes_by_type(u64 type, u64 calc_size,
Chris Masona1b32a52008-09-05 16:09:51 -04002169 int num_stripes, int sub_stripes)
Chris Mason9b3f68b2008-04-18 10:29:51 -04002170{
2171 if (type & (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP))
2172 return calc_size;
2173 else if (type & BTRFS_BLOCK_GROUP_RAID10)
2174 return calc_size * (num_stripes / sub_stripes);
2175 else
2176 return calc_size * num_stripes;
2177}
2178
Miao Xieb2117a32011-01-05 10:07:28 +00002179/* Used to sort the devices by max_avail(descending sort) */
2180int btrfs_cmp_device_free_bytes(const void *dev_info1, const void *dev_info2)
Chris Mason0b86a832008-03-24 15:01:56 -04002181{
Miao Xieb2117a32011-01-05 10:07:28 +00002182 if (((struct btrfs_device_info *)dev_info1)->max_avail >
2183 ((struct btrfs_device_info *)dev_info2)->max_avail)
2184 return -1;
2185 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
2186 ((struct btrfs_device_info *)dev_info2)->max_avail)
2187 return 1;
2188 else
2189 return 0;
2190}
Chris Mason0b86a832008-03-24 15:01:56 -04002191
Miao Xieb2117a32011-01-05 10:07:28 +00002192static int __btrfs_calc_nstripes(struct btrfs_fs_devices *fs_devices, u64 type,
2193 int *num_stripes, int *min_stripes,
2194 int *sub_stripes)
2195{
2196 *num_stripes = 1;
2197 *min_stripes = 1;
2198 *sub_stripes = 0;
Chris Mason593060d2008-03-25 16:50:33 -04002199
Chris Masona40a90a2008-04-18 11:55:51 -04002200 if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
Miao Xieb2117a32011-01-05 10:07:28 +00002201 *num_stripes = fs_devices->rw_devices;
2202 *min_stripes = 2;
Chris Masona40a90a2008-04-18 11:55:51 -04002203 }
2204 if (type & (BTRFS_BLOCK_GROUP_DUP)) {
Miao Xieb2117a32011-01-05 10:07:28 +00002205 *num_stripes = 2;
2206 *min_stripes = 2;
Chris Masona40a90a2008-04-18 11:55:51 -04002207 }
Chris Mason8790d502008-04-03 16:29:03 -04002208 if (type & (BTRFS_BLOCK_GROUP_RAID1)) {
Zhao Leif3eae7e2010-03-25 12:32:59 +00002209 if (fs_devices->rw_devices < 2)
Chris Mason9b3f68b2008-04-18 10:29:51 -04002210 return -ENOSPC;
Miao Xieb2117a32011-01-05 10:07:28 +00002211 *num_stripes = 2;
2212 *min_stripes = 2;
Chris Mason8790d502008-04-03 16:29:03 -04002213 }
Chris Mason321aecc2008-04-16 10:49:51 -04002214 if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
Miao Xieb2117a32011-01-05 10:07:28 +00002215 *num_stripes = fs_devices->rw_devices;
2216 if (*num_stripes < 4)
Chris Mason321aecc2008-04-16 10:49:51 -04002217 return -ENOSPC;
Miao Xieb2117a32011-01-05 10:07:28 +00002218 *num_stripes &= ~(u32)1;
2219 *sub_stripes = 2;
2220 *min_stripes = 4;
Chris Mason321aecc2008-04-16 10:49:51 -04002221 }
Chris Mason9b3f68b2008-04-18 10:29:51 -04002222
Miao Xieb2117a32011-01-05 10:07:28 +00002223 return 0;
2224}
2225
2226static u64 __btrfs_calc_stripe_size(struct btrfs_fs_devices *fs_devices,
2227 u64 proposed_size, u64 type,
2228 int num_stripes, int small_stripe)
2229{
2230 int min_stripe_size = 1 * 1024 * 1024;
2231 u64 calc_size = proposed_size;
2232 u64 max_chunk_size = calc_size;
2233 int ncopies = 1;
2234
2235 if (type & (BTRFS_BLOCK_GROUP_RAID1 |
2236 BTRFS_BLOCK_GROUP_DUP |
2237 BTRFS_BLOCK_GROUP_RAID10))
2238 ncopies = 2;
2239
Chris Mason9b3f68b2008-04-18 10:29:51 -04002240 if (type & BTRFS_BLOCK_GROUP_DATA) {
2241 max_chunk_size = 10 * calc_size;
Chris Masona40a90a2008-04-18 11:55:51 -04002242 min_stripe_size = 64 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002243 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Josef Bacik83d3c962009-12-07 21:45:59 +00002244 max_chunk_size = 256 * 1024 * 1024;
Chris Masona40a90a2008-04-18 11:55:51 -04002245 min_stripe_size = 32 * 1024 * 1024;
2246 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
2247 calc_size = 8 * 1024 * 1024;
2248 max_chunk_size = calc_size * 2;
2249 min_stripe_size = 1 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002250 }
2251
Yan Zheng2b820322008-11-17 21:11:30 -05002252 /* we don't want a chunk larger than 10% of writeable space */
2253 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
2254 max_chunk_size);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002255
Miao Xie1974a3b2011-01-05 10:07:24 +00002256 if (calc_size * num_stripes > max_chunk_size * ncopies) {
2257 calc_size = max_chunk_size * ncopies;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002258 do_div(calc_size, num_stripes);
Miao Xieb2117a32011-01-05 10:07:28 +00002259 do_div(calc_size, BTRFS_STRIPE_LEN);
2260 calc_size *= BTRFS_STRIPE_LEN;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002261 }
Josef Bacik0cad8a112010-03-17 20:45:56 +00002262
Chris Mason9b3f68b2008-04-18 10:29:51 -04002263 /* we don't want tiny stripes */
Miao Xieb2117a32011-01-05 10:07:28 +00002264 if (!small_stripe)
Josef Bacik0cad8a112010-03-17 20:45:56 +00002265 calc_size = max_t(u64, min_stripe_size, calc_size);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002266
Chris Mason9f680ce2010-04-06 09:37:47 -04002267 /*
Miao Xieb2117a32011-01-05 10:07:28 +00002268 * we're about to do_div by the BTRFS_STRIPE_LEN so lets make sure
Chris Mason9f680ce2010-04-06 09:37:47 -04002269 * we end up with something bigger than a stripe
2270 */
Miao Xieb2117a32011-01-05 10:07:28 +00002271 calc_size = max_t(u64, calc_size, BTRFS_STRIPE_LEN);
Chris Mason9f680ce2010-04-06 09:37:47 -04002272
Miao Xieb2117a32011-01-05 10:07:28 +00002273 do_div(calc_size, BTRFS_STRIPE_LEN);
2274 calc_size *= BTRFS_STRIPE_LEN;
2275
2276 return calc_size;
2277}
2278
2279static struct map_lookup *__shrink_map_lookup_stripes(struct map_lookup *map,
2280 int num_stripes)
2281{
2282 struct map_lookup *new;
2283 size_t len = map_lookup_size(num_stripes);
2284
2285 BUG_ON(map->num_stripes < num_stripes);
2286
2287 if (map->num_stripes == num_stripes)
2288 return map;
2289
2290 new = kmalloc(len, GFP_NOFS);
2291 if (!new) {
2292 /* just change map->num_stripes */
2293 map->num_stripes = num_stripes;
2294 return map;
2295 }
2296
2297 memcpy(new, map, len);
2298 new->num_stripes = num_stripes;
2299 kfree(map);
2300 return new;
2301}
2302
2303/*
2304 * helper to allocate device space from btrfs_device_info, in which we stored
2305 * max free space information of every device. It is used when we can not
2306 * allocate chunks by default size.
2307 *
2308 * By this helper, we can allocate a new chunk as larger as possible.
2309 */
2310static int __btrfs_alloc_tiny_space(struct btrfs_trans_handle *trans,
2311 struct btrfs_fs_devices *fs_devices,
2312 struct btrfs_device_info *devices,
2313 int nr_device, u64 type,
2314 struct map_lookup **map_lookup,
2315 int min_stripes, u64 *stripe_size)
2316{
2317 int i, index, sort_again = 0;
2318 int min_devices = min_stripes;
2319 u64 max_avail, min_free;
2320 struct map_lookup *map = *map_lookup;
2321 int ret;
2322
2323 if (nr_device < min_stripes)
2324 return -ENOSPC;
2325
2326 btrfs_descending_sort_devices(devices, nr_device);
2327
2328 max_avail = devices[0].max_avail;
2329 if (!max_avail)
2330 return -ENOSPC;
2331
2332 for (i = 0; i < nr_device; i++) {
2333 /*
2334 * if dev_offset = 0, it means the free space of this device
2335 * is less than what we need, and we didn't search max avail
2336 * extent on this device, so do it now.
2337 */
2338 if (!devices[i].dev_offset) {
2339 ret = find_free_dev_extent(trans, devices[i].dev,
2340 max_avail,
2341 &devices[i].dev_offset,
2342 &devices[i].max_avail);
2343 if (ret != 0 && ret != -ENOSPC)
2344 return ret;
2345 sort_again = 1;
2346 }
2347 }
2348
2349 /* we update the max avail free extent of each devices, sort again */
2350 if (sort_again)
2351 btrfs_descending_sort_devices(devices, nr_device);
2352
2353 if (type & BTRFS_BLOCK_GROUP_DUP)
2354 min_devices = 1;
2355
2356 if (!devices[min_devices - 1].max_avail)
2357 return -ENOSPC;
2358
2359 max_avail = devices[min_devices - 1].max_avail;
2360 if (type & BTRFS_BLOCK_GROUP_DUP)
2361 do_div(max_avail, 2);
2362
2363 max_avail = __btrfs_calc_stripe_size(fs_devices, max_avail, type,
2364 min_stripes, 1);
2365 if (type & BTRFS_BLOCK_GROUP_DUP)
2366 min_free = max_avail * 2;
2367 else
2368 min_free = max_avail;
2369
2370 if (min_free > devices[min_devices - 1].max_avail)
2371 return -ENOSPC;
2372
2373 map = __shrink_map_lookup_stripes(map, min_stripes);
2374 *stripe_size = max_avail;
2375
2376 index = 0;
2377 for (i = 0; i < min_stripes; i++) {
2378 map->stripes[i].dev = devices[index].dev;
2379 map->stripes[i].physical = devices[index].dev_offset;
2380 if (type & BTRFS_BLOCK_GROUP_DUP) {
2381 i++;
2382 map->stripes[i].dev = devices[index].dev;
2383 map->stripes[i].physical = devices[index].dev_offset +
2384 max_avail;
2385 }
2386 index++;
2387 }
2388 *map_lookup = map;
2389
2390 return 0;
2391}
2392
2393static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2394 struct btrfs_root *extent_root,
2395 struct map_lookup **map_ret,
2396 u64 *num_bytes, u64 *stripe_size,
2397 u64 start, u64 type)
2398{
2399 struct btrfs_fs_info *info = extent_root->fs_info;
2400 struct btrfs_device *device = NULL;
2401 struct btrfs_fs_devices *fs_devices = info->fs_devices;
2402 struct list_head *cur;
2403 struct map_lookup *map;
2404 struct extent_map_tree *em_tree;
2405 struct extent_map *em;
2406 struct btrfs_device_info *devices_info;
2407 struct list_head private_devs;
2408 u64 calc_size = 1024 * 1024 * 1024;
2409 u64 min_free;
2410 u64 avail;
2411 u64 dev_offset;
2412 int num_stripes;
2413 int min_stripes;
2414 int sub_stripes;
2415 int min_devices; /* the min number of devices we need */
2416 int i;
2417 int ret;
2418 int index;
2419
2420 if ((type & BTRFS_BLOCK_GROUP_RAID1) &&
2421 (type & BTRFS_BLOCK_GROUP_DUP)) {
2422 WARN_ON(1);
2423 type &= ~BTRFS_BLOCK_GROUP_DUP;
2424 }
2425 if (list_empty(&fs_devices->alloc_list))
2426 return -ENOSPC;
2427
2428 ret = __btrfs_calc_nstripes(fs_devices, type, &num_stripes,
2429 &min_stripes, &sub_stripes);
2430 if (ret)
2431 return ret;
2432
2433 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
2434 GFP_NOFS);
2435 if (!devices_info)
2436 return -ENOMEM;
2437
2438 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
2439 if (!map) {
2440 ret = -ENOMEM;
2441 goto error;
2442 }
2443 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002444
Yan Zheng2b820322008-11-17 21:11:30 -05002445 cur = fs_devices->alloc_list.next;
Chris Mason6324fbf2008-03-24 15:01:59 -04002446 index = 0;
Miao Xieb2117a32011-01-05 10:07:28 +00002447 i = 0;
Chris Mason611f0e02008-04-03 16:29:03 -04002448
Miao Xieb2117a32011-01-05 10:07:28 +00002449 calc_size = __btrfs_calc_stripe_size(fs_devices, calc_size, type,
2450 num_stripes, 0);
2451
2452 if (type & BTRFS_BLOCK_GROUP_DUP) {
Chris Mason611f0e02008-04-03 16:29:03 -04002453 min_free = calc_size * 2;
Miao Xieb2117a32011-01-05 10:07:28 +00002454 min_devices = 1;
2455 } else {
Chris Mason9b3f68b2008-04-18 10:29:51 -04002456 min_free = calc_size;
Miao Xieb2117a32011-01-05 10:07:28 +00002457 min_devices = min_stripes;
2458 }
Chris Masonad5bd912008-04-21 08:28:10 -04002459
Yan Zheng2b820322008-11-17 21:11:30 -05002460 INIT_LIST_HEAD(&private_devs);
Chris Masond3977122009-01-05 21:25:51 -05002461 while (index < num_stripes) {
Chris Masonb3075712008-04-22 09:22:07 -04002462 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
Yan Zheng2b820322008-11-17 21:11:30 -05002463 BUG_ON(!device->writeable);
Chris Masondfe25022008-05-13 13:46:40 -04002464 if (device->total_bytes > device->bytes_used)
2465 avail = device->total_bytes - device->bytes_used;
2466 else
2467 avail = 0;
Chris Mason6324fbf2008-03-24 15:01:59 -04002468 cur = cur->next;
Chris Mason8f18cf12008-04-25 16:53:30 -04002469
Chris Masondfe25022008-05-13 13:46:40 -04002470 if (device->in_fs_metadata && avail >= min_free) {
Miao Xieb2117a32011-01-05 10:07:28 +00002471 ret = find_free_dev_extent(trans, device, min_free,
2472 &devices_info[i].dev_offset,
2473 &devices_info[i].max_avail);
Chris Mason8f18cf12008-04-25 16:53:30 -04002474 if (ret == 0) {
2475 list_move_tail(&device->dev_alloc_list,
2476 &private_devs);
Yan Zheng2b820322008-11-17 21:11:30 -05002477 map->stripes[index].dev = device;
Miao Xieb2117a32011-01-05 10:07:28 +00002478 map->stripes[index].physical =
2479 devices_info[i].dev_offset;
Chris Mason611f0e02008-04-03 16:29:03 -04002480 index++;
Yan Zheng2b820322008-11-17 21:11:30 -05002481 if (type & BTRFS_BLOCK_GROUP_DUP) {
2482 map->stripes[index].dev = device;
2483 map->stripes[index].physical =
Miao Xieb2117a32011-01-05 10:07:28 +00002484 devices_info[i].dev_offset +
2485 calc_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04002486 index++;
Yan Zheng2b820322008-11-17 21:11:30 -05002487 }
Miao Xieb2117a32011-01-05 10:07:28 +00002488 } else if (ret != -ENOSPC)
2489 goto error;
2490
2491 devices_info[i].dev = device;
2492 i++;
2493 } else if (device->in_fs_metadata &&
2494 avail >= BTRFS_STRIPE_LEN) {
2495 devices_info[i].dev = device;
2496 devices_info[i].max_avail = avail;
2497 i++;
2498 }
2499
Yan Zheng2b820322008-11-17 21:11:30 -05002500 if (cur == &fs_devices->alloc_list)
Chris Mason6324fbf2008-03-24 15:01:59 -04002501 break;
2502 }
Miao Xieb2117a32011-01-05 10:07:28 +00002503
Yan Zheng2b820322008-11-17 21:11:30 -05002504 list_splice(&private_devs, &fs_devices->alloc_list);
Chris Mason6324fbf2008-03-24 15:01:59 -04002505 if (index < num_stripes) {
Chris Masona40a90a2008-04-18 11:55:51 -04002506 if (index >= min_stripes) {
2507 num_stripes = index;
2508 if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
2509 num_stripes /= sub_stripes;
2510 num_stripes *= sub_stripes;
2511 }
Miao Xieb2117a32011-01-05 10:07:28 +00002512
2513 map = __shrink_map_lookup_stripes(map, num_stripes);
2514 } else if (i >= min_devices) {
2515 ret = __btrfs_alloc_tiny_space(trans, fs_devices,
2516 devices_info, i, type,
2517 &map, min_stripes,
2518 &calc_size);
2519 if (ret)
2520 goto error;
2521 } else {
2522 ret = -ENOSPC;
2523 goto error;
Chris Masona40a90a2008-04-18 11:55:51 -04002524 }
Chris Mason6324fbf2008-03-24 15:01:59 -04002525 }
Chris Mason593060d2008-03-25 16:50:33 -04002526 map->sector_size = extent_root->sectorsize;
Miao Xieb2117a32011-01-05 10:07:28 +00002527 map->stripe_len = BTRFS_STRIPE_LEN;
2528 map->io_align = BTRFS_STRIPE_LEN;
2529 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04002530 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04002531 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04002532
Yan Zheng2b820322008-11-17 21:11:30 -05002533 *map_ret = map;
2534 *stripe_size = calc_size;
2535 *num_bytes = chunk_bytes_by_type(type, calc_size,
Miao Xieb2117a32011-01-05 10:07:28 +00002536 map->num_stripes, sub_stripes);
Chris Mason0b86a832008-03-24 15:01:56 -04002537
2538 em = alloc_extent_map(GFP_NOFS);
Yan Zheng2b820322008-11-17 21:11:30 -05002539 if (!em) {
Miao Xieb2117a32011-01-05 10:07:28 +00002540 ret = -ENOMEM;
2541 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05002542 }
Chris Mason0b86a832008-03-24 15:01:56 -04002543 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05002544 em->start = start;
Chris Masone17cade2008-04-15 15:41:47 -04002545 em->len = *num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04002546 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002547 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04002548
Chris Mason0b86a832008-03-24 15:01:56 -04002549 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04002550 write_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002551 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002552 write_unlock(&em_tree->lock);
Chris Masonb248a412008-04-14 09:48:18 -04002553 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04002554 free_extent_map(em);
Yan Zheng2b820322008-11-17 21:11:30 -05002555
2556 ret = btrfs_make_block_group(trans, extent_root, 0, type,
2557 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2558 start, *num_bytes);
2559 BUG_ON(ret);
2560
2561 index = 0;
2562 while (index < map->num_stripes) {
2563 device = map->stripes[index].dev;
2564 dev_offset = map->stripes[index].physical;
2565
2566 ret = btrfs_alloc_dev_extent(trans, device,
2567 info->chunk_root->root_key.objectid,
2568 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2569 start, dev_offset, calc_size);
2570 BUG_ON(ret);
2571 index++;
2572 }
2573
Miao Xieb2117a32011-01-05 10:07:28 +00002574 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05002575 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00002576
2577error:
2578 kfree(map);
2579 kfree(devices_info);
2580 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05002581}
2582
2583static int __finish_chunk_alloc(struct btrfs_trans_handle *trans,
2584 struct btrfs_root *extent_root,
2585 struct map_lookup *map, u64 chunk_offset,
2586 u64 chunk_size, u64 stripe_size)
2587{
2588 u64 dev_offset;
2589 struct btrfs_key key;
2590 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2591 struct btrfs_device *device;
2592 struct btrfs_chunk *chunk;
2593 struct btrfs_stripe *stripe;
2594 size_t item_size = btrfs_chunk_item_size(map->num_stripes);
2595 int index = 0;
2596 int ret;
2597
2598 chunk = kzalloc(item_size, GFP_NOFS);
2599 if (!chunk)
2600 return -ENOMEM;
2601
2602 index = 0;
2603 while (index < map->num_stripes) {
2604 device = map->stripes[index].dev;
2605 device->bytes_used += stripe_size;
2606 ret = btrfs_update_device(trans, device);
2607 BUG_ON(ret);
2608 index++;
2609 }
2610
2611 index = 0;
2612 stripe = &chunk->stripe;
2613 while (index < map->num_stripes) {
2614 device = map->stripes[index].dev;
2615 dev_offset = map->stripes[index].physical;
2616
2617 btrfs_set_stack_stripe_devid(stripe, device->devid);
2618 btrfs_set_stack_stripe_offset(stripe, dev_offset);
2619 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
2620 stripe++;
2621 index++;
2622 }
2623
2624 btrfs_set_stack_chunk_length(chunk, chunk_size);
2625 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
2626 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
2627 btrfs_set_stack_chunk_type(chunk, map->type);
2628 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
2629 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
2630 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
2631 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
2632 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
2633
2634 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2635 key.type = BTRFS_CHUNK_ITEM_KEY;
2636 key.offset = chunk_offset;
2637
2638 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
2639 BUG_ON(ret);
2640
2641 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2642 ret = btrfs_add_system_chunk(trans, chunk_root, &key, chunk,
2643 item_size);
2644 BUG_ON(ret);
2645 }
2646 kfree(chunk);
2647 return 0;
2648}
2649
2650/*
2651 * Chunk allocation falls into two parts. The first part does works
2652 * that make the new allocated chunk useable, but not do any operation
2653 * that modifies the chunk tree. The second part does the works that
2654 * require modifying the chunk tree. This division is important for the
2655 * bootstrap process of adding storage to a seed btrfs.
2656 */
2657int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2658 struct btrfs_root *extent_root, u64 type)
2659{
2660 u64 chunk_offset;
2661 u64 chunk_size;
2662 u64 stripe_size;
2663 struct map_lookup *map;
2664 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2665 int ret;
2666
2667 ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2668 &chunk_offset);
2669 if (ret)
2670 return ret;
2671
2672 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2673 &stripe_size, chunk_offset, type);
2674 if (ret)
2675 return ret;
2676
2677 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2678 chunk_size, stripe_size);
2679 BUG_ON(ret);
2680 return 0;
2681}
2682
Chris Masond3977122009-01-05 21:25:51 -05002683static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05002684 struct btrfs_root *root,
2685 struct btrfs_device *device)
2686{
2687 u64 chunk_offset;
2688 u64 sys_chunk_offset;
2689 u64 chunk_size;
2690 u64 sys_chunk_size;
2691 u64 stripe_size;
2692 u64 sys_stripe_size;
2693 u64 alloc_profile;
2694 struct map_lookup *map;
2695 struct map_lookup *sys_map;
2696 struct btrfs_fs_info *fs_info = root->fs_info;
2697 struct btrfs_root *extent_root = fs_info->extent_root;
2698 int ret;
2699
2700 ret = find_next_chunk(fs_info->chunk_root,
2701 BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
2702 BUG_ON(ret);
2703
2704 alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
2705 (fs_info->metadata_alloc_profile &
2706 fs_info->avail_metadata_alloc_bits);
2707 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2708
2709 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2710 &stripe_size, chunk_offset, alloc_profile);
2711 BUG_ON(ret);
2712
2713 sys_chunk_offset = chunk_offset + chunk_size;
2714
2715 alloc_profile = BTRFS_BLOCK_GROUP_SYSTEM |
2716 (fs_info->system_alloc_profile &
2717 fs_info->avail_system_alloc_bits);
2718 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2719
2720 ret = __btrfs_alloc_chunk(trans, extent_root, &sys_map,
2721 &sys_chunk_size, &sys_stripe_size,
2722 sys_chunk_offset, alloc_profile);
2723 BUG_ON(ret);
2724
2725 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
2726 BUG_ON(ret);
2727
2728 /*
2729 * Modifying chunk tree needs allocating new blocks from both
2730 * system block group and metadata block group. So we only can
2731 * do operations require modifying the chunk tree after both
2732 * block groups were created.
2733 */
2734 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2735 chunk_size, stripe_size);
2736 BUG_ON(ret);
2737
2738 ret = __finish_chunk_alloc(trans, extent_root, sys_map,
2739 sys_chunk_offset, sys_chunk_size,
2740 sys_stripe_size);
2741 BUG_ON(ret);
2742 return 0;
2743}
2744
2745int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
2746{
2747 struct extent_map *em;
2748 struct map_lookup *map;
2749 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
2750 int readonly = 0;
2751 int i;
2752
Chris Mason890871b2009-09-02 16:24:52 -04002753 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002754 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002755 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002756 if (!em)
2757 return 1;
2758
Josef Bacikf48b9072010-01-27 02:07:59 +00002759 if (btrfs_test_opt(root, DEGRADED)) {
2760 free_extent_map(em);
2761 return 0;
2762 }
2763
Yan Zheng2b820322008-11-17 21:11:30 -05002764 map = (struct map_lookup *)em->bdev;
2765 for (i = 0; i < map->num_stripes; i++) {
2766 if (!map->stripes[i].dev->writeable) {
2767 readonly = 1;
2768 break;
2769 }
2770 }
2771 free_extent_map(em);
2772 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04002773}
2774
2775void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
2776{
2777 extent_map_tree_init(&tree->map_tree, GFP_NOFS);
2778}
2779
2780void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
2781{
2782 struct extent_map *em;
2783
Chris Masond3977122009-01-05 21:25:51 -05002784 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04002785 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002786 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
2787 if (em)
2788 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002789 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002790 if (!em)
2791 break;
2792 kfree(em->bdev);
2793 /* once for us */
2794 free_extent_map(em);
2795 /* once for the tree */
2796 free_extent_map(em);
2797 }
2798}
2799
Chris Masonf1885912008-04-09 16:28:12 -04002800int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
2801{
2802 struct extent_map *em;
2803 struct map_lookup *map;
2804 struct extent_map_tree *em_tree = &map_tree->map_tree;
2805 int ret;
2806
Chris Mason890871b2009-09-02 16:24:52 -04002807 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002808 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04002809 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002810 BUG_ON(!em);
2811
2812 BUG_ON(em->start > logical || em->start + em->len < logical);
2813 map = (struct map_lookup *)em->bdev;
2814 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
2815 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002816 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
2817 ret = map->sub_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002818 else
2819 ret = 1;
2820 free_extent_map(em);
Chris Masonf1885912008-04-09 16:28:12 -04002821 return ret;
2822}
2823
Chris Masondfe25022008-05-13 13:46:40 -04002824static int find_live_mirror(struct map_lookup *map, int first, int num,
2825 int optimal)
2826{
2827 int i;
2828 if (map->stripes[optimal].dev->bdev)
2829 return optimal;
2830 for (i = first; i < first + num; i++) {
2831 if (map->stripes[i].dev->bdev)
2832 return i;
2833 }
2834 /* we couldn't find one that doesn't fail. Just return something
2835 * and the io error handling code will clean up eventually
2836 */
2837 return optimal;
2838}
2839
Chris Masonf2d8d742008-04-21 10:03:05 -04002840static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
2841 u64 logical, u64 *length,
2842 struct btrfs_multi_bio **multi_ret,
2843 int mirror_num, struct page *unplug_page)
Chris Mason0b86a832008-03-24 15:01:56 -04002844{
2845 struct extent_map *em;
2846 struct map_lookup *map;
2847 struct extent_map_tree *em_tree = &map_tree->map_tree;
2848 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04002849 u64 stripe_offset;
2850 u64 stripe_nr;
Chris Masoncea9e442008-04-09 16:28:12 -04002851 int stripes_allocated = 8;
Chris Mason321aecc2008-04-16 10:49:51 -04002852 int stripes_required = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002853 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04002854 int i;
Chris Masonf2d8d742008-04-21 10:03:05 -04002855 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002856 int max_errors = 0;
Chris Masoncea9e442008-04-09 16:28:12 -04002857 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002858
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002859 if (multi_ret && !(rw & REQ_WRITE))
Chris Masoncea9e442008-04-09 16:28:12 -04002860 stripes_allocated = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002861again:
2862 if (multi_ret) {
2863 multi = kzalloc(btrfs_multi_bio_size(stripes_allocated),
2864 GFP_NOFS);
2865 if (!multi)
2866 return -ENOMEM;
Chris Masona236aed2008-04-29 09:38:00 -04002867
2868 atomic_set(&multi->error, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04002869 }
Chris Mason0b86a832008-03-24 15:01:56 -04002870
Chris Mason890871b2009-09-02 16:24:52 -04002871 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002872 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04002873 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04002874
Jiri Slaby2423fdf2010-01-06 16:57:22 +00002875 if (!em && unplug_page) {
2876 kfree(multi);
Chris Masonf2d8d742008-04-21 10:03:05 -04002877 return 0;
Jiri Slaby2423fdf2010-01-06 16:57:22 +00002878 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002879
Chris Mason3b951512008-04-17 11:29:12 -04002880 if (!em) {
Chris Masond3977122009-01-05 21:25:51 -05002881 printk(KERN_CRIT "unable to find logical %llu len %llu\n",
2882 (unsigned long long)logical,
2883 (unsigned long long)*length);
Chris Masonf2d8d742008-04-21 10:03:05 -04002884 BUG();
Chris Mason3b951512008-04-17 11:29:12 -04002885 }
Chris Mason0b86a832008-03-24 15:01:56 -04002886
2887 BUG_ON(em->start > logical || em->start + em->len < logical);
2888 map = (struct map_lookup *)em->bdev;
2889 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04002890
Chris Masonf1885912008-04-09 16:28:12 -04002891 if (mirror_num > map->num_stripes)
2892 mirror_num = 0;
2893
Chris Masoncea9e442008-04-09 16:28:12 -04002894 /* if our multi bio struct is too small, back off and try again */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002895 if (rw & REQ_WRITE) {
Chris Mason321aecc2008-04-16 10:49:51 -04002896 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
2897 BTRFS_BLOCK_GROUP_DUP)) {
2898 stripes_required = map->num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002899 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002900 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2901 stripes_required = map->sub_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002902 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002903 }
2904 }
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002905 if (multi_ret && (rw & REQ_WRITE) &&
Chris Mason321aecc2008-04-16 10:49:51 -04002906 stripes_allocated < stripes_required) {
Chris Masoncea9e442008-04-09 16:28:12 -04002907 stripes_allocated = map->num_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04002908 free_extent_map(em);
2909 kfree(multi);
2910 goto again;
2911 }
Chris Mason593060d2008-03-25 16:50:33 -04002912 stripe_nr = offset;
2913 /*
2914 * stripe_nr counts the total number of stripes we have to stride
2915 * to get to this block
2916 */
2917 do_div(stripe_nr, map->stripe_len);
2918
2919 stripe_offset = stripe_nr * map->stripe_len;
2920 BUG_ON(offset < stripe_offset);
2921
2922 /* stripe_offset is the offset of this block in its stripe*/
2923 stripe_offset = offset - stripe_offset;
2924
Chris Masoncea9e442008-04-09 16:28:12 -04002925 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04002926 BTRFS_BLOCK_GROUP_RAID10 |
Chris Masoncea9e442008-04-09 16:28:12 -04002927 BTRFS_BLOCK_GROUP_DUP)) {
2928 /* we limit the length of each bio to what fits in a stripe */
2929 *length = min_t(u64, em->len - offset,
2930 map->stripe_len - stripe_offset);
2931 } else {
2932 *length = em->len - offset;
2933 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002934
2935 if (!multi_ret && !unplug_page)
Chris Masoncea9e442008-04-09 16:28:12 -04002936 goto out;
2937
Chris Masonf2d8d742008-04-21 10:03:05 -04002938 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002939 stripe_index = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002940 if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002941 if (unplug_page || (rw & REQ_WRITE))
Chris Masonf2d8d742008-04-21 10:03:05 -04002942 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04002943 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04002944 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002945 else {
2946 stripe_index = find_live_mirror(map, 0,
2947 map->num_stripes,
2948 current->pid % map->num_stripes);
2949 }
Chris Mason2fff7342008-04-29 14:12:09 -04002950
Chris Mason611f0e02008-04-03 16:29:03 -04002951 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002952 if (rw & REQ_WRITE)
Chris Masonf2d8d742008-04-21 10:03:05 -04002953 num_stripes = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002954 else if (mirror_num)
2955 stripe_index = mirror_num - 1;
Chris Mason2fff7342008-04-29 14:12:09 -04002956
Chris Mason321aecc2008-04-16 10:49:51 -04002957 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2958 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002959
2960 stripe_index = do_div(stripe_nr, factor);
2961 stripe_index *= map->sub_stripes;
2962
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002963 if (unplug_page || (rw & REQ_WRITE))
Chris Masonf2d8d742008-04-21 10:03:05 -04002964 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002965 else if (mirror_num)
2966 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002967 else {
2968 stripe_index = find_live_mirror(map, stripe_index,
2969 map->sub_stripes, stripe_index +
2970 current->pid % map->sub_stripes);
2971 }
Chris Mason8790d502008-04-03 16:29:03 -04002972 } else {
2973 /*
2974 * after this do_div call, stripe_nr is the number of stripes
2975 * on this device we have to walk to find the data, and
2976 * stripe_index is the number of our device in the stripe array
2977 */
2978 stripe_index = do_div(stripe_nr, map->num_stripes);
2979 }
Chris Mason593060d2008-03-25 16:50:33 -04002980 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04002981
Chris Masonf2d8d742008-04-21 10:03:05 -04002982 for (i = 0; i < num_stripes; i++) {
2983 if (unplug_page) {
2984 struct btrfs_device *device;
2985 struct backing_dev_info *bdi;
2986
2987 device = map->stripes[stripe_index].dev;
Chris Masondfe25022008-05-13 13:46:40 -04002988 if (device->bdev) {
2989 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masond3977122009-01-05 21:25:51 -05002990 if (bdi->unplug_io_fn)
Chris Masondfe25022008-05-13 13:46:40 -04002991 bdi->unplug_io_fn(bdi, unplug_page);
Chris Masonf2d8d742008-04-21 10:03:05 -04002992 }
2993 } else {
2994 multi->stripes[i].physical =
2995 map->stripes[stripe_index].physical +
2996 stripe_offset + stripe_nr * map->stripe_len;
2997 multi->stripes[i].dev = map->stripes[stripe_index].dev;
2998 }
Chris Masoncea9e442008-04-09 16:28:12 -04002999 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04003000 }
Chris Masonf2d8d742008-04-21 10:03:05 -04003001 if (multi_ret) {
3002 *multi_ret = multi;
3003 multi->num_stripes = num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04003004 multi->max_errors = max_errors;
Chris Masonf2d8d742008-04-21 10:03:05 -04003005 }
Chris Masoncea9e442008-04-09 16:28:12 -04003006out:
Chris Mason0b86a832008-03-24 15:01:56 -04003007 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04003008 return 0;
3009}
3010
Chris Masonf2d8d742008-04-21 10:03:05 -04003011int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
3012 u64 logical, u64 *length,
3013 struct btrfs_multi_bio **multi_ret, int mirror_num)
3014{
3015 return __btrfs_map_block(map_tree, rw, logical, length, multi_ret,
3016 mirror_num, NULL);
3017}
3018
Yan Zhenga512bbf2008-12-08 16:46:26 -05003019int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
3020 u64 chunk_start, u64 physical, u64 devid,
3021 u64 **logical, int *naddrs, int *stripe_len)
3022{
3023 struct extent_map_tree *em_tree = &map_tree->map_tree;
3024 struct extent_map *em;
3025 struct map_lookup *map;
3026 u64 *buf;
3027 u64 bytenr;
3028 u64 length;
3029 u64 stripe_nr;
3030 int i, j, nr = 0;
3031
Chris Mason890871b2009-09-02 16:24:52 -04003032 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003033 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003034 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003035
3036 BUG_ON(!em || em->start != chunk_start);
3037 map = (struct map_lookup *)em->bdev;
3038
3039 length = em->len;
3040 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
3041 do_div(length, map->num_stripes / map->sub_stripes);
3042 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
3043 do_div(length, map->num_stripes);
3044
3045 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
3046 BUG_ON(!buf);
3047
3048 for (i = 0; i < map->num_stripes; i++) {
3049 if (devid && map->stripes[i].dev->devid != devid)
3050 continue;
3051 if (map->stripes[i].physical > physical ||
3052 map->stripes[i].physical + length <= physical)
3053 continue;
3054
3055 stripe_nr = physical - map->stripes[i].physical;
3056 do_div(stripe_nr, map->stripe_len);
3057
3058 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3059 stripe_nr = stripe_nr * map->num_stripes + i;
3060 do_div(stripe_nr, map->sub_stripes);
3061 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3062 stripe_nr = stripe_nr * map->num_stripes + i;
3063 }
3064 bytenr = chunk_start + stripe_nr * map->stripe_len;
Chris Mason934d3752008-12-08 16:43:10 -05003065 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003066 for (j = 0; j < nr; j++) {
3067 if (buf[j] == bytenr)
3068 break;
3069 }
Chris Mason934d3752008-12-08 16:43:10 -05003070 if (j == nr) {
3071 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003072 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05003073 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05003074 }
3075
Yan Zhenga512bbf2008-12-08 16:46:26 -05003076 *logical = buf;
3077 *naddrs = nr;
3078 *stripe_len = map->stripe_len;
3079
3080 free_extent_map(em);
3081 return 0;
3082}
3083
Chris Masonf2d8d742008-04-21 10:03:05 -04003084int btrfs_unplug_page(struct btrfs_mapping_tree *map_tree,
3085 u64 logical, struct page *page)
3086{
3087 u64 length = PAGE_CACHE_SIZE;
3088 return __btrfs_map_block(map_tree, READ, logical, &length,
3089 NULL, 0, page);
3090}
3091
Chris Mason8790d502008-04-03 16:29:03 -04003092static void end_bio_multi_stripe(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04003093{
Chris Masoncea9e442008-04-09 16:28:12 -04003094 struct btrfs_multi_bio *multi = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04003095 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04003096
Chris Mason8790d502008-04-03 16:29:03 -04003097 if (err)
Chris Masona236aed2008-04-29 09:38:00 -04003098 atomic_inc(&multi->error);
Chris Mason8790d502008-04-03 16:29:03 -04003099
Chris Mason7d2b4da2008-08-05 10:13:57 -04003100 if (bio == multi->orig_bio)
3101 is_orig_bio = 1;
3102
Chris Masoncea9e442008-04-09 16:28:12 -04003103 if (atomic_dec_and_test(&multi->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04003104 if (!is_orig_bio) {
3105 bio_put(bio);
3106 bio = multi->orig_bio;
3107 }
Chris Mason8790d502008-04-03 16:29:03 -04003108 bio->bi_private = multi->private;
3109 bio->bi_end_io = multi->end_io;
Chris Masona236aed2008-04-29 09:38:00 -04003110 /* only send an error to the higher layers if it is
3111 * beyond the tolerance of the multi-bio
3112 */
Chris Mason1259ab72008-05-12 13:39:03 -04003113 if (atomic_read(&multi->error) > multi->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04003114 err = -EIO;
Chris Mason1259ab72008-05-12 13:39:03 -04003115 } else if (err) {
3116 /*
3117 * this bio is actually up to date, we didn't
3118 * go over the max number of errors
3119 */
3120 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04003121 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04003122 }
Chris Mason8790d502008-04-03 16:29:03 -04003123 kfree(multi);
3124
3125 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04003126 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04003127 bio_put(bio);
3128 }
Chris Mason8790d502008-04-03 16:29:03 -04003129}
3130
Chris Mason8b712842008-06-11 16:50:36 -04003131struct async_sched {
3132 struct bio *bio;
3133 int rw;
3134 struct btrfs_fs_info *info;
3135 struct btrfs_work work;
3136};
3137
3138/*
3139 * see run_scheduled_bios for a description of why bios are collected for
3140 * async submit.
3141 *
3142 * This will add one bio to the pending list for a device and make sure
3143 * the work struct is scheduled.
3144 */
Chris Masond3977122009-01-05 21:25:51 -05003145static noinline int schedule_bio(struct btrfs_root *root,
Chris Masona1b32a52008-09-05 16:09:51 -04003146 struct btrfs_device *device,
3147 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04003148{
3149 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04003150 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04003151
3152 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003153 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04003154 bio_get(bio);
Chris Mason8b712842008-06-11 16:50:36 -04003155 submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04003156 bio_put(bio);
Chris Mason8b712842008-06-11 16:50:36 -04003157 return 0;
3158 }
3159
3160 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04003161 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04003162 * higher layers. Otherwise, the async bio makes it appear we have
3163 * made progress against dirty pages when we've really just put it
3164 * on a queue for later
3165 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04003166 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04003167 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04003168 bio->bi_next = NULL;
3169 bio->bi_rw |= rw;
3170
3171 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003172 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04003173 pending_bios = &device->pending_sync_bios;
3174 else
3175 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04003176
Chris Masonffbd5172009-04-20 15:50:09 -04003177 if (pending_bios->tail)
3178 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04003179
Chris Masonffbd5172009-04-20 15:50:09 -04003180 pending_bios->tail = bio;
3181 if (!pending_bios->head)
3182 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04003183 if (device->running_pending)
3184 should_queue = 0;
3185
3186 spin_unlock(&device->io_lock);
3187
3188 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04003189 btrfs_queue_worker(&root->fs_info->submit_workers,
3190 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04003191 return 0;
3192}
3193
Chris Masonf1885912008-04-09 16:28:12 -04003194int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04003195 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04003196{
3197 struct btrfs_mapping_tree *map_tree;
3198 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04003199 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04003200 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04003201 u64 length = 0;
3202 u64 map_length;
Chris Masoncea9e442008-04-09 16:28:12 -04003203 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04003204 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04003205 int dev_nr = 0;
3206 int total_devs = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04003207
Chris Masonf2d8d742008-04-21 10:03:05 -04003208 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04003209 map_tree = &root->fs_info->mapping_tree;
3210 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04003211
Chris Masonf1885912008-04-09 16:28:12 -04003212 ret = btrfs_map_block(map_tree, rw, logical, &map_length, &multi,
3213 mirror_num);
Chris Masoncea9e442008-04-09 16:28:12 -04003214 BUG_ON(ret);
3215
3216 total_devs = multi->num_stripes;
3217 if (map_length < length) {
Chris Masond3977122009-01-05 21:25:51 -05003218 printk(KERN_CRIT "mapping failed logical %llu bio len %llu "
3219 "len %llu\n", (unsigned long long)logical,
3220 (unsigned long long)length,
3221 (unsigned long long)map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04003222 BUG();
3223 }
3224 multi->end_io = first_bio->bi_end_io;
3225 multi->private = first_bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04003226 multi->orig_bio = first_bio;
Chris Masoncea9e442008-04-09 16:28:12 -04003227 atomic_set(&multi->stripes_pending, multi->num_stripes);
3228
Chris Masond3977122009-01-05 21:25:51 -05003229 while (dev_nr < total_devs) {
Chris Mason8790d502008-04-03 16:29:03 -04003230 if (total_devs > 1) {
Chris Mason8790d502008-04-03 16:29:03 -04003231 if (dev_nr < total_devs - 1) {
3232 bio = bio_clone(first_bio, GFP_NOFS);
3233 BUG_ON(!bio);
3234 } else {
3235 bio = first_bio;
3236 }
3237 bio->bi_private = multi;
3238 bio->bi_end_io = end_bio_multi_stripe;
3239 }
Chris Masoncea9e442008-04-09 16:28:12 -04003240 bio->bi_sector = multi->stripes[dev_nr].physical >> 9;
3241 dev = multi->stripes[dev_nr].dev;
Chris Mason18e503d2010-10-28 15:30:42 -04003242 if (dev && dev->bdev && (rw != WRITE || dev->writeable)) {
Chris Masondfe25022008-05-13 13:46:40 -04003243 bio->bi_bdev = dev->bdev;
Chris Mason8b712842008-06-11 16:50:36 -04003244 if (async_submit)
3245 schedule_bio(root, dev, rw, bio);
3246 else
3247 submit_bio(rw, bio);
Chris Masondfe25022008-05-13 13:46:40 -04003248 } else {
3249 bio->bi_bdev = root->fs_info->fs_devices->latest_bdev;
3250 bio->bi_sector = logical >> 9;
Chris Masondfe25022008-05-13 13:46:40 -04003251 bio_endio(bio, -EIO);
Chris Masondfe25022008-05-13 13:46:40 -04003252 }
Chris Mason8790d502008-04-03 16:29:03 -04003253 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04003254 }
Chris Masoncea9e442008-04-09 16:28:12 -04003255 if (total_devs == 1)
3256 kfree(multi);
Chris Mason0b86a832008-03-24 15:01:56 -04003257 return 0;
3258}
3259
Chris Masona4437552008-04-18 10:29:38 -04003260struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05003261 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04003262{
Yan Zheng2b820322008-11-17 21:11:30 -05003263 struct btrfs_device *device;
3264 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04003265
Yan Zheng2b820322008-11-17 21:11:30 -05003266 cur_devices = root->fs_info->fs_devices;
3267 while (cur_devices) {
3268 if (!fsid ||
3269 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3270 device = __find_device(&cur_devices->devices,
3271 devid, uuid);
3272 if (device)
3273 return device;
3274 }
3275 cur_devices = cur_devices->seed;
3276 }
3277 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04003278}
3279
Chris Masondfe25022008-05-13 13:46:40 -04003280static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
3281 u64 devid, u8 *dev_uuid)
3282{
3283 struct btrfs_device *device;
3284 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
3285
3286 device = kzalloc(sizeof(*device), GFP_NOFS);
yanhai zhu7cbd8a82008-11-12 14:38:54 -05003287 if (!device)
3288 return NULL;
Chris Masondfe25022008-05-13 13:46:40 -04003289 list_add(&device->dev_list,
3290 &fs_devices->devices);
Chris Masondfe25022008-05-13 13:46:40 -04003291 device->barriers = 1;
3292 device->dev_root = root->fs_info->dev_root;
3293 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -04003294 device->work.func = pending_bios_fn;
Yan Zhenge4404d62008-12-12 10:03:26 -05003295 device->fs_devices = fs_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05003296 device->missing = 1;
Chris Masondfe25022008-05-13 13:46:40 -04003297 fs_devices->num_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05003298 fs_devices->missing_devices++;
Chris Masondfe25022008-05-13 13:46:40 -04003299 spin_lock_init(&device->io_lock);
Chris Masond20f7042008-12-08 16:58:54 -05003300 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masondfe25022008-05-13 13:46:40 -04003301 memcpy(device->uuid, dev_uuid, BTRFS_UUID_SIZE);
3302 return device;
3303}
3304
Chris Mason0b86a832008-03-24 15:01:56 -04003305static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
3306 struct extent_buffer *leaf,
3307 struct btrfs_chunk *chunk)
3308{
3309 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
3310 struct map_lookup *map;
3311 struct extent_map *em;
3312 u64 logical;
3313 u64 length;
3314 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04003315 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04003316 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04003317 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04003318 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04003319
Chris Masone17cade2008-04-15 15:41:47 -04003320 logical = key->offset;
3321 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04003322
Chris Mason890871b2009-09-02 16:24:52 -04003323 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003324 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003325 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003326
3327 /* already mapped? */
3328 if (em && em->start <= logical && em->start + em->len > logical) {
3329 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04003330 return 0;
3331 } else if (em) {
3332 free_extent_map(em);
3333 }
Chris Mason0b86a832008-03-24 15:01:56 -04003334
Chris Mason0b86a832008-03-24 15:01:56 -04003335 em = alloc_extent_map(GFP_NOFS);
3336 if (!em)
3337 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04003338 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3339 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04003340 if (!map) {
3341 free_extent_map(em);
3342 return -ENOMEM;
3343 }
3344
3345 em->bdev = (struct block_device *)map;
3346 em->start = logical;
3347 em->len = length;
3348 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003349 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04003350
Chris Mason593060d2008-03-25 16:50:33 -04003351 map->num_stripes = num_stripes;
3352 map->io_width = btrfs_chunk_io_width(leaf, chunk);
3353 map->io_align = btrfs_chunk_io_align(leaf, chunk);
3354 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
3355 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
3356 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04003357 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04003358 for (i = 0; i < num_stripes; i++) {
3359 map->stripes[i].physical =
3360 btrfs_stripe_offset_nr(leaf, chunk, i);
3361 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04003362 read_extent_buffer(leaf, uuid, (unsigned long)
3363 btrfs_stripe_dev_uuid_nr(chunk, i),
3364 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003365 map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
3366 NULL);
Chris Masondfe25022008-05-13 13:46:40 -04003367 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04003368 kfree(map);
3369 free_extent_map(em);
3370 return -EIO;
3371 }
Chris Masondfe25022008-05-13 13:46:40 -04003372 if (!map->stripes[i].dev) {
3373 map->stripes[i].dev =
3374 add_missing_dev(root, devid, uuid);
3375 if (!map->stripes[i].dev) {
3376 kfree(map);
3377 free_extent_map(em);
3378 return -EIO;
3379 }
3380 }
3381 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04003382 }
3383
Chris Mason890871b2009-09-02 16:24:52 -04003384 write_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003385 ret = add_extent_mapping(&map_tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04003386 write_unlock(&map_tree->map_tree.lock);
Chris Masonb248a412008-04-14 09:48:18 -04003387 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04003388 free_extent_map(em);
3389
3390 return 0;
3391}
3392
3393static int fill_device_from_item(struct extent_buffer *leaf,
3394 struct btrfs_dev_item *dev_item,
3395 struct btrfs_device *device)
3396{
3397 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04003398
3399 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04003400 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
3401 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003402 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
3403 device->type = btrfs_device_type(leaf, dev_item);
3404 device->io_align = btrfs_device_io_align(leaf, dev_item);
3405 device->io_width = btrfs_device_io_width(leaf, dev_item);
3406 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Chris Mason0b86a832008-03-24 15:01:56 -04003407
3408 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04003409 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003410
Chris Mason0b86a832008-03-24 15:01:56 -04003411 return 0;
3412}
3413
Yan Zheng2b820322008-11-17 21:11:30 -05003414static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
3415{
3416 struct btrfs_fs_devices *fs_devices;
3417 int ret;
3418
3419 mutex_lock(&uuid_mutex);
3420
3421 fs_devices = root->fs_info->fs_devices->seed;
3422 while (fs_devices) {
3423 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3424 ret = 0;
3425 goto out;
3426 }
3427 fs_devices = fs_devices->seed;
3428 }
3429
3430 fs_devices = find_fsid(fsid);
3431 if (!fs_devices) {
3432 ret = -ENOENT;
3433 goto out;
3434 }
Yan Zhenge4404d62008-12-12 10:03:26 -05003435
3436 fs_devices = clone_fs_devices(fs_devices);
3437 if (IS_ERR(fs_devices)) {
3438 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003439 goto out;
3440 }
3441
Christoph Hellwig97288f22008-12-02 06:36:09 -05003442 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05003443 root->fs_info->bdev_holder);
Yan Zheng2b820322008-11-17 21:11:30 -05003444 if (ret)
3445 goto out;
3446
3447 if (!fs_devices->seeding) {
3448 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05003449 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003450 ret = -EINVAL;
3451 goto out;
3452 }
3453
3454 fs_devices->seed = root->fs_info->fs_devices->seed;
3455 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05003456out:
3457 mutex_unlock(&uuid_mutex);
3458 return ret;
3459}
3460
Chris Mason0d81ba52008-03-24 15:02:07 -04003461static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003462 struct extent_buffer *leaf,
3463 struct btrfs_dev_item *dev_item)
3464{
3465 struct btrfs_device *device;
3466 u64 devid;
3467 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003468 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04003469 u8 dev_uuid[BTRFS_UUID_SIZE];
3470
Chris Mason0b86a832008-03-24 15:01:56 -04003471 devid = btrfs_device_id(leaf, dev_item);
Chris Masona4437552008-04-18 10:29:38 -04003472 read_extent_buffer(leaf, dev_uuid,
3473 (unsigned long)btrfs_device_uuid(dev_item),
3474 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003475 read_extent_buffer(leaf, fs_uuid,
3476 (unsigned long)btrfs_device_fsid(dev_item),
3477 BTRFS_UUID_SIZE);
3478
3479 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
3480 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05003481 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003482 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003483 }
3484
3485 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
3486 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05003487 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003488 return -EIO;
3489
3490 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05003491 printk(KERN_WARNING "warning devid %llu missing\n",
3492 (unsigned long long)devid);
Yan Zheng2b820322008-11-17 21:11:30 -05003493 device = add_missing_dev(root, devid, dev_uuid);
3494 if (!device)
3495 return -ENOMEM;
Chris Masoncd02dca2010-12-13 14:56:23 -05003496 } else if (!device->missing) {
3497 /*
3498 * this happens when a device that was properly setup
3499 * in the device info lists suddenly goes bad.
3500 * device->bdev is NULL, and so we have to set
3501 * device->missing to one here
3502 */
3503 root->fs_info->fs_devices->missing_devices++;
3504 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05003505 }
3506 }
3507
3508 if (device->fs_devices != root->fs_info->fs_devices) {
3509 BUG_ON(device->writeable);
3510 if (device->generation !=
3511 btrfs_device_generation(leaf, dev_item))
3512 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04003513 }
Chris Mason0b86a832008-03-24 15:01:56 -04003514
3515 fill_device_from_item(leaf, dev_item, device);
3516 device->dev_root = root->fs_info->dev_root;
Chris Masondfe25022008-05-13 13:46:40 -04003517 device->in_fs_metadata = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05003518 if (device->writeable)
3519 device->fs_devices->total_rw_bytes += device->total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003520 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003521 return ret;
3522}
3523
Chris Mason0d81ba52008-03-24 15:02:07 -04003524int btrfs_read_super_device(struct btrfs_root *root, struct extent_buffer *buf)
3525{
3526 struct btrfs_dev_item *dev_item;
3527
3528 dev_item = (struct btrfs_dev_item *)offsetof(struct btrfs_super_block,
3529 dev_item);
3530 return read_one_dev(root, buf, dev_item);
3531}
3532
Yan Zhenge4404d62008-12-12 10:03:26 -05003533int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04003534{
3535 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04003536 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04003537 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04003538 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04003539 u8 *ptr;
3540 unsigned long sb_ptr;
3541 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003542 u32 num_stripes;
3543 u32 array_size;
3544 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003545 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04003546 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04003547
Yan Zhenge4404d62008-12-12 10:03:26 -05003548 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04003549 BTRFS_SUPER_INFO_SIZE);
3550 if (!sb)
3551 return -ENOMEM;
3552 btrfs_set_buffer_uptodate(sb);
Chris Mason4008c042009-02-12 14:09:45 -05003553 btrfs_set_buffer_lockdep_class(sb, 0);
3554
Chris Masona061fc82008-05-07 11:43:44 -04003555 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003556 array_size = btrfs_super_sys_array_size(super_copy);
3557
Chris Mason0b86a832008-03-24 15:01:56 -04003558 ptr = super_copy->sys_chunk_array;
3559 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
3560 cur = 0;
3561
3562 while (cur < array_size) {
3563 disk_key = (struct btrfs_disk_key *)ptr;
3564 btrfs_disk_key_to_cpu(&key, disk_key);
3565
Chris Masona061fc82008-05-07 11:43:44 -04003566 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04003567 sb_ptr += len;
3568 cur += len;
3569
Chris Mason0d81ba52008-03-24 15:02:07 -04003570 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04003571 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04003572 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04003573 if (ret)
3574 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003575 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
3576 len = btrfs_chunk_item_size(num_stripes);
3577 } else {
Chris Mason84eed902008-04-25 09:04:37 -04003578 ret = -EIO;
3579 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003580 }
3581 ptr += len;
3582 sb_ptr += len;
3583 cur += len;
3584 }
Chris Masona061fc82008-05-07 11:43:44 -04003585 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04003586 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04003587}
3588
3589int btrfs_read_chunk_tree(struct btrfs_root *root)
3590{
3591 struct btrfs_path *path;
3592 struct extent_buffer *leaf;
3593 struct btrfs_key key;
3594 struct btrfs_key found_key;
3595 int ret;
3596 int slot;
3597
3598 root = root->fs_info->chunk_root;
3599
3600 path = btrfs_alloc_path();
3601 if (!path)
3602 return -ENOMEM;
3603
3604 /* first we search for all of the device items, and then we
3605 * read in all of the chunk items. This way we can create chunk
3606 * mappings that reference all of the devices that are afound
3607 */
3608 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
3609 key.offset = 0;
3610 key.type = 0;
3611again:
3612 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00003613 if (ret < 0)
3614 goto error;
Chris Masond3977122009-01-05 21:25:51 -05003615 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003616 leaf = path->nodes[0];
3617 slot = path->slots[0];
3618 if (slot >= btrfs_header_nritems(leaf)) {
3619 ret = btrfs_next_leaf(root, path);
3620 if (ret == 0)
3621 continue;
3622 if (ret < 0)
3623 goto error;
3624 break;
3625 }
3626 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3627 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3628 if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
3629 break;
3630 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
3631 struct btrfs_dev_item *dev_item;
3632 dev_item = btrfs_item_ptr(leaf, slot,
3633 struct btrfs_dev_item);
Chris Mason0d81ba52008-03-24 15:02:07 -04003634 ret = read_one_dev(root, leaf, dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05003635 if (ret)
3636 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003637 }
3638 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
3639 struct btrfs_chunk *chunk;
3640 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3641 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05003642 if (ret)
3643 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003644 }
3645 path->slots[0]++;
3646 }
3647 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3648 key.objectid = 0;
3649 btrfs_release_path(root, path);
3650 goto again;
3651 }
Chris Mason0b86a832008-03-24 15:01:56 -04003652 ret = 0;
3653error:
Yan Zheng2b820322008-11-17 21:11:30 -05003654 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04003655 return ret;
3656}