blob: 1692ec9cd7b02123e093c54556b646c65eec312f [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 Mason492bb6d2008-07-31 16:29:02 -0400258
259 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400260
Jens Axboe1f98a132009-09-11 14:32:04 +0200261 if (bio_rw_flagged(cur, BIO_RW_SYNCIO))
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++;
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000416 } else if (strcmp(device->name, path)) {
417 name = kstrdup(path, GFP_NOFS);
418 if (!name)
419 return -ENOMEM;
420 kfree(device->name);
421 device->name = name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400422 }
423
424 if (found_transid > fs_devices->latest_trans) {
425 fs_devices->latest_devid = devid;
426 fs_devices->latest_trans = found_transid;
427 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400428 *fs_devices_ret = fs_devices;
429 return 0;
430}
431
Yan Zhenge4404d62008-12-12 10:03:26 -0500432static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
433{
434 struct btrfs_fs_devices *fs_devices;
435 struct btrfs_device *device;
436 struct btrfs_device *orig_dev;
437
438 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
439 if (!fs_devices)
440 return ERR_PTR(-ENOMEM);
441
442 INIT_LIST_HEAD(&fs_devices->devices);
443 INIT_LIST_HEAD(&fs_devices->alloc_list);
444 INIT_LIST_HEAD(&fs_devices->list);
Chris Masone5e9a522009-06-10 15:17:02 -0400445 mutex_init(&fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500446 fs_devices->latest_devid = orig->latest_devid;
447 fs_devices->latest_trans = orig->latest_trans;
448 memcpy(fs_devices->fsid, orig->fsid, sizeof(fs_devices->fsid));
449
Chris Masone5e9a522009-06-10 15:17:02 -0400450 mutex_lock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500451 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
452 device = kzalloc(sizeof(*device), GFP_NOFS);
453 if (!device)
454 goto error;
455
456 device->name = kstrdup(orig_dev->name, GFP_NOFS);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400457 if (!device->name) {
458 kfree(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500459 goto error;
Julia Lawallfd2696f2009-09-29 13:51:04 -0400460 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500461
462 device->devid = orig_dev->devid;
463 device->work.func = pending_bios_fn;
464 memcpy(device->uuid, orig_dev->uuid, sizeof(device->uuid));
465 device->barriers = 1;
466 spin_lock_init(&device->io_lock);
467 INIT_LIST_HEAD(&device->dev_list);
468 INIT_LIST_HEAD(&device->dev_alloc_list);
469
470 list_add(&device->dev_list, &fs_devices->devices);
471 device->fs_devices = fs_devices;
472 fs_devices->num_devices++;
473 }
Chris Masone5e9a522009-06-10 15:17:02 -0400474 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500475 return fs_devices;
476error:
Chris Masone5e9a522009-06-10 15:17:02 -0400477 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500478 free_fs_devices(fs_devices);
479 return ERR_PTR(-ENOMEM);
480}
481
Chris Masondfe25022008-05-13 13:46:40 -0400482int btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices)
483{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500484 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400485
486 mutex_lock(&uuid_mutex);
487again:
Chris Masone5e9a522009-06-10 15:17:02 -0400488 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500489 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Yan Zheng2b820322008-11-17 21:11:30 -0500490 if (device->in_fs_metadata)
491 continue;
492
493 if (device->bdev) {
Chris Mason15916de2008-11-19 21:17:22 -0500494 close_bdev_exclusive(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500495 device->bdev = NULL;
496 fs_devices->open_devices--;
497 }
498 if (device->writeable) {
499 list_del_init(&device->dev_alloc_list);
500 device->writeable = 0;
501 fs_devices->rw_devices--;
502 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500503 list_del_init(&device->dev_list);
504 fs_devices->num_devices--;
505 kfree(device->name);
506 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400507 }
Chris Masone5e9a522009-06-10 15:17:02 -0400508 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -0500509
510 if (fs_devices->seed) {
511 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500512 goto again;
513 }
514
Chris Masondfe25022008-05-13 13:46:40 -0400515 mutex_unlock(&uuid_mutex);
516 return 0;
517}
Chris Masona0af4692008-05-13 16:03:06 -0400518
Yan Zheng2b820322008-11-17 21:11:30 -0500519static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400520{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400521 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500522
Yan Zheng2b820322008-11-17 21:11:30 -0500523 if (--fs_devices->opened > 0)
524 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400525
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500526 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400527 if (device->bdev) {
Chris Mason15916de2008-11-19 21:17:22 -0500528 close_bdev_exclusive(device->bdev, device->mode);
Chris Masona0af4692008-05-13 16:03:06 -0400529 fs_devices->open_devices--;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400530 }
Yan Zheng2b820322008-11-17 21:11:30 -0500531 if (device->writeable) {
532 list_del_init(&device->dev_alloc_list);
533 fs_devices->rw_devices--;
534 }
535
Chris Mason8a4b83c2008-03-24 15:02:07 -0400536 device->bdev = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500537 device->writeable = 0;
Chris Masondfe25022008-05-13 13:46:40 -0400538 device->in_fs_metadata = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400539 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500540 WARN_ON(fs_devices->open_devices);
541 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500542 fs_devices->opened = 0;
543 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500544
Chris Mason8a4b83c2008-03-24 15:02:07 -0400545 return 0;
546}
547
Yan Zheng2b820322008-11-17 21:11:30 -0500548int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
549{
Yan Zhenge4404d62008-12-12 10:03:26 -0500550 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500551 int ret;
552
553 mutex_lock(&uuid_mutex);
554 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500555 if (!fs_devices->opened) {
556 seed_devices = fs_devices->seed;
557 fs_devices->seed = NULL;
558 }
Yan Zheng2b820322008-11-17 21:11:30 -0500559 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500560
561 while (seed_devices) {
562 fs_devices = seed_devices;
563 seed_devices = fs_devices->seed;
564 __btrfs_close_devices(fs_devices);
565 free_fs_devices(fs_devices);
566 }
Yan Zheng2b820322008-11-17 21:11:30 -0500567 return ret;
568}
569
Yan Zhenge4404d62008-12-12 10:03:26 -0500570static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
571 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400572{
573 struct block_device *bdev;
574 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400575 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400576 struct block_device *latest_bdev = NULL;
577 struct buffer_head *bh;
578 struct btrfs_super_block *disk_super;
579 u64 latest_devid = 0;
580 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400581 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500582 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400583 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400584
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500585 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400586 if (device->bdev)
587 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400588 if (!device->name)
589 continue;
590
Chris Mason15916de2008-11-19 21:17:22 -0500591 bdev = open_bdev_exclusive(device->name, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400592 if (IS_ERR(bdev)) {
Chris Masond3977122009-01-05 21:25:51 -0500593 printk(KERN_INFO "open %s failed\n", device->name);
Chris Masona0af4692008-05-13 16:03:06 -0400594 goto error;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400595 }
Chris Masona061fc82008-05-07 11:43:44 -0400596 set_blocksize(bdev, 4096);
Chris Masona0af4692008-05-13 16:03:06 -0400597
Yan Zhenga512bbf2008-12-08 16:46:26 -0500598 bh = btrfs_read_dev_super(bdev);
Chris Masona0af4692008-05-13 16:03:06 -0400599 if (!bh)
600 goto error_close;
601
602 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000603 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400604 if (devid != device->devid)
605 goto error_brelse;
606
Yan Zheng2b820322008-11-17 21:11:30 -0500607 if (memcmp(device->uuid, disk_super->dev_item.uuid,
608 BTRFS_UUID_SIZE))
609 goto error_brelse;
610
611 device->generation = btrfs_super_generation(disk_super);
612 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400613 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500614 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400615 latest_bdev = bdev;
616 }
617
Yan Zheng2b820322008-11-17 21:11:30 -0500618 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
619 device->writeable = 0;
620 } else {
621 device->writeable = !bdev_read_only(bdev);
622 seeding = 0;
623 }
624
Chris Mason8a4b83c2008-03-24 15:02:07 -0400625 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400626 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500627 device->mode = flags;
628
Chris Masonc2898112009-06-10 09:51:32 -0400629 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
630 fs_devices->rotating = 1;
631
Chris Masona0af4692008-05-13 16:03:06 -0400632 fs_devices->open_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -0500633 if (device->writeable) {
634 fs_devices->rw_devices++;
635 list_add(&device->dev_alloc_list,
636 &fs_devices->alloc_list);
637 }
Chris Masona0af4692008-05-13 16:03:06 -0400638 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400639
Chris Masona0af4692008-05-13 16:03:06 -0400640error_brelse:
641 brelse(bh);
642error_close:
Christoph Hellwig97288f22008-12-02 06:36:09 -0500643 close_bdev_exclusive(bdev, FMODE_READ);
Chris Masona0af4692008-05-13 16:03:06 -0400644error:
645 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400646 }
Chris Masona0af4692008-05-13 16:03:06 -0400647 if (fs_devices->open_devices == 0) {
648 ret = -EIO;
649 goto out;
650 }
Yan Zheng2b820322008-11-17 21:11:30 -0500651 fs_devices->seeding = seeding;
652 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400653 fs_devices->latest_bdev = latest_bdev;
654 fs_devices->latest_devid = latest_devid;
655 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500656 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400657out:
Yan Zheng2b820322008-11-17 21:11:30 -0500658 return ret;
659}
660
661int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500662 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500663{
664 int ret;
665
666 mutex_lock(&uuid_mutex);
667 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500668 fs_devices->opened++;
669 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500670 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500671 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500672 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400673 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400674 return ret;
675}
676
Christoph Hellwig97288f22008-12-02 06:36:09 -0500677int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400678 struct btrfs_fs_devices **fs_devices_ret)
679{
680 struct btrfs_super_block *disk_super;
681 struct block_device *bdev;
682 struct buffer_head *bh;
683 int ret;
684 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400685 u64 transid;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400686
687 mutex_lock(&uuid_mutex);
688
Chris Mason15916de2008-11-19 21:17:22 -0500689 bdev = open_bdev_exclusive(path, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400690
691 if (IS_ERR(bdev)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400692 ret = PTR_ERR(bdev);
693 goto error;
694 }
695
696 ret = set_blocksize(bdev, 4096);
697 if (ret)
698 goto error_close;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500699 bh = btrfs_read_dev_super(bdev);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400700 if (!bh) {
701 ret = -EIO;
702 goto error_close;
703 }
704 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000705 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400706 transid = btrfs_super_generation(disk_super);
Chris Mason7ae9c092008-04-18 10:29:49 -0400707 if (disk_super->label[0])
Chris Masond3977122009-01-05 21:25:51 -0500708 printk(KERN_INFO "device label %s ", disk_super->label);
Chris Mason7ae9c092008-04-18 10:29:49 -0400709 else {
710 /* FIXME, make a readl uuid parser */
Chris Masond3977122009-01-05 21:25:51 -0500711 printk(KERN_INFO "device fsid %llx-%llx ",
Chris Mason7ae9c092008-04-18 10:29:49 -0400712 *(unsigned long long *)disk_super->fsid,
713 *(unsigned long long *)(disk_super->fsid + 8));
714 }
Roland Dreier119e10c2009-01-21 10:49:16 -0500715 printk(KERN_CONT "devid %llu transid %llu %s\n",
Chris Masond3977122009-01-05 21:25:51 -0500716 (unsigned long long)devid, (unsigned long long)transid, path);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400717 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
718
Chris Mason8a4b83c2008-03-24 15:02:07 -0400719 brelse(bh);
720error_close:
Chris Mason15916de2008-11-19 21:17:22 -0500721 close_bdev_exclusive(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400722error:
723 mutex_unlock(&uuid_mutex);
724 return ret;
725}
Chris Mason0b86a832008-03-24 15:01:56 -0400726
727/*
728 * this uses a pretty simple search, the expectation is that it is
729 * called very infrequently and that a given device has a small number
730 * of extents
731 */
Josef Bacikba1bf482009-09-11 16:11:19 -0400732int find_free_dev_extent(struct btrfs_trans_handle *trans,
733 struct btrfs_device *device, u64 num_bytes,
734 u64 *start, u64 *max_avail)
Chris Mason0b86a832008-03-24 15:01:56 -0400735{
736 struct btrfs_key key;
737 struct btrfs_root *root = device->dev_root;
738 struct btrfs_dev_extent *dev_extent = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500739 struct btrfs_path *path;
Chris Mason0b86a832008-03-24 15:01:56 -0400740 u64 hole_size = 0;
741 u64 last_byte = 0;
742 u64 search_start = 0;
743 u64 search_end = device->total_bytes;
744 int ret;
745 int slot = 0;
746 int start_found;
747 struct extent_buffer *l;
748
Yan Zheng2b820322008-11-17 21:11:30 -0500749 path = btrfs_alloc_path();
750 if (!path)
751 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400752 path->reada = 2;
Yan Zheng2b820322008-11-17 21:11:30 -0500753 start_found = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400754
755 /* FIXME use last free of some kind */
756
Chris Mason8a4b83c2008-03-24 15:02:07 -0400757 /* we don't want to overwrite the superblock on the drive,
758 * so we make sure to start at an offset of at least 1MB
759 */
760 search_start = max((u64)1024 * 1024, search_start);
Chris Mason8f18cf12008-04-25 16:53:30 -0400761
762 if (root->fs_info->alloc_start + num_bytes <= device->total_bytes)
763 search_start = max(root->fs_info->alloc_start, search_start);
764
Chris Mason0b86a832008-03-24 15:01:56 -0400765 key.objectid = device->devid;
766 key.offset = search_start;
767 key.type = BTRFS_DEV_EXTENT_KEY;
768 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
769 if (ret < 0)
770 goto error;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400771 if (ret > 0) {
772 ret = btrfs_previous_item(root, path, key.objectid, key.type);
773 if (ret < 0)
774 goto error;
775 if (ret > 0)
776 start_found = 1;
777 }
Chris Mason0b86a832008-03-24 15:01:56 -0400778 l = path->nodes[0];
779 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
780 while (1) {
781 l = path->nodes[0];
782 slot = path->slots[0];
783 if (slot >= btrfs_header_nritems(l)) {
784 ret = btrfs_next_leaf(root, path);
785 if (ret == 0)
786 continue;
787 if (ret < 0)
788 goto error;
789no_more_items:
790 if (!start_found) {
791 if (search_start >= search_end) {
792 ret = -ENOSPC;
793 goto error;
794 }
795 *start = search_start;
796 start_found = 1;
797 goto check_pending;
798 }
799 *start = last_byte > search_start ?
800 last_byte : search_start;
801 if (search_end <= *start) {
802 ret = -ENOSPC;
803 goto error;
804 }
805 goto check_pending;
806 }
807 btrfs_item_key_to_cpu(l, &key, slot);
808
809 if (key.objectid < device->devid)
810 goto next;
811
812 if (key.objectid > device->devid)
813 goto no_more_items;
814
815 if (key.offset >= search_start && key.offset > last_byte &&
816 start_found) {
817 if (last_byte < search_start)
818 last_byte = search_start;
819 hole_size = key.offset - last_byte;
Chris Mason9779b722009-07-24 16:41:41 -0400820
821 if (hole_size > *max_avail)
822 *max_avail = hole_size;
823
Chris Mason0b86a832008-03-24 15:01:56 -0400824 if (key.offset > last_byte &&
825 hole_size >= num_bytes) {
826 *start = last_byte;
827 goto check_pending;
828 }
829 }
Chris Masond3977122009-01-05 21:25:51 -0500830 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400831 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400832
833 start_found = 1;
834 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
835 last_byte = key.offset + btrfs_dev_extent_length(l, dev_extent);
836next:
837 path->slots[0]++;
838 cond_resched();
839 }
840check_pending:
841 /* we have to make sure we didn't find an extent that has already
842 * been allocated by the map tree or the original allocation
843 */
Chris Mason0b86a832008-03-24 15:01:56 -0400844 BUG_ON(*start < search_start);
845
Chris Mason6324fbf2008-03-24 15:01:59 -0400846 if (*start + num_bytes > search_end) {
Chris Mason0b86a832008-03-24 15:01:56 -0400847 ret = -ENOSPC;
848 goto error;
849 }
850 /* check for pending inserts here */
Yan Zheng2b820322008-11-17 21:11:30 -0500851 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400852
853error:
Yan Zheng2b820322008-11-17 21:11:30 -0500854 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -0400855 return ret;
856}
857
Christoph Hellwigb2950862008-12-02 09:54:17 -0500858static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -0400859 struct btrfs_device *device,
860 u64 start)
861{
862 int ret;
863 struct btrfs_path *path;
864 struct btrfs_root *root = device->dev_root;
865 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -0400866 struct btrfs_key found_key;
867 struct extent_buffer *leaf = NULL;
868 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -0400869
870 path = btrfs_alloc_path();
871 if (!path)
872 return -ENOMEM;
873
874 key.objectid = device->devid;
875 key.offset = start;
876 key.type = BTRFS_DEV_EXTENT_KEY;
877
878 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -0400879 if (ret > 0) {
880 ret = btrfs_previous_item(root, path, key.objectid,
881 BTRFS_DEV_EXTENT_KEY);
882 BUG_ON(ret);
883 leaf = path->nodes[0];
884 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
885 extent = btrfs_item_ptr(leaf, path->slots[0],
886 struct btrfs_dev_extent);
887 BUG_ON(found_key.offset > start || found_key.offset +
888 btrfs_dev_extent_length(leaf, extent) < start);
889 ret = 0;
890 } else if (ret == 0) {
891 leaf = path->nodes[0];
892 extent = btrfs_item_ptr(leaf, path->slots[0],
893 struct btrfs_dev_extent);
894 }
Chris Mason8f18cf12008-04-25 16:53:30 -0400895 BUG_ON(ret);
896
Chris Masondfe25022008-05-13 13:46:40 -0400897 if (device->bytes_used > 0)
898 device->bytes_used -= btrfs_dev_extent_length(leaf, extent);
Chris Mason8f18cf12008-04-25 16:53:30 -0400899 ret = btrfs_del_item(trans, root, path);
900 BUG_ON(ret);
901
902 btrfs_free_path(path);
903 return ret;
904}
905
Yan Zheng2b820322008-11-17 21:11:30 -0500906int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -0400907 struct btrfs_device *device,
Chris Masone17cade2008-04-15 15:41:47 -0400908 u64 chunk_tree, u64 chunk_objectid,
Yan Zheng2b820322008-11-17 21:11:30 -0500909 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -0400910{
911 int ret;
912 struct btrfs_path *path;
913 struct btrfs_root *root = device->dev_root;
914 struct btrfs_dev_extent *extent;
915 struct extent_buffer *leaf;
916 struct btrfs_key key;
917
Chris Masondfe25022008-05-13 13:46:40 -0400918 WARN_ON(!device->in_fs_metadata);
Chris Mason0b86a832008-03-24 15:01:56 -0400919 path = btrfs_alloc_path();
920 if (!path)
921 return -ENOMEM;
922
Chris Mason0b86a832008-03-24 15:01:56 -0400923 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500924 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400925 key.type = BTRFS_DEV_EXTENT_KEY;
926 ret = btrfs_insert_empty_item(trans, root, path, &key,
927 sizeof(*extent));
928 BUG_ON(ret);
929
930 leaf = path->nodes[0];
931 extent = btrfs_item_ptr(leaf, path->slots[0],
932 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -0400933 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
934 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
935 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
936
937 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
938 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
939 BTRFS_UUID_SIZE);
940
Chris Mason0b86a832008-03-24 15:01:56 -0400941 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
942 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -0400943 btrfs_free_path(path);
944 return ret;
945}
946
Chris Masona1b32a52008-09-05 16:09:51 -0400947static noinline int find_next_chunk(struct btrfs_root *root,
948 u64 objectid, u64 *offset)
Chris Mason0b86a832008-03-24 15:01:56 -0400949{
950 struct btrfs_path *path;
951 int ret;
952 struct btrfs_key key;
Chris Masone17cade2008-04-15 15:41:47 -0400953 struct btrfs_chunk *chunk;
Chris Mason0b86a832008-03-24 15:01:56 -0400954 struct btrfs_key found_key;
955
956 path = btrfs_alloc_path();
957 BUG_ON(!path);
958
Chris Masone17cade2008-04-15 15:41:47 -0400959 key.objectid = objectid;
Chris Mason0b86a832008-03-24 15:01:56 -0400960 key.offset = (u64)-1;
961 key.type = BTRFS_CHUNK_ITEM_KEY;
962
963 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
964 if (ret < 0)
965 goto error;
966
967 BUG_ON(ret == 0);
968
969 ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
970 if (ret) {
Chris Masone17cade2008-04-15 15:41:47 -0400971 *offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400972 } else {
973 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
974 path->slots[0]);
Chris Masone17cade2008-04-15 15:41:47 -0400975 if (found_key.objectid != objectid)
976 *offset = 0;
977 else {
978 chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
979 struct btrfs_chunk);
980 *offset = found_key.offset +
981 btrfs_chunk_length(path->nodes[0], chunk);
982 }
Chris Mason0b86a832008-03-24 15:01:56 -0400983 }
984 ret = 0;
985error:
986 btrfs_free_path(path);
987 return ret;
988}
989
Yan Zheng2b820322008-11-17 21:11:30 -0500990static noinline int find_next_devid(struct btrfs_root *root, u64 *objectid)
Chris Mason0b86a832008-03-24 15:01:56 -0400991{
992 int ret;
993 struct btrfs_key key;
994 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -0500995 struct btrfs_path *path;
996
997 root = root->fs_info->chunk_root;
998
999 path = btrfs_alloc_path();
1000 if (!path)
1001 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001002
1003 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1004 key.type = BTRFS_DEV_ITEM_KEY;
1005 key.offset = (u64)-1;
1006
1007 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1008 if (ret < 0)
1009 goto error;
1010
1011 BUG_ON(ret == 0);
1012
1013 ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
1014 BTRFS_DEV_ITEM_KEY);
1015 if (ret) {
1016 *objectid = 1;
1017 } else {
1018 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1019 path->slots[0]);
1020 *objectid = found_key.offset + 1;
1021 }
1022 ret = 0;
1023error:
Yan Zheng2b820322008-11-17 21:11:30 -05001024 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001025 return ret;
1026}
1027
1028/*
1029 * the device information is stored in the chunk root
1030 * the btrfs_device struct should be fully filled in
1031 */
1032int btrfs_add_device(struct btrfs_trans_handle *trans,
1033 struct btrfs_root *root,
1034 struct btrfs_device *device)
1035{
1036 int ret;
1037 struct btrfs_path *path;
1038 struct btrfs_dev_item *dev_item;
1039 struct extent_buffer *leaf;
1040 struct btrfs_key key;
1041 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001042
1043 root = root->fs_info->chunk_root;
1044
1045 path = btrfs_alloc_path();
1046 if (!path)
1047 return -ENOMEM;
1048
Chris Mason0b86a832008-03-24 15:01:56 -04001049 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1050 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001051 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001052
1053 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001054 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001055 if (ret)
1056 goto out;
1057
1058 leaf = path->nodes[0];
1059 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1060
1061 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001062 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001063 btrfs_set_device_type(leaf, dev_item, device->type);
1064 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1065 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1066 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001067 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1068 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001069 btrfs_set_device_group(leaf, dev_item, 0);
1070 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1071 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001072 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001073
Chris Mason0b86a832008-03-24 15:01:56 -04001074 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001075 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05001076 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1077 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001078 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001079
Yan Zheng2b820322008-11-17 21:11:30 -05001080 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001081out:
1082 btrfs_free_path(path);
1083 return ret;
1084}
Chris Mason8f18cf12008-04-25 16:53:30 -04001085
Chris Masona061fc82008-05-07 11:43:44 -04001086static int btrfs_rm_dev_item(struct btrfs_root *root,
1087 struct btrfs_device *device)
1088{
1089 int ret;
1090 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001091 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001092 struct btrfs_trans_handle *trans;
1093
1094 root = root->fs_info->chunk_root;
1095
1096 path = btrfs_alloc_path();
1097 if (!path)
1098 return -ENOMEM;
1099
1100 trans = btrfs_start_transaction(root, 1);
1101 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1102 key.type = BTRFS_DEV_ITEM_KEY;
1103 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001104 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001105
1106 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1107 if (ret < 0)
1108 goto out;
1109
1110 if (ret > 0) {
1111 ret = -ENOENT;
1112 goto out;
1113 }
1114
1115 ret = btrfs_del_item(trans, root, path);
1116 if (ret)
1117 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001118out:
1119 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001120 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001121 btrfs_commit_transaction(trans, root);
1122 return ret;
1123}
1124
1125int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1126{
1127 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001128 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001129 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001130 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001131 struct btrfs_super_block *disk_super;
1132 u64 all_avail;
1133 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001134 u64 num_devices;
1135 u8 *dev_uuid;
Chris Masona061fc82008-05-07 11:43:44 -04001136 int ret = 0;
1137
Chris Masona061fc82008-05-07 11:43:44 -04001138 mutex_lock(&uuid_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001139 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001140
1141 all_avail = root->fs_info->avail_data_alloc_bits |
1142 root->fs_info->avail_system_alloc_bits |
1143 root->fs_info->avail_metadata_alloc_bits;
1144
1145 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001146 root->fs_info->fs_devices->num_devices <= 4) {
Chris Masond3977122009-01-05 21:25:51 -05001147 printk(KERN_ERR "btrfs: unable to go below four devices "
1148 "on raid10\n");
Chris Masona061fc82008-05-07 11:43:44 -04001149 ret = -EINVAL;
1150 goto out;
1151 }
1152
1153 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001154 root->fs_info->fs_devices->num_devices <= 2) {
Chris Masond3977122009-01-05 21:25:51 -05001155 printk(KERN_ERR "btrfs: unable to go below two "
1156 "devices on raid1\n");
Chris Masona061fc82008-05-07 11:43:44 -04001157 ret = -EINVAL;
1158 goto out;
1159 }
1160
Chris Masondfe25022008-05-13 13:46:40 -04001161 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001162 struct list_head *devices;
1163 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001164
Chris Masondfe25022008-05-13 13:46:40 -04001165 device = NULL;
1166 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001167 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001168 list_for_each_entry(tmp, devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001169 if (tmp->in_fs_metadata && !tmp->bdev) {
1170 device = tmp;
1171 break;
1172 }
1173 }
Chris Masone5e9a522009-06-10 15:17:02 -04001174 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masondfe25022008-05-13 13:46:40 -04001175 bdev = NULL;
1176 bh = NULL;
1177 disk_super = NULL;
1178 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05001179 printk(KERN_ERR "btrfs: no missing devices found to "
1180 "remove\n");
Chris Masondfe25022008-05-13 13:46:40 -04001181 goto out;
1182 }
Chris Masondfe25022008-05-13 13:46:40 -04001183 } else {
Christoph Hellwig97288f22008-12-02 06:36:09 -05001184 bdev = open_bdev_exclusive(device_path, FMODE_READ,
Chris Masondfe25022008-05-13 13:46:40 -04001185 root->fs_info->bdev_holder);
1186 if (IS_ERR(bdev)) {
1187 ret = PTR_ERR(bdev);
1188 goto out;
1189 }
1190
Yan Zheng2b820322008-11-17 21:11:30 -05001191 set_blocksize(bdev, 4096);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001192 bh = btrfs_read_dev_super(bdev);
Chris Masondfe25022008-05-13 13:46:40 -04001193 if (!bh) {
1194 ret = -EIO;
1195 goto error_close;
1196 }
1197 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001198 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001199 dev_uuid = disk_super->dev_item.uuid;
1200 device = btrfs_find_device(root, devid, dev_uuid,
1201 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001202 if (!device) {
1203 ret = -ENOENT;
1204 goto error_brelse;
1205 }
Chris Masondfe25022008-05-13 13:46:40 -04001206 }
Yan Zheng2b820322008-11-17 21:11:30 -05001207
1208 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Chris Masond3977122009-01-05 21:25:51 -05001209 printk(KERN_ERR "btrfs: unable to remove the only writeable "
1210 "device\n");
Yan Zheng2b820322008-11-17 21:11:30 -05001211 ret = -EINVAL;
1212 goto error_brelse;
1213 }
1214
1215 if (device->writeable) {
1216 list_del_init(&device->dev_alloc_list);
1217 root->fs_info->fs_devices->rw_devices--;
1218 }
Chris Masona061fc82008-05-07 11:43:44 -04001219
1220 ret = btrfs_shrink_device(device, 0);
1221 if (ret)
1222 goto error_brelse;
1223
Chris Masona061fc82008-05-07 11:43:44 -04001224 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1225 if (ret)
1226 goto error_brelse;
1227
Yan Zheng2b820322008-11-17 21:11:30 -05001228 device->in_fs_metadata = 0;
Chris Masone5e9a522009-06-10 15:17:02 -04001229
1230 /*
1231 * the device list mutex makes sure that we don't change
1232 * the device list while someone else is writing out all
1233 * the device supers.
1234 */
1235 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001236 list_del_init(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001237 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1238
Yan Zhenge4404d62008-12-12 10:03:26 -05001239 device->fs_devices->num_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001240
1241 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1242 struct btrfs_device, dev_list);
1243 if (device->bdev == root->fs_info->sb->s_bdev)
1244 root->fs_info->sb->s_bdev = next_device->bdev;
1245 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1246 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1247
Yan Zhenge4404d62008-12-12 10:03:26 -05001248 if (device->bdev) {
1249 close_bdev_exclusive(device->bdev, device->mode);
1250 device->bdev = NULL;
1251 device->fs_devices->open_devices--;
1252 }
1253
Yan Zheng2b820322008-11-17 21:11:30 -05001254 num_devices = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
1255 btrfs_set_super_num_devices(&root->fs_info->super_copy, num_devices);
1256
Yan Zhenge4404d62008-12-12 10:03:26 -05001257 if (device->fs_devices->open_devices == 0) {
1258 struct btrfs_fs_devices *fs_devices;
1259 fs_devices = root->fs_info->fs_devices;
1260 while (fs_devices) {
1261 if (fs_devices->seed == device->fs_devices)
1262 break;
1263 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001264 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001265 fs_devices->seed = device->fs_devices->seed;
1266 device->fs_devices->seed = NULL;
1267 __btrfs_close_devices(device->fs_devices);
1268 free_fs_devices(device->fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001269 }
1270
1271 /*
1272 * at this point, the device is zero sized. We want to
1273 * remove it from the devices list and zero out the old super
1274 */
1275 if (device->writeable) {
Chris Masondfe25022008-05-13 13:46:40 -04001276 /* make sure this device isn't detected as part of
1277 * the FS anymore
1278 */
1279 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1280 set_buffer_dirty(bh);
1281 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001282 }
Chris Masona061fc82008-05-07 11:43:44 -04001283
Chris Masona061fc82008-05-07 11:43:44 -04001284 kfree(device->name);
1285 kfree(device);
1286 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001287
1288error_brelse:
1289 brelse(bh);
1290error_close:
Chris Masondfe25022008-05-13 13:46:40 -04001291 if (bdev)
Christoph Hellwig97288f22008-12-02 06:36:09 -05001292 close_bdev_exclusive(bdev, FMODE_READ);
Chris Masona061fc82008-05-07 11:43:44 -04001293out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001294 mutex_unlock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001295 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001296 return ret;
1297}
1298
Yan Zheng2b820322008-11-17 21:11:30 -05001299/*
1300 * does all the dirty work required for changing file system's UUID.
1301 */
1302static int btrfs_prepare_sprout(struct btrfs_trans_handle *trans,
1303 struct btrfs_root *root)
1304{
1305 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1306 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001307 struct btrfs_fs_devices *seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001308 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
1309 struct btrfs_device *device;
1310 u64 super_flags;
1311
1312 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001313 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001314 return -EINVAL;
1315
Yan Zhenge4404d62008-12-12 10:03:26 -05001316 seed_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
1317 if (!seed_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001318 return -ENOMEM;
1319
Yan Zhenge4404d62008-12-12 10:03:26 -05001320 old_devices = clone_fs_devices(fs_devices);
1321 if (IS_ERR(old_devices)) {
1322 kfree(seed_devices);
1323 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001324 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001325
Yan Zheng2b820322008-11-17 21:11:30 -05001326 list_add(&old_devices->list, &fs_uuids);
1327
Yan Zhenge4404d62008-12-12 10:03:26 -05001328 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1329 seed_devices->opened = 1;
1330 INIT_LIST_HEAD(&seed_devices->devices);
1331 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001332 mutex_init(&seed_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001333 list_splice_init(&fs_devices->devices, &seed_devices->devices);
1334 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1335 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1336 device->fs_devices = seed_devices;
1337 }
1338
Yan Zheng2b820322008-11-17 21:11:30 -05001339 fs_devices->seeding = 0;
1340 fs_devices->num_devices = 0;
1341 fs_devices->open_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001342 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001343
1344 generate_random_uuid(fs_devices->fsid);
1345 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1346 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1347 super_flags = btrfs_super_flags(disk_super) &
1348 ~BTRFS_SUPER_FLAG_SEEDING;
1349 btrfs_set_super_flags(disk_super, super_flags);
1350
1351 return 0;
1352}
1353
1354/*
1355 * strore the expected generation for seed devices in device items.
1356 */
1357static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1358 struct btrfs_root *root)
1359{
1360 struct btrfs_path *path;
1361 struct extent_buffer *leaf;
1362 struct btrfs_dev_item *dev_item;
1363 struct btrfs_device *device;
1364 struct btrfs_key key;
1365 u8 fs_uuid[BTRFS_UUID_SIZE];
1366 u8 dev_uuid[BTRFS_UUID_SIZE];
1367 u64 devid;
1368 int ret;
1369
1370 path = btrfs_alloc_path();
1371 if (!path)
1372 return -ENOMEM;
1373
1374 root = root->fs_info->chunk_root;
1375 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1376 key.offset = 0;
1377 key.type = BTRFS_DEV_ITEM_KEY;
1378
1379 while (1) {
1380 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1381 if (ret < 0)
1382 goto error;
1383
1384 leaf = path->nodes[0];
1385next_slot:
1386 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1387 ret = btrfs_next_leaf(root, path);
1388 if (ret > 0)
1389 break;
1390 if (ret < 0)
1391 goto error;
1392 leaf = path->nodes[0];
1393 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1394 btrfs_release_path(root, path);
1395 continue;
1396 }
1397
1398 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1399 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1400 key.type != BTRFS_DEV_ITEM_KEY)
1401 break;
1402
1403 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1404 struct btrfs_dev_item);
1405 devid = btrfs_device_id(leaf, dev_item);
1406 read_extent_buffer(leaf, dev_uuid,
1407 (unsigned long)btrfs_device_uuid(dev_item),
1408 BTRFS_UUID_SIZE);
1409 read_extent_buffer(leaf, fs_uuid,
1410 (unsigned long)btrfs_device_fsid(dev_item),
1411 BTRFS_UUID_SIZE);
1412 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
1413 BUG_ON(!device);
1414
1415 if (device->fs_devices->seeding) {
1416 btrfs_set_device_generation(leaf, dev_item,
1417 device->generation);
1418 btrfs_mark_buffer_dirty(leaf);
1419 }
1420
1421 path->slots[0]++;
1422 goto next_slot;
1423 }
1424 ret = 0;
1425error:
1426 btrfs_free_path(path);
1427 return ret;
1428}
1429
Chris Mason788f20e2008-04-28 15:29:42 -04001430int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1431{
1432 struct btrfs_trans_handle *trans;
1433 struct btrfs_device *device;
1434 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001435 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001436 struct super_block *sb = root->fs_info->sb;
Chris Mason788f20e2008-04-28 15:29:42 -04001437 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001438 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001439 int ret = 0;
1440
Yan Zheng2b820322008-11-17 21:11:30 -05001441 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
1442 return -EINVAL;
Chris Mason788f20e2008-04-28 15:29:42 -04001443
Chris Mason15916de2008-11-19 21:17:22 -05001444 bdev = open_bdev_exclusive(device_path, 0, root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001445 if (IS_ERR(bdev))
1446 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001447
Yan Zheng2b820322008-11-17 21:11:30 -05001448 if (root->fs_info->fs_devices->seeding) {
1449 seeding_dev = 1;
1450 down_write(&sb->s_umount);
1451 mutex_lock(&uuid_mutex);
1452 }
1453
Chris Mason8c8bee12008-09-29 11:19:10 -04001454 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Mason7d9eb122008-07-08 14:19:17 -04001455 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001456
Chris Mason788f20e2008-04-28 15:29:42 -04001457 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001458 /*
1459 * we have the volume lock, so we don't need the extra
1460 * device list mutex while reading the list here.
1461 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001462 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001463 if (device->bdev == bdev) {
1464 ret = -EEXIST;
Yan Zheng2b820322008-11-17 21:11:30 -05001465 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001466 }
1467 }
1468
1469 device = kzalloc(sizeof(*device), GFP_NOFS);
1470 if (!device) {
1471 /* we can safely leave the fs_devices entry around */
1472 ret = -ENOMEM;
Yan Zheng2b820322008-11-17 21:11:30 -05001473 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001474 }
1475
Chris Mason788f20e2008-04-28 15:29:42 -04001476 device->name = kstrdup(device_path, GFP_NOFS);
1477 if (!device->name) {
1478 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05001479 ret = -ENOMEM;
1480 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001481 }
Yan Zheng2b820322008-11-17 21:11:30 -05001482
1483 ret = find_next_devid(root, &device->devid);
1484 if (ret) {
1485 kfree(device);
1486 goto error;
1487 }
1488
1489 trans = btrfs_start_transaction(root, 1);
1490 lock_chunks(root);
1491
1492 device->barriers = 1;
1493 device->writeable = 1;
1494 device->work.func = pending_bios_fn;
1495 generate_random_uuid(device->uuid);
1496 spin_lock_init(&device->io_lock);
1497 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04001498 device->io_width = root->sectorsize;
1499 device->io_align = root->sectorsize;
1500 device->sector_size = root->sectorsize;
1501 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04001502 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04001503 device->dev_root = root->fs_info->dev_root;
1504 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001505 device->in_fs_metadata = 1;
Chris Mason15916de2008-11-19 21:17:22 -05001506 device->mode = 0;
Zheng Yan325cd4b2008-09-05 16:43:54 -04001507 set_blocksize(device->bdev, 4096);
1508
Yan Zheng2b820322008-11-17 21:11:30 -05001509 if (seeding_dev) {
1510 sb->s_flags &= ~MS_RDONLY;
1511 ret = btrfs_prepare_sprout(trans, root);
1512 BUG_ON(ret);
1513 }
1514
1515 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001516
1517 /*
1518 * we don't want write_supers to jump in here with our device
1519 * half setup
1520 */
1521 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001522 list_add(&device->dev_list, &root->fs_info->fs_devices->devices);
1523 list_add(&device->dev_alloc_list,
1524 &root->fs_info->fs_devices->alloc_list);
1525 root->fs_info->fs_devices->num_devices++;
1526 root->fs_info->fs_devices->open_devices++;
1527 root->fs_info->fs_devices->rw_devices++;
1528 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
1529
Chris Masonc2898112009-06-10 09:51:32 -04001530 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
1531 root->fs_info->fs_devices->rotating = 1;
1532
Chris Mason788f20e2008-04-28 15:29:42 -04001533 total_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
1534 btrfs_set_super_total_bytes(&root->fs_info->super_copy,
1535 total_bytes + device->total_bytes);
1536
1537 total_bytes = btrfs_super_num_devices(&root->fs_info->super_copy);
1538 btrfs_set_super_num_devices(&root->fs_info->super_copy,
1539 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04001540 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001541
Yan Zheng2b820322008-11-17 21:11:30 -05001542 if (seeding_dev) {
1543 ret = init_first_rw_device(trans, root, device);
1544 BUG_ON(ret);
1545 ret = btrfs_finish_sprout(trans, root);
1546 BUG_ON(ret);
1547 } else {
1548 ret = btrfs_add_device(trans, root, device);
1549 }
1550
Chris Mason913d9522009-03-10 13:17:18 -04001551 /*
1552 * we've got more storage, clear any full flags on the space
1553 * infos
1554 */
1555 btrfs_clear_space_info_full(root->fs_info);
1556
Chris Mason7d9eb122008-07-08 14:19:17 -04001557 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001558 btrfs_commit_transaction(trans, root);
1559
1560 if (seeding_dev) {
1561 mutex_unlock(&uuid_mutex);
1562 up_write(&sb->s_umount);
1563
1564 ret = btrfs_relocate_sys_chunks(root);
1565 BUG_ON(ret);
1566 }
1567out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001568 mutex_unlock(&root->fs_info->volume_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001569 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05001570error:
Chris Mason15916de2008-11-19 21:17:22 -05001571 close_bdev_exclusive(bdev, 0);
Yan Zheng2b820322008-11-17 21:11:30 -05001572 if (seeding_dev) {
1573 mutex_unlock(&uuid_mutex);
1574 up_write(&sb->s_umount);
1575 }
Chris Mason788f20e2008-04-28 15:29:42 -04001576 goto out;
1577}
1578
Chris Masond3977122009-01-05 21:25:51 -05001579static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
1580 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001581{
1582 int ret;
1583 struct btrfs_path *path;
1584 struct btrfs_root *root;
1585 struct btrfs_dev_item *dev_item;
1586 struct extent_buffer *leaf;
1587 struct btrfs_key key;
1588
1589 root = device->dev_root->fs_info->chunk_root;
1590
1591 path = btrfs_alloc_path();
1592 if (!path)
1593 return -ENOMEM;
1594
1595 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1596 key.type = BTRFS_DEV_ITEM_KEY;
1597 key.offset = device->devid;
1598
1599 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1600 if (ret < 0)
1601 goto out;
1602
1603 if (ret > 0) {
1604 ret = -ENOENT;
1605 goto out;
1606 }
1607
1608 leaf = path->nodes[0];
1609 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1610
1611 btrfs_set_device_id(leaf, dev_item, device->devid);
1612 btrfs_set_device_type(leaf, dev_item, device->type);
1613 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1614 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1615 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04001616 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04001617 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
1618 btrfs_mark_buffer_dirty(leaf);
1619
1620out:
1621 btrfs_free_path(path);
1622 return ret;
1623}
1624
Chris Mason7d9eb122008-07-08 14:19:17 -04001625static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001626 struct btrfs_device *device, u64 new_size)
1627{
1628 struct btrfs_super_block *super_copy =
1629 &device->dev_root->fs_info->super_copy;
1630 u64 old_total = btrfs_super_total_bytes(super_copy);
1631 u64 diff = new_size - device->total_bytes;
1632
Yan Zheng2b820322008-11-17 21:11:30 -05001633 if (!device->writeable)
1634 return -EACCES;
1635 if (new_size <= device->total_bytes)
1636 return -EINVAL;
1637
Chris Mason8f18cf12008-04-25 16:53:30 -04001638 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05001639 device->fs_devices->total_rw_bytes += diff;
1640
1641 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04001642 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04001643 btrfs_clear_space_info_full(device->dev_root->fs_info);
1644
Chris Mason8f18cf12008-04-25 16:53:30 -04001645 return btrfs_update_device(trans, device);
1646}
1647
Chris Mason7d9eb122008-07-08 14:19:17 -04001648int btrfs_grow_device(struct btrfs_trans_handle *trans,
1649 struct btrfs_device *device, u64 new_size)
1650{
1651 int ret;
1652 lock_chunks(device->dev_root);
1653 ret = __btrfs_grow_device(trans, device, new_size);
1654 unlock_chunks(device->dev_root);
1655 return ret;
1656}
1657
Chris Mason8f18cf12008-04-25 16:53:30 -04001658static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
1659 struct btrfs_root *root,
1660 u64 chunk_tree, u64 chunk_objectid,
1661 u64 chunk_offset)
1662{
1663 int ret;
1664 struct btrfs_path *path;
1665 struct btrfs_key key;
1666
1667 root = root->fs_info->chunk_root;
1668 path = btrfs_alloc_path();
1669 if (!path)
1670 return -ENOMEM;
1671
1672 key.objectid = chunk_objectid;
1673 key.offset = chunk_offset;
1674 key.type = BTRFS_CHUNK_ITEM_KEY;
1675
1676 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1677 BUG_ON(ret);
1678
1679 ret = btrfs_del_item(trans, root, path);
1680 BUG_ON(ret);
1681
1682 btrfs_free_path(path);
1683 return 0;
1684}
1685
Christoph Hellwigb2950862008-12-02 09:54:17 -05001686static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04001687 chunk_offset)
1688{
1689 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
1690 struct btrfs_disk_key *disk_key;
1691 struct btrfs_chunk *chunk;
1692 u8 *ptr;
1693 int ret = 0;
1694 u32 num_stripes;
1695 u32 array_size;
1696 u32 len = 0;
1697 u32 cur;
1698 struct btrfs_key key;
1699
1700 array_size = btrfs_super_sys_array_size(super_copy);
1701
1702 ptr = super_copy->sys_chunk_array;
1703 cur = 0;
1704
1705 while (cur < array_size) {
1706 disk_key = (struct btrfs_disk_key *)ptr;
1707 btrfs_disk_key_to_cpu(&key, disk_key);
1708
1709 len = sizeof(*disk_key);
1710
1711 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1712 chunk = (struct btrfs_chunk *)(ptr + len);
1713 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
1714 len += btrfs_chunk_item_size(num_stripes);
1715 } else {
1716 ret = -EIO;
1717 break;
1718 }
1719 if (key.objectid == chunk_objectid &&
1720 key.offset == chunk_offset) {
1721 memmove(ptr, ptr + len, array_size - (cur + len));
1722 array_size -= len;
1723 btrfs_set_super_sys_array_size(super_copy, array_size);
1724 } else {
1725 ptr += len;
1726 cur += len;
1727 }
1728 }
1729 return ret;
1730}
1731
Christoph Hellwigb2950862008-12-02 09:54:17 -05001732static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04001733 u64 chunk_tree, u64 chunk_objectid,
1734 u64 chunk_offset)
1735{
1736 struct extent_map_tree *em_tree;
1737 struct btrfs_root *extent_root;
1738 struct btrfs_trans_handle *trans;
1739 struct extent_map *em;
1740 struct map_lookup *map;
1741 int ret;
1742 int i;
1743
1744 root = root->fs_info->chunk_root;
1745 extent_root = root->fs_info->extent_root;
1746 em_tree = &root->fs_info->mapping_tree.map_tree;
1747
Josef Bacikba1bf482009-09-11 16:11:19 -04001748 ret = btrfs_can_relocate(extent_root, chunk_offset);
1749 if (ret)
1750 return -ENOSPC;
1751
Chris Mason8f18cf12008-04-25 16:53:30 -04001752 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04001753 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04001754 BUG_ON(ret);
1755
1756 trans = btrfs_start_transaction(root, 1);
1757 BUG_ON(!trans);
1758
Chris Mason7d9eb122008-07-08 14:19:17 -04001759 lock_chunks(root);
1760
Chris Mason8f18cf12008-04-25 16:53:30 -04001761 /*
1762 * step two, delete the device extents and the
1763 * chunk tree entries
1764 */
Chris Mason890871b2009-09-02 16:24:52 -04001765 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001766 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001767 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001768
Chris Masona061fc82008-05-07 11:43:44 -04001769 BUG_ON(em->start > chunk_offset ||
1770 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04001771 map = (struct map_lookup *)em->bdev;
1772
1773 for (i = 0; i < map->num_stripes; i++) {
1774 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
1775 map->stripes[i].physical);
1776 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04001777
Chris Masondfe25022008-05-13 13:46:40 -04001778 if (map->stripes[i].dev) {
1779 ret = btrfs_update_device(trans, map->stripes[i].dev);
1780 BUG_ON(ret);
1781 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001782 }
1783 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
1784 chunk_offset);
1785
1786 BUG_ON(ret);
1787
1788 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
1789 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
1790 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04001791 }
1792
Zheng Yan1a40e232008-09-26 10:09:34 -04001793 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
1794 BUG_ON(ret);
1795
Chris Mason890871b2009-09-02 16:24:52 -04001796 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001797 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001798 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04001799
Chris Mason8f18cf12008-04-25 16:53:30 -04001800 kfree(map);
1801 em->bdev = NULL;
1802
1803 /* once for the tree */
1804 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04001805 /* once for us */
1806 free_extent_map(em);
1807
Chris Mason7d9eb122008-07-08 14:19:17 -04001808 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04001809 btrfs_end_transaction(trans, root);
1810 return 0;
1811}
1812
Yan Zheng2b820322008-11-17 21:11:30 -05001813static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
1814{
1815 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
1816 struct btrfs_path *path;
1817 struct extent_buffer *leaf;
1818 struct btrfs_chunk *chunk;
1819 struct btrfs_key key;
1820 struct btrfs_key found_key;
1821 u64 chunk_tree = chunk_root->root_key.objectid;
1822 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04001823 bool retried = false;
1824 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001825 int ret;
1826
1827 path = btrfs_alloc_path();
1828 if (!path)
1829 return -ENOMEM;
1830
Josef Bacikba1bf482009-09-11 16:11:19 -04001831again:
Yan Zheng2b820322008-11-17 21:11:30 -05001832 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1833 key.offset = (u64)-1;
1834 key.type = BTRFS_CHUNK_ITEM_KEY;
1835
1836 while (1) {
1837 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
1838 if (ret < 0)
1839 goto error;
1840 BUG_ON(ret == 0);
1841
1842 ret = btrfs_previous_item(chunk_root, path, key.objectid,
1843 key.type);
1844 if (ret < 0)
1845 goto error;
1846 if (ret > 0)
1847 break;
1848
1849 leaf = path->nodes[0];
1850 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1851
1852 chunk = btrfs_item_ptr(leaf, path->slots[0],
1853 struct btrfs_chunk);
1854 chunk_type = btrfs_chunk_type(leaf, chunk);
1855 btrfs_release_path(chunk_root, path);
1856
1857 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
1858 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
1859 found_key.objectid,
1860 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04001861 if (ret == -ENOSPC)
1862 failed++;
1863 else if (ret)
1864 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05001865 }
1866
1867 if (found_key.offset == 0)
1868 break;
1869 key.offset = found_key.offset - 1;
1870 }
1871 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04001872 if (failed && !retried) {
1873 failed = 0;
1874 retried = true;
1875 goto again;
1876 } else if (failed && retried) {
1877 WARN_ON(1);
1878 ret = -ENOSPC;
1879 }
Yan Zheng2b820322008-11-17 21:11:30 -05001880error:
1881 btrfs_free_path(path);
1882 return ret;
1883}
1884
Chris Masonec44a352008-04-28 15:29:52 -04001885static u64 div_factor(u64 num, int factor)
1886{
1887 if (factor == 10)
1888 return num;
1889 num *= factor;
1890 do_div(num, 10);
1891 return num;
1892}
1893
Chris Masonec44a352008-04-28 15:29:52 -04001894int btrfs_balance(struct btrfs_root *dev_root)
1895{
1896 int ret;
Chris Masonec44a352008-04-28 15:29:52 -04001897 struct list_head *devices = &dev_root->fs_info->fs_devices->devices;
1898 struct btrfs_device *device;
1899 u64 old_size;
1900 u64 size_to_free;
1901 struct btrfs_path *path;
1902 struct btrfs_key key;
1903 struct btrfs_chunk *chunk;
1904 struct btrfs_root *chunk_root = dev_root->fs_info->chunk_root;
1905 struct btrfs_trans_handle *trans;
1906 struct btrfs_key found_key;
1907
Yan Zheng2b820322008-11-17 21:11:30 -05001908 if (dev_root->fs_info->sb->s_flags & MS_RDONLY)
1909 return -EROFS;
Chris Masonec44a352008-04-28 15:29:52 -04001910
Chris Mason7d9eb122008-07-08 14:19:17 -04001911 mutex_lock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04001912 dev_root = dev_root->fs_info->dev_root;
1913
Chris Masonec44a352008-04-28 15:29:52 -04001914 /* step one make some room on all the devices */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001915 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04001916 old_size = device->total_bytes;
1917 size_to_free = div_factor(old_size, 1);
1918 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05001919 if (!device->writeable ||
1920 device->total_bytes - device->bytes_used > size_to_free)
Chris Masonec44a352008-04-28 15:29:52 -04001921 continue;
1922
1923 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04001924 if (ret == -ENOSPC)
1925 break;
Chris Masonec44a352008-04-28 15:29:52 -04001926 BUG_ON(ret);
1927
1928 trans = btrfs_start_transaction(dev_root, 1);
1929 BUG_ON(!trans);
1930
1931 ret = btrfs_grow_device(trans, device, old_size);
1932 BUG_ON(ret);
1933
1934 btrfs_end_transaction(trans, dev_root);
1935 }
1936
1937 /* step two, relocate all the chunks */
1938 path = btrfs_alloc_path();
1939 BUG_ON(!path);
1940
1941 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1942 key.offset = (u64)-1;
1943 key.type = BTRFS_CHUNK_ITEM_KEY;
1944
Chris Masond3977122009-01-05 21:25:51 -05001945 while (1) {
Chris Masonec44a352008-04-28 15:29:52 -04001946 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
1947 if (ret < 0)
1948 goto error;
1949
1950 /*
1951 * this shouldn't happen, it means the last relocate
1952 * failed
1953 */
1954 if (ret == 0)
1955 break;
1956
1957 ret = btrfs_previous_item(chunk_root, path, 0,
1958 BTRFS_CHUNK_ITEM_KEY);
Chris Mason7d9eb122008-07-08 14:19:17 -04001959 if (ret)
Chris Masonec44a352008-04-28 15:29:52 -04001960 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04001961
Chris Masonec44a352008-04-28 15:29:52 -04001962 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1963 path->slots[0]);
1964 if (found_key.objectid != key.objectid)
1965 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04001966
Chris Masonec44a352008-04-28 15:29:52 -04001967 chunk = btrfs_item_ptr(path->nodes[0],
1968 path->slots[0],
1969 struct btrfs_chunk);
Chris Masonec44a352008-04-28 15:29:52 -04001970 /* chunk zero is special */
Josef Bacikba1bf482009-09-11 16:11:19 -04001971 if (found_key.offset == 0)
Chris Masonec44a352008-04-28 15:29:52 -04001972 break;
1973
Chris Mason7d9eb122008-07-08 14:19:17 -04001974 btrfs_release_path(chunk_root, path);
Chris Masonec44a352008-04-28 15:29:52 -04001975 ret = btrfs_relocate_chunk(chunk_root,
1976 chunk_root->root_key.objectid,
1977 found_key.objectid,
1978 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04001979 BUG_ON(ret && ret != -ENOSPC);
1980 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04001981 }
1982 ret = 0;
1983error:
1984 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001985 mutex_unlock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04001986 return ret;
1987}
1988
Chris Mason8f18cf12008-04-25 16:53:30 -04001989/*
1990 * shrinking a device means finding all of the device extents past
1991 * the new size, and then following the back refs to the chunks.
1992 * The chunk relocation code actually frees the device extent
1993 */
1994int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
1995{
1996 struct btrfs_trans_handle *trans;
1997 struct btrfs_root *root = device->dev_root;
1998 struct btrfs_dev_extent *dev_extent = NULL;
1999 struct btrfs_path *path;
2000 u64 length;
2001 u64 chunk_tree;
2002 u64 chunk_objectid;
2003 u64 chunk_offset;
2004 int ret;
2005 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04002006 int failed = 0;
2007 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04002008 struct extent_buffer *l;
2009 struct btrfs_key key;
2010 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
2011 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04002012 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04002013 u64 diff = device->total_bytes - new_size;
2014
Yan Zheng2b820322008-11-17 21:11:30 -05002015 if (new_size >= device->total_bytes)
2016 return -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04002017
2018 path = btrfs_alloc_path();
2019 if (!path)
2020 return -ENOMEM;
2021
Chris Mason8f18cf12008-04-25 16:53:30 -04002022 path->reada = 2;
2023
Chris Mason7d9eb122008-07-08 14:19:17 -04002024 lock_chunks(root);
2025
Chris Mason8f18cf12008-04-25 16:53:30 -04002026 device->total_bytes = new_size;
Yan Zheng2b820322008-11-17 21:11:30 -05002027 if (device->writeable)
2028 device->fs_devices->total_rw_bytes -= diff;
Chris Mason7d9eb122008-07-08 14:19:17 -04002029 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002030
Josef Bacikba1bf482009-09-11 16:11:19 -04002031again:
Chris Mason8f18cf12008-04-25 16:53:30 -04002032 key.objectid = device->devid;
2033 key.offset = (u64)-1;
2034 key.type = BTRFS_DEV_EXTENT_KEY;
2035
2036 while (1) {
2037 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2038 if (ret < 0)
2039 goto done;
2040
2041 ret = btrfs_previous_item(root, path, 0, key.type);
2042 if (ret < 0)
2043 goto done;
2044 if (ret) {
2045 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002046 btrfs_release_path(root, path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002047 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04002048 }
2049
2050 l = path->nodes[0];
2051 slot = path->slots[0];
2052 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
2053
Josef Bacikba1bf482009-09-11 16:11:19 -04002054 if (key.objectid != device->devid) {
2055 btrfs_release_path(root, path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002056 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002057 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002058
2059 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
2060 length = btrfs_dev_extent_length(l, dev_extent);
2061
Josef Bacikba1bf482009-09-11 16:11:19 -04002062 if (key.offset + length <= new_size) {
2063 btrfs_release_path(root, path);
Chris Balld6397ba2009-04-27 07:29:03 -04002064 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002065 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002066
2067 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
2068 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
2069 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
2070 btrfs_release_path(root, path);
2071
2072 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
2073 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002074 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04002075 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04002076 if (ret == -ENOSPC)
2077 failed++;
2078 key.offset -= 1;
2079 }
2080
2081 if (failed && !retried) {
2082 failed = 0;
2083 retried = true;
2084 goto again;
2085 } else if (failed && retried) {
2086 ret = -ENOSPC;
2087 lock_chunks(root);
2088
2089 device->total_bytes = old_size;
2090 if (device->writeable)
2091 device->fs_devices->total_rw_bytes += diff;
2092 unlock_chunks(root);
2093 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04002094 }
2095
Chris Balld6397ba2009-04-27 07:29:03 -04002096 /* Shrinking succeeded, else we would be at "done". */
2097 trans = btrfs_start_transaction(root, 1);
2098 if (!trans) {
2099 ret = -ENOMEM;
2100 goto done;
2101 }
2102 lock_chunks(root);
2103
2104 device->disk_total_bytes = new_size;
2105 /* Now btrfs_update_device() will change the on-disk size. */
2106 ret = btrfs_update_device(trans, device);
2107 if (ret) {
2108 unlock_chunks(root);
2109 btrfs_end_transaction(trans, root);
2110 goto done;
2111 }
2112 WARN_ON(diff > old_total);
2113 btrfs_set_super_total_bytes(super_copy, old_total - diff);
2114 unlock_chunks(root);
2115 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002116done:
2117 btrfs_free_path(path);
2118 return ret;
2119}
2120
Christoph Hellwigb2950862008-12-02 09:54:17 -05002121static int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -04002122 struct btrfs_root *root,
2123 struct btrfs_key *key,
2124 struct btrfs_chunk *chunk, int item_size)
2125{
2126 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
2127 struct btrfs_disk_key disk_key;
2128 u32 array_size;
2129 u8 *ptr;
2130
2131 array_size = btrfs_super_sys_array_size(super_copy);
2132 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
2133 return -EFBIG;
2134
2135 ptr = super_copy->sys_chunk_array + array_size;
2136 btrfs_cpu_key_to_disk(&disk_key, key);
2137 memcpy(ptr, &disk_key, sizeof(disk_key));
2138 ptr += sizeof(disk_key);
2139 memcpy(ptr, chunk, item_size);
2140 item_size += sizeof(disk_key);
2141 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
2142 return 0;
2143}
2144
Chris Masond3977122009-01-05 21:25:51 -05002145static noinline u64 chunk_bytes_by_type(u64 type, u64 calc_size,
Chris Masona1b32a52008-09-05 16:09:51 -04002146 int num_stripes, int sub_stripes)
Chris Mason9b3f68b2008-04-18 10:29:51 -04002147{
2148 if (type & (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP))
2149 return calc_size;
2150 else if (type & BTRFS_BLOCK_GROUP_RAID10)
2151 return calc_size * (num_stripes / sub_stripes);
2152 else
2153 return calc_size * num_stripes;
2154}
2155
Yan Zheng2b820322008-11-17 21:11:30 -05002156static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2157 struct btrfs_root *extent_root,
2158 struct map_lookup **map_ret,
2159 u64 *num_bytes, u64 *stripe_size,
2160 u64 start, u64 type)
Chris Mason0b86a832008-03-24 15:01:56 -04002161{
Chris Mason593060d2008-03-25 16:50:33 -04002162 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -04002163 struct btrfs_device *device = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -05002164 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Chris Mason6324fbf2008-03-24 15:01:59 -04002165 struct list_head *cur;
Yan Zheng2b820322008-11-17 21:11:30 -05002166 struct map_lookup *map = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002167 struct extent_map_tree *em_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04002168 struct extent_map *em;
Yan Zheng2b820322008-11-17 21:11:30 -05002169 struct list_head private_devs;
Chris Masona40a90a2008-04-18 11:55:51 -04002170 int min_stripe_size = 1 * 1024 * 1024;
Chris Mason0b86a832008-03-24 15:01:56 -04002171 u64 calc_size = 1024 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002172 u64 max_chunk_size = calc_size;
2173 u64 min_free;
Chris Mason6324fbf2008-03-24 15:01:59 -04002174 u64 avail;
2175 u64 max_avail = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002176 u64 dev_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04002177 int num_stripes = 1;
Chris Masona40a90a2008-04-18 11:55:51 -04002178 int min_stripes = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002179 int sub_stripes = 0;
Chris Mason6324fbf2008-03-24 15:01:59 -04002180 int looped = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002181 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04002182 int index;
Chris Mason593060d2008-03-25 16:50:33 -04002183 int stripe_len = 64 * 1024;
Chris Mason0b86a832008-03-24 15:01:56 -04002184
Chris Masonec44a352008-04-28 15:29:52 -04002185 if ((type & BTRFS_BLOCK_GROUP_RAID1) &&
2186 (type & BTRFS_BLOCK_GROUP_DUP)) {
2187 WARN_ON(1);
2188 type &= ~BTRFS_BLOCK_GROUP_DUP;
2189 }
Yan Zheng2b820322008-11-17 21:11:30 -05002190 if (list_empty(&fs_devices->alloc_list))
Chris Mason6324fbf2008-03-24 15:01:59 -04002191 return -ENOSPC;
Chris Mason593060d2008-03-25 16:50:33 -04002192
Chris Masona40a90a2008-04-18 11:55:51 -04002193 if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
Yan Zheng2b820322008-11-17 21:11:30 -05002194 num_stripes = fs_devices->rw_devices;
Chris Masona40a90a2008-04-18 11:55:51 -04002195 min_stripes = 2;
2196 }
2197 if (type & (BTRFS_BLOCK_GROUP_DUP)) {
Chris Mason611f0e02008-04-03 16:29:03 -04002198 num_stripes = 2;
Chris Masona40a90a2008-04-18 11:55:51 -04002199 min_stripes = 2;
2200 }
Chris Mason8790d502008-04-03 16:29:03 -04002201 if (type & (BTRFS_BLOCK_GROUP_RAID1)) {
Yan Zheng2b820322008-11-17 21:11:30 -05002202 num_stripes = min_t(u64, 2, fs_devices->rw_devices);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002203 if (num_stripes < 2)
2204 return -ENOSPC;
Chris Masona40a90a2008-04-18 11:55:51 -04002205 min_stripes = 2;
Chris Mason8790d502008-04-03 16:29:03 -04002206 }
Chris Mason321aecc2008-04-16 10:49:51 -04002207 if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
Yan Zheng2b820322008-11-17 21:11:30 -05002208 num_stripes = fs_devices->rw_devices;
Chris Mason321aecc2008-04-16 10:49:51 -04002209 if (num_stripes < 4)
2210 return -ENOSPC;
2211 num_stripes &= ~(u32)1;
2212 sub_stripes = 2;
Chris Masona40a90a2008-04-18 11:55:51 -04002213 min_stripes = 4;
Chris Mason321aecc2008-04-16 10:49:51 -04002214 }
Chris Mason9b3f68b2008-04-18 10:29:51 -04002215
2216 if (type & BTRFS_BLOCK_GROUP_DATA) {
2217 max_chunk_size = 10 * calc_size;
Chris Masona40a90a2008-04-18 11:55:51 -04002218 min_stripe_size = 64 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002219 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Josef Bacik83d3c962009-12-07 21:45:59 +00002220 max_chunk_size = 256 * 1024 * 1024;
Chris Masona40a90a2008-04-18 11:55:51 -04002221 min_stripe_size = 32 * 1024 * 1024;
2222 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
2223 calc_size = 8 * 1024 * 1024;
2224 max_chunk_size = calc_size * 2;
2225 min_stripe_size = 1 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002226 }
2227
Yan Zheng2b820322008-11-17 21:11:30 -05002228 /* we don't want a chunk larger than 10% of writeable space */
2229 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
2230 max_chunk_size);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002231
Chris Masona40a90a2008-04-18 11:55:51 -04002232again:
Chris Mason9779b722009-07-24 16:41:41 -04002233 max_avail = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002234 if (!map || map->num_stripes != num_stripes) {
2235 kfree(map);
2236 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
2237 if (!map)
2238 return -ENOMEM;
2239 map->num_stripes = num_stripes;
2240 }
2241
Chris Mason9b3f68b2008-04-18 10:29:51 -04002242 if (calc_size * num_stripes > max_chunk_size) {
2243 calc_size = max_chunk_size;
2244 do_div(calc_size, num_stripes);
2245 do_div(calc_size, stripe_len);
2246 calc_size *= stripe_len;
2247 }
2248 /* we don't want tiny stripes */
Chris Masona40a90a2008-04-18 11:55:51 -04002249 calc_size = max_t(u64, min_stripe_size, calc_size);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002250
Chris Mason9b3f68b2008-04-18 10:29:51 -04002251 do_div(calc_size, stripe_len);
2252 calc_size *= stripe_len;
2253
Yan Zheng2b820322008-11-17 21:11:30 -05002254 cur = fs_devices->alloc_list.next;
Chris Mason6324fbf2008-03-24 15:01:59 -04002255 index = 0;
Chris Mason611f0e02008-04-03 16:29:03 -04002256
2257 if (type & BTRFS_BLOCK_GROUP_DUP)
2258 min_free = calc_size * 2;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002259 else
2260 min_free = calc_size;
Chris Mason611f0e02008-04-03 16:29:03 -04002261
Josef Bacik0f9dd462008-09-23 13:14:11 -04002262 /*
2263 * we add 1MB because we never use the first 1MB of the device, unless
2264 * we've looped, then we are likely allocating the maximum amount of
2265 * space left already
2266 */
2267 if (!looped)
2268 min_free += 1024 * 1024;
Chris Masonad5bd912008-04-21 08:28:10 -04002269
Yan Zheng2b820322008-11-17 21:11:30 -05002270 INIT_LIST_HEAD(&private_devs);
Chris Masond3977122009-01-05 21:25:51 -05002271 while (index < num_stripes) {
Chris Masonb3075712008-04-22 09:22:07 -04002272 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
Yan Zheng2b820322008-11-17 21:11:30 -05002273 BUG_ON(!device->writeable);
Chris Masondfe25022008-05-13 13:46:40 -04002274 if (device->total_bytes > device->bytes_used)
2275 avail = device->total_bytes - device->bytes_used;
2276 else
2277 avail = 0;
Chris Mason6324fbf2008-03-24 15:01:59 -04002278 cur = cur->next;
Chris Mason8f18cf12008-04-25 16:53:30 -04002279
Chris Masondfe25022008-05-13 13:46:40 -04002280 if (device->in_fs_metadata && avail >= min_free) {
Yan Zheng2b820322008-11-17 21:11:30 -05002281 ret = find_free_dev_extent(trans, device,
Chris Mason9779b722009-07-24 16:41:41 -04002282 min_free, &dev_offset,
2283 &max_avail);
Chris Mason8f18cf12008-04-25 16:53:30 -04002284 if (ret == 0) {
2285 list_move_tail(&device->dev_alloc_list,
2286 &private_devs);
Yan Zheng2b820322008-11-17 21:11:30 -05002287 map->stripes[index].dev = device;
2288 map->stripes[index].physical = dev_offset;
Chris Mason611f0e02008-04-03 16:29:03 -04002289 index++;
Yan Zheng2b820322008-11-17 21:11:30 -05002290 if (type & BTRFS_BLOCK_GROUP_DUP) {
2291 map->stripes[index].dev = device;
2292 map->stripes[index].physical =
2293 dev_offset + calc_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04002294 index++;
Yan Zheng2b820322008-11-17 21:11:30 -05002295 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002296 }
Chris Masondfe25022008-05-13 13:46:40 -04002297 } else if (device->in_fs_metadata && avail > max_avail)
Chris Masona40a90a2008-04-18 11:55:51 -04002298 max_avail = avail;
Yan Zheng2b820322008-11-17 21:11:30 -05002299 if (cur == &fs_devices->alloc_list)
Chris Mason6324fbf2008-03-24 15:01:59 -04002300 break;
2301 }
Yan Zheng2b820322008-11-17 21:11:30 -05002302 list_splice(&private_devs, &fs_devices->alloc_list);
Chris Mason6324fbf2008-03-24 15:01:59 -04002303 if (index < num_stripes) {
Chris Masona40a90a2008-04-18 11:55:51 -04002304 if (index >= min_stripes) {
2305 num_stripes = index;
2306 if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
2307 num_stripes /= sub_stripes;
2308 num_stripes *= sub_stripes;
2309 }
2310 looped = 1;
2311 goto again;
2312 }
Chris Mason6324fbf2008-03-24 15:01:59 -04002313 if (!looped && max_avail > 0) {
2314 looped = 1;
2315 calc_size = max_avail;
2316 goto again;
2317 }
Yan Zheng2b820322008-11-17 21:11:30 -05002318 kfree(map);
Chris Mason6324fbf2008-03-24 15:01:59 -04002319 return -ENOSPC;
2320 }
Chris Mason593060d2008-03-25 16:50:33 -04002321 map->sector_size = extent_root->sectorsize;
2322 map->stripe_len = stripe_len;
2323 map->io_align = stripe_len;
2324 map->io_width = stripe_len;
2325 map->type = type;
2326 map->num_stripes = num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002327 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04002328
Yan Zheng2b820322008-11-17 21:11:30 -05002329 *map_ret = map;
2330 *stripe_size = calc_size;
2331 *num_bytes = chunk_bytes_by_type(type, calc_size,
2332 num_stripes, sub_stripes);
Chris Mason0b86a832008-03-24 15:01:56 -04002333
2334 em = alloc_extent_map(GFP_NOFS);
Yan Zheng2b820322008-11-17 21:11:30 -05002335 if (!em) {
2336 kfree(map);
Chris Mason0b86a832008-03-24 15:01:56 -04002337 return -ENOMEM;
Yan Zheng2b820322008-11-17 21:11:30 -05002338 }
Chris Mason0b86a832008-03-24 15:01:56 -04002339 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05002340 em->start = start;
Chris Masone17cade2008-04-15 15:41:47 -04002341 em->len = *num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04002342 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002343 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04002344
Chris Mason0b86a832008-03-24 15:01:56 -04002345 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04002346 write_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002347 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002348 write_unlock(&em_tree->lock);
Chris Masonb248a412008-04-14 09:48:18 -04002349 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04002350 free_extent_map(em);
Yan Zheng2b820322008-11-17 21:11:30 -05002351
2352 ret = btrfs_make_block_group(trans, extent_root, 0, type,
2353 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2354 start, *num_bytes);
2355 BUG_ON(ret);
2356
2357 index = 0;
2358 while (index < map->num_stripes) {
2359 device = map->stripes[index].dev;
2360 dev_offset = map->stripes[index].physical;
2361
2362 ret = btrfs_alloc_dev_extent(trans, device,
2363 info->chunk_root->root_key.objectid,
2364 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2365 start, dev_offset, calc_size);
2366 BUG_ON(ret);
2367 index++;
2368 }
2369
2370 return 0;
2371}
2372
2373static int __finish_chunk_alloc(struct btrfs_trans_handle *trans,
2374 struct btrfs_root *extent_root,
2375 struct map_lookup *map, u64 chunk_offset,
2376 u64 chunk_size, u64 stripe_size)
2377{
2378 u64 dev_offset;
2379 struct btrfs_key key;
2380 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2381 struct btrfs_device *device;
2382 struct btrfs_chunk *chunk;
2383 struct btrfs_stripe *stripe;
2384 size_t item_size = btrfs_chunk_item_size(map->num_stripes);
2385 int index = 0;
2386 int ret;
2387
2388 chunk = kzalloc(item_size, GFP_NOFS);
2389 if (!chunk)
2390 return -ENOMEM;
2391
2392 index = 0;
2393 while (index < map->num_stripes) {
2394 device = map->stripes[index].dev;
2395 device->bytes_used += stripe_size;
2396 ret = btrfs_update_device(trans, device);
2397 BUG_ON(ret);
2398 index++;
2399 }
2400
2401 index = 0;
2402 stripe = &chunk->stripe;
2403 while (index < map->num_stripes) {
2404 device = map->stripes[index].dev;
2405 dev_offset = map->stripes[index].physical;
2406
2407 btrfs_set_stack_stripe_devid(stripe, device->devid);
2408 btrfs_set_stack_stripe_offset(stripe, dev_offset);
2409 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
2410 stripe++;
2411 index++;
2412 }
2413
2414 btrfs_set_stack_chunk_length(chunk, chunk_size);
2415 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
2416 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
2417 btrfs_set_stack_chunk_type(chunk, map->type);
2418 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
2419 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
2420 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
2421 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
2422 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
2423
2424 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2425 key.type = BTRFS_CHUNK_ITEM_KEY;
2426 key.offset = chunk_offset;
2427
2428 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
2429 BUG_ON(ret);
2430
2431 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2432 ret = btrfs_add_system_chunk(trans, chunk_root, &key, chunk,
2433 item_size);
2434 BUG_ON(ret);
2435 }
2436 kfree(chunk);
2437 return 0;
2438}
2439
2440/*
2441 * Chunk allocation falls into two parts. The first part does works
2442 * that make the new allocated chunk useable, but not do any operation
2443 * that modifies the chunk tree. The second part does the works that
2444 * require modifying the chunk tree. This division is important for the
2445 * bootstrap process of adding storage to a seed btrfs.
2446 */
2447int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2448 struct btrfs_root *extent_root, u64 type)
2449{
2450 u64 chunk_offset;
2451 u64 chunk_size;
2452 u64 stripe_size;
2453 struct map_lookup *map;
2454 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2455 int ret;
2456
2457 ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2458 &chunk_offset);
2459 if (ret)
2460 return ret;
2461
2462 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2463 &stripe_size, chunk_offset, type);
2464 if (ret)
2465 return ret;
2466
2467 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2468 chunk_size, stripe_size);
2469 BUG_ON(ret);
2470 return 0;
2471}
2472
Chris Masond3977122009-01-05 21:25:51 -05002473static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05002474 struct btrfs_root *root,
2475 struct btrfs_device *device)
2476{
2477 u64 chunk_offset;
2478 u64 sys_chunk_offset;
2479 u64 chunk_size;
2480 u64 sys_chunk_size;
2481 u64 stripe_size;
2482 u64 sys_stripe_size;
2483 u64 alloc_profile;
2484 struct map_lookup *map;
2485 struct map_lookup *sys_map;
2486 struct btrfs_fs_info *fs_info = root->fs_info;
2487 struct btrfs_root *extent_root = fs_info->extent_root;
2488 int ret;
2489
2490 ret = find_next_chunk(fs_info->chunk_root,
2491 BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
2492 BUG_ON(ret);
2493
2494 alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
2495 (fs_info->metadata_alloc_profile &
2496 fs_info->avail_metadata_alloc_bits);
2497 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2498
2499 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2500 &stripe_size, chunk_offset, alloc_profile);
2501 BUG_ON(ret);
2502
2503 sys_chunk_offset = chunk_offset + chunk_size;
2504
2505 alloc_profile = BTRFS_BLOCK_GROUP_SYSTEM |
2506 (fs_info->system_alloc_profile &
2507 fs_info->avail_system_alloc_bits);
2508 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2509
2510 ret = __btrfs_alloc_chunk(trans, extent_root, &sys_map,
2511 &sys_chunk_size, &sys_stripe_size,
2512 sys_chunk_offset, alloc_profile);
2513 BUG_ON(ret);
2514
2515 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
2516 BUG_ON(ret);
2517
2518 /*
2519 * Modifying chunk tree needs allocating new blocks from both
2520 * system block group and metadata block group. So we only can
2521 * do operations require modifying the chunk tree after both
2522 * block groups were created.
2523 */
2524 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2525 chunk_size, stripe_size);
2526 BUG_ON(ret);
2527
2528 ret = __finish_chunk_alloc(trans, extent_root, sys_map,
2529 sys_chunk_offset, sys_chunk_size,
2530 sys_stripe_size);
2531 BUG_ON(ret);
2532 return 0;
2533}
2534
2535int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
2536{
2537 struct extent_map *em;
2538 struct map_lookup *map;
2539 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
2540 int readonly = 0;
2541 int i;
2542
Chris Mason890871b2009-09-02 16:24:52 -04002543 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002544 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002545 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002546 if (!em)
2547 return 1;
2548
Josef Bacikf48b9072010-01-27 02:07:59 +00002549 if (btrfs_test_opt(root, DEGRADED)) {
2550 free_extent_map(em);
2551 return 0;
2552 }
2553
Yan Zheng2b820322008-11-17 21:11:30 -05002554 map = (struct map_lookup *)em->bdev;
2555 for (i = 0; i < map->num_stripes; i++) {
2556 if (!map->stripes[i].dev->writeable) {
2557 readonly = 1;
2558 break;
2559 }
2560 }
2561 free_extent_map(em);
2562 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04002563}
2564
2565void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
2566{
2567 extent_map_tree_init(&tree->map_tree, GFP_NOFS);
2568}
2569
2570void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
2571{
2572 struct extent_map *em;
2573
Chris Masond3977122009-01-05 21:25:51 -05002574 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04002575 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002576 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
2577 if (em)
2578 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002579 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002580 if (!em)
2581 break;
2582 kfree(em->bdev);
2583 /* once for us */
2584 free_extent_map(em);
2585 /* once for the tree */
2586 free_extent_map(em);
2587 }
2588}
2589
Chris Masonf1885912008-04-09 16:28:12 -04002590int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
2591{
2592 struct extent_map *em;
2593 struct map_lookup *map;
2594 struct extent_map_tree *em_tree = &map_tree->map_tree;
2595 int ret;
2596
Chris Mason890871b2009-09-02 16:24:52 -04002597 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002598 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04002599 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002600 BUG_ON(!em);
2601
2602 BUG_ON(em->start > logical || em->start + em->len < logical);
2603 map = (struct map_lookup *)em->bdev;
2604 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
2605 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002606 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
2607 ret = map->sub_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002608 else
2609 ret = 1;
2610 free_extent_map(em);
Chris Masonf1885912008-04-09 16:28:12 -04002611 return ret;
2612}
2613
Chris Masondfe25022008-05-13 13:46:40 -04002614static int find_live_mirror(struct map_lookup *map, int first, int num,
2615 int optimal)
2616{
2617 int i;
2618 if (map->stripes[optimal].dev->bdev)
2619 return optimal;
2620 for (i = first; i < first + num; i++) {
2621 if (map->stripes[i].dev->bdev)
2622 return i;
2623 }
2624 /* we couldn't find one that doesn't fail. Just return something
2625 * and the io error handling code will clean up eventually
2626 */
2627 return optimal;
2628}
2629
Chris Masonf2d8d742008-04-21 10:03:05 -04002630static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
2631 u64 logical, u64 *length,
2632 struct btrfs_multi_bio **multi_ret,
2633 int mirror_num, struct page *unplug_page)
Chris Mason0b86a832008-03-24 15:01:56 -04002634{
2635 struct extent_map *em;
2636 struct map_lookup *map;
2637 struct extent_map_tree *em_tree = &map_tree->map_tree;
2638 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04002639 u64 stripe_offset;
2640 u64 stripe_nr;
Chris Masoncea9e442008-04-09 16:28:12 -04002641 int stripes_allocated = 8;
Chris Mason321aecc2008-04-16 10:49:51 -04002642 int stripes_required = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002643 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04002644 int i;
Chris Masonf2d8d742008-04-21 10:03:05 -04002645 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002646 int max_errors = 0;
Chris Masoncea9e442008-04-09 16:28:12 -04002647 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002648
Chris Masond3977122009-01-05 21:25:51 -05002649 if (multi_ret && !(rw & (1 << BIO_RW)))
Chris Masoncea9e442008-04-09 16:28:12 -04002650 stripes_allocated = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002651again:
2652 if (multi_ret) {
2653 multi = kzalloc(btrfs_multi_bio_size(stripes_allocated),
2654 GFP_NOFS);
2655 if (!multi)
2656 return -ENOMEM;
Chris Masona236aed2008-04-29 09:38:00 -04002657
2658 atomic_set(&multi->error, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04002659 }
Chris Mason0b86a832008-03-24 15:01:56 -04002660
Chris Mason890871b2009-09-02 16:24:52 -04002661 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002662 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04002663 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04002664
Jiri Slaby2423fdf2010-01-06 16:57:22 +00002665 if (!em && unplug_page) {
2666 kfree(multi);
Chris Masonf2d8d742008-04-21 10:03:05 -04002667 return 0;
Jiri Slaby2423fdf2010-01-06 16:57:22 +00002668 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002669
Chris Mason3b951512008-04-17 11:29:12 -04002670 if (!em) {
Chris Masond3977122009-01-05 21:25:51 -05002671 printk(KERN_CRIT "unable to find logical %llu len %llu\n",
2672 (unsigned long long)logical,
2673 (unsigned long long)*length);
Chris Masonf2d8d742008-04-21 10:03:05 -04002674 BUG();
Chris Mason3b951512008-04-17 11:29:12 -04002675 }
Chris Mason0b86a832008-03-24 15:01:56 -04002676
2677 BUG_ON(em->start > logical || em->start + em->len < logical);
2678 map = (struct map_lookup *)em->bdev;
2679 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04002680
Chris Masonf1885912008-04-09 16:28:12 -04002681 if (mirror_num > map->num_stripes)
2682 mirror_num = 0;
2683
Chris Masoncea9e442008-04-09 16:28:12 -04002684 /* if our multi bio struct is too small, back off and try again */
Chris Mason321aecc2008-04-16 10:49:51 -04002685 if (rw & (1 << BIO_RW)) {
2686 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
2687 BTRFS_BLOCK_GROUP_DUP)) {
2688 stripes_required = map->num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002689 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002690 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2691 stripes_required = map->sub_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002692 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002693 }
2694 }
Chris Masonffbd5172009-04-20 15:50:09 -04002695 if (multi_ret && (rw & (1 << BIO_RW)) &&
Chris Mason321aecc2008-04-16 10:49:51 -04002696 stripes_allocated < stripes_required) {
Chris Masoncea9e442008-04-09 16:28:12 -04002697 stripes_allocated = map->num_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04002698 free_extent_map(em);
2699 kfree(multi);
2700 goto again;
2701 }
Chris Mason593060d2008-03-25 16:50:33 -04002702 stripe_nr = offset;
2703 /*
2704 * stripe_nr counts the total number of stripes we have to stride
2705 * to get to this block
2706 */
2707 do_div(stripe_nr, map->stripe_len);
2708
2709 stripe_offset = stripe_nr * map->stripe_len;
2710 BUG_ON(offset < stripe_offset);
2711
2712 /* stripe_offset is the offset of this block in its stripe*/
2713 stripe_offset = offset - stripe_offset;
2714
Chris Masoncea9e442008-04-09 16:28:12 -04002715 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04002716 BTRFS_BLOCK_GROUP_RAID10 |
Chris Masoncea9e442008-04-09 16:28:12 -04002717 BTRFS_BLOCK_GROUP_DUP)) {
2718 /* we limit the length of each bio to what fits in a stripe */
2719 *length = min_t(u64, em->len - offset,
2720 map->stripe_len - stripe_offset);
2721 } else {
2722 *length = em->len - offset;
2723 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002724
2725 if (!multi_ret && !unplug_page)
Chris Masoncea9e442008-04-09 16:28:12 -04002726 goto out;
2727
Chris Masonf2d8d742008-04-21 10:03:05 -04002728 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002729 stripe_index = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002730 if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Chris Masonf2d8d742008-04-21 10:03:05 -04002731 if (unplug_page || (rw & (1 << BIO_RW)))
2732 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04002733 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04002734 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002735 else {
2736 stripe_index = find_live_mirror(map, 0,
2737 map->num_stripes,
2738 current->pid % map->num_stripes);
2739 }
Chris Mason2fff7342008-04-29 14:12:09 -04002740
Chris Mason611f0e02008-04-03 16:29:03 -04002741 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Chris Masoncea9e442008-04-09 16:28:12 -04002742 if (rw & (1 << BIO_RW))
Chris Masonf2d8d742008-04-21 10:03:05 -04002743 num_stripes = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002744 else if (mirror_num)
2745 stripe_index = mirror_num - 1;
Chris Mason2fff7342008-04-29 14:12:09 -04002746
Chris Mason321aecc2008-04-16 10:49:51 -04002747 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2748 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002749
2750 stripe_index = do_div(stripe_nr, factor);
2751 stripe_index *= map->sub_stripes;
2752
Chris Masonf2d8d742008-04-21 10:03:05 -04002753 if (unplug_page || (rw & (1 << BIO_RW)))
2754 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002755 else if (mirror_num)
2756 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002757 else {
2758 stripe_index = find_live_mirror(map, stripe_index,
2759 map->sub_stripes, stripe_index +
2760 current->pid % map->sub_stripes);
2761 }
Chris Mason8790d502008-04-03 16:29:03 -04002762 } else {
2763 /*
2764 * after this do_div call, stripe_nr is the number of stripes
2765 * on this device we have to walk to find the data, and
2766 * stripe_index is the number of our device in the stripe array
2767 */
2768 stripe_index = do_div(stripe_nr, map->num_stripes);
2769 }
Chris Mason593060d2008-03-25 16:50:33 -04002770 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04002771
Chris Masonf2d8d742008-04-21 10:03:05 -04002772 for (i = 0; i < num_stripes; i++) {
2773 if (unplug_page) {
2774 struct btrfs_device *device;
2775 struct backing_dev_info *bdi;
2776
2777 device = map->stripes[stripe_index].dev;
Chris Masondfe25022008-05-13 13:46:40 -04002778 if (device->bdev) {
2779 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masond3977122009-01-05 21:25:51 -05002780 if (bdi->unplug_io_fn)
Chris Masondfe25022008-05-13 13:46:40 -04002781 bdi->unplug_io_fn(bdi, unplug_page);
Chris Masonf2d8d742008-04-21 10:03:05 -04002782 }
2783 } else {
2784 multi->stripes[i].physical =
2785 map->stripes[stripe_index].physical +
2786 stripe_offset + stripe_nr * map->stripe_len;
2787 multi->stripes[i].dev = map->stripes[stripe_index].dev;
2788 }
Chris Masoncea9e442008-04-09 16:28:12 -04002789 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04002790 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002791 if (multi_ret) {
2792 *multi_ret = multi;
2793 multi->num_stripes = num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002794 multi->max_errors = max_errors;
Chris Masonf2d8d742008-04-21 10:03:05 -04002795 }
Chris Masoncea9e442008-04-09 16:28:12 -04002796out:
Chris Mason0b86a832008-03-24 15:01:56 -04002797 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04002798 return 0;
2799}
2800
Chris Masonf2d8d742008-04-21 10:03:05 -04002801int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
2802 u64 logical, u64 *length,
2803 struct btrfs_multi_bio **multi_ret, int mirror_num)
2804{
2805 return __btrfs_map_block(map_tree, rw, logical, length, multi_ret,
2806 mirror_num, NULL);
2807}
2808
Yan Zhenga512bbf2008-12-08 16:46:26 -05002809int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
2810 u64 chunk_start, u64 physical, u64 devid,
2811 u64 **logical, int *naddrs, int *stripe_len)
2812{
2813 struct extent_map_tree *em_tree = &map_tree->map_tree;
2814 struct extent_map *em;
2815 struct map_lookup *map;
2816 u64 *buf;
2817 u64 bytenr;
2818 u64 length;
2819 u64 stripe_nr;
2820 int i, j, nr = 0;
2821
Chris Mason890871b2009-09-02 16:24:52 -04002822 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002823 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002824 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002825
2826 BUG_ON(!em || em->start != chunk_start);
2827 map = (struct map_lookup *)em->bdev;
2828
2829 length = em->len;
2830 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
2831 do_div(length, map->num_stripes / map->sub_stripes);
2832 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
2833 do_div(length, map->num_stripes);
2834
2835 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
2836 BUG_ON(!buf);
2837
2838 for (i = 0; i < map->num_stripes; i++) {
2839 if (devid && map->stripes[i].dev->devid != devid)
2840 continue;
2841 if (map->stripes[i].physical > physical ||
2842 map->stripes[i].physical + length <= physical)
2843 continue;
2844
2845 stripe_nr = physical - map->stripes[i].physical;
2846 do_div(stripe_nr, map->stripe_len);
2847
2848 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2849 stripe_nr = stripe_nr * map->num_stripes + i;
2850 do_div(stripe_nr, map->sub_stripes);
2851 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
2852 stripe_nr = stripe_nr * map->num_stripes + i;
2853 }
2854 bytenr = chunk_start + stripe_nr * map->stripe_len;
Chris Mason934d3752008-12-08 16:43:10 -05002855 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002856 for (j = 0; j < nr; j++) {
2857 if (buf[j] == bytenr)
2858 break;
2859 }
Chris Mason934d3752008-12-08 16:43:10 -05002860 if (j == nr) {
2861 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002862 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05002863 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05002864 }
2865
Yan Zhenga512bbf2008-12-08 16:46:26 -05002866 *logical = buf;
2867 *naddrs = nr;
2868 *stripe_len = map->stripe_len;
2869
2870 free_extent_map(em);
2871 return 0;
2872}
2873
Chris Masonf2d8d742008-04-21 10:03:05 -04002874int btrfs_unplug_page(struct btrfs_mapping_tree *map_tree,
2875 u64 logical, struct page *page)
2876{
2877 u64 length = PAGE_CACHE_SIZE;
2878 return __btrfs_map_block(map_tree, READ, logical, &length,
2879 NULL, 0, page);
2880}
2881
Chris Mason8790d502008-04-03 16:29:03 -04002882static void end_bio_multi_stripe(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04002883{
Chris Masoncea9e442008-04-09 16:28:12 -04002884 struct btrfs_multi_bio *multi = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04002885 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002886
Chris Mason8790d502008-04-03 16:29:03 -04002887 if (err)
Chris Masona236aed2008-04-29 09:38:00 -04002888 atomic_inc(&multi->error);
Chris Mason8790d502008-04-03 16:29:03 -04002889
Chris Mason7d2b4da2008-08-05 10:13:57 -04002890 if (bio == multi->orig_bio)
2891 is_orig_bio = 1;
2892
Chris Masoncea9e442008-04-09 16:28:12 -04002893 if (atomic_dec_and_test(&multi->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04002894 if (!is_orig_bio) {
2895 bio_put(bio);
2896 bio = multi->orig_bio;
2897 }
Chris Mason8790d502008-04-03 16:29:03 -04002898 bio->bi_private = multi->private;
2899 bio->bi_end_io = multi->end_io;
Chris Masona236aed2008-04-29 09:38:00 -04002900 /* only send an error to the higher layers if it is
2901 * beyond the tolerance of the multi-bio
2902 */
Chris Mason1259ab72008-05-12 13:39:03 -04002903 if (atomic_read(&multi->error) > multi->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04002904 err = -EIO;
Chris Mason1259ab72008-05-12 13:39:03 -04002905 } else if (err) {
2906 /*
2907 * this bio is actually up to date, we didn't
2908 * go over the max number of errors
2909 */
2910 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04002911 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04002912 }
Chris Mason8790d502008-04-03 16:29:03 -04002913 kfree(multi);
2914
2915 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04002916 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04002917 bio_put(bio);
2918 }
Chris Mason8790d502008-04-03 16:29:03 -04002919}
2920
Chris Mason8b712842008-06-11 16:50:36 -04002921struct async_sched {
2922 struct bio *bio;
2923 int rw;
2924 struct btrfs_fs_info *info;
2925 struct btrfs_work work;
2926};
2927
2928/*
2929 * see run_scheduled_bios for a description of why bios are collected for
2930 * async submit.
2931 *
2932 * This will add one bio to the pending list for a device and make sure
2933 * the work struct is scheduled.
2934 */
Chris Masond3977122009-01-05 21:25:51 -05002935static noinline int schedule_bio(struct btrfs_root *root,
Chris Masona1b32a52008-09-05 16:09:51 -04002936 struct btrfs_device *device,
2937 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04002938{
2939 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04002940 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04002941
2942 /* don't bother with additional async steps for reads, right now */
2943 if (!(rw & (1 << BIO_RW))) {
Chris Mason492bb6d2008-07-31 16:29:02 -04002944 bio_get(bio);
Chris Mason8b712842008-06-11 16:50:36 -04002945 submit_bio(rw, bio);
Chris Mason492bb6d2008-07-31 16:29:02 -04002946 bio_put(bio);
Chris Mason8b712842008-06-11 16:50:36 -04002947 return 0;
2948 }
2949
2950 /*
Chris Mason0986fe92008-08-15 15:34:15 -04002951 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04002952 * higher layers. Otherwise, the async bio makes it appear we have
2953 * made progress against dirty pages when we've really just put it
2954 * on a queue for later
2955 */
Chris Mason0986fe92008-08-15 15:34:15 -04002956 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6d2008-07-31 16:29:02 -04002957 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04002958 bio->bi_next = NULL;
2959 bio->bi_rw |= rw;
2960
2961 spin_lock(&device->io_lock);
Jens Axboe1f98a132009-09-11 14:32:04 +02002962 if (bio_rw_flagged(bio, BIO_RW_SYNCIO))
Chris Masonffbd5172009-04-20 15:50:09 -04002963 pending_bios = &device->pending_sync_bios;
2964 else
2965 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04002966
Chris Masonffbd5172009-04-20 15:50:09 -04002967 if (pending_bios->tail)
2968 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04002969
Chris Masonffbd5172009-04-20 15:50:09 -04002970 pending_bios->tail = bio;
2971 if (!pending_bios->head)
2972 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04002973 if (device->running_pending)
2974 should_queue = 0;
2975
2976 spin_unlock(&device->io_lock);
2977
2978 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04002979 btrfs_queue_worker(&root->fs_info->submit_workers,
2980 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04002981 return 0;
2982}
2983
Chris Masonf1885912008-04-09 16:28:12 -04002984int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04002985 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04002986{
2987 struct btrfs_mapping_tree *map_tree;
2988 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04002989 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04002990 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04002991 u64 length = 0;
2992 u64 map_length;
Chris Masoncea9e442008-04-09 16:28:12 -04002993 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002994 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04002995 int dev_nr = 0;
2996 int total_devs = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04002997
Chris Masonf2d8d742008-04-21 10:03:05 -04002998 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04002999 map_tree = &root->fs_info->mapping_tree;
3000 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04003001
Chris Masonf1885912008-04-09 16:28:12 -04003002 ret = btrfs_map_block(map_tree, rw, logical, &map_length, &multi,
3003 mirror_num);
Chris Masoncea9e442008-04-09 16:28:12 -04003004 BUG_ON(ret);
3005
3006 total_devs = multi->num_stripes;
3007 if (map_length < length) {
Chris Masond3977122009-01-05 21:25:51 -05003008 printk(KERN_CRIT "mapping failed logical %llu bio len %llu "
3009 "len %llu\n", (unsigned long long)logical,
3010 (unsigned long long)length,
3011 (unsigned long long)map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04003012 BUG();
3013 }
3014 multi->end_io = first_bio->bi_end_io;
3015 multi->private = first_bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04003016 multi->orig_bio = first_bio;
Chris Masoncea9e442008-04-09 16:28:12 -04003017 atomic_set(&multi->stripes_pending, multi->num_stripes);
3018
Chris Masond3977122009-01-05 21:25:51 -05003019 while (dev_nr < total_devs) {
Chris Mason8790d502008-04-03 16:29:03 -04003020 if (total_devs > 1) {
Chris Mason8790d502008-04-03 16:29:03 -04003021 if (dev_nr < total_devs - 1) {
3022 bio = bio_clone(first_bio, GFP_NOFS);
3023 BUG_ON(!bio);
3024 } else {
3025 bio = first_bio;
3026 }
3027 bio->bi_private = multi;
3028 bio->bi_end_io = end_bio_multi_stripe;
3029 }
Chris Masoncea9e442008-04-09 16:28:12 -04003030 bio->bi_sector = multi->stripes[dev_nr].physical >> 9;
3031 dev = multi->stripes[dev_nr].dev;
Yan Zheng2b820322008-11-17 21:11:30 -05003032 BUG_ON(rw == WRITE && !dev->writeable);
Chris Masondfe25022008-05-13 13:46:40 -04003033 if (dev && dev->bdev) {
3034 bio->bi_bdev = dev->bdev;
Chris Mason8b712842008-06-11 16:50:36 -04003035 if (async_submit)
3036 schedule_bio(root, dev, rw, bio);
3037 else
3038 submit_bio(rw, bio);
Chris Masondfe25022008-05-13 13:46:40 -04003039 } else {
3040 bio->bi_bdev = root->fs_info->fs_devices->latest_bdev;
3041 bio->bi_sector = logical >> 9;
Chris Masondfe25022008-05-13 13:46:40 -04003042 bio_endio(bio, -EIO);
Chris Masondfe25022008-05-13 13:46:40 -04003043 }
Chris Mason8790d502008-04-03 16:29:03 -04003044 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04003045 }
Chris Masoncea9e442008-04-09 16:28:12 -04003046 if (total_devs == 1)
3047 kfree(multi);
Chris Mason0b86a832008-03-24 15:01:56 -04003048 return 0;
3049}
3050
Chris Masona4437552008-04-18 10:29:38 -04003051struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05003052 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04003053{
Yan Zheng2b820322008-11-17 21:11:30 -05003054 struct btrfs_device *device;
3055 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04003056
Yan Zheng2b820322008-11-17 21:11:30 -05003057 cur_devices = root->fs_info->fs_devices;
3058 while (cur_devices) {
3059 if (!fsid ||
3060 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3061 device = __find_device(&cur_devices->devices,
3062 devid, uuid);
3063 if (device)
3064 return device;
3065 }
3066 cur_devices = cur_devices->seed;
3067 }
3068 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04003069}
3070
Chris Masondfe25022008-05-13 13:46:40 -04003071static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
3072 u64 devid, u8 *dev_uuid)
3073{
3074 struct btrfs_device *device;
3075 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
3076
3077 device = kzalloc(sizeof(*device), GFP_NOFS);
yanhai zhu7cbd8a82008-11-12 14:38:54 -05003078 if (!device)
3079 return NULL;
Chris Masondfe25022008-05-13 13:46:40 -04003080 list_add(&device->dev_list,
3081 &fs_devices->devices);
Chris Masondfe25022008-05-13 13:46:40 -04003082 device->barriers = 1;
3083 device->dev_root = root->fs_info->dev_root;
3084 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -04003085 device->work.func = pending_bios_fn;
Yan Zhenge4404d62008-12-12 10:03:26 -05003086 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04003087 fs_devices->num_devices++;
3088 spin_lock_init(&device->io_lock);
Chris Masond20f7042008-12-08 16:58:54 -05003089 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masondfe25022008-05-13 13:46:40 -04003090 memcpy(device->uuid, dev_uuid, BTRFS_UUID_SIZE);
3091 return device;
3092}
3093
Chris Mason0b86a832008-03-24 15:01:56 -04003094static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
3095 struct extent_buffer *leaf,
3096 struct btrfs_chunk *chunk)
3097{
3098 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
3099 struct map_lookup *map;
3100 struct extent_map *em;
3101 u64 logical;
3102 u64 length;
3103 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04003104 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04003105 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04003106 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04003107 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04003108
Chris Masone17cade2008-04-15 15:41:47 -04003109 logical = key->offset;
3110 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04003111
Chris Mason890871b2009-09-02 16:24:52 -04003112 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003113 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003114 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003115
3116 /* already mapped? */
3117 if (em && em->start <= logical && em->start + em->len > logical) {
3118 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04003119 return 0;
3120 } else if (em) {
3121 free_extent_map(em);
3122 }
Chris Mason0b86a832008-03-24 15:01:56 -04003123
Chris Mason0b86a832008-03-24 15:01:56 -04003124 em = alloc_extent_map(GFP_NOFS);
3125 if (!em)
3126 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04003127 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3128 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04003129 if (!map) {
3130 free_extent_map(em);
3131 return -ENOMEM;
3132 }
3133
3134 em->bdev = (struct block_device *)map;
3135 em->start = logical;
3136 em->len = length;
3137 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003138 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04003139
Chris Mason593060d2008-03-25 16:50:33 -04003140 map->num_stripes = num_stripes;
3141 map->io_width = btrfs_chunk_io_width(leaf, chunk);
3142 map->io_align = btrfs_chunk_io_align(leaf, chunk);
3143 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
3144 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
3145 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04003146 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04003147 for (i = 0; i < num_stripes; i++) {
3148 map->stripes[i].physical =
3149 btrfs_stripe_offset_nr(leaf, chunk, i);
3150 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04003151 read_extent_buffer(leaf, uuid, (unsigned long)
3152 btrfs_stripe_dev_uuid_nr(chunk, i),
3153 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003154 map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
3155 NULL);
Chris Masondfe25022008-05-13 13:46:40 -04003156 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04003157 kfree(map);
3158 free_extent_map(em);
3159 return -EIO;
3160 }
Chris Masondfe25022008-05-13 13:46:40 -04003161 if (!map->stripes[i].dev) {
3162 map->stripes[i].dev =
3163 add_missing_dev(root, devid, uuid);
3164 if (!map->stripes[i].dev) {
3165 kfree(map);
3166 free_extent_map(em);
3167 return -EIO;
3168 }
3169 }
3170 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04003171 }
3172
Chris Mason890871b2009-09-02 16:24:52 -04003173 write_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003174 ret = add_extent_mapping(&map_tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04003175 write_unlock(&map_tree->map_tree.lock);
Chris Masonb248a412008-04-14 09:48:18 -04003176 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04003177 free_extent_map(em);
3178
3179 return 0;
3180}
3181
3182static int fill_device_from_item(struct extent_buffer *leaf,
3183 struct btrfs_dev_item *dev_item,
3184 struct btrfs_device *device)
3185{
3186 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04003187
3188 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04003189 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
3190 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003191 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
3192 device->type = btrfs_device_type(leaf, dev_item);
3193 device->io_align = btrfs_device_io_align(leaf, dev_item);
3194 device->io_width = btrfs_device_io_width(leaf, dev_item);
3195 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Chris Mason0b86a832008-03-24 15:01:56 -04003196
3197 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04003198 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003199
Chris Mason0b86a832008-03-24 15:01:56 -04003200 return 0;
3201}
3202
Yan Zheng2b820322008-11-17 21:11:30 -05003203static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
3204{
3205 struct btrfs_fs_devices *fs_devices;
3206 int ret;
3207
3208 mutex_lock(&uuid_mutex);
3209
3210 fs_devices = root->fs_info->fs_devices->seed;
3211 while (fs_devices) {
3212 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3213 ret = 0;
3214 goto out;
3215 }
3216 fs_devices = fs_devices->seed;
3217 }
3218
3219 fs_devices = find_fsid(fsid);
3220 if (!fs_devices) {
3221 ret = -ENOENT;
3222 goto out;
3223 }
Yan Zhenge4404d62008-12-12 10:03:26 -05003224
3225 fs_devices = clone_fs_devices(fs_devices);
3226 if (IS_ERR(fs_devices)) {
3227 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003228 goto out;
3229 }
3230
Christoph Hellwig97288f22008-12-02 06:36:09 -05003231 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05003232 root->fs_info->bdev_holder);
Yan Zheng2b820322008-11-17 21:11:30 -05003233 if (ret)
3234 goto out;
3235
3236 if (!fs_devices->seeding) {
3237 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05003238 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003239 ret = -EINVAL;
3240 goto out;
3241 }
3242
3243 fs_devices->seed = root->fs_info->fs_devices->seed;
3244 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05003245out:
3246 mutex_unlock(&uuid_mutex);
3247 return ret;
3248}
3249
Chris Mason0d81ba52008-03-24 15:02:07 -04003250static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003251 struct extent_buffer *leaf,
3252 struct btrfs_dev_item *dev_item)
3253{
3254 struct btrfs_device *device;
3255 u64 devid;
3256 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003257 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04003258 u8 dev_uuid[BTRFS_UUID_SIZE];
3259
Chris Mason0b86a832008-03-24 15:01:56 -04003260 devid = btrfs_device_id(leaf, dev_item);
Chris Masona4437552008-04-18 10:29:38 -04003261 read_extent_buffer(leaf, dev_uuid,
3262 (unsigned long)btrfs_device_uuid(dev_item),
3263 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003264 read_extent_buffer(leaf, fs_uuid,
3265 (unsigned long)btrfs_device_fsid(dev_item),
3266 BTRFS_UUID_SIZE);
3267
3268 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
3269 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05003270 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003271 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003272 }
3273
3274 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
3275 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05003276 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003277 return -EIO;
3278
3279 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05003280 printk(KERN_WARNING "warning devid %llu missing\n",
3281 (unsigned long long)devid);
Yan Zheng2b820322008-11-17 21:11:30 -05003282 device = add_missing_dev(root, devid, dev_uuid);
3283 if (!device)
3284 return -ENOMEM;
3285 }
3286 }
3287
3288 if (device->fs_devices != root->fs_info->fs_devices) {
3289 BUG_ON(device->writeable);
3290 if (device->generation !=
3291 btrfs_device_generation(leaf, dev_item))
3292 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04003293 }
Chris Mason0b86a832008-03-24 15:01:56 -04003294
3295 fill_device_from_item(leaf, dev_item, device);
3296 device->dev_root = root->fs_info->dev_root;
Chris Masondfe25022008-05-13 13:46:40 -04003297 device->in_fs_metadata = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05003298 if (device->writeable)
3299 device->fs_devices->total_rw_bytes += device->total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003300 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003301 return ret;
3302}
3303
Chris Mason0d81ba52008-03-24 15:02:07 -04003304int btrfs_read_super_device(struct btrfs_root *root, struct extent_buffer *buf)
3305{
3306 struct btrfs_dev_item *dev_item;
3307
3308 dev_item = (struct btrfs_dev_item *)offsetof(struct btrfs_super_block,
3309 dev_item);
3310 return read_one_dev(root, buf, dev_item);
3311}
3312
Yan Zhenge4404d62008-12-12 10:03:26 -05003313int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04003314{
3315 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04003316 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04003317 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04003318 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04003319 u8 *ptr;
3320 unsigned long sb_ptr;
3321 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003322 u32 num_stripes;
3323 u32 array_size;
3324 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003325 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04003326 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04003327
Yan Zhenge4404d62008-12-12 10:03:26 -05003328 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04003329 BTRFS_SUPER_INFO_SIZE);
3330 if (!sb)
3331 return -ENOMEM;
3332 btrfs_set_buffer_uptodate(sb);
Chris Mason4008c042009-02-12 14:09:45 -05003333 btrfs_set_buffer_lockdep_class(sb, 0);
3334
Chris Masona061fc82008-05-07 11:43:44 -04003335 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003336 array_size = btrfs_super_sys_array_size(super_copy);
3337
Chris Mason0b86a832008-03-24 15:01:56 -04003338 ptr = super_copy->sys_chunk_array;
3339 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
3340 cur = 0;
3341
3342 while (cur < array_size) {
3343 disk_key = (struct btrfs_disk_key *)ptr;
3344 btrfs_disk_key_to_cpu(&key, disk_key);
3345
Chris Masona061fc82008-05-07 11:43:44 -04003346 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04003347 sb_ptr += len;
3348 cur += len;
3349
Chris Mason0d81ba52008-03-24 15:02:07 -04003350 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04003351 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04003352 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04003353 if (ret)
3354 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003355 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
3356 len = btrfs_chunk_item_size(num_stripes);
3357 } else {
Chris Mason84eed902008-04-25 09:04:37 -04003358 ret = -EIO;
3359 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003360 }
3361 ptr += len;
3362 sb_ptr += len;
3363 cur += len;
3364 }
Chris Masona061fc82008-05-07 11:43:44 -04003365 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04003366 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04003367}
3368
3369int btrfs_read_chunk_tree(struct btrfs_root *root)
3370{
3371 struct btrfs_path *path;
3372 struct extent_buffer *leaf;
3373 struct btrfs_key key;
3374 struct btrfs_key found_key;
3375 int ret;
3376 int slot;
3377
3378 root = root->fs_info->chunk_root;
3379
3380 path = btrfs_alloc_path();
3381 if (!path)
3382 return -ENOMEM;
3383
3384 /* first we search for all of the device items, and then we
3385 * read in all of the chunk items. This way we can create chunk
3386 * mappings that reference all of the devices that are afound
3387 */
3388 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
3389 key.offset = 0;
3390 key.type = 0;
3391again:
3392 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Masond3977122009-01-05 21:25:51 -05003393 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003394 leaf = path->nodes[0];
3395 slot = path->slots[0];
3396 if (slot >= btrfs_header_nritems(leaf)) {
3397 ret = btrfs_next_leaf(root, path);
3398 if (ret == 0)
3399 continue;
3400 if (ret < 0)
3401 goto error;
3402 break;
3403 }
3404 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3405 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3406 if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
3407 break;
3408 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
3409 struct btrfs_dev_item *dev_item;
3410 dev_item = btrfs_item_ptr(leaf, slot,
3411 struct btrfs_dev_item);
Chris Mason0d81ba52008-03-24 15:02:07 -04003412 ret = read_one_dev(root, leaf, dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05003413 if (ret)
3414 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003415 }
3416 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
3417 struct btrfs_chunk *chunk;
3418 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3419 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05003420 if (ret)
3421 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003422 }
3423 path->slots[0]++;
3424 }
3425 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3426 key.objectid = 0;
3427 btrfs_release_path(root, path);
3428 goto again;
3429 }
Chris Mason0b86a832008-03-24 15:01:56 -04003430 ret = 0;
3431error:
Yan Zheng2b820322008-11-17 21:11:30 -05003432 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04003433 return ret;
3434}