blob: d2358c06bbd9fc6e7bb59b905f4df2a2245d24cc [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>
Chris Mason8a4b83c2008-03-24 15:02:07 -040020#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040021#include <linux/blkdev.h>
Chris Mason788f20e2008-04-28 15:29:42 -040022#include <linux/random.h>
Chris Masonb765ead2009-04-03 10:27:10 -040023#include <linux/iocontext.h>
Chris Mason593060d2008-03-25 16:50:33 -040024#include <asm/div64.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050025#include "compat.h"
Chris Mason0b86a832008-03-24 15:01:56 -040026#include "ctree.h"
27#include "extent_map.h"
28#include "disk-io.h"
29#include "transaction.h"
30#include "print-tree.h"
31#include "volumes.h"
Chris Mason8b712842008-06-11 16:50:36 -040032#include "async-thread.h"
Chris Mason0b86a832008-03-24 15:01:56 -040033
Chris Mason593060d2008-03-25 16:50:33 -040034struct map_lookup {
35 u64 type;
36 int io_align;
37 int io_width;
38 int stripe_len;
39 int sector_size;
40 int num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -040041 int sub_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -040042 struct btrfs_bio_stripe stripes[];
Chris Mason593060d2008-03-25 16:50:33 -040043};
44
Yan Zheng2b820322008-11-17 21:11:30 -050045static int init_first_rw_device(struct btrfs_trans_handle *trans,
46 struct btrfs_root *root,
47 struct btrfs_device *device);
48static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
49
Chris Mason593060d2008-03-25 16:50:33 -040050#define map_lookup_size(n) (sizeof(struct map_lookup) + \
Chris Masoncea9e442008-04-09 16:28:12 -040051 (sizeof(struct btrfs_bio_stripe) * (n)))
Chris Mason593060d2008-03-25 16:50:33 -040052
Chris Mason8a4b83c2008-03-24 15:02:07 -040053static DEFINE_MUTEX(uuid_mutex);
54static LIST_HEAD(fs_uuids);
55
Chris Masona061fc82008-05-07 11:43:44 -040056void btrfs_lock_volumes(void)
57{
58 mutex_lock(&uuid_mutex);
59}
60
61void btrfs_unlock_volumes(void)
62{
63 mutex_unlock(&uuid_mutex);
64}
65
Chris Mason7d9eb122008-07-08 14:19:17 -040066static void lock_chunks(struct btrfs_root *root)
67{
Chris Mason7d9eb122008-07-08 14:19:17 -040068 mutex_lock(&root->fs_info->chunk_mutex);
69}
70
71static void unlock_chunks(struct btrfs_root *root)
72{
Chris Mason7d9eb122008-07-08 14:19:17 -040073 mutex_unlock(&root->fs_info->chunk_mutex);
74}
75
Yan Zhenge4404d62008-12-12 10:03:26 -050076static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
77{
78 struct btrfs_device *device;
79 WARN_ON(fs_devices->opened);
80 while (!list_empty(&fs_devices->devices)) {
81 device = list_entry(fs_devices->devices.next,
82 struct btrfs_device, dev_list);
83 list_del(&device->dev_list);
84 kfree(device->name);
85 kfree(device);
86 }
87 kfree(fs_devices);
88}
89
Chris Mason8a4b83c2008-03-24 15:02:07 -040090int btrfs_cleanup_fs_uuids(void)
91{
92 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -040093
Yan Zheng2b820322008-11-17 21:11:30 -050094 while (!list_empty(&fs_uuids)) {
95 fs_devices = list_entry(fs_uuids.next,
96 struct btrfs_fs_devices, list);
97 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -050098 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -040099 }
100 return 0;
101}
102
Chris Masona1b32a52008-09-05 16:09:51 -0400103static noinline struct btrfs_device *__find_device(struct list_head *head,
104 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400105{
106 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400107
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500108 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400109 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400110 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400111 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400112 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400113 }
114 return NULL;
115}
116
Chris Masona1b32a52008-09-05 16:09:51 -0400117static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400118{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400119 struct btrfs_fs_devices *fs_devices;
120
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500121 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400122 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
123 return fs_devices;
124 }
125 return NULL;
126}
127
Chris Masonffbd5172009-04-20 15:50:09 -0400128static void requeue_list(struct btrfs_pending_bios *pending_bios,
129 struct bio *head, struct bio *tail)
130{
131
132 struct bio *old_head;
133
134 old_head = pending_bios->head;
135 pending_bios->head = head;
136 if (pending_bios->tail)
137 tail->bi_next = old_head;
138 else
139 pending_bios->tail = tail;
140}
141
Chris Mason8b712842008-06-11 16:50:36 -0400142/*
143 * we try to collect pending bios for a device so we don't get a large
144 * number of procs sending bios down to the same device. This greatly
145 * improves the schedulers ability to collect and merge the bios.
146 *
147 * But, it also turns into a long list of bios to process and that is sure
148 * to eventually make the worker thread block. The solution here is to
149 * make some progress and then put this work struct back at the end of
150 * the list if the block device is congested. This way, multiple devices
151 * can make progress from a single worker thread.
152 */
Chris Masond3977122009-01-05 21:25:51 -0500153static noinline int run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400154{
155 struct bio *pending;
156 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400157 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400158 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400159 struct bio *tail;
160 struct bio *cur;
161 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400162 unsigned long num_run;
163 unsigned long num_sync_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400164 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400165 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400166 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400167 int force_reg = 0;
Chris Mason8b712842008-06-11 16:50:36 -0400168
Chris Masonbedf7622009-04-03 10:32:58 -0400169 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400170 fs_info = device->dev_root->fs_info;
171 limit = btrfs_async_submit_limit(fs_info);
172 limit = limit * 2 / 3;
173
Chris Masonffbd5172009-04-20 15:50:09 -0400174 /* we want to make sure that every time we switch from the sync
175 * list to the normal list, we unplug
176 */
177 num_sync_run = 0;
178
Chris Mason8b712842008-06-11 16:50:36 -0400179loop:
180 spin_lock(&device->io_lock);
181
Chris Masona6837052009-02-04 09:19:41 -0500182loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400183 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400184
Chris Mason8b712842008-06-11 16:50:36 -0400185 /* take all the bios off the list at once and process them
186 * later on (without the lock held). But, remember the
187 * tail and other pointers so the bios can be properly reinserted
188 * into the list if we hit congestion
189 */
Chris Masond84275c2009-06-09 15:39:08 -0400190 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400191 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400192 force_reg = 1;
193 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400194 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400195 force_reg = 0;
196 }
Chris Masonffbd5172009-04-20 15:50:09 -0400197
198 pending = pending_bios->head;
199 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400200 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400201
202 /*
203 * if pending was null this time around, no bios need processing
204 * at all and we can stop. Otherwise it'll loop back up again
205 * and do an additional check so no bios are missed.
206 *
207 * device->running_pending is used to synchronize with the
208 * schedule_bio code.
209 */
Chris Masonffbd5172009-04-20 15:50:09 -0400210 if (device->pending_sync_bios.head == NULL &&
211 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400212 again = 0;
213 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400214 } else {
215 again = 1;
216 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400217 }
Chris Masonffbd5172009-04-20 15:50:09 -0400218
219 pending_bios->head = NULL;
220 pending_bios->tail = NULL;
221
Chris Mason8b712842008-06-11 16:50:36 -0400222 spin_unlock(&device->io_lock);
223
Chris Masonffbd5172009-04-20 15:50:09 -0400224 /*
225 * if we're doing the regular priority list, make sure we unplug
226 * for any high prio bios we've sent down
227 */
228 if (pending_bios == &device->pending_bios && num_sync_run > 0) {
229 num_sync_run = 0;
230 blk_run_backing_dev(bdi, NULL);
231 }
232
Chris Masond3977122009-01-05 21:25:51 -0500233 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400234
235 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400236 /* we want to work on both lists, but do more bios on the
237 * sync list than the regular list
238 */
239 if ((num_run > 32 &&
240 pending_bios != &device->pending_sync_bios &&
241 device->pending_sync_bios.head) ||
242 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
243 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400244 spin_lock(&device->io_lock);
245 requeue_list(pending_bios, pending, tail);
246 goto loop_lock;
247 }
248
Chris Mason8b712842008-06-11 16:50:36 -0400249 cur = pending;
250 pending = pending->bi_next;
251 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400252 atomic_dec(&fs_info->nr_async_bios);
253
254 if (atomic_read(&fs_info->nr_async_bios) < limit &&
255 waitqueue_active(&fs_info->async_submit_wait))
256 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400257
258 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Mason8b712842008-06-11 16:50:36 -0400259 submit_bio(cur->bi_rw, cur);
260 num_run++;
Chris Masond644d8a2009-06-09 15:59:22 -0400261 batch_run++;
262
Chris Masonffbd5172009-04-20 15:50:09 -0400263 if (bio_sync(cur))
264 num_sync_run++;
265
266 if (need_resched()) {
267 if (num_sync_run) {
268 blk_run_backing_dev(bdi, NULL);
269 num_sync_run = 0;
270 }
271 cond_resched();
272 }
Chris Mason8b712842008-06-11 16:50:36 -0400273
274 /*
275 * we made progress, there is more work to do and the bdi
276 * is now congested. Back off and let other work structs
277 * run instead
278 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400279 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500280 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400281 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400282
Chris Masonb765ead2009-04-03 10:27:10 -0400283 ioc = current->io_context;
284
285 /*
286 * the main goal here is that we don't want to
287 * block if we're going to be able to submit
288 * more requests without blocking.
289 *
290 * This code does two great things, it pokes into
291 * the elevator code from a filesystem _and_
292 * it makes assumptions about how batching works.
293 */
294 if (ioc && ioc->nr_batch_requests > 0 &&
295 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
296 (last_waited == 0 ||
297 ioc->last_waited == last_waited)) {
298 /*
299 * we want to go through our batch of
300 * requests and stop. So, we copy out
301 * the ioc->last_waited time and test
302 * against it before looping
303 */
304 last_waited = ioc->last_waited;
Chris Masonffbd5172009-04-20 15:50:09 -0400305 if (need_resched()) {
306 if (num_sync_run) {
307 blk_run_backing_dev(bdi, NULL);
308 num_sync_run = 0;
309 }
310 cond_resched();
311 }
Chris Masonb765ead2009-04-03 10:27:10 -0400312 continue;
313 }
Chris Mason8b712842008-06-11 16:50:36 -0400314 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400315 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500316 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400317
318 spin_unlock(&device->io_lock);
319 btrfs_requeue_work(&device->work);
320 goto done;
321 }
322 }
Chris Masonffbd5172009-04-20 15:50:09 -0400323
324 if (num_sync_run) {
325 num_sync_run = 0;
326 blk_run_backing_dev(bdi, NULL);
327 }
328
329 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400330 if (again)
331 goto loop;
Chris Masona6837052009-02-04 09:19:41 -0500332
333 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400334 if (device->pending_bios.head || device->pending_sync_bios.head)
Chris Masona6837052009-02-04 09:19:41 -0500335 goto loop_lock;
336 spin_unlock(&device->io_lock);
Chris Masonbedf7622009-04-03 10:32:58 -0400337
338 /*
339 * IO has already been through a long path to get here. Checksumming,
340 * async helper threads, perhaps compression. We've done a pretty
341 * good job of collecting a batch of IO and should just unplug
342 * the device right away.
343 *
344 * This will help anyone who is waiting on the IO, they might have
345 * already unplugged, but managed to do so before the bio they
346 * cared about found its way down here.
347 */
348 blk_run_backing_dev(bdi, NULL);
Chris Mason8b712842008-06-11 16:50:36 -0400349done:
350 return 0;
351}
352
Christoph Hellwigb2950862008-12-02 09:54:17 -0500353static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400354{
355 struct btrfs_device *device;
356
357 device = container_of(work, struct btrfs_device, work);
358 run_scheduled_bios(device);
359}
360
Chris Masona1b32a52008-09-05 16:09:51 -0400361static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400362 struct btrfs_super_block *disk_super,
363 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
364{
365 struct btrfs_device *device;
366 struct btrfs_fs_devices *fs_devices;
367 u64 found_transid = btrfs_super_generation(disk_super);
368
369 fs_devices = find_fsid(disk_super->fsid);
370 if (!fs_devices) {
Chris Mason515dc322008-05-16 13:30:15 -0400371 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400372 if (!fs_devices)
373 return -ENOMEM;
374 INIT_LIST_HEAD(&fs_devices->devices);
Chris Masonb3075712008-04-22 09:22:07 -0400375 INIT_LIST_HEAD(&fs_devices->alloc_list);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400376 list_add(&fs_devices->list, &fs_uuids);
377 memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
378 fs_devices->latest_devid = devid;
379 fs_devices->latest_trans = found_transid;
Chris Masone5e9a522009-06-10 15:17:02 -0400380 mutex_init(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400381 device = NULL;
382 } else {
Chris Masona4437552008-04-18 10:29:38 -0400383 device = __find_device(&fs_devices->devices, devid,
384 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400385 }
386 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500387 if (fs_devices->opened)
388 return -EBUSY;
389
Chris Mason8a4b83c2008-03-24 15:02:07 -0400390 device = kzalloc(sizeof(*device), GFP_NOFS);
391 if (!device) {
392 /* we can safely leave the fs_devices entry around */
393 return -ENOMEM;
394 }
395 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -0400396 device->work.func = pending_bios_fn;
Chris Masona4437552008-04-18 10:29:38 -0400397 memcpy(device->uuid, disk_super->dev_item.uuid,
398 BTRFS_UUID_SIZE);
Chris Masonf2984462008-04-10 16:19:33 -0400399 device->barriers = 1;
Chris Masonb248a412008-04-14 09:48:18 -0400400 spin_lock_init(&device->io_lock);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400401 device->name = kstrdup(path, GFP_NOFS);
402 if (!device->name) {
403 kfree(device);
404 return -ENOMEM;
405 }
Yan Zheng2b820322008-11-17 21:11:30 -0500406 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -0400407
408 mutex_lock(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400409 list_add(&device->dev_list, &fs_devices->devices);
Chris Masone5e9a522009-06-10 15:17:02 -0400410 mutex_unlock(&fs_devices->device_list_mutex);
411
Yan Zheng2b820322008-11-17 21:11:30 -0500412 device->fs_devices = fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400413 fs_devices->num_devices++;
414 }
415
416 if (found_transid > fs_devices->latest_trans) {
417 fs_devices->latest_devid = devid;
418 fs_devices->latest_trans = found_transid;
419 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400420 *fs_devices_ret = fs_devices;
421 return 0;
422}
423
Yan Zhenge4404d62008-12-12 10:03:26 -0500424static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
425{
426 struct btrfs_fs_devices *fs_devices;
427 struct btrfs_device *device;
428 struct btrfs_device *orig_dev;
429
430 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
431 if (!fs_devices)
432 return ERR_PTR(-ENOMEM);
433
434 INIT_LIST_HEAD(&fs_devices->devices);
435 INIT_LIST_HEAD(&fs_devices->alloc_list);
436 INIT_LIST_HEAD(&fs_devices->list);
Chris Masone5e9a522009-06-10 15:17:02 -0400437 mutex_init(&fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500438 fs_devices->latest_devid = orig->latest_devid;
439 fs_devices->latest_trans = orig->latest_trans;
440 memcpy(fs_devices->fsid, orig->fsid, sizeof(fs_devices->fsid));
441
Chris Masone5e9a522009-06-10 15:17:02 -0400442 mutex_lock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500443 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
444 device = kzalloc(sizeof(*device), GFP_NOFS);
445 if (!device)
446 goto error;
447
448 device->name = kstrdup(orig_dev->name, GFP_NOFS);
449 if (!device->name)
450 goto error;
451
452 device->devid = orig_dev->devid;
453 device->work.func = pending_bios_fn;
454 memcpy(device->uuid, orig_dev->uuid, sizeof(device->uuid));
455 device->barriers = 1;
456 spin_lock_init(&device->io_lock);
457 INIT_LIST_HEAD(&device->dev_list);
458 INIT_LIST_HEAD(&device->dev_alloc_list);
459
460 list_add(&device->dev_list, &fs_devices->devices);
461 device->fs_devices = fs_devices;
462 fs_devices->num_devices++;
463 }
Chris Masone5e9a522009-06-10 15:17:02 -0400464 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500465 return fs_devices;
466error:
Chris Masone5e9a522009-06-10 15:17:02 -0400467 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500468 free_fs_devices(fs_devices);
469 return ERR_PTR(-ENOMEM);
470}
471
Chris Masondfe25022008-05-13 13:46:40 -0400472int btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices)
473{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500474 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400475
476 mutex_lock(&uuid_mutex);
477again:
Chris Masone5e9a522009-06-10 15:17:02 -0400478 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500479 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Yan Zheng2b820322008-11-17 21:11:30 -0500480 if (device->in_fs_metadata)
481 continue;
482
483 if (device->bdev) {
Chris Mason15916de2008-11-19 21:17:22 -0500484 close_bdev_exclusive(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500485 device->bdev = NULL;
486 fs_devices->open_devices--;
487 }
488 if (device->writeable) {
489 list_del_init(&device->dev_alloc_list);
490 device->writeable = 0;
491 fs_devices->rw_devices--;
492 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500493 list_del_init(&device->dev_list);
494 fs_devices->num_devices--;
495 kfree(device->name);
496 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400497 }
Chris Masone5e9a522009-06-10 15:17:02 -0400498 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -0500499
500 if (fs_devices->seed) {
501 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500502 goto again;
503 }
504
Chris Masondfe25022008-05-13 13:46:40 -0400505 mutex_unlock(&uuid_mutex);
506 return 0;
507}
Chris Masona0af4692008-05-13 16:03:06 -0400508
Yan Zheng2b820322008-11-17 21:11:30 -0500509static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400510{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400511 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500512
Yan Zheng2b820322008-11-17 21:11:30 -0500513 if (--fs_devices->opened > 0)
514 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400515
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500516 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400517 if (device->bdev) {
Chris Mason15916de2008-11-19 21:17:22 -0500518 close_bdev_exclusive(device->bdev, device->mode);
Chris Masona0af4692008-05-13 16:03:06 -0400519 fs_devices->open_devices--;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400520 }
Yan Zheng2b820322008-11-17 21:11:30 -0500521 if (device->writeable) {
522 list_del_init(&device->dev_alloc_list);
523 fs_devices->rw_devices--;
524 }
525
Chris Mason8a4b83c2008-03-24 15:02:07 -0400526 device->bdev = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500527 device->writeable = 0;
Chris Masondfe25022008-05-13 13:46:40 -0400528 device->in_fs_metadata = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400529 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500530 WARN_ON(fs_devices->open_devices);
531 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500532 fs_devices->opened = 0;
533 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500534
Chris Mason8a4b83c2008-03-24 15:02:07 -0400535 return 0;
536}
537
Yan Zheng2b820322008-11-17 21:11:30 -0500538int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
539{
Yan Zhenge4404d62008-12-12 10:03:26 -0500540 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500541 int ret;
542
543 mutex_lock(&uuid_mutex);
544 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500545 if (!fs_devices->opened) {
546 seed_devices = fs_devices->seed;
547 fs_devices->seed = NULL;
548 }
Yan Zheng2b820322008-11-17 21:11:30 -0500549 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500550
551 while (seed_devices) {
552 fs_devices = seed_devices;
553 seed_devices = fs_devices->seed;
554 __btrfs_close_devices(fs_devices);
555 free_fs_devices(fs_devices);
556 }
Yan Zheng2b820322008-11-17 21:11:30 -0500557 return ret;
558}
559
Yan Zhenge4404d62008-12-12 10:03:26 -0500560static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
561 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400562{
563 struct block_device *bdev;
564 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400565 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400566 struct block_device *latest_bdev = NULL;
567 struct buffer_head *bh;
568 struct btrfs_super_block *disk_super;
569 u64 latest_devid = 0;
570 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400571 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500572 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400573 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400574
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500575 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400576 if (device->bdev)
577 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400578 if (!device->name)
579 continue;
580
Chris Mason15916de2008-11-19 21:17:22 -0500581 bdev = open_bdev_exclusive(device->name, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400582 if (IS_ERR(bdev)) {
Chris Masond3977122009-01-05 21:25:51 -0500583 printk(KERN_INFO "open %s failed\n", device->name);
Chris Masona0af4692008-05-13 16:03:06 -0400584 goto error;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400585 }
Chris Masona061fc82008-05-07 11:43:44 -0400586 set_blocksize(bdev, 4096);
Chris Masona0af4692008-05-13 16:03:06 -0400587
Yan Zhenga512bbf2008-12-08 16:46:26 -0500588 bh = btrfs_read_dev_super(bdev);
Chris Masona0af4692008-05-13 16:03:06 -0400589 if (!bh)
590 goto error_close;
591
592 disk_super = (struct btrfs_super_block *)bh->b_data;
Chris Masona0af4692008-05-13 16:03:06 -0400593 devid = le64_to_cpu(disk_super->dev_item.devid);
594 if (devid != device->devid)
595 goto error_brelse;
596
Yan Zheng2b820322008-11-17 21:11:30 -0500597 if (memcmp(device->uuid, disk_super->dev_item.uuid,
598 BTRFS_UUID_SIZE))
599 goto error_brelse;
600
601 device->generation = btrfs_super_generation(disk_super);
602 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400603 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500604 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400605 latest_bdev = bdev;
606 }
607
Yan Zheng2b820322008-11-17 21:11:30 -0500608 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
609 device->writeable = 0;
610 } else {
611 device->writeable = !bdev_read_only(bdev);
612 seeding = 0;
613 }
614
Chris Mason8a4b83c2008-03-24 15:02:07 -0400615 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400616 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500617 device->mode = flags;
618
Chris Masonc2898112009-06-10 09:51:32 -0400619 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
620 fs_devices->rotating = 1;
621
Chris Masona0af4692008-05-13 16:03:06 -0400622 fs_devices->open_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -0500623 if (device->writeable) {
624 fs_devices->rw_devices++;
625 list_add(&device->dev_alloc_list,
626 &fs_devices->alloc_list);
627 }
Chris Masona0af4692008-05-13 16:03:06 -0400628 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400629
Chris Masona0af4692008-05-13 16:03:06 -0400630error_brelse:
631 brelse(bh);
632error_close:
Christoph Hellwig97288f22008-12-02 06:36:09 -0500633 close_bdev_exclusive(bdev, FMODE_READ);
Chris Masona0af4692008-05-13 16:03:06 -0400634error:
635 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400636 }
Chris Masona0af4692008-05-13 16:03:06 -0400637 if (fs_devices->open_devices == 0) {
638 ret = -EIO;
639 goto out;
640 }
Yan Zheng2b820322008-11-17 21:11:30 -0500641 fs_devices->seeding = seeding;
642 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400643 fs_devices->latest_bdev = latest_bdev;
644 fs_devices->latest_devid = latest_devid;
645 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500646 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400647out:
Yan Zheng2b820322008-11-17 21:11:30 -0500648 return ret;
649}
650
651int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500652 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500653{
654 int ret;
655
656 mutex_lock(&uuid_mutex);
657 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500658 fs_devices->opened++;
659 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500660 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500661 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500662 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400663 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400664 return ret;
665}
666
Christoph Hellwig97288f22008-12-02 06:36:09 -0500667int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400668 struct btrfs_fs_devices **fs_devices_ret)
669{
670 struct btrfs_super_block *disk_super;
671 struct block_device *bdev;
672 struct buffer_head *bh;
673 int ret;
674 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400675 u64 transid;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400676
677 mutex_lock(&uuid_mutex);
678
Chris Mason15916de2008-11-19 21:17:22 -0500679 bdev = open_bdev_exclusive(path, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400680
681 if (IS_ERR(bdev)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400682 ret = PTR_ERR(bdev);
683 goto error;
684 }
685
686 ret = set_blocksize(bdev, 4096);
687 if (ret)
688 goto error_close;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500689 bh = btrfs_read_dev_super(bdev);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400690 if (!bh) {
691 ret = -EIO;
692 goto error_close;
693 }
694 disk_super = (struct btrfs_super_block *)bh->b_data;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400695 devid = le64_to_cpu(disk_super->dev_item.devid);
Chris Masonf2984462008-04-10 16:19:33 -0400696 transid = btrfs_super_generation(disk_super);
Chris Mason7ae9c092008-04-18 10:29:49 -0400697 if (disk_super->label[0])
Chris Masond3977122009-01-05 21:25:51 -0500698 printk(KERN_INFO "device label %s ", disk_super->label);
Chris Mason7ae9c092008-04-18 10:29:49 -0400699 else {
700 /* FIXME, make a readl uuid parser */
Chris Masond3977122009-01-05 21:25:51 -0500701 printk(KERN_INFO "device fsid %llx-%llx ",
Chris Mason7ae9c092008-04-18 10:29:49 -0400702 *(unsigned long long *)disk_super->fsid,
703 *(unsigned long long *)(disk_super->fsid + 8));
704 }
Roland Dreier119e10c2009-01-21 10:49:16 -0500705 printk(KERN_CONT "devid %llu transid %llu %s\n",
Chris Masond3977122009-01-05 21:25:51 -0500706 (unsigned long long)devid, (unsigned long long)transid, path);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400707 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
708
Chris Mason8a4b83c2008-03-24 15:02:07 -0400709 brelse(bh);
710error_close:
Chris Mason15916de2008-11-19 21:17:22 -0500711 close_bdev_exclusive(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400712error:
713 mutex_unlock(&uuid_mutex);
714 return ret;
715}
Chris Mason0b86a832008-03-24 15:01:56 -0400716
717/*
718 * this uses a pretty simple search, the expectation is that it is
719 * called very infrequently and that a given device has a small number
720 * of extents
721 */
Chris Masona1b32a52008-09-05 16:09:51 -0400722static noinline int find_free_dev_extent(struct btrfs_trans_handle *trans,
723 struct btrfs_device *device,
Chris Mason9779b722009-07-24 16:41:41 -0400724 u64 num_bytes, u64 *start,
725 u64 *max_avail)
Chris Mason0b86a832008-03-24 15:01:56 -0400726{
727 struct btrfs_key key;
728 struct btrfs_root *root = device->dev_root;
729 struct btrfs_dev_extent *dev_extent = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500730 struct btrfs_path *path;
Chris Mason0b86a832008-03-24 15:01:56 -0400731 u64 hole_size = 0;
732 u64 last_byte = 0;
733 u64 search_start = 0;
734 u64 search_end = device->total_bytes;
735 int ret;
736 int slot = 0;
737 int start_found;
738 struct extent_buffer *l;
739
Yan Zheng2b820322008-11-17 21:11:30 -0500740 path = btrfs_alloc_path();
741 if (!path)
742 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400743 path->reada = 2;
Yan Zheng2b820322008-11-17 21:11:30 -0500744 start_found = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400745
746 /* FIXME use last free of some kind */
747
Chris Mason8a4b83c2008-03-24 15:02:07 -0400748 /* we don't want to overwrite the superblock on the drive,
749 * so we make sure to start at an offset of at least 1MB
750 */
751 search_start = max((u64)1024 * 1024, search_start);
Chris Mason8f18cf12008-04-25 16:53:30 -0400752
753 if (root->fs_info->alloc_start + num_bytes <= device->total_bytes)
754 search_start = max(root->fs_info->alloc_start, search_start);
755
Chris Mason0b86a832008-03-24 15:01:56 -0400756 key.objectid = device->devid;
757 key.offset = search_start;
758 key.type = BTRFS_DEV_EXTENT_KEY;
759 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
760 if (ret < 0)
761 goto error;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400762 if (ret > 0) {
763 ret = btrfs_previous_item(root, path, key.objectid, key.type);
764 if (ret < 0)
765 goto error;
766 if (ret > 0)
767 start_found = 1;
768 }
Chris Mason0b86a832008-03-24 15:01:56 -0400769 l = path->nodes[0];
770 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
771 while (1) {
772 l = path->nodes[0];
773 slot = path->slots[0];
774 if (slot >= btrfs_header_nritems(l)) {
775 ret = btrfs_next_leaf(root, path);
776 if (ret == 0)
777 continue;
778 if (ret < 0)
779 goto error;
780no_more_items:
781 if (!start_found) {
782 if (search_start >= search_end) {
783 ret = -ENOSPC;
784 goto error;
785 }
786 *start = search_start;
787 start_found = 1;
788 goto check_pending;
789 }
790 *start = last_byte > search_start ?
791 last_byte : search_start;
792 if (search_end <= *start) {
793 ret = -ENOSPC;
794 goto error;
795 }
796 goto check_pending;
797 }
798 btrfs_item_key_to_cpu(l, &key, slot);
799
800 if (key.objectid < device->devid)
801 goto next;
802
803 if (key.objectid > device->devid)
804 goto no_more_items;
805
806 if (key.offset >= search_start && key.offset > last_byte &&
807 start_found) {
808 if (last_byte < search_start)
809 last_byte = search_start;
810 hole_size = key.offset - last_byte;
Chris Mason9779b722009-07-24 16:41:41 -0400811
812 if (hole_size > *max_avail)
813 *max_avail = hole_size;
814
Chris Mason0b86a832008-03-24 15:01:56 -0400815 if (key.offset > last_byte &&
816 hole_size >= num_bytes) {
817 *start = last_byte;
818 goto check_pending;
819 }
820 }
Chris Masond3977122009-01-05 21:25:51 -0500821 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400822 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400823
824 start_found = 1;
825 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
826 last_byte = key.offset + btrfs_dev_extent_length(l, dev_extent);
827next:
828 path->slots[0]++;
829 cond_resched();
830 }
831check_pending:
832 /* we have to make sure we didn't find an extent that has already
833 * been allocated by the map tree or the original allocation
834 */
Chris Mason0b86a832008-03-24 15:01:56 -0400835 BUG_ON(*start < search_start);
836
Chris Mason6324fbf2008-03-24 15:01:59 -0400837 if (*start + num_bytes > search_end) {
Chris Mason0b86a832008-03-24 15:01:56 -0400838 ret = -ENOSPC;
839 goto error;
840 }
841 /* check for pending inserts here */
Yan Zheng2b820322008-11-17 21:11:30 -0500842 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400843
844error:
Yan Zheng2b820322008-11-17 21:11:30 -0500845 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -0400846 return ret;
847}
848
Christoph Hellwigb2950862008-12-02 09:54:17 -0500849static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -0400850 struct btrfs_device *device,
851 u64 start)
852{
853 int ret;
854 struct btrfs_path *path;
855 struct btrfs_root *root = device->dev_root;
856 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -0400857 struct btrfs_key found_key;
858 struct extent_buffer *leaf = NULL;
859 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -0400860
861 path = btrfs_alloc_path();
862 if (!path)
863 return -ENOMEM;
864
865 key.objectid = device->devid;
866 key.offset = start;
867 key.type = BTRFS_DEV_EXTENT_KEY;
868
869 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -0400870 if (ret > 0) {
871 ret = btrfs_previous_item(root, path, key.objectid,
872 BTRFS_DEV_EXTENT_KEY);
873 BUG_ON(ret);
874 leaf = path->nodes[0];
875 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
876 extent = btrfs_item_ptr(leaf, path->slots[0],
877 struct btrfs_dev_extent);
878 BUG_ON(found_key.offset > start || found_key.offset +
879 btrfs_dev_extent_length(leaf, extent) < start);
880 ret = 0;
881 } else if (ret == 0) {
882 leaf = path->nodes[0];
883 extent = btrfs_item_ptr(leaf, path->slots[0],
884 struct btrfs_dev_extent);
885 }
Chris Mason8f18cf12008-04-25 16:53:30 -0400886 BUG_ON(ret);
887
Chris Masondfe25022008-05-13 13:46:40 -0400888 if (device->bytes_used > 0)
889 device->bytes_used -= btrfs_dev_extent_length(leaf, extent);
Chris Mason8f18cf12008-04-25 16:53:30 -0400890 ret = btrfs_del_item(trans, root, path);
891 BUG_ON(ret);
892
893 btrfs_free_path(path);
894 return ret;
895}
896
Yan Zheng2b820322008-11-17 21:11:30 -0500897int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -0400898 struct btrfs_device *device,
Chris Masone17cade2008-04-15 15:41:47 -0400899 u64 chunk_tree, u64 chunk_objectid,
Yan Zheng2b820322008-11-17 21:11:30 -0500900 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -0400901{
902 int ret;
903 struct btrfs_path *path;
904 struct btrfs_root *root = device->dev_root;
905 struct btrfs_dev_extent *extent;
906 struct extent_buffer *leaf;
907 struct btrfs_key key;
908
Chris Masondfe25022008-05-13 13:46:40 -0400909 WARN_ON(!device->in_fs_metadata);
Chris Mason0b86a832008-03-24 15:01:56 -0400910 path = btrfs_alloc_path();
911 if (!path)
912 return -ENOMEM;
913
Chris Mason0b86a832008-03-24 15:01:56 -0400914 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500915 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400916 key.type = BTRFS_DEV_EXTENT_KEY;
917 ret = btrfs_insert_empty_item(trans, root, path, &key,
918 sizeof(*extent));
919 BUG_ON(ret);
920
921 leaf = path->nodes[0];
922 extent = btrfs_item_ptr(leaf, path->slots[0],
923 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -0400924 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
925 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
926 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
927
928 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
929 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
930 BTRFS_UUID_SIZE);
931
Chris Mason0b86a832008-03-24 15:01:56 -0400932 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
933 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -0400934 btrfs_free_path(path);
935 return ret;
936}
937
Chris Masona1b32a52008-09-05 16:09:51 -0400938static noinline int find_next_chunk(struct btrfs_root *root,
939 u64 objectid, u64 *offset)
Chris Mason0b86a832008-03-24 15:01:56 -0400940{
941 struct btrfs_path *path;
942 int ret;
943 struct btrfs_key key;
Chris Masone17cade2008-04-15 15:41:47 -0400944 struct btrfs_chunk *chunk;
Chris Mason0b86a832008-03-24 15:01:56 -0400945 struct btrfs_key found_key;
946
947 path = btrfs_alloc_path();
948 BUG_ON(!path);
949
Chris Masone17cade2008-04-15 15:41:47 -0400950 key.objectid = objectid;
Chris Mason0b86a832008-03-24 15:01:56 -0400951 key.offset = (u64)-1;
952 key.type = BTRFS_CHUNK_ITEM_KEY;
953
954 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
955 if (ret < 0)
956 goto error;
957
958 BUG_ON(ret == 0);
959
960 ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
961 if (ret) {
Chris Masone17cade2008-04-15 15:41:47 -0400962 *offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400963 } else {
964 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
965 path->slots[0]);
Chris Masone17cade2008-04-15 15:41:47 -0400966 if (found_key.objectid != objectid)
967 *offset = 0;
968 else {
969 chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
970 struct btrfs_chunk);
971 *offset = found_key.offset +
972 btrfs_chunk_length(path->nodes[0], chunk);
973 }
Chris Mason0b86a832008-03-24 15:01:56 -0400974 }
975 ret = 0;
976error:
977 btrfs_free_path(path);
978 return ret;
979}
980
Yan Zheng2b820322008-11-17 21:11:30 -0500981static noinline int find_next_devid(struct btrfs_root *root, u64 *objectid)
Chris Mason0b86a832008-03-24 15:01:56 -0400982{
983 int ret;
984 struct btrfs_key key;
985 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -0500986 struct btrfs_path *path;
987
988 root = root->fs_info->chunk_root;
989
990 path = btrfs_alloc_path();
991 if (!path)
992 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400993
994 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
995 key.type = BTRFS_DEV_ITEM_KEY;
996 key.offset = (u64)-1;
997
998 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
999 if (ret < 0)
1000 goto error;
1001
1002 BUG_ON(ret == 0);
1003
1004 ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
1005 BTRFS_DEV_ITEM_KEY);
1006 if (ret) {
1007 *objectid = 1;
1008 } else {
1009 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1010 path->slots[0]);
1011 *objectid = found_key.offset + 1;
1012 }
1013 ret = 0;
1014error:
Yan Zheng2b820322008-11-17 21:11:30 -05001015 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001016 return ret;
1017}
1018
1019/*
1020 * the device information is stored in the chunk root
1021 * the btrfs_device struct should be fully filled in
1022 */
1023int btrfs_add_device(struct btrfs_trans_handle *trans,
1024 struct btrfs_root *root,
1025 struct btrfs_device *device)
1026{
1027 int ret;
1028 struct btrfs_path *path;
1029 struct btrfs_dev_item *dev_item;
1030 struct extent_buffer *leaf;
1031 struct btrfs_key key;
1032 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001033
1034 root = root->fs_info->chunk_root;
1035
1036 path = btrfs_alloc_path();
1037 if (!path)
1038 return -ENOMEM;
1039
Chris Mason0b86a832008-03-24 15:01:56 -04001040 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1041 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001042 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001043
1044 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001045 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001046 if (ret)
1047 goto out;
1048
1049 leaf = path->nodes[0];
1050 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1051
1052 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001053 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001054 btrfs_set_device_type(leaf, dev_item, device->type);
1055 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1056 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1057 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001058 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1059 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001060 btrfs_set_device_group(leaf, dev_item, 0);
1061 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1062 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001063 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001064
Chris Mason0b86a832008-03-24 15:01:56 -04001065 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001066 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05001067 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1068 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001069 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001070
Yan Zheng2b820322008-11-17 21:11:30 -05001071 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001072out:
1073 btrfs_free_path(path);
1074 return ret;
1075}
Chris Mason8f18cf12008-04-25 16:53:30 -04001076
Chris Masona061fc82008-05-07 11:43:44 -04001077static int btrfs_rm_dev_item(struct btrfs_root *root,
1078 struct btrfs_device *device)
1079{
1080 int ret;
1081 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001082 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001083 struct btrfs_trans_handle *trans;
1084
1085 root = root->fs_info->chunk_root;
1086
1087 path = btrfs_alloc_path();
1088 if (!path)
1089 return -ENOMEM;
1090
1091 trans = btrfs_start_transaction(root, 1);
1092 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1093 key.type = BTRFS_DEV_ITEM_KEY;
1094 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001095 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001096
1097 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1098 if (ret < 0)
1099 goto out;
1100
1101 if (ret > 0) {
1102 ret = -ENOENT;
1103 goto out;
1104 }
1105
1106 ret = btrfs_del_item(trans, root, path);
1107 if (ret)
1108 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001109out:
1110 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001111 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001112 btrfs_commit_transaction(trans, root);
1113 return ret;
1114}
1115
1116int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1117{
1118 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001119 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001120 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001121 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001122 struct btrfs_super_block *disk_super;
1123 u64 all_avail;
1124 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001125 u64 num_devices;
1126 u8 *dev_uuid;
Chris Masona061fc82008-05-07 11:43:44 -04001127 int ret = 0;
1128
Chris Masona061fc82008-05-07 11:43:44 -04001129 mutex_lock(&uuid_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001130 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001131
1132 all_avail = root->fs_info->avail_data_alloc_bits |
1133 root->fs_info->avail_system_alloc_bits |
1134 root->fs_info->avail_metadata_alloc_bits;
1135
1136 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) &&
Yan Zheng2b820322008-11-17 21:11:30 -05001137 root->fs_info->fs_devices->rw_devices <= 4) {
Chris Masond3977122009-01-05 21:25:51 -05001138 printk(KERN_ERR "btrfs: unable to go below four devices "
1139 "on raid10\n");
Chris Masona061fc82008-05-07 11:43:44 -04001140 ret = -EINVAL;
1141 goto out;
1142 }
1143
1144 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) &&
Yan Zheng2b820322008-11-17 21:11:30 -05001145 root->fs_info->fs_devices->rw_devices <= 2) {
Chris Masond3977122009-01-05 21:25:51 -05001146 printk(KERN_ERR "btrfs: unable to go below two "
1147 "devices on raid1\n");
Chris Masona061fc82008-05-07 11:43:44 -04001148 ret = -EINVAL;
1149 goto out;
1150 }
1151
Chris Masondfe25022008-05-13 13:46:40 -04001152 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001153 struct list_head *devices;
1154 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001155
Chris Masondfe25022008-05-13 13:46:40 -04001156 device = NULL;
1157 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001158 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001159 list_for_each_entry(tmp, devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001160 if (tmp->in_fs_metadata && !tmp->bdev) {
1161 device = tmp;
1162 break;
1163 }
1164 }
Chris Masone5e9a522009-06-10 15:17:02 -04001165 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masondfe25022008-05-13 13:46:40 -04001166 bdev = NULL;
1167 bh = NULL;
1168 disk_super = NULL;
1169 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05001170 printk(KERN_ERR "btrfs: no missing devices found to "
1171 "remove\n");
Chris Masondfe25022008-05-13 13:46:40 -04001172 goto out;
1173 }
Chris Masondfe25022008-05-13 13:46:40 -04001174 } else {
Christoph Hellwig97288f22008-12-02 06:36:09 -05001175 bdev = open_bdev_exclusive(device_path, FMODE_READ,
Chris Masondfe25022008-05-13 13:46:40 -04001176 root->fs_info->bdev_holder);
1177 if (IS_ERR(bdev)) {
1178 ret = PTR_ERR(bdev);
1179 goto out;
1180 }
1181
Yan Zheng2b820322008-11-17 21:11:30 -05001182 set_blocksize(bdev, 4096);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001183 bh = btrfs_read_dev_super(bdev);
Chris Masondfe25022008-05-13 13:46:40 -04001184 if (!bh) {
1185 ret = -EIO;
1186 goto error_close;
1187 }
1188 disk_super = (struct btrfs_super_block *)bh->b_data;
Chris Masondfe25022008-05-13 13:46:40 -04001189 devid = le64_to_cpu(disk_super->dev_item.devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001190 dev_uuid = disk_super->dev_item.uuid;
1191 device = btrfs_find_device(root, devid, dev_uuid,
1192 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001193 if (!device) {
1194 ret = -ENOENT;
1195 goto error_brelse;
1196 }
Chris Masondfe25022008-05-13 13:46:40 -04001197 }
Yan Zheng2b820322008-11-17 21:11:30 -05001198
1199 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Chris Masond3977122009-01-05 21:25:51 -05001200 printk(KERN_ERR "btrfs: unable to remove the only writeable "
1201 "device\n");
Yan Zheng2b820322008-11-17 21:11:30 -05001202 ret = -EINVAL;
1203 goto error_brelse;
1204 }
1205
1206 if (device->writeable) {
1207 list_del_init(&device->dev_alloc_list);
1208 root->fs_info->fs_devices->rw_devices--;
1209 }
Chris Masona061fc82008-05-07 11:43:44 -04001210
1211 ret = btrfs_shrink_device(device, 0);
1212 if (ret)
1213 goto error_brelse;
1214
Chris Masona061fc82008-05-07 11:43:44 -04001215 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1216 if (ret)
1217 goto error_brelse;
1218
Yan Zheng2b820322008-11-17 21:11:30 -05001219 device->in_fs_metadata = 0;
Chris Masone5e9a522009-06-10 15:17:02 -04001220
1221 /*
1222 * the device list mutex makes sure that we don't change
1223 * the device list while someone else is writing out all
1224 * the device supers.
1225 */
1226 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001227 list_del_init(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001228 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1229
Yan Zhenge4404d62008-12-12 10:03:26 -05001230 device->fs_devices->num_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001231
1232 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1233 struct btrfs_device, dev_list);
1234 if (device->bdev == root->fs_info->sb->s_bdev)
1235 root->fs_info->sb->s_bdev = next_device->bdev;
1236 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1237 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1238
Yan Zhenge4404d62008-12-12 10:03:26 -05001239 if (device->bdev) {
1240 close_bdev_exclusive(device->bdev, device->mode);
1241 device->bdev = NULL;
1242 device->fs_devices->open_devices--;
1243 }
1244
Yan Zheng2b820322008-11-17 21:11:30 -05001245 num_devices = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
1246 btrfs_set_super_num_devices(&root->fs_info->super_copy, num_devices);
1247
Yan Zhenge4404d62008-12-12 10:03:26 -05001248 if (device->fs_devices->open_devices == 0) {
1249 struct btrfs_fs_devices *fs_devices;
1250 fs_devices = root->fs_info->fs_devices;
1251 while (fs_devices) {
1252 if (fs_devices->seed == device->fs_devices)
1253 break;
1254 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001255 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001256 fs_devices->seed = device->fs_devices->seed;
1257 device->fs_devices->seed = NULL;
1258 __btrfs_close_devices(device->fs_devices);
1259 free_fs_devices(device->fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001260 }
1261
1262 /*
1263 * at this point, the device is zero sized. We want to
1264 * remove it from the devices list and zero out the old super
1265 */
1266 if (device->writeable) {
Chris Masondfe25022008-05-13 13:46:40 -04001267 /* make sure this device isn't detected as part of
1268 * the FS anymore
1269 */
1270 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1271 set_buffer_dirty(bh);
1272 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001273 }
Chris Masona061fc82008-05-07 11:43:44 -04001274
Chris Masona061fc82008-05-07 11:43:44 -04001275 kfree(device->name);
1276 kfree(device);
1277 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001278
1279error_brelse:
1280 brelse(bh);
1281error_close:
Chris Masondfe25022008-05-13 13:46:40 -04001282 if (bdev)
Christoph Hellwig97288f22008-12-02 06:36:09 -05001283 close_bdev_exclusive(bdev, FMODE_READ);
Chris Masona061fc82008-05-07 11:43:44 -04001284out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001285 mutex_unlock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001286 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001287 return ret;
1288}
1289
Yan Zheng2b820322008-11-17 21:11:30 -05001290/*
1291 * does all the dirty work required for changing file system's UUID.
1292 */
1293static int btrfs_prepare_sprout(struct btrfs_trans_handle *trans,
1294 struct btrfs_root *root)
1295{
1296 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1297 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001298 struct btrfs_fs_devices *seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001299 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
1300 struct btrfs_device *device;
1301 u64 super_flags;
1302
1303 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001304 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001305 return -EINVAL;
1306
Yan Zhenge4404d62008-12-12 10:03:26 -05001307 seed_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
1308 if (!seed_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001309 return -ENOMEM;
1310
Yan Zhenge4404d62008-12-12 10:03:26 -05001311 old_devices = clone_fs_devices(fs_devices);
1312 if (IS_ERR(old_devices)) {
1313 kfree(seed_devices);
1314 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001315 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001316
Yan Zheng2b820322008-11-17 21:11:30 -05001317 list_add(&old_devices->list, &fs_uuids);
1318
Yan Zhenge4404d62008-12-12 10:03:26 -05001319 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1320 seed_devices->opened = 1;
1321 INIT_LIST_HEAD(&seed_devices->devices);
1322 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001323 mutex_init(&seed_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001324 list_splice_init(&fs_devices->devices, &seed_devices->devices);
1325 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1326 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1327 device->fs_devices = seed_devices;
1328 }
1329
Yan Zheng2b820322008-11-17 21:11:30 -05001330 fs_devices->seeding = 0;
1331 fs_devices->num_devices = 0;
1332 fs_devices->open_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001333 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001334
1335 generate_random_uuid(fs_devices->fsid);
1336 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1337 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1338 super_flags = btrfs_super_flags(disk_super) &
1339 ~BTRFS_SUPER_FLAG_SEEDING;
1340 btrfs_set_super_flags(disk_super, super_flags);
1341
1342 return 0;
1343}
1344
1345/*
1346 * strore the expected generation for seed devices in device items.
1347 */
1348static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1349 struct btrfs_root *root)
1350{
1351 struct btrfs_path *path;
1352 struct extent_buffer *leaf;
1353 struct btrfs_dev_item *dev_item;
1354 struct btrfs_device *device;
1355 struct btrfs_key key;
1356 u8 fs_uuid[BTRFS_UUID_SIZE];
1357 u8 dev_uuid[BTRFS_UUID_SIZE];
1358 u64 devid;
1359 int ret;
1360
1361 path = btrfs_alloc_path();
1362 if (!path)
1363 return -ENOMEM;
1364
1365 root = root->fs_info->chunk_root;
1366 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1367 key.offset = 0;
1368 key.type = BTRFS_DEV_ITEM_KEY;
1369
1370 while (1) {
1371 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1372 if (ret < 0)
1373 goto error;
1374
1375 leaf = path->nodes[0];
1376next_slot:
1377 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1378 ret = btrfs_next_leaf(root, path);
1379 if (ret > 0)
1380 break;
1381 if (ret < 0)
1382 goto error;
1383 leaf = path->nodes[0];
1384 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1385 btrfs_release_path(root, path);
1386 continue;
1387 }
1388
1389 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1390 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1391 key.type != BTRFS_DEV_ITEM_KEY)
1392 break;
1393
1394 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1395 struct btrfs_dev_item);
1396 devid = btrfs_device_id(leaf, dev_item);
1397 read_extent_buffer(leaf, dev_uuid,
1398 (unsigned long)btrfs_device_uuid(dev_item),
1399 BTRFS_UUID_SIZE);
1400 read_extent_buffer(leaf, fs_uuid,
1401 (unsigned long)btrfs_device_fsid(dev_item),
1402 BTRFS_UUID_SIZE);
1403 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
1404 BUG_ON(!device);
1405
1406 if (device->fs_devices->seeding) {
1407 btrfs_set_device_generation(leaf, dev_item,
1408 device->generation);
1409 btrfs_mark_buffer_dirty(leaf);
1410 }
1411
1412 path->slots[0]++;
1413 goto next_slot;
1414 }
1415 ret = 0;
1416error:
1417 btrfs_free_path(path);
1418 return ret;
1419}
1420
Chris Mason788f20e2008-04-28 15:29:42 -04001421int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1422{
1423 struct btrfs_trans_handle *trans;
1424 struct btrfs_device *device;
1425 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001426 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001427 struct super_block *sb = root->fs_info->sb;
Chris Mason788f20e2008-04-28 15:29:42 -04001428 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001429 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001430 int ret = 0;
1431
Yan Zheng2b820322008-11-17 21:11:30 -05001432 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
1433 return -EINVAL;
Chris Mason788f20e2008-04-28 15:29:42 -04001434
Chris Mason15916de2008-11-19 21:17:22 -05001435 bdev = open_bdev_exclusive(device_path, 0, root->fs_info->bdev_holder);
Chris Masond3977122009-01-05 21:25:51 -05001436 if (!bdev)
Chris Mason788f20e2008-04-28 15:29:42 -04001437 return -EIO;
Chris Masona2135012008-06-25 16:01:30 -04001438
Yan Zheng2b820322008-11-17 21:11:30 -05001439 if (root->fs_info->fs_devices->seeding) {
1440 seeding_dev = 1;
1441 down_write(&sb->s_umount);
1442 mutex_lock(&uuid_mutex);
1443 }
1444
Chris Mason8c8bee12008-09-29 11:19:10 -04001445 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Mason7d9eb122008-07-08 14:19:17 -04001446 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001447
Chris Mason788f20e2008-04-28 15:29:42 -04001448 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001449 /*
1450 * we have the volume lock, so we don't need the extra
1451 * device list mutex while reading the list here.
1452 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001453 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001454 if (device->bdev == bdev) {
1455 ret = -EEXIST;
Yan Zheng2b820322008-11-17 21:11:30 -05001456 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001457 }
1458 }
1459
1460 device = kzalloc(sizeof(*device), GFP_NOFS);
1461 if (!device) {
1462 /* we can safely leave the fs_devices entry around */
1463 ret = -ENOMEM;
Yan Zheng2b820322008-11-17 21:11:30 -05001464 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001465 }
1466
Chris Mason788f20e2008-04-28 15:29:42 -04001467 device->name = kstrdup(device_path, GFP_NOFS);
1468 if (!device->name) {
1469 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05001470 ret = -ENOMEM;
1471 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001472 }
Yan Zheng2b820322008-11-17 21:11:30 -05001473
1474 ret = find_next_devid(root, &device->devid);
1475 if (ret) {
1476 kfree(device);
1477 goto error;
1478 }
1479
1480 trans = btrfs_start_transaction(root, 1);
1481 lock_chunks(root);
1482
1483 device->barriers = 1;
1484 device->writeable = 1;
1485 device->work.func = pending_bios_fn;
1486 generate_random_uuid(device->uuid);
1487 spin_lock_init(&device->io_lock);
1488 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04001489 device->io_width = root->sectorsize;
1490 device->io_align = root->sectorsize;
1491 device->sector_size = root->sectorsize;
1492 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04001493 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04001494 device->dev_root = root->fs_info->dev_root;
1495 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001496 device->in_fs_metadata = 1;
Chris Mason15916de2008-11-19 21:17:22 -05001497 device->mode = 0;
Zheng Yan325cd4b2008-09-05 16:43:54 -04001498 set_blocksize(device->bdev, 4096);
1499
Yan Zheng2b820322008-11-17 21:11:30 -05001500 if (seeding_dev) {
1501 sb->s_flags &= ~MS_RDONLY;
1502 ret = btrfs_prepare_sprout(trans, root);
1503 BUG_ON(ret);
1504 }
1505
1506 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001507
1508 /*
1509 * we don't want write_supers to jump in here with our device
1510 * half setup
1511 */
1512 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001513 list_add(&device->dev_list, &root->fs_info->fs_devices->devices);
1514 list_add(&device->dev_alloc_list,
1515 &root->fs_info->fs_devices->alloc_list);
1516 root->fs_info->fs_devices->num_devices++;
1517 root->fs_info->fs_devices->open_devices++;
1518 root->fs_info->fs_devices->rw_devices++;
1519 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
1520
Chris Masonc2898112009-06-10 09:51:32 -04001521 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
1522 root->fs_info->fs_devices->rotating = 1;
1523
Chris Mason788f20e2008-04-28 15:29:42 -04001524 total_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
1525 btrfs_set_super_total_bytes(&root->fs_info->super_copy,
1526 total_bytes + device->total_bytes);
1527
1528 total_bytes = btrfs_super_num_devices(&root->fs_info->super_copy);
1529 btrfs_set_super_num_devices(&root->fs_info->super_copy,
1530 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04001531 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001532
Yan Zheng2b820322008-11-17 21:11:30 -05001533 if (seeding_dev) {
1534 ret = init_first_rw_device(trans, root, device);
1535 BUG_ON(ret);
1536 ret = btrfs_finish_sprout(trans, root);
1537 BUG_ON(ret);
1538 } else {
1539 ret = btrfs_add_device(trans, root, device);
1540 }
1541
Chris Mason913d9522009-03-10 13:17:18 -04001542 /*
1543 * we've got more storage, clear any full flags on the space
1544 * infos
1545 */
1546 btrfs_clear_space_info_full(root->fs_info);
1547
Chris Mason7d9eb122008-07-08 14:19:17 -04001548 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001549 btrfs_commit_transaction(trans, root);
1550
1551 if (seeding_dev) {
1552 mutex_unlock(&uuid_mutex);
1553 up_write(&sb->s_umount);
1554
1555 ret = btrfs_relocate_sys_chunks(root);
1556 BUG_ON(ret);
1557 }
1558out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001559 mutex_unlock(&root->fs_info->volume_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001560 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05001561error:
Chris Mason15916de2008-11-19 21:17:22 -05001562 close_bdev_exclusive(bdev, 0);
Yan Zheng2b820322008-11-17 21:11:30 -05001563 if (seeding_dev) {
1564 mutex_unlock(&uuid_mutex);
1565 up_write(&sb->s_umount);
1566 }
Chris Mason788f20e2008-04-28 15:29:42 -04001567 goto out;
1568}
1569
Chris Masond3977122009-01-05 21:25:51 -05001570static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
1571 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001572{
1573 int ret;
1574 struct btrfs_path *path;
1575 struct btrfs_root *root;
1576 struct btrfs_dev_item *dev_item;
1577 struct extent_buffer *leaf;
1578 struct btrfs_key key;
1579
1580 root = device->dev_root->fs_info->chunk_root;
1581
1582 path = btrfs_alloc_path();
1583 if (!path)
1584 return -ENOMEM;
1585
1586 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1587 key.type = BTRFS_DEV_ITEM_KEY;
1588 key.offset = device->devid;
1589
1590 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1591 if (ret < 0)
1592 goto out;
1593
1594 if (ret > 0) {
1595 ret = -ENOENT;
1596 goto out;
1597 }
1598
1599 leaf = path->nodes[0];
1600 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1601
1602 btrfs_set_device_id(leaf, dev_item, device->devid);
1603 btrfs_set_device_type(leaf, dev_item, device->type);
1604 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1605 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1606 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04001607 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04001608 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
1609 btrfs_mark_buffer_dirty(leaf);
1610
1611out:
1612 btrfs_free_path(path);
1613 return ret;
1614}
1615
Chris Mason7d9eb122008-07-08 14:19:17 -04001616static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001617 struct btrfs_device *device, u64 new_size)
1618{
1619 struct btrfs_super_block *super_copy =
1620 &device->dev_root->fs_info->super_copy;
1621 u64 old_total = btrfs_super_total_bytes(super_copy);
1622 u64 diff = new_size - device->total_bytes;
1623
Yan Zheng2b820322008-11-17 21:11:30 -05001624 if (!device->writeable)
1625 return -EACCES;
1626 if (new_size <= device->total_bytes)
1627 return -EINVAL;
1628
Chris Mason8f18cf12008-04-25 16:53:30 -04001629 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05001630 device->fs_devices->total_rw_bytes += diff;
1631
1632 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04001633 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04001634 btrfs_clear_space_info_full(device->dev_root->fs_info);
1635
Chris Mason8f18cf12008-04-25 16:53:30 -04001636 return btrfs_update_device(trans, device);
1637}
1638
Chris Mason7d9eb122008-07-08 14:19:17 -04001639int btrfs_grow_device(struct btrfs_trans_handle *trans,
1640 struct btrfs_device *device, u64 new_size)
1641{
1642 int ret;
1643 lock_chunks(device->dev_root);
1644 ret = __btrfs_grow_device(trans, device, new_size);
1645 unlock_chunks(device->dev_root);
1646 return ret;
1647}
1648
Chris Mason8f18cf12008-04-25 16:53:30 -04001649static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
1650 struct btrfs_root *root,
1651 u64 chunk_tree, u64 chunk_objectid,
1652 u64 chunk_offset)
1653{
1654 int ret;
1655 struct btrfs_path *path;
1656 struct btrfs_key key;
1657
1658 root = root->fs_info->chunk_root;
1659 path = btrfs_alloc_path();
1660 if (!path)
1661 return -ENOMEM;
1662
1663 key.objectid = chunk_objectid;
1664 key.offset = chunk_offset;
1665 key.type = BTRFS_CHUNK_ITEM_KEY;
1666
1667 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1668 BUG_ON(ret);
1669
1670 ret = btrfs_del_item(trans, root, path);
1671 BUG_ON(ret);
1672
1673 btrfs_free_path(path);
1674 return 0;
1675}
1676
Christoph Hellwigb2950862008-12-02 09:54:17 -05001677static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04001678 chunk_offset)
1679{
1680 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
1681 struct btrfs_disk_key *disk_key;
1682 struct btrfs_chunk *chunk;
1683 u8 *ptr;
1684 int ret = 0;
1685 u32 num_stripes;
1686 u32 array_size;
1687 u32 len = 0;
1688 u32 cur;
1689 struct btrfs_key key;
1690
1691 array_size = btrfs_super_sys_array_size(super_copy);
1692
1693 ptr = super_copy->sys_chunk_array;
1694 cur = 0;
1695
1696 while (cur < array_size) {
1697 disk_key = (struct btrfs_disk_key *)ptr;
1698 btrfs_disk_key_to_cpu(&key, disk_key);
1699
1700 len = sizeof(*disk_key);
1701
1702 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1703 chunk = (struct btrfs_chunk *)(ptr + len);
1704 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
1705 len += btrfs_chunk_item_size(num_stripes);
1706 } else {
1707 ret = -EIO;
1708 break;
1709 }
1710 if (key.objectid == chunk_objectid &&
1711 key.offset == chunk_offset) {
1712 memmove(ptr, ptr + len, array_size - (cur + len));
1713 array_size -= len;
1714 btrfs_set_super_sys_array_size(super_copy, array_size);
1715 } else {
1716 ptr += len;
1717 cur += len;
1718 }
1719 }
1720 return ret;
1721}
1722
Christoph Hellwigb2950862008-12-02 09:54:17 -05001723static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04001724 u64 chunk_tree, u64 chunk_objectid,
1725 u64 chunk_offset)
1726{
1727 struct extent_map_tree *em_tree;
1728 struct btrfs_root *extent_root;
1729 struct btrfs_trans_handle *trans;
1730 struct extent_map *em;
1731 struct map_lookup *map;
1732 int ret;
1733 int i;
1734
1735 root = root->fs_info->chunk_root;
1736 extent_root = root->fs_info->extent_root;
1737 em_tree = &root->fs_info->mapping_tree.map_tree;
1738
1739 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04001740 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04001741 BUG_ON(ret);
1742
1743 trans = btrfs_start_transaction(root, 1);
1744 BUG_ON(!trans);
1745
Chris Mason7d9eb122008-07-08 14:19:17 -04001746 lock_chunks(root);
1747
Chris Mason8f18cf12008-04-25 16:53:30 -04001748 /*
1749 * step two, delete the device extents and the
1750 * chunk tree entries
1751 */
Chris Mason890871b2009-09-02 16:24:52 -04001752 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001753 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001754 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001755
Chris Masona061fc82008-05-07 11:43:44 -04001756 BUG_ON(em->start > chunk_offset ||
1757 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04001758 map = (struct map_lookup *)em->bdev;
1759
1760 for (i = 0; i < map->num_stripes; i++) {
1761 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
1762 map->stripes[i].physical);
1763 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04001764
Chris Masondfe25022008-05-13 13:46:40 -04001765 if (map->stripes[i].dev) {
1766 ret = btrfs_update_device(trans, map->stripes[i].dev);
1767 BUG_ON(ret);
1768 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001769 }
1770 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
1771 chunk_offset);
1772
1773 BUG_ON(ret);
1774
1775 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
1776 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
1777 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04001778 }
1779
Zheng Yan1a40e232008-09-26 10:09:34 -04001780 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
1781 BUG_ON(ret);
1782
Chris Mason890871b2009-09-02 16:24:52 -04001783 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001784 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001785 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04001786
Chris Mason8f18cf12008-04-25 16:53:30 -04001787 kfree(map);
1788 em->bdev = NULL;
1789
1790 /* once for the tree */
1791 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04001792 /* once for us */
1793 free_extent_map(em);
1794
Chris Mason7d9eb122008-07-08 14:19:17 -04001795 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04001796 btrfs_end_transaction(trans, root);
1797 return 0;
1798}
1799
Yan Zheng2b820322008-11-17 21:11:30 -05001800static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
1801{
1802 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
1803 struct btrfs_path *path;
1804 struct extent_buffer *leaf;
1805 struct btrfs_chunk *chunk;
1806 struct btrfs_key key;
1807 struct btrfs_key found_key;
1808 u64 chunk_tree = chunk_root->root_key.objectid;
1809 u64 chunk_type;
1810 int ret;
1811
1812 path = btrfs_alloc_path();
1813 if (!path)
1814 return -ENOMEM;
1815
1816 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1817 key.offset = (u64)-1;
1818 key.type = BTRFS_CHUNK_ITEM_KEY;
1819
1820 while (1) {
1821 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
1822 if (ret < 0)
1823 goto error;
1824 BUG_ON(ret == 0);
1825
1826 ret = btrfs_previous_item(chunk_root, path, key.objectid,
1827 key.type);
1828 if (ret < 0)
1829 goto error;
1830 if (ret > 0)
1831 break;
1832
1833 leaf = path->nodes[0];
1834 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1835
1836 chunk = btrfs_item_ptr(leaf, path->slots[0],
1837 struct btrfs_chunk);
1838 chunk_type = btrfs_chunk_type(leaf, chunk);
1839 btrfs_release_path(chunk_root, path);
1840
1841 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
1842 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
1843 found_key.objectid,
1844 found_key.offset);
1845 BUG_ON(ret);
1846 }
1847
1848 if (found_key.offset == 0)
1849 break;
1850 key.offset = found_key.offset - 1;
1851 }
1852 ret = 0;
1853error:
1854 btrfs_free_path(path);
1855 return ret;
1856}
1857
Chris Masonec44a352008-04-28 15:29:52 -04001858static u64 div_factor(u64 num, int factor)
1859{
1860 if (factor == 10)
1861 return num;
1862 num *= factor;
1863 do_div(num, 10);
1864 return num;
1865}
1866
Chris Masonec44a352008-04-28 15:29:52 -04001867int btrfs_balance(struct btrfs_root *dev_root)
1868{
1869 int ret;
Chris Masonec44a352008-04-28 15:29:52 -04001870 struct list_head *devices = &dev_root->fs_info->fs_devices->devices;
1871 struct btrfs_device *device;
1872 u64 old_size;
1873 u64 size_to_free;
1874 struct btrfs_path *path;
1875 struct btrfs_key key;
1876 struct btrfs_chunk *chunk;
1877 struct btrfs_root *chunk_root = dev_root->fs_info->chunk_root;
1878 struct btrfs_trans_handle *trans;
1879 struct btrfs_key found_key;
1880
Yan Zheng2b820322008-11-17 21:11:30 -05001881 if (dev_root->fs_info->sb->s_flags & MS_RDONLY)
1882 return -EROFS;
Chris Masonec44a352008-04-28 15:29:52 -04001883
Chris Mason7d9eb122008-07-08 14:19:17 -04001884 mutex_lock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04001885 dev_root = dev_root->fs_info->dev_root;
1886
Chris Masonec44a352008-04-28 15:29:52 -04001887 /* step one make some room on all the devices */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001888 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04001889 old_size = device->total_bytes;
1890 size_to_free = div_factor(old_size, 1);
1891 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05001892 if (!device->writeable ||
1893 device->total_bytes - device->bytes_used > size_to_free)
Chris Masonec44a352008-04-28 15:29:52 -04001894 continue;
1895
1896 ret = btrfs_shrink_device(device, old_size - size_to_free);
1897 BUG_ON(ret);
1898
1899 trans = btrfs_start_transaction(dev_root, 1);
1900 BUG_ON(!trans);
1901
1902 ret = btrfs_grow_device(trans, device, old_size);
1903 BUG_ON(ret);
1904
1905 btrfs_end_transaction(trans, dev_root);
1906 }
1907
1908 /* step two, relocate all the chunks */
1909 path = btrfs_alloc_path();
1910 BUG_ON(!path);
1911
1912 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1913 key.offset = (u64)-1;
1914 key.type = BTRFS_CHUNK_ITEM_KEY;
1915
Chris Masond3977122009-01-05 21:25:51 -05001916 while (1) {
Chris Masonec44a352008-04-28 15:29:52 -04001917 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
1918 if (ret < 0)
1919 goto error;
1920
1921 /*
1922 * this shouldn't happen, it means the last relocate
1923 * failed
1924 */
1925 if (ret == 0)
1926 break;
1927
1928 ret = btrfs_previous_item(chunk_root, path, 0,
1929 BTRFS_CHUNK_ITEM_KEY);
Chris Mason7d9eb122008-07-08 14:19:17 -04001930 if (ret)
Chris Masonec44a352008-04-28 15:29:52 -04001931 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04001932
Chris Masonec44a352008-04-28 15:29:52 -04001933 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1934 path->slots[0]);
1935 if (found_key.objectid != key.objectid)
1936 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04001937
Chris Masonec44a352008-04-28 15:29:52 -04001938 chunk = btrfs_item_ptr(path->nodes[0],
1939 path->slots[0],
1940 struct btrfs_chunk);
1941 key.offset = found_key.offset;
1942 /* chunk zero is special */
1943 if (key.offset == 0)
1944 break;
1945
Chris Mason7d9eb122008-07-08 14:19:17 -04001946 btrfs_release_path(chunk_root, path);
Chris Masonec44a352008-04-28 15:29:52 -04001947 ret = btrfs_relocate_chunk(chunk_root,
1948 chunk_root->root_key.objectid,
1949 found_key.objectid,
1950 found_key.offset);
1951 BUG_ON(ret);
Chris Masonec44a352008-04-28 15:29:52 -04001952 }
1953 ret = 0;
1954error:
1955 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001956 mutex_unlock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04001957 return ret;
1958}
1959
Chris Mason8f18cf12008-04-25 16:53:30 -04001960/*
1961 * shrinking a device means finding all of the device extents past
1962 * the new size, and then following the back refs to the chunks.
1963 * The chunk relocation code actually frees the device extent
1964 */
1965int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
1966{
1967 struct btrfs_trans_handle *trans;
1968 struct btrfs_root *root = device->dev_root;
1969 struct btrfs_dev_extent *dev_extent = NULL;
1970 struct btrfs_path *path;
1971 u64 length;
1972 u64 chunk_tree;
1973 u64 chunk_objectid;
1974 u64 chunk_offset;
1975 int ret;
1976 int slot;
1977 struct extent_buffer *l;
1978 struct btrfs_key key;
1979 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
1980 u64 old_total = btrfs_super_total_bytes(super_copy);
1981 u64 diff = device->total_bytes - new_size;
1982
Yan Zheng2b820322008-11-17 21:11:30 -05001983 if (new_size >= device->total_bytes)
1984 return -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001985
1986 path = btrfs_alloc_path();
1987 if (!path)
1988 return -ENOMEM;
1989
1990 trans = btrfs_start_transaction(root, 1);
1991 if (!trans) {
1992 ret = -ENOMEM;
1993 goto done;
1994 }
1995
1996 path->reada = 2;
1997
Chris Mason7d9eb122008-07-08 14:19:17 -04001998 lock_chunks(root);
1999
Chris Mason8f18cf12008-04-25 16:53:30 -04002000 device->total_bytes = new_size;
Yan Zheng2b820322008-11-17 21:11:30 -05002001 if (device->writeable)
2002 device->fs_devices->total_rw_bytes -= diff;
Chris Mason7d9eb122008-07-08 14:19:17 -04002003 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002004 btrfs_end_transaction(trans, root);
2005
2006 key.objectid = device->devid;
2007 key.offset = (u64)-1;
2008 key.type = BTRFS_DEV_EXTENT_KEY;
2009
2010 while (1) {
2011 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2012 if (ret < 0)
2013 goto done;
2014
2015 ret = btrfs_previous_item(root, path, 0, key.type);
2016 if (ret < 0)
2017 goto done;
2018 if (ret) {
2019 ret = 0;
Yan Zhengbf1fb512009-07-22 09:59:00 -04002020 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04002021 }
2022
2023 l = path->nodes[0];
2024 slot = path->slots[0];
2025 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
2026
2027 if (key.objectid != device->devid)
Yan Zhengbf1fb512009-07-22 09:59:00 -04002028 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04002029
2030 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
2031 length = btrfs_dev_extent_length(l, dev_extent);
2032
2033 if (key.offset + length <= new_size)
Chris Balld6397ba2009-04-27 07:29:03 -04002034 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04002035
2036 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
2037 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
2038 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
2039 btrfs_release_path(root, path);
2040
2041 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
2042 chunk_offset);
2043 if (ret)
2044 goto done;
2045 }
2046
Chris Balld6397ba2009-04-27 07:29:03 -04002047 /* Shrinking succeeded, else we would be at "done". */
2048 trans = btrfs_start_transaction(root, 1);
2049 if (!trans) {
2050 ret = -ENOMEM;
2051 goto done;
2052 }
2053 lock_chunks(root);
2054
2055 device->disk_total_bytes = new_size;
2056 /* Now btrfs_update_device() will change the on-disk size. */
2057 ret = btrfs_update_device(trans, device);
2058 if (ret) {
2059 unlock_chunks(root);
2060 btrfs_end_transaction(trans, root);
2061 goto done;
2062 }
2063 WARN_ON(diff > old_total);
2064 btrfs_set_super_total_bytes(super_copy, old_total - diff);
2065 unlock_chunks(root);
2066 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002067done:
2068 btrfs_free_path(path);
2069 return ret;
2070}
2071
Christoph Hellwigb2950862008-12-02 09:54:17 -05002072static int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -04002073 struct btrfs_root *root,
2074 struct btrfs_key *key,
2075 struct btrfs_chunk *chunk, int item_size)
2076{
2077 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
2078 struct btrfs_disk_key disk_key;
2079 u32 array_size;
2080 u8 *ptr;
2081
2082 array_size = btrfs_super_sys_array_size(super_copy);
2083 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
2084 return -EFBIG;
2085
2086 ptr = super_copy->sys_chunk_array + array_size;
2087 btrfs_cpu_key_to_disk(&disk_key, key);
2088 memcpy(ptr, &disk_key, sizeof(disk_key));
2089 ptr += sizeof(disk_key);
2090 memcpy(ptr, chunk, item_size);
2091 item_size += sizeof(disk_key);
2092 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
2093 return 0;
2094}
2095
Chris Masond3977122009-01-05 21:25:51 -05002096static noinline u64 chunk_bytes_by_type(u64 type, u64 calc_size,
Chris Masona1b32a52008-09-05 16:09:51 -04002097 int num_stripes, int sub_stripes)
Chris Mason9b3f68b2008-04-18 10:29:51 -04002098{
2099 if (type & (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP))
2100 return calc_size;
2101 else if (type & BTRFS_BLOCK_GROUP_RAID10)
2102 return calc_size * (num_stripes / sub_stripes);
2103 else
2104 return calc_size * num_stripes;
2105}
2106
Yan Zheng2b820322008-11-17 21:11:30 -05002107static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2108 struct btrfs_root *extent_root,
2109 struct map_lookup **map_ret,
2110 u64 *num_bytes, u64 *stripe_size,
2111 u64 start, u64 type)
Chris Mason0b86a832008-03-24 15:01:56 -04002112{
Chris Mason593060d2008-03-25 16:50:33 -04002113 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -04002114 struct btrfs_device *device = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -05002115 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Chris Mason6324fbf2008-03-24 15:01:59 -04002116 struct list_head *cur;
Yan Zheng2b820322008-11-17 21:11:30 -05002117 struct map_lookup *map = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002118 struct extent_map_tree *em_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04002119 struct extent_map *em;
Yan Zheng2b820322008-11-17 21:11:30 -05002120 struct list_head private_devs;
Chris Masona40a90a2008-04-18 11:55:51 -04002121 int min_stripe_size = 1 * 1024 * 1024;
Chris Mason0b86a832008-03-24 15:01:56 -04002122 u64 calc_size = 1024 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002123 u64 max_chunk_size = calc_size;
2124 u64 min_free;
Chris Mason6324fbf2008-03-24 15:01:59 -04002125 u64 avail;
2126 u64 max_avail = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002127 u64 dev_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04002128 int num_stripes = 1;
Chris Masona40a90a2008-04-18 11:55:51 -04002129 int min_stripes = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002130 int sub_stripes = 0;
Chris Mason6324fbf2008-03-24 15:01:59 -04002131 int looped = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002132 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04002133 int index;
Chris Mason593060d2008-03-25 16:50:33 -04002134 int stripe_len = 64 * 1024;
Chris Mason0b86a832008-03-24 15:01:56 -04002135
Chris Masonec44a352008-04-28 15:29:52 -04002136 if ((type & BTRFS_BLOCK_GROUP_RAID1) &&
2137 (type & BTRFS_BLOCK_GROUP_DUP)) {
2138 WARN_ON(1);
2139 type &= ~BTRFS_BLOCK_GROUP_DUP;
2140 }
Yan Zheng2b820322008-11-17 21:11:30 -05002141 if (list_empty(&fs_devices->alloc_list))
Chris Mason6324fbf2008-03-24 15:01:59 -04002142 return -ENOSPC;
Chris Mason593060d2008-03-25 16:50:33 -04002143
Chris Masona40a90a2008-04-18 11:55:51 -04002144 if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
Yan Zheng2b820322008-11-17 21:11:30 -05002145 num_stripes = fs_devices->rw_devices;
Chris Masona40a90a2008-04-18 11:55:51 -04002146 min_stripes = 2;
2147 }
2148 if (type & (BTRFS_BLOCK_GROUP_DUP)) {
Chris Mason611f0e02008-04-03 16:29:03 -04002149 num_stripes = 2;
Chris Masona40a90a2008-04-18 11:55:51 -04002150 min_stripes = 2;
2151 }
Chris Mason8790d502008-04-03 16:29:03 -04002152 if (type & (BTRFS_BLOCK_GROUP_RAID1)) {
Yan Zheng2b820322008-11-17 21:11:30 -05002153 num_stripes = min_t(u64, 2, fs_devices->rw_devices);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002154 if (num_stripes < 2)
2155 return -ENOSPC;
Chris Masona40a90a2008-04-18 11:55:51 -04002156 min_stripes = 2;
Chris Mason8790d502008-04-03 16:29:03 -04002157 }
Chris Mason321aecc2008-04-16 10:49:51 -04002158 if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
Yan Zheng2b820322008-11-17 21:11:30 -05002159 num_stripes = fs_devices->rw_devices;
Chris Mason321aecc2008-04-16 10:49:51 -04002160 if (num_stripes < 4)
2161 return -ENOSPC;
2162 num_stripes &= ~(u32)1;
2163 sub_stripes = 2;
Chris Masona40a90a2008-04-18 11:55:51 -04002164 min_stripes = 4;
Chris Mason321aecc2008-04-16 10:49:51 -04002165 }
Chris Mason9b3f68b2008-04-18 10:29:51 -04002166
2167 if (type & BTRFS_BLOCK_GROUP_DATA) {
2168 max_chunk_size = 10 * calc_size;
Chris Masona40a90a2008-04-18 11:55:51 -04002169 min_stripe_size = 64 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002170 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
2171 max_chunk_size = 4 * calc_size;
Chris Masona40a90a2008-04-18 11:55:51 -04002172 min_stripe_size = 32 * 1024 * 1024;
2173 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
2174 calc_size = 8 * 1024 * 1024;
2175 max_chunk_size = calc_size * 2;
2176 min_stripe_size = 1 * 1024 * 1024;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002177 }
2178
Yan Zheng2b820322008-11-17 21:11:30 -05002179 /* we don't want a chunk larger than 10% of writeable space */
2180 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
2181 max_chunk_size);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002182
Chris Masona40a90a2008-04-18 11:55:51 -04002183again:
Chris Mason9779b722009-07-24 16:41:41 -04002184 max_avail = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002185 if (!map || map->num_stripes != num_stripes) {
2186 kfree(map);
2187 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
2188 if (!map)
2189 return -ENOMEM;
2190 map->num_stripes = num_stripes;
2191 }
2192
Chris Mason9b3f68b2008-04-18 10:29:51 -04002193 if (calc_size * num_stripes > max_chunk_size) {
2194 calc_size = max_chunk_size;
2195 do_div(calc_size, num_stripes);
2196 do_div(calc_size, stripe_len);
2197 calc_size *= stripe_len;
2198 }
2199 /* we don't want tiny stripes */
Chris Masona40a90a2008-04-18 11:55:51 -04002200 calc_size = max_t(u64, min_stripe_size, calc_size);
Chris Mason9b3f68b2008-04-18 10:29:51 -04002201
Chris Mason9b3f68b2008-04-18 10:29:51 -04002202 do_div(calc_size, stripe_len);
2203 calc_size *= stripe_len;
2204
Yan Zheng2b820322008-11-17 21:11:30 -05002205 cur = fs_devices->alloc_list.next;
Chris Mason6324fbf2008-03-24 15:01:59 -04002206 index = 0;
Chris Mason611f0e02008-04-03 16:29:03 -04002207
2208 if (type & BTRFS_BLOCK_GROUP_DUP)
2209 min_free = calc_size * 2;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002210 else
2211 min_free = calc_size;
Chris Mason611f0e02008-04-03 16:29:03 -04002212
Josef Bacik0f9dd462008-09-23 13:14:11 -04002213 /*
2214 * we add 1MB because we never use the first 1MB of the device, unless
2215 * we've looped, then we are likely allocating the maximum amount of
2216 * space left already
2217 */
2218 if (!looped)
2219 min_free += 1024 * 1024;
Chris Masonad5bd912008-04-21 08:28:10 -04002220
Yan Zheng2b820322008-11-17 21:11:30 -05002221 INIT_LIST_HEAD(&private_devs);
Chris Masond3977122009-01-05 21:25:51 -05002222 while (index < num_stripes) {
Chris Masonb3075712008-04-22 09:22:07 -04002223 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
Yan Zheng2b820322008-11-17 21:11:30 -05002224 BUG_ON(!device->writeable);
Chris Masondfe25022008-05-13 13:46:40 -04002225 if (device->total_bytes > device->bytes_used)
2226 avail = device->total_bytes - device->bytes_used;
2227 else
2228 avail = 0;
Chris Mason6324fbf2008-03-24 15:01:59 -04002229 cur = cur->next;
Chris Mason8f18cf12008-04-25 16:53:30 -04002230
Chris Masondfe25022008-05-13 13:46:40 -04002231 if (device->in_fs_metadata && avail >= min_free) {
Yan Zheng2b820322008-11-17 21:11:30 -05002232 ret = find_free_dev_extent(trans, device,
Chris Mason9779b722009-07-24 16:41:41 -04002233 min_free, &dev_offset,
2234 &max_avail);
Chris Mason8f18cf12008-04-25 16:53:30 -04002235 if (ret == 0) {
2236 list_move_tail(&device->dev_alloc_list,
2237 &private_devs);
Yan Zheng2b820322008-11-17 21:11:30 -05002238 map->stripes[index].dev = device;
2239 map->stripes[index].physical = dev_offset;
Chris Mason611f0e02008-04-03 16:29:03 -04002240 index++;
Yan Zheng2b820322008-11-17 21:11:30 -05002241 if (type & BTRFS_BLOCK_GROUP_DUP) {
2242 map->stripes[index].dev = device;
2243 map->stripes[index].physical =
2244 dev_offset + calc_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04002245 index++;
Yan Zheng2b820322008-11-17 21:11:30 -05002246 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002247 }
Chris Masondfe25022008-05-13 13:46:40 -04002248 } else if (device->in_fs_metadata && avail > max_avail)
Chris Masona40a90a2008-04-18 11:55:51 -04002249 max_avail = avail;
Yan Zheng2b820322008-11-17 21:11:30 -05002250 if (cur == &fs_devices->alloc_list)
Chris Mason6324fbf2008-03-24 15:01:59 -04002251 break;
2252 }
Yan Zheng2b820322008-11-17 21:11:30 -05002253 list_splice(&private_devs, &fs_devices->alloc_list);
Chris Mason6324fbf2008-03-24 15:01:59 -04002254 if (index < num_stripes) {
Chris Masona40a90a2008-04-18 11:55:51 -04002255 if (index >= min_stripes) {
2256 num_stripes = index;
2257 if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
2258 num_stripes /= sub_stripes;
2259 num_stripes *= sub_stripes;
2260 }
2261 looped = 1;
2262 goto again;
2263 }
Chris Mason6324fbf2008-03-24 15:01:59 -04002264 if (!looped && max_avail > 0) {
2265 looped = 1;
2266 calc_size = max_avail;
2267 goto again;
2268 }
Yan Zheng2b820322008-11-17 21:11:30 -05002269 kfree(map);
Chris Mason6324fbf2008-03-24 15:01:59 -04002270 return -ENOSPC;
2271 }
Chris Mason593060d2008-03-25 16:50:33 -04002272 map->sector_size = extent_root->sectorsize;
2273 map->stripe_len = stripe_len;
2274 map->io_align = stripe_len;
2275 map->io_width = stripe_len;
2276 map->type = type;
2277 map->num_stripes = num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002278 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04002279
Yan Zheng2b820322008-11-17 21:11:30 -05002280 *map_ret = map;
2281 *stripe_size = calc_size;
2282 *num_bytes = chunk_bytes_by_type(type, calc_size,
2283 num_stripes, sub_stripes);
Chris Mason0b86a832008-03-24 15:01:56 -04002284
2285 em = alloc_extent_map(GFP_NOFS);
Yan Zheng2b820322008-11-17 21:11:30 -05002286 if (!em) {
2287 kfree(map);
Chris Mason0b86a832008-03-24 15:01:56 -04002288 return -ENOMEM;
Yan Zheng2b820322008-11-17 21:11:30 -05002289 }
Chris Mason0b86a832008-03-24 15:01:56 -04002290 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05002291 em->start = start;
Chris Masone17cade2008-04-15 15:41:47 -04002292 em->len = *num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04002293 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002294 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04002295
Chris Mason0b86a832008-03-24 15:01:56 -04002296 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04002297 write_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002298 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002299 write_unlock(&em_tree->lock);
Chris Masonb248a412008-04-14 09:48:18 -04002300 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04002301 free_extent_map(em);
Yan Zheng2b820322008-11-17 21:11:30 -05002302
2303 ret = btrfs_make_block_group(trans, extent_root, 0, type,
2304 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2305 start, *num_bytes);
2306 BUG_ON(ret);
2307
2308 index = 0;
2309 while (index < map->num_stripes) {
2310 device = map->stripes[index].dev;
2311 dev_offset = map->stripes[index].physical;
2312
2313 ret = btrfs_alloc_dev_extent(trans, device,
2314 info->chunk_root->root_key.objectid,
2315 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2316 start, dev_offset, calc_size);
2317 BUG_ON(ret);
2318 index++;
2319 }
2320
2321 return 0;
2322}
2323
2324static int __finish_chunk_alloc(struct btrfs_trans_handle *trans,
2325 struct btrfs_root *extent_root,
2326 struct map_lookup *map, u64 chunk_offset,
2327 u64 chunk_size, u64 stripe_size)
2328{
2329 u64 dev_offset;
2330 struct btrfs_key key;
2331 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2332 struct btrfs_device *device;
2333 struct btrfs_chunk *chunk;
2334 struct btrfs_stripe *stripe;
2335 size_t item_size = btrfs_chunk_item_size(map->num_stripes);
2336 int index = 0;
2337 int ret;
2338
2339 chunk = kzalloc(item_size, GFP_NOFS);
2340 if (!chunk)
2341 return -ENOMEM;
2342
2343 index = 0;
2344 while (index < map->num_stripes) {
2345 device = map->stripes[index].dev;
2346 device->bytes_used += stripe_size;
2347 ret = btrfs_update_device(trans, device);
2348 BUG_ON(ret);
2349 index++;
2350 }
2351
2352 index = 0;
2353 stripe = &chunk->stripe;
2354 while (index < map->num_stripes) {
2355 device = map->stripes[index].dev;
2356 dev_offset = map->stripes[index].physical;
2357
2358 btrfs_set_stack_stripe_devid(stripe, device->devid);
2359 btrfs_set_stack_stripe_offset(stripe, dev_offset);
2360 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
2361 stripe++;
2362 index++;
2363 }
2364
2365 btrfs_set_stack_chunk_length(chunk, chunk_size);
2366 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
2367 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
2368 btrfs_set_stack_chunk_type(chunk, map->type);
2369 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
2370 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
2371 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
2372 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
2373 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
2374
2375 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2376 key.type = BTRFS_CHUNK_ITEM_KEY;
2377 key.offset = chunk_offset;
2378
2379 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
2380 BUG_ON(ret);
2381
2382 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2383 ret = btrfs_add_system_chunk(trans, chunk_root, &key, chunk,
2384 item_size);
2385 BUG_ON(ret);
2386 }
2387 kfree(chunk);
2388 return 0;
2389}
2390
2391/*
2392 * Chunk allocation falls into two parts. The first part does works
2393 * that make the new allocated chunk useable, but not do any operation
2394 * that modifies the chunk tree. The second part does the works that
2395 * require modifying the chunk tree. This division is important for the
2396 * bootstrap process of adding storage to a seed btrfs.
2397 */
2398int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2399 struct btrfs_root *extent_root, u64 type)
2400{
2401 u64 chunk_offset;
2402 u64 chunk_size;
2403 u64 stripe_size;
2404 struct map_lookup *map;
2405 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2406 int ret;
2407
2408 ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2409 &chunk_offset);
2410 if (ret)
2411 return ret;
2412
2413 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2414 &stripe_size, chunk_offset, type);
2415 if (ret)
2416 return ret;
2417
2418 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2419 chunk_size, stripe_size);
2420 BUG_ON(ret);
2421 return 0;
2422}
2423
Chris Masond3977122009-01-05 21:25:51 -05002424static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05002425 struct btrfs_root *root,
2426 struct btrfs_device *device)
2427{
2428 u64 chunk_offset;
2429 u64 sys_chunk_offset;
2430 u64 chunk_size;
2431 u64 sys_chunk_size;
2432 u64 stripe_size;
2433 u64 sys_stripe_size;
2434 u64 alloc_profile;
2435 struct map_lookup *map;
2436 struct map_lookup *sys_map;
2437 struct btrfs_fs_info *fs_info = root->fs_info;
2438 struct btrfs_root *extent_root = fs_info->extent_root;
2439 int ret;
2440
2441 ret = find_next_chunk(fs_info->chunk_root,
2442 BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
2443 BUG_ON(ret);
2444
2445 alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
2446 (fs_info->metadata_alloc_profile &
2447 fs_info->avail_metadata_alloc_bits);
2448 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2449
2450 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2451 &stripe_size, chunk_offset, alloc_profile);
2452 BUG_ON(ret);
2453
2454 sys_chunk_offset = chunk_offset + chunk_size;
2455
2456 alloc_profile = BTRFS_BLOCK_GROUP_SYSTEM |
2457 (fs_info->system_alloc_profile &
2458 fs_info->avail_system_alloc_bits);
2459 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2460
2461 ret = __btrfs_alloc_chunk(trans, extent_root, &sys_map,
2462 &sys_chunk_size, &sys_stripe_size,
2463 sys_chunk_offset, alloc_profile);
2464 BUG_ON(ret);
2465
2466 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
2467 BUG_ON(ret);
2468
2469 /*
2470 * Modifying chunk tree needs allocating new blocks from both
2471 * system block group and metadata block group. So we only can
2472 * do operations require modifying the chunk tree after both
2473 * block groups were created.
2474 */
2475 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2476 chunk_size, stripe_size);
2477 BUG_ON(ret);
2478
2479 ret = __finish_chunk_alloc(trans, extent_root, sys_map,
2480 sys_chunk_offset, sys_chunk_size,
2481 sys_stripe_size);
2482 BUG_ON(ret);
2483 return 0;
2484}
2485
2486int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
2487{
2488 struct extent_map *em;
2489 struct map_lookup *map;
2490 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
2491 int readonly = 0;
2492 int i;
2493
Chris Mason890871b2009-09-02 16:24:52 -04002494 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002495 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002496 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002497 if (!em)
2498 return 1;
2499
2500 map = (struct map_lookup *)em->bdev;
2501 for (i = 0; i < map->num_stripes; i++) {
2502 if (!map->stripes[i].dev->writeable) {
2503 readonly = 1;
2504 break;
2505 }
2506 }
2507 free_extent_map(em);
2508 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04002509}
2510
2511void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
2512{
2513 extent_map_tree_init(&tree->map_tree, GFP_NOFS);
2514}
2515
2516void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
2517{
2518 struct extent_map *em;
2519
Chris Masond3977122009-01-05 21:25:51 -05002520 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04002521 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002522 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
2523 if (em)
2524 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002525 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002526 if (!em)
2527 break;
2528 kfree(em->bdev);
2529 /* once for us */
2530 free_extent_map(em);
2531 /* once for the tree */
2532 free_extent_map(em);
2533 }
2534}
2535
Chris Masonf1885912008-04-09 16:28:12 -04002536int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
2537{
2538 struct extent_map *em;
2539 struct map_lookup *map;
2540 struct extent_map_tree *em_tree = &map_tree->map_tree;
2541 int ret;
2542
Chris Mason890871b2009-09-02 16:24:52 -04002543 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002544 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04002545 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002546 BUG_ON(!em);
2547
2548 BUG_ON(em->start > logical || em->start + em->len < logical);
2549 map = (struct map_lookup *)em->bdev;
2550 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
2551 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002552 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
2553 ret = map->sub_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002554 else
2555 ret = 1;
2556 free_extent_map(em);
Chris Masonf1885912008-04-09 16:28:12 -04002557 return ret;
2558}
2559
Chris Masondfe25022008-05-13 13:46:40 -04002560static int find_live_mirror(struct map_lookup *map, int first, int num,
2561 int optimal)
2562{
2563 int i;
2564 if (map->stripes[optimal].dev->bdev)
2565 return optimal;
2566 for (i = first; i < first + num; i++) {
2567 if (map->stripes[i].dev->bdev)
2568 return i;
2569 }
2570 /* we couldn't find one that doesn't fail. Just return something
2571 * and the io error handling code will clean up eventually
2572 */
2573 return optimal;
2574}
2575
Chris Masonf2d8d742008-04-21 10:03:05 -04002576static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
2577 u64 logical, u64 *length,
2578 struct btrfs_multi_bio **multi_ret,
2579 int mirror_num, struct page *unplug_page)
Chris Mason0b86a832008-03-24 15:01:56 -04002580{
2581 struct extent_map *em;
2582 struct map_lookup *map;
2583 struct extent_map_tree *em_tree = &map_tree->map_tree;
2584 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04002585 u64 stripe_offset;
2586 u64 stripe_nr;
Chris Masoncea9e442008-04-09 16:28:12 -04002587 int stripes_allocated = 8;
Chris Mason321aecc2008-04-16 10:49:51 -04002588 int stripes_required = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002589 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04002590 int i;
Chris Masonf2d8d742008-04-21 10:03:05 -04002591 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002592 int max_errors = 0;
Chris Masoncea9e442008-04-09 16:28:12 -04002593 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002594
Chris Masond3977122009-01-05 21:25:51 -05002595 if (multi_ret && !(rw & (1 << BIO_RW)))
Chris Masoncea9e442008-04-09 16:28:12 -04002596 stripes_allocated = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002597again:
2598 if (multi_ret) {
2599 multi = kzalloc(btrfs_multi_bio_size(stripes_allocated),
2600 GFP_NOFS);
2601 if (!multi)
2602 return -ENOMEM;
Chris Masona236aed2008-04-29 09:38:00 -04002603
2604 atomic_set(&multi->error, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04002605 }
Chris Mason0b86a832008-03-24 15:01:56 -04002606
Chris Mason890871b2009-09-02 16:24:52 -04002607 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002608 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04002609 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04002610
2611 if (!em && unplug_page)
2612 return 0;
2613
Chris Mason3b951512008-04-17 11:29:12 -04002614 if (!em) {
Chris Masond3977122009-01-05 21:25:51 -05002615 printk(KERN_CRIT "unable to find logical %llu len %llu\n",
2616 (unsigned long long)logical,
2617 (unsigned long long)*length);
Chris Masonf2d8d742008-04-21 10:03:05 -04002618 BUG();
Chris Mason3b951512008-04-17 11:29:12 -04002619 }
Chris Mason0b86a832008-03-24 15:01:56 -04002620
2621 BUG_ON(em->start > logical || em->start + em->len < logical);
2622 map = (struct map_lookup *)em->bdev;
2623 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04002624
Chris Masonf1885912008-04-09 16:28:12 -04002625 if (mirror_num > map->num_stripes)
2626 mirror_num = 0;
2627
Chris Masoncea9e442008-04-09 16:28:12 -04002628 /* if our multi bio struct is too small, back off and try again */
Chris Mason321aecc2008-04-16 10:49:51 -04002629 if (rw & (1 << BIO_RW)) {
2630 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
2631 BTRFS_BLOCK_GROUP_DUP)) {
2632 stripes_required = map->num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002633 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002634 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2635 stripes_required = map->sub_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002636 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002637 }
2638 }
Chris Masonffbd5172009-04-20 15:50:09 -04002639 if (multi_ret && (rw & (1 << BIO_RW)) &&
Chris Mason321aecc2008-04-16 10:49:51 -04002640 stripes_allocated < stripes_required) {
Chris Masoncea9e442008-04-09 16:28:12 -04002641 stripes_allocated = map->num_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04002642 free_extent_map(em);
2643 kfree(multi);
2644 goto again;
2645 }
Chris Mason593060d2008-03-25 16:50:33 -04002646 stripe_nr = offset;
2647 /*
2648 * stripe_nr counts the total number of stripes we have to stride
2649 * to get to this block
2650 */
2651 do_div(stripe_nr, map->stripe_len);
2652
2653 stripe_offset = stripe_nr * map->stripe_len;
2654 BUG_ON(offset < stripe_offset);
2655
2656 /* stripe_offset is the offset of this block in its stripe*/
2657 stripe_offset = offset - stripe_offset;
2658
Chris Masoncea9e442008-04-09 16:28:12 -04002659 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04002660 BTRFS_BLOCK_GROUP_RAID10 |
Chris Masoncea9e442008-04-09 16:28:12 -04002661 BTRFS_BLOCK_GROUP_DUP)) {
2662 /* we limit the length of each bio to what fits in a stripe */
2663 *length = min_t(u64, em->len - offset,
2664 map->stripe_len - stripe_offset);
2665 } else {
2666 *length = em->len - offset;
2667 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002668
2669 if (!multi_ret && !unplug_page)
Chris Masoncea9e442008-04-09 16:28:12 -04002670 goto out;
2671
Chris Masonf2d8d742008-04-21 10:03:05 -04002672 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002673 stripe_index = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002674 if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Chris Masonf2d8d742008-04-21 10:03:05 -04002675 if (unplug_page || (rw & (1 << BIO_RW)))
2676 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04002677 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04002678 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002679 else {
2680 stripe_index = find_live_mirror(map, 0,
2681 map->num_stripes,
2682 current->pid % map->num_stripes);
2683 }
Chris Mason2fff7342008-04-29 14:12:09 -04002684
Chris Mason611f0e02008-04-03 16:29:03 -04002685 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Chris Masoncea9e442008-04-09 16:28:12 -04002686 if (rw & (1 << BIO_RW))
Chris Masonf2d8d742008-04-21 10:03:05 -04002687 num_stripes = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002688 else if (mirror_num)
2689 stripe_index = mirror_num - 1;
Chris Mason2fff7342008-04-29 14:12:09 -04002690
Chris Mason321aecc2008-04-16 10:49:51 -04002691 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2692 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002693
2694 stripe_index = do_div(stripe_nr, factor);
2695 stripe_index *= map->sub_stripes;
2696
Chris Masonf2d8d742008-04-21 10:03:05 -04002697 if (unplug_page || (rw & (1 << BIO_RW)))
2698 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002699 else if (mirror_num)
2700 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002701 else {
2702 stripe_index = find_live_mirror(map, stripe_index,
2703 map->sub_stripes, stripe_index +
2704 current->pid % map->sub_stripes);
2705 }
Chris Mason8790d502008-04-03 16:29:03 -04002706 } else {
2707 /*
2708 * after this do_div call, stripe_nr is the number of stripes
2709 * on this device we have to walk to find the data, and
2710 * stripe_index is the number of our device in the stripe array
2711 */
2712 stripe_index = do_div(stripe_nr, map->num_stripes);
2713 }
Chris Mason593060d2008-03-25 16:50:33 -04002714 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04002715
Chris Masonf2d8d742008-04-21 10:03:05 -04002716 for (i = 0; i < num_stripes; i++) {
2717 if (unplug_page) {
2718 struct btrfs_device *device;
2719 struct backing_dev_info *bdi;
2720
2721 device = map->stripes[stripe_index].dev;
Chris Masondfe25022008-05-13 13:46:40 -04002722 if (device->bdev) {
2723 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masond3977122009-01-05 21:25:51 -05002724 if (bdi->unplug_io_fn)
Chris Masondfe25022008-05-13 13:46:40 -04002725 bdi->unplug_io_fn(bdi, unplug_page);
Chris Masonf2d8d742008-04-21 10:03:05 -04002726 }
2727 } else {
2728 multi->stripes[i].physical =
2729 map->stripes[stripe_index].physical +
2730 stripe_offset + stripe_nr * map->stripe_len;
2731 multi->stripes[i].dev = map->stripes[stripe_index].dev;
2732 }
Chris Masoncea9e442008-04-09 16:28:12 -04002733 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04002734 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002735 if (multi_ret) {
2736 *multi_ret = multi;
2737 multi->num_stripes = num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002738 multi->max_errors = max_errors;
Chris Masonf2d8d742008-04-21 10:03:05 -04002739 }
Chris Masoncea9e442008-04-09 16:28:12 -04002740out:
Chris Mason0b86a832008-03-24 15:01:56 -04002741 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04002742 return 0;
2743}
2744
Chris Masonf2d8d742008-04-21 10:03:05 -04002745int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
2746 u64 logical, u64 *length,
2747 struct btrfs_multi_bio **multi_ret, int mirror_num)
2748{
2749 return __btrfs_map_block(map_tree, rw, logical, length, multi_ret,
2750 mirror_num, NULL);
2751}
2752
Yan Zhenga512bbf2008-12-08 16:46:26 -05002753int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
2754 u64 chunk_start, u64 physical, u64 devid,
2755 u64 **logical, int *naddrs, int *stripe_len)
2756{
2757 struct extent_map_tree *em_tree = &map_tree->map_tree;
2758 struct extent_map *em;
2759 struct map_lookup *map;
2760 u64 *buf;
2761 u64 bytenr;
2762 u64 length;
2763 u64 stripe_nr;
2764 int i, j, nr = 0;
2765
Chris Mason890871b2009-09-02 16:24:52 -04002766 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002767 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002768 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002769
2770 BUG_ON(!em || em->start != chunk_start);
2771 map = (struct map_lookup *)em->bdev;
2772
2773 length = em->len;
2774 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
2775 do_div(length, map->num_stripes / map->sub_stripes);
2776 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
2777 do_div(length, map->num_stripes);
2778
2779 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
2780 BUG_ON(!buf);
2781
2782 for (i = 0; i < map->num_stripes; i++) {
2783 if (devid && map->stripes[i].dev->devid != devid)
2784 continue;
2785 if (map->stripes[i].physical > physical ||
2786 map->stripes[i].physical + length <= physical)
2787 continue;
2788
2789 stripe_nr = physical - map->stripes[i].physical;
2790 do_div(stripe_nr, map->stripe_len);
2791
2792 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2793 stripe_nr = stripe_nr * map->num_stripes + i;
2794 do_div(stripe_nr, map->sub_stripes);
2795 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
2796 stripe_nr = stripe_nr * map->num_stripes + i;
2797 }
2798 bytenr = chunk_start + stripe_nr * map->stripe_len;
Chris Mason934d3752008-12-08 16:43:10 -05002799 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002800 for (j = 0; j < nr; j++) {
2801 if (buf[j] == bytenr)
2802 break;
2803 }
Chris Mason934d3752008-12-08 16:43:10 -05002804 if (j == nr) {
2805 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002806 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05002807 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05002808 }
2809
Yan Zhenga512bbf2008-12-08 16:46:26 -05002810 *logical = buf;
2811 *naddrs = nr;
2812 *stripe_len = map->stripe_len;
2813
2814 free_extent_map(em);
2815 return 0;
2816}
2817
Chris Masonf2d8d742008-04-21 10:03:05 -04002818int btrfs_unplug_page(struct btrfs_mapping_tree *map_tree,
2819 u64 logical, struct page *page)
2820{
2821 u64 length = PAGE_CACHE_SIZE;
2822 return __btrfs_map_block(map_tree, READ, logical, &length,
2823 NULL, 0, page);
2824}
2825
Chris Mason8790d502008-04-03 16:29:03 -04002826static void end_bio_multi_stripe(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04002827{
Chris Masoncea9e442008-04-09 16:28:12 -04002828 struct btrfs_multi_bio *multi = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04002829 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002830
Chris Mason8790d502008-04-03 16:29:03 -04002831 if (err)
Chris Masona236aed2008-04-29 09:38:00 -04002832 atomic_inc(&multi->error);
Chris Mason8790d502008-04-03 16:29:03 -04002833
Chris Mason7d2b4da2008-08-05 10:13:57 -04002834 if (bio == multi->orig_bio)
2835 is_orig_bio = 1;
2836
Chris Masoncea9e442008-04-09 16:28:12 -04002837 if (atomic_dec_and_test(&multi->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04002838 if (!is_orig_bio) {
2839 bio_put(bio);
2840 bio = multi->orig_bio;
2841 }
Chris Mason8790d502008-04-03 16:29:03 -04002842 bio->bi_private = multi->private;
2843 bio->bi_end_io = multi->end_io;
Chris Masona236aed2008-04-29 09:38:00 -04002844 /* only send an error to the higher layers if it is
2845 * beyond the tolerance of the multi-bio
2846 */
Chris Mason1259ab72008-05-12 13:39:03 -04002847 if (atomic_read(&multi->error) > multi->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04002848 err = -EIO;
Chris Mason1259ab72008-05-12 13:39:03 -04002849 } else if (err) {
2850 /*
2851 * this bio is actually up to date, we didn't
2852 * go over the max number of errors
2853 */
2854 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04002855 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04002856 }
Chris Mason8790d502008-04-03 16:29:03 -04002857 kfree(multi);
2858
2859 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04002860 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04002861 bio_put(bio);
2862 }
Chris Mason8790d502008-04-03 16:29:03 -04002863}
2864
Chris Mason8b712842008-06-11 16:50:36 -04002865struct async_sched {
2866 struct bio *bio;
2867 int rw;
2868 struct btrfs_fs_info *info;
2869 struct btrfs_work work;
2870};
2871
2872/*
2873 * see run_scheduled_bios for a description of why bios are collected for
2874 * async submit.
2875 *
2876 * This will add one bio to the pending list for a device and make sure
2877 * the work struct is scheduled.
2878 */
Chris Masond3977122009-01-05 21:25:51 -05002879static noinline int schedule_bio(struct btrfs_root *root,
Chris Masona1b32a52008-09-05 16:09:51 -04002880 struct btrfs_device *device,
2881 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04002882{
2883 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04002884 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04002885
2886 /* don't bother with additional async steps for reads, right now */
2887 if (!(rw & (1 << BIO_RW))) {
Chris Mason492bb6de2008-07-31 16:29:02 -04002888 bio_get(bio);
Chris Mason8b712842008-06-11 16:50:36 -04002889 submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04002890 bio_put(bio);
Chris Mason8b712842008-06-11 16:50:36 -04002891 return 0;
2892 }
2893
2894 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04002895 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04002896 * higher layers. Otherwise, the async bio makes it appear we have
2897 * made progress against dirty pages when we've really just put it
2898 * on a queue for later
2899 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04002900 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04002901 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04002902 bio->bi_next = NULL;
2903 bio->bi_rw |= rw;
2904
2905 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -04002906 if (bio_sync(bio))
2907 pending_bios = &device->pending_sync_bios;
2908 else
2909 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04002910
Chris Masonffbd5172009-04-20 15:50:09 -04002911 if (pending_bios->tail)
2912 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04002913
Chris Masonffbd5172009-04-20 15:50:09 -04002914 pending_bios->tail = bio;
2915 if (!pending_bios->head)
2916 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04002917 if (device->running_pending)
2918 should_queue = 0;
2919
2920 spin_unlock(&device->io_lock);
2921
2922 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04002923 btrfs_queue_worker(&root->fs_info->submit_workers,
2924 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04002925 return 0;
2926}
2927
Chris Masonf1885912008-04-09 16:28:12 -04002928int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04002929 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04002930{
2931 struct btrfs_mapping_tree *map_tree;
2932 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04002933 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04002934 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04002935 u64 length = 0;
2936 u64 map_length;
Chris Masoncea9e442008-04-09 16:28:12 -04002937 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002938 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04002939 int dev_nr = 0;
2940 int total_devs = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04002941
Chris Masonf2d8d742008-04-21 10:03:05 -04002942 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04002943 map_tree = &root->fs_info->mapping_tree;
2944 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04002945
Chris Masonf1885912008-04-09 16:28:12 -04002946 ret = btrfs_map_block(map_tree, rw, logical, &map_length, &multi,
2947 mirror_num);
Chris Masoncea9e442008-04-09 16:28:12 -04002948 BUG_ON(ret);
2949
2950 total_devs = multi->num_stripes;
2951 if (map_length < length) {
Chris Masond3977122009-01-05 21:25:51 -05002952 printk(KERN_CRIT "mapping failed logical %llu bio len %llu "
2953 "len %llu\n", (unsigned long long)logical,
2954 (unsigned long long)length,
2955 (unsigned long long)map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04002956 BUG();
2957 }
2958 multi->end_io = first_bio->bi_end_io;
2959 multi->private = first_bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04002960 multi->orig_bio = first_bio;
Chris Masoncea9e442008-04-09 16:28:12 -04002961 atomic_set(&multi->stripes_pending, multi->num_stripes);
2962
Chris Masond3977122009-01-05 21:25:51 -05002963 while (dev_nr < total_devs) {
Chris Mason8790d502008-04-03 16:29:03 -04002964 if (total_devs > 1) {
Chris Mason8790d502008-04-03 16:29:03 -04002965 if (dev_nr < total_devs - 1) {
2966 bio = bio_clone(first_bio, GFP_NOFS);
2967 BUG_ON(!bio);
2968 } else {
2969 bio = first_bio;
2970 }
2971 bio->bi_private = multi;
2972 bio->bi_end_io = end_bio_multi_stripe;
2973 }
Chris Masoncea9e442008-04-09 16:28:12 -04002974 bio->bi_sector = multi->stripes[dev_nr].physical >> 9;
2975 dev = multi->stripes[dev_nr].dev;
Yan Zheng2b820322008-11-17 21:11:30 -05002976 BUG_ON(rw == WRITE && !dev->writeable);
Chris Masondfe25022008-05-13 13:46:40 -04002977 if (dev && dev->bdev) {
2978 bio->bi_bdev = dev->bdev;
Chris Mason8b712842008-06-11 16:50:36 -04002979 if (async_submit)
2980 schedule_bio(root, dev, rw, bio);
2981 else
2982 submit_bio(rw, bio);
Chris Masondfe25022008-05-13 13:46:40 -04002983 } else {
2984 bio->bi_bdev = root->fs_info->fs_devices->latest_bdev;
2985 bio->bi_sector = logical >> 9;
Chris Masondfe25022008-05-13 13:46:40 -04002986 bio_endio(bio, -EIO);
Chris Masondfe25022008-05-13 13:46:40 -04002987 }
Chris Mason8790d502008-04-03 16:29:03 -04002988 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04002989 }
Chris Masoncea9e442008-04-09 16:28:12 -04002990 if (total_devs == 1)
2991 kfree(multi);
Chris Mason0b86a832008-03-24 15:01:56 -04002992 return 0;
2993}
2994
Chris Masona4437552008-04-18 10:29:38 -04002995struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05002996 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04002997{
Yan Zheng2b820322008-11-17 21:11:30 -05002998 struct btrfs_device *device;
2999 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04003000
Yan Zheng2b820322008-11-17 21:11:30 -05003001 cur_devices = root->fs_info->fs_devices;
3002 while (cur_devices) {
3003 if (!fsid ||
3004 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3005 device = __find_device(&cur_devices->devices,
3006 devid, uuid);
3007 if (device)
3008 return device;
3009 }
3010 cur_devices = cur_devices->seed;
3011 }
3012 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04003013}
3014
Chris Masondfe25022008-05-13 13:46:40 -04003015static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
3016 u64 devid, u8 *dev_uuid)
3017{
3018 struct btrfs_device *device;
3019 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
3020
3021 device = kzalloc(sizeof(*device), GFP_NOFS);
yanhai zhu7cbd8a82008-11-12 14:38:54 -05003022 if (!device)
3023 return NULL;
Chris Masondfe25022008-05-13 13:46:40 -04003024 list_add(&device->dev_list,
3025 &fs_devices->devices);
Chris Masondfe25022008-05-13 13:46:40 -04003026 device->barriers = 1;
3027 device->dev_root = root->fs_info->dev_root;
3028 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -04003029 device->work.func = pending_bios_fn;
Yan Zhenge4404d62008-12-12 10:03:26 -05003030 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04003031 fs_devices->num_devices++;
3032 spin_lock_init(&device->io_lock);
Chris Masond20f7042008-12-08 16:58:54 -05003033 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masondfe25022008-05-13 13:46:40 -04003034 memcpy(device->uuid, dev_uuid, BTRFS_UUID_SIZE);
3035 return device;
3036}
3037
Chris Mason0b86a832008-03-24 15:01:56 -04003038static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
3039 struct extent_buffer *leaf,
3040 struct btrfs_chunk *chunk)
3041{
3042 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
3043 struct map_lookup *map;
3044 struct extent_map *em;
3045 u64 logical;
3046 u64 length;
3047 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04003048 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04003049 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04003050 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04003051 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04003052
Chris Masone17cade2008-04-15 15:41:47 -04003053 logical = key->offset;
3054 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04003055
Chris Mason890871b2009-09-02 16:24:52 -04003056 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003057 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003058 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003059
3060 /* already mapped? */
3061 if (em && em->start <= logical && em->start + em->len > logical) {
3062 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04003063 return 0;
3064 } else if (em) {
3065 free_extent_map(em);
3066 }
Chris Mason0b86a832008-03-24 15:01:56 -04003067
Chris Mason0b86a832008-03-24 15:01:56 -04003068 em = alloc_extent_map(GFP_NOFS);
3069 if (!em)
3070 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04003071 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3072 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04003073 if (!map) {
3074 free_extent_map(em);
3075 return -ENOMEM;
3076 }
3077
3078 em->bdev = (struct block_device *)map;
3079 em->start = logical;
3080 em->len = length;
3081 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003082 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04003083
Chris Mason593060d2008-03-25 16:50:33 -04003084 map->num_stripes = num_stripes;
3085 map->io_width = btrfs_chunk_io_width(leaf, chunk);
3086 map->io_align = btrfs_chunk_io_align(leaf, chunk);
3087 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
3088 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
3089 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04003090 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04003091 for (i = 0; i < num_stripes; i++) {
3092 map->stripes[i].physical =
3093 btrfs_stripe_offset_nr(leaf, chunk, i);
3094 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04003095 read_extent_buffer(leaf, uuid, (unsigned long)
3096 btrfs_stripe_dev_uuid_nr(chunk, i),
3097 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003098 map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
3099 NULL);
Chris Masondfe25022008-05-13 13:46:40 -04003100 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04003101 kfree(map);
3102 free_extent_map(em);
3103 return -EIO;
3104 }
Chris Masondfe25022008-05-13 13:46:40 -04003105 if (!map->stripes[i].dev) {
3106 map->stripes[i].dev =
3107 add_missing_dev(root, devid, uuid);
3108 if (!map->stripes[i].dev) {
3109 kfree(map);
3110 free_extent_map(em);
3111 return -EIO;
3112 }
3113 }
3114 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04003115 }
3116
Chris Mason890871b2009-09-02 16:24:52 -04003117 write_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003118 ret = add_extent_mapping(&map_tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04003119 write_unlock(&map_tree->map_tree.lock);
Chris Masonb248a412008-04-14 09:48:18 -04003120 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04003121 free_extent_map(em);
3122
3123 return 0;
3124}
3125
3126static int fill_device_from_item(struct extent_buffer *leaf,
3127 struct btrfs_dev_item *dev_item,
3128 struct btrfs_device *device)
3129{
3130 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04003131
3132 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04003133 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
3134 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003135 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
3136 device->type = btrfs_device_type(leaf, dev_item);
3137 device->io_align = btrfs_device_io_align(leaf, dev_item);
3138 device->io_width = btrfs_device_io_width(leaf, dev_item);
3139 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Chris Mason0b86a832008-03-24 15:01:56 -04003140
3141 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04003142 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003143
Chris Mason0b86a832008-03-24 15:01:56 -04003144 return 0;
3145}
3146
Yan Zheng2b820322008-11-17 21:11:30 -05003147static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
3148{
3149 struct btrfs_fs_devices *fs_devices;
3150 int ret;
3151
3152 mutex_lock(&uuid_mutex);
3153
3154 fs_devices = root->fs_info->fs_devices->seed;
3155 while (fs_devices) {
3156 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3157 ret = 0;
3158 goto out;
3159 }
3160 fs_devices = fs_devices->seed;
3161 }
3162
3163 fs_devices = find_fsid(fsid);
3164 if (!fs_devices) {
3165 ret = -ENOENT;
3166 goto out;
3167 }
Yan Zhenge4404d62008-12-12 10:03:26 -05003168
3169 fs_devices = clone_fs_devices(fs_devices);
3170 if (IS_ERR(fs_devices)) {
3171 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003172 goto out;
3173 }
3174
Christoph Hellwig97288f22008-12-02 06:36:09 -05003175 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05003176 root->fs_info->bdev_holder);
Yan Zheng2b820322008-11-17 21:11:30 -05003177 if (ret)
3178 goto out;
3179
3180 if (!fs_devices->seeding) {
3181 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05003182 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003183 ret = -EINVAL;
3184 goto out;
3185 }
3186
3187 fs_devices->seed = root->fs_info->fs_devices->seed;
3188 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05003189out:
3190 mutex_unlock(&uuid_mutex);
3191 return ret;
3192}
3193
Chris Mason0d81ba52008-03-24 15:02:07 -04003194static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003195 struct extent_buffer *leaf,
3196 struct btrfs_dev_item *dev_item)
3197{
3198 struct btrfs_device *device;
3199 u64 devid;
3200 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003201 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04003202 u8 dev_uuid[BTRFS_UUID_SIZE];
3203
Chris Mason0b86a832008-03-24 15:01:56 -04003204 devid = btrfs_device_id(leaf, dev_item);
Chris Masona4437552008-04-18 10:29:38 -04003205 read_extent_buffer(leaf, dev_uuid,
3206 (unsigned long)btrfs_device_uuid(dev_item),
3207 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003208 read_extent_buffer(leaf, fs_uuid,
3209 (unsigned long)btrfs_device_fsid(dev_item),
3210 BTRFS_UUID_SIZE);
3211
3212 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
3213 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05003214 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003215 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003216 }
3217
3218 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
3219 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05003220 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003221 return -EIO;
3222
3223 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05003224 printk(KERN_WARNING "warning devid %llu missing\n",
3225 (unsigned long long)devid);
Yan Zheng2b820322008-11-17 21:11:30 -05003226 device = add_missing_dev(root, devid, dev_uuid);
3227 if (!device)
3228 return -ENOMEM;
3229 }
3230 }
3231
3232 if (device->fs_devices != root->fs_info->fs_devices) {
3233 BUG_ON(device->writeable);
3234 if (device->generation !=
3235 btrfs_device_generation(leaf, dev_item))
3236 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04003237 }
Chris Mason0b86a832008-03-24 15:01:56 -04003238
3239 fill_device_from_item(leaf, dev_item, device);
3240 device->dev_root = root->fs_info->dev_root;
Chris Masondfe25022008-05-13 13:46:40 -04003241 device->in_fs_metadata = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05003242 if (device->writeable)
3243 device->fs_devices->total_rw_bytes += device->total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003244 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003245 return ret;
3246}
3247
Chris Mason0d81ba52008-03-24 15:02:07 -04003248int btrfs_read_super_device(struct btrfs_root *root, struct extent_buffer *buf)
3249{
3250 struct btrfs_dev_item *dev_item;
3251
3252 dev_item = (struct btrfs_dev_item *)offsetof(struct btrfs_super_block,
3253 dev_item);
3254 return read_one_dev(root, buf, dev_item);
3255}
3256
Yan Zhenge4404d62008-12-12 10:03:26 -05003257int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04003258{
3259 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04003260 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04003261 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04003262 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04003263 u8 *ptr;
3264 unsigned long sb_ptr;
3265 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003266 u32 num_stripes;
3267 u32 array_size;
3268 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003269 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04003270 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04003271
Yan Zhenge4404d62008-12-12 10:03:26 -05003272 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04003273 BTRFS_SUPER_INFO_SIZE);
3274 if (!sb)
3275 return -ENOMEM;
3276 btrfs_set_buffer_uptodate(sb);
Chris Mason4008c042009-02-12 14:09:45 -05003277 btrfs_set_buffer_lockdep_class(sb, 0);
3278
Chris Masona061fc82008-05-07 11:43:44 -04003279 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003280 array_size = btrfs_super_sys_array_size(super_copy);
3281
Chris Mason0b86a832008-03-24 15:01:56 -04003282 ptr = super_copy->sys_chunk_array;
3283 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
3284 cur = 0;
3285
3286 while (cur < array_size) {
3287 disk_key = (struct btrfs_disk_key *)ptr;
3288 btrfs_disk_key_to_cpu(&key, disk_key);
3289
Chris Masona061fc82008-05-07 11:43:44 -04003290 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04003291 sb_ptr += len;
3292 cur += len;
3293
Chris Mason0d81ba52008-03-24 15:02:07 -04003294 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04003295 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04003296 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04003297 if (ret)
3298 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003299 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
3300 len = btrfs_chunk_item_size(num_stripes);
3301 } else {
Chris Mason84eed902008-04-25 09:04:37 -04003302 ret = -EIO;
3303 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003304 }
3305 ptr += len;
3306 sb_ptr += len;
3307 cur += len;
3308 }
Chris Masona061fc82008-05-07 11:43:44 -04003309 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04003310 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04003311}
3312
3313int btrfs_read_chunk_tree(struct btrfs_root *root)
3314{
3315 struct btrfs_path *path;
3316 struct extent_buffer *leaf;
3317 struct btrfs_key key;
3318 struct btrfs_key found_key;
3319 int ret;
3320 int slot;
3321
3322 root = root->fs_info->chunk_root;
3323
3324 path = btrfs_alloc_path();
3325 if (!path)
3326 return -ENOMEM;
3327
3328 /* first we search for all of the device items, and then we
3329 * read in all of the chunk items. This way we can create chunk
3330 * mappings that reference all of the devices that are afound
3331 */
3332 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
3333 key.offset = 0;
3334 key.type = 0;
3335again:
3336 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Masond3977122009-01-05 21:25:51 -05003337 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003338 leaf = path->nodes[0];
3339 slot = path->slots[0];
3340 if (slot >= btrfs_header_nritems(leaf)) {
3341 ret = btrfs_next_leaf(root, path);
3342 if (ret == 0)
3343 continue;
3344 if (ret < 0)
3345 goto error;
3346 break;
3347 }
3348 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3349 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3350 if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
3351 break;
3352 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
3353 struct btrfs_dev_item *dev_item;
3354 dev_item = btrfs_item_ptr(leaf, slot,
3355 struct btrfs_dev_item);
Chris Mason0d81ba52008-03-24 15:02:07 -04003356 ret = read_one_dev(root, leaf, dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05003357 if (ret)
3358 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003359 }
3360 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
3361 struct btrfs_chunk *chunk;
3362 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3363 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05003364 if (ret)
3365 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003366 }
3367 path->slots[0]++;
3368 }
3369 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3370 key.objectid = 0;
3371 btrfs_release_path(root, path);
3372 goto again;
3373 }
Chris Mason0b86a832008-03-24 15:01:56 -04003374 ret = 0;
3375error:
Yan Zheng2b820322008-11-17 21:11:30 -05003376 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04003377 return ret;
3378}