blob: 1efa56e18f9b905ceac4dbcb3faa0221ab331ce2 [file] [log] [blame]
Chris Mason0b86a832008-03-24 15:01:56 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18#include <linux/sched.h>
19#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -040021#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040022#include <linux/blkdev.h>
Chris Mason788f20e2008-04-28 15:29:42 -040023#include <linux/random.h>
Chris Masonb765ead2009-04-03 10:27:10 -040024#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000025#include <linux/capability.h>
Chris Mason593060d2008-03-25 16:50:33 -040026#include <asm/div64.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050027#include "compat.h"
Chris Mason0b86a832008-03-24 15:01:56 -040028#include "ctree.h"
29#include "extent_map.h"
30#include "disk-io.h"
31#include "transaction.h"
32#include "print-tree.h"
33#include "volumes.h"
Chris Mason8b712842008-06-11 16:50:36 -040034#include "async-thread.h"
Chris Mason0b86a832008-03-24 15:01:56 -040035
Yan Zheng2b820322008-11-17 21:11:30 -050036static int init_first_rw_device(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root,
38 struct btrfs_device *device);
39static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
40
Chris Mason8a4b83c2008-03-24 15:02:07 -040041static DEFINE_MUTEX(uuid_mutex);
42static LIST_HEAD(fs_uuids);
43
Chris Mason7d9eb122008-07-08 14:19:17 -040044static void lock_chunks(struct btrfs_root *root)
45{
Chris Mason7d9eb122008-07-08 14:19:17 -040046 mutex_lock(&root->fs_info->chunk_mutex);
47}
48
49static void unlock_chunks(struct btrfs_root *root)
50{
Chris Mason7d9eb122008-07-08 14:19:17 -040051 mutex_unlock(&root->fs_info->chunk_mutex);
52}
53
Yan Zhenge4404d62008-12-12 10:03:26 -050054static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
55{
56 struct btrfs_device *device;
57 WARN_ON(fs_devices->opened);
58 while (!list_empty(&fs_devices->devices)) {
59 device = list_entry(fs_devices->devices.next,
60 struct btrfs_device, dev_list);
61 list_del(&device->dev_list);
62 kfree(device->name);
63 kfree(device);
64 }
65 kfree(fs_devices);
66}
67
Chris Mason8a4b83c2008-03-24 15:02:07 -040068int btrfs_cleanup_fs_uuids(void)
69{
70 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -040071
Yan Zheng2b820322008-11-17 21:11:30 -050072 while (!list_empty(&fs_uuids)) {
73 fs_devices = list_entry(fs_uuids.next,
74 struct btrfs_fs_devices, list);
75 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -050076 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -040077 }
78 return 0;
79}
80
Chris Masona1b32a52008-09-05 16:09:51 -040081static noinline struct btrfs_device *__find_device(struct list_head *head,
82 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -040083{
84 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -040085
Qinghuang Fengc6e30872009-01-21 10:59:08 -050086 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -040087 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -040088 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -040089 return dev;
Chris Masona4437552008-04-18 10:29:38 -040090 }
Chris Mason8a4b83c2008-03-24 15:02:07 -040091 }
92 return NULL;
93}
94
Chris Masona1b32a52008-09-05 16:09:51 -040095static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -040096{
Chris Mason8a4b83c2008-03-24 15:02:07 -040097 struct btrfs_fs_devices *fs_devices;
98
Qinghuang Fengc6e30872009-01-21 10:59:08 -050099 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400100 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
101 return fs_devices;
102 }
103 return NULL;
104}
105
Chris Masonffbd5172009-04-20 15:50:09 -0400106static void requeue_list(struct btrfs_pending_bios *pending_bios,
107 struct bio *head, struct bio *tail)
108{
109
110 struct bio *old_head;
111
112 old_head = pending_bios->head;
113 pending_bios->head = head;
114 if (pending_bios->tail)
115 tail->bi_next = old_head;
116 else
117 pending_bios->tail = tail;
118}
119
Chris Mason8b712842008-06-11 16:50:36 -0400120/*
121 * we try to collect pending bios for a device so we don't get a large
122 * number of procs sending bios down to the same device. This greatly
123 * improves the schedulers ability to collect and merge the bios.
124 *
125 * But, it also turns into a long list of bios to process and that is sure
126 * to eventually make the worker thread block. The solution here is to
127 * make some progress and then put this work struct back at the end of
128 * the list if the block device is congested. This way, multiple devices
129 * can make progress from a single worker thread.
130 */
Chris Masond3977122009-01-05 21:25:51 -0500131static noinline int run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400132{
133 struct bio *pending;
134 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400135 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400136 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400137 struct bio *tail;
138 struct bio *cur;
139 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400140 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400141 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400142 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400143 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400144 int force_reg = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400145 struct blk_plug plug;
146
147 /*
148 * this function runs all the bios we've collected for
149 * a particular device. We don't want to wander off to
150 * another device without first sending all of these down.
151 * So, setup a plug here and finish it off before we return
152 */
153 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400154
Chris Masonbedf7622009-04-03 10:32:58 -0400155 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400156 fs_info = device->dev_root->fs_info;
157 limit = btrfs_async_submit_limit(fs_info);
158 limit = limit * 2 / 3;
159
Chris Mason8b712842008-06-11 16:50:36 -0400160loop:
161 spin_lock(&device->io_lock);
162
Chris Masona6837052009-02-04 09:19:41 -0500163loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400164 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400165
Chris Mason8b712842008-06-11 16:50:36 -0400166 /* take all the bios off the list at once and process them
167 * later on (without the lock held). But, remember the
168 * tail and other pointers so the bios can be properly reinserted
169 * into the list if we hit congestion
170 */
Chris Masond84275c2009-06-09 15:39:08 -0400171 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400172 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400173 force_reg = 1;
174 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400175 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400176 force_reg = 0;
177 }
Chris Masonffbd5172009-04-20 15:50:09 -0400178
179 pending = pending_bios->head;
180 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400181 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400182
183 /*
184 * if pending was null this time around, no bios need processing
185 * at all and we can stop. Otherwise it'll loop back up again
186 * and do an additional check so no bios are missed.
187 *
188 * device->running_pending is used to synchronize with the
189 * schedule_bio code.
190 */
Chris Masonffbd5172009-04-20 15:50:09 -0400191 if (device->pending_sync_bios.head == NULL &&
192 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400193 again = 0;
194 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400195 } else {
196 again = 1;
197 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400198 }
Chris Masonffbd5172009-04-20 15:50:09 -0400199
200 pending_bios->head = NULL;
201 pending_bios->tail = NULL;
202
Chris Mason8b712842008-06-11 16:50:36 -0400203 spin_unlock(&device->io_lock);
204
Chris Masond3977122009-01-05 21:25:51 -0500205 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400206
207 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400208 /* we want to work on both lists, but do more bios on the
209 * sync list than the regular list
210 */
211 if ((num_run > 32 &&
212 pending_bios != &device->pending_sync_bios &&
213 device->pending_sync_bios.head) ||
214 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
215 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400216 spin_lock(&device->io_lock);
217 requeue_list(pending_bios, pending, tail);
218 goto loop_lock;
219 }
220
Chris Mason8b712842008-06-11 16:50:36 -0400221 cur = pending;
222 pending = pending->bi_next;
223 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400224 atomic_dec(&fs_info->nr_async_bios);
225
226 if (atomic_read(&fs_info->nr_async_bios) < limit &&
227 waitqueue_active(&fs_info->async_submit_wait))
228 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400229
230 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400231
Chris Mason5ff7ba32010-03-15 10:21:30 -0400232 submit_bio(cur->bi_rw, cur);
233 num_run++;
234 batch_run++;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100235 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400236 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400237
238 /*
239 * we made progress, there is more work to do and the bdi
240 * is now congested. Back off and let other work structs
241 * run instead
242 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400243 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500244 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400245 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400246
Chris Masonb765ead2009-04-03 10:27:10 -0400247 ioc = current->io_context;
248
249 /*
250 * the main goal here is that we don't want to
251 * block if we're going to be able to submit
252 * more requests without blocking.
253 *
254 * This code does two great things, it pokes into
255 * the elevator code from a filesystem _and_
256 * it makes assumptions about how batching works.
257 */
258 if (ioc && ioc->nr_batch_requests > 0 &&
259 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
260 (last_waited == 0 ||
261 ioc->last_waited == last_waited)) {
262 /*
263 * we want to go through our batch of
264 * requests and stop. So, we copy out
265 * the ioc->last_waited time and test
266 * against it before looping
267 */
268 last_waited = ioc->last_waited;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100269 if (need_resched())
Chris Masonffbd5172009-04-20 15:50:09 -0400270 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400271 continue;
272 }
Chris Mason8b712842008-06-11 16:50:36 -0400273 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400274 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500275 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400276
277 spin_unlock(&device->io_lock);
278 btrfs_requeue_work(&device->work);
279 goto done;
280 }
281 }
Chris Masonffbd5172009-04-20 15:50:09 -0400282
Chris Mason51684082010-03-10 15:33:32 -0500283 cond_resched();
284 if (again)
285 goto loop;
286
287 spin_lock(&device->io_lock);
288 if (device->pending_bios.head || device->pending_sync_bios.head)
289 goto loop_lock;
290 spin_unlock(&device->io_lock);
291
Chris Mason8b712842008-06-11 16:50:36 -0400292done:
Chris Mason211588a2011-04-19 20:12:40 -0400293 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400294 return 0;
295}
296
Christoph Hellwigb2950862008-12-02 09:54:17 -0500297static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400298{
299 struct btrfs_device *device;
300
301 device = container_of(work, struct btrfs_device, work);
302 run_scheduled_bios(device);
303}
304
Chris Masona1b32a52008-09-05 16:09:51 -0400305static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400306 struct btrfs_super_block *disk_super,
307 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
308{
309 struct btrfs_device *device;
310 struct btrfs_fs_devices *fs_devices;
311 u64 found_transid = btrfs_super_generation(disk_super);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000312 char *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400313
314 fs_devices = find_fsid(disk_super->fsid);
315 if (!fs_devices) {
Chris Mason515dc322008-05-16 13:30:15 -0400316 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400317 if (!fs_devices)
318 return -ENOMEM;
319 INIT_LIST_HEAD(&fs_devices->devices);
Chris Masonb3075712008-04-22 09:22:07 -0400320 INIT_LIST_HEAD(&fs_devices->alloc_list);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400321 list_add(&fs_devices->list, &fs_uuids);
322 memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
323 fs_devices->latest_devid = devid;
324 fs_devices->latest_trans = found_transid;
Chris Masone5e9a522009-06-10 15:17:02 -0400325 mutex_init(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400326 device = NULL;
327 } else {
Chris Masona4437552008-04-18 10:29:38 -0400328 device = __find_device(&fs_devices->devices, devid,
329 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400330 }
331 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500332 if (fs_devices->opened)
333 return -EBUSY;
334
Chris Mason8a4b83c2008-03-24 15:02:07 -0400335 device = kzalloc(sizeof(*device), GFP_NOFS);
336 if (!device) {
337 /* we can safely leave the fs_devices entry around */
338 return -ENOMEM;
339 }
340 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -0400341 device->work.func = pending_bios_fn;
Chris Masona4437552008-04-18 10:29:38 -0400342 memcpy(device->uuid, disk_super->dev_item.uuid,
343 BTRFS_UUID_SIZE);
Chris Masonb248a412008-04-14 09:48:18 -0400344 spin_lock_init(&device->io_lock);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400345 device->name = kstrdup(path, GFP_NOFS);
346 if (!device->name) {
347 kfree(device);
348 return -ENOMEM;
349 }
Yan Zheng2b820322008-11-17 21:11:30 -0500350 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -0400351
352 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000353 list_add_rcu(&device->dev_list, &fs_devices->devices);
Chris Masone5e9a522009-06-10 15:17:02 -0400354 mutex_unlock(&fs_devices->device_list_mutex);
355
Yan Zheng2b820322008-11-17 21:11:30 -0500356 device->fs_devices = fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400357 fs_devices->num_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -0500358 } else if (!device->name || strcmp(device->name, path)) {
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000359 name = kstrdup(path, GFP_NOFS);
360 if (!name)
361 return -ENOMEM;
362 kfree(device->name);
363 device->name = name;
Chris Masoncd02dca2010-12-13 14:56:23 -0500364 if (device->missing) {
365 fs_devices->missing_devices--;
366 device->missing = 0;
367 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400368 }
369
370 if (found_transid > fs_devices->latest_trans) {
371 fs_devices->latest_devid = devid;
372 fs_devices->latest_trans = found_transid;
373 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400374 *fs_devices_ret = fs_devices;
375 return 0;
376}
377
Yan Zhenge4404d62008-12-12 10:03:26 -0500378static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
379{
380 struct btrfs_fs_devices *fs_devices;
381 struct btrfs_device *device;
382 struct btrfs_device *orig_dev;
383
384 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
385 if (!fs_devices)
386 return ERR_PTR(-ENOMEM);
387
388 INIT_LIST_HEAD(&fs_devices->devices);
389 INIT_LIST_HEAD(&fs_devices->alloc_list);
390 INIT_LIST_HEAD(&fs_devices->list);
Chris Masone5e9a522009-06-10 15:17:02 -0400391 mutex_init(&fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500392 fs_devices->latest_devid = orig->latest_devid;
393 fs_devices->latest_trans = orig->latest_trans;
394 memcpy(fs_devices->fsid, orig->fsid, sizeof(fs_devices->fsid));
395
Xiao Guangrong46224702011-04-20 10:08:47 +0000396 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500397 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
398 device = kzalloc(sizeof(*device), GFP_NOFS);
399 if (!device)
400 goto error;
401
402 device->name = kstrdup(orig_dev->name, GFP_NOFS);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400403 if (!device->name) {
404 kfree(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500405 goto error;
Julia Lawallfd2696f2009-09-29 13:51:04 -0400406 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500407
408 device->devid = orig_dev->devid;
409 device->work.func = pending_bios_fn;
410 memcpy(device->uuid, orig_dev->uuid, sizeof(device->uuid));
Yan Zhenge4404d62008-12-12 10:03:26 -0500411 spin_lock_init(&device->io_lock);
412 INIT_LIST_HEAD(&device->dev_list);
413 INIT_LIST_HEAD(&device->dev_alloc_list);
414
415 list_add(&device->dev_list, &fs_devices->devices);
416 device->fs_devices = fs_devices;
417 fs_devices->num_devices++;
418 }
419 return fs_devices;
420error:
421 free_fs_devices(fs_devices);
422 return ERR_PTR(-ENOMEM);
423}
424
Chris Masondfe25022008-05-13 13:46:40 -0400425int btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices)
426{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500427 struct btrfs_device *device, *next;
Chris Masondfe25022008-05-13 13:46:40 -0400428
429 mutex_lock(&uuid_mutex);
430again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000431 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500432 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Yan Zheng2b820322008-11-17 21:11:30 -0500433 if (device->in_fs_metadata)
434 continue;
435
436 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100437 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500438 device->bdev = NULL;
439 fs_devices->open_devices--;
440 }
441 if (device->writeable) {
442 list_del_init(&device->dev_alloc_list);
443 device->writeable = 0;
444 fs_devices->rw_devices--;
445 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500446 list_del_init(&device->dev_list);
447 fs_devices->num_devices--;
448 kfree(device->name);
449 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400450 }
Yan Zheng2b820322008-11-17 21:11:30 -0500451
452 if (fs_devices->seed) {
453 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500454 goto again;
455 }
456
Chris Masondfe25022008-05-13 13:46:40 -0400457 mutex_unlock(&uuid_mutex);
458 return 0;
459}
Chris Masona0af4692008-05-13 16:03:06 -0400460
Xiao Guangrong1f781602011-04-20 10:09:16 +0000461static void __free_device(struct work_struct *work)
462{
463 struct btrfs_device *device;
464
465 device = container_of(work, struct btrfs_device, rcu_work);
466
467 if (device->bdev)
468 blkdev_put(device->bdev, device->mode);
469
470 kfree(device->name);
471 kfree(device);
472}
473
474static void free_device(struct rcu_head *head)
475{
476 struct btrfs_device *device;
477
478 device = container_of(head, struct btrfs_device, rcu);
479
480 INIT_WORK(&device->rcu_work, __free_device);
481 schedule_work(&device->rcu_work);
482}
483
Yan Zheng2b820322008-11-17 21:11:30 -0500484static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400485{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400486 struct btrfs_device *device;
Yan Zhenge4404d62008-12-12 10:03:26 -0500487
Yan Zheng2b820322008-11-17 21:11:30 -0500488 if (--fs_devices->opened > 0)
489 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400490
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000491 mutex_lock(&fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500492 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Xiao Guangrong1f781602011-04-20 10:09:16 +0000493 struct btrfs_device *new_device;
494
495 if (device->bdev)
Chris Masona0af4692008-05-13 16:03:06 -0400496 fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +0000497
Yan Zheng2b820322008-11-17 21:11:30 -0500498 if (device->writeable) {
499 list_del_init(&device->dev_alloc_list);
500 fs_devices->rw_devices--;
501 }
502
Xiao Guangrong1f781602011-04-20 10:09:16 +0000503 new_device = kmalloc(sizeof(*new_device), GFP_NOFS);
504 BUG_ON(!new_device);
505 memcpy(new_device, device, sizeof(*new_device));
506 new_device->name = kstrdup(device->name, GFP_NOFS);
Arne Jansen5f3f3022011-05-30 08:36:16 +0000507 BUG_ON(device->name && !new_device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000508 new_device->bdev = NULL;
509 new_device->writeable = 0;
510 new_device->in_fs_metadata = 0;
511 list_replace_rcu(&device->dev_list, &new_device->dev_list);
512
513 call_rcu(&device->rcu, free_device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400514 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000515 mutex_unlock(&fs_devices->device_list_mutex);
516
Yan Zhenge4404d62008-12-12 10:03:26 -0500517 WARN_ON(fs_devices->open_devices);
518 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500519 fs_devices->opened = 0;
520 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500521
Chris Mason8a4b83c2008-03-24 15:02:07 -0400522 return 0;
523}
524
Yan Zheng2b820322008-11-17 21:11:30 -0500525int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
526{
Yan Zhenge4404d62008-12-12 10:03:26 -0500527 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500528 int ret;
529
530 mutex_lock(&uuid_mutex);
531 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500532 if (!fs_devices->opened) {
533 seed_devices = fs_devices->seed;
534 fs_devices->seed = NULL;
535 }
Yan Zheng2b820322008-11-17 21:11:30 -0500536 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500537
538 while (seed_devices) {
539 fs_devices = seed_devices;
540 seed_devices = fs_devices->seed;
541 __btrfs_close_devices(fs_devices);
542 free_fs_devices(fs_devices);
543 }
Yan Zheng2b820322008-11-17 21:11:30 -0500544 return ret;
545}
546
Yan Zhenge4404d62008-12-12 10:03:26 -0500547static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
548 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400549{
550 struct block_device *bdev;
551 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400552 struct btrfs_device *device;
Chris Masona0af4692008-05-13 16:03:06 -0400553 struct block_device *latest_bdev = NULL;
554 struct buffer_head *bh;
555 struct btrfs_super_block *disk_super;
556 u64 latest_devid = 0;
557 u64 latest_transid = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400558 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500559 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400560 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400561
Tejun Heod4d77622010-11-13 11:55:18 +0100562 flags |= FMODE_EXCL;
563
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500564 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400565 if (device->bdev)
566 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400567 if (!device->name)
568 continue;
569
Tejun Heod4d77622010-11-13 11:55:18 +0100570 bdev = blkdev_get_by_path(device->name, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400571 if (IS_ERR(bdev)) {
Chris Masond3977122009-01-05 21:25:51 -0500572 printk(KERN_INFO "open %s failed\n", device->name);
Chris Masona0af4692008-05-13 16:03:06 -0400573 goto error;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400574 }
Chris Masona061fc82008-05-07 11:43:44 -0400575 set_blocksize(bdev, 4096);
Chris Masona0af4692008-05-13 16:03:06 -0400576
Yan Zhenga512bbf2008-12-08 16:46:26 -0500577 bh = btrfs_read_dev_super(bdev);
Dave Young20b45072011-01-08 10:09:13 +0000578 if (!bh) {
579 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400580 goto error_close;
Dave Young20b45072011-01-08 10:09:13 +0000581 }
Chris Masona0af4692008-05-13 16:03:06 -0400582
583 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000584 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400585 if (devid != device->devid)
586 goto error_brelse;
587
Yan Zheng2b820322008-11-17 21:11:30 -0500588 if (memcmp(device->uuid, disk_super->dev_item.uuid,
589 BTRFS_UUID_SIZE))
590 goto error_brelse;
591
592 device->generation = btrfs_super_generation(disk_super);
593 if (!latest_transid || device->generation > latest_transid) {
Chris Masona0af4692008-05-13 16:03:06 -0400594 latest_devid = devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500595 latest_transid = device->generation;
Chris Masona0af4692008-05-13 16:03:06 -0400596 latest_bdev = bdev;
597 }
598
Yan Zheng2b820322008-11-17 21:11:30 -0500599 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
600 device->writeable = 0;
601 } else {
602 device->writeable = !bdev_read_only(bdev);
603 seeding = 0;
604 }
605
Chris Mason8a4b83c2008-03-24 15:02:07 -0400606 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400607 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500608 device->mode = flags;
609
Chris Masonc289811c2009-06-10 09:51:32 -0400610 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
611 fs_devices->rotating = 1;
612
Chris Masona0af4692008-05-13 16:03:06 -0400613 fs_devices->open_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -0500614 if (device->writeable) {
615 fs_devices->rw_devices++;
616 list_add(&device->dev_alloc_list,
617 &fs_devices->alloc_list);
618 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000619 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400620 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400621
Chris Masona0af4692008-05-13 16:03:06 -0400622error_brelse:
623 brelse(bh);
624error_close:
Tejun Heod4d77622010-11-13 11:55:18 +0100625 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400626error:
627 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400628 }
Chris Masona0af4692008-05-13 16:03:06 -0400629 if (fs_devices->open_devices == 0) {
630 ret = -EIO;
631 goto out;
632 }
Yan Zheng2b820322008-11-17 21:11:30 -0500633 fs_devices->seeding = seeding;
634 fs_devices->opened = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400635 fs_devices->latest_bdev = latest_bdev;
636 fs_devices->latest_devid = latest_devid;
637 fs_devices->latest_trans = latest_transid;
Yan Zheng2b820322008-11-17 21:11:30 -0500638 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400639out:
Yan Zheng2b820322008-11-17 21:11:30 -0500640 return ret;
641}
642
643int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500644 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500645{
646 int ret;
647
648 mutex_lock(&uuid_mutex);
649 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500650 fs_devices->opened++;
651 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500652 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500653 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500654 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400655 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400656 return ret;
657}
658
Christoph Hellwig97288f22008-12-02 06:36:09 -0500659int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400660 struct btrfs_fs_devices **fs_devices_ret)
661{
662 struct btrfs_super_block *disk_super;
663 struct block_device *bdev;
664 struct buffer_head *bh;
665 int ret;
666 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -0400667 u64 transid;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400668
669 mutex_lock(&uuid_mutex);
670
Tejun Heod4d77622010-11-13 11:55:18 +0100671 flags |= FMODE_EXCL;
672 bdev = blkdev_get_by_path(path, flags, holder);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400673
674 if (IS_ERR(bdev)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400675 ret = PTR_ERR(bdev);
676 goto error;
677 }
678
679 ret = set_blocksize(bdev, 4096);
680 if (ret)
681 goto error_close;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500682 bh = btrfs_read_dev_super(bdev);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400683 if (!bh) {
Dave Young20b45072011-01-08 10:09:13 +0000684 ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400685 goto error_close;
686 }
687 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000688 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -0400689 transid = btrfs_super_generation(disk_super);
Chris Mason7ae9c092008-04-18 10:29:49 -0400690 if (disk_super->label[0])
Chris Masond3977122009-01-05 21:25:51 -0500691 printk(KERN_INFO "device label %s ", disk_super->label);
Ilya Dryomov22b63a22011-02-09 16:05:31 +0200692 else
693 printk(KERN_INFO "device fsid %pU ", disk_super->fsid);
Roland Dreier119e10c2009-01-21 10:49:16 -0500694 printk(KERN_CONT "devid %llu transid %llu %s\n",
Chris Masond3977122009-01-05 21:25:51 -0500695 (unsigned long long)devid, (unsigned long long)transid, path);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400696 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
697
Chris Mason8a4b83c2008-03-24 15:02:07 -0400698 brelse(bh);
699error_close:
Tejun Heod4d77622010-11-13 11:55:18 +0100700 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400701error:
702 mutex_unlock(&uuid_mutex);
703 return ret;
704}
Chris Mason0b86a832008-03-24 15:01:56 -0400705
Miao Xie6d07bce2011-01-05 10:07:31 +0000706/* helper to account the used device space in the range */
707int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
708 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -0400709{
710 struct btrfs_key key;
711 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +0000712 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -0500713 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +0000714 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400715 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +0000716 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400717 struct extent_buffer *l;
718
Miao Xie6d07bce2011-01-05 10:07:31 +0000719 *length = 0;
720
721 if (start >= device->total_bytes)
722 return 0;
723
Yan Zheng2b820322008-11-17 21:11:30 -0500724 path = btrfs_alloc_path();
725 if (!path)
726 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -0400727 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -0400728
Chris Mason0b86a832008-03-24 15:01:56 -0400729 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +0000730 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -0400731 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +0000732
733 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -0400734 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000735 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400736 if (ret > 0) {
737 ret = btrfs_previous_item(root, path, key.objectid, key.type);
738 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000739 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -0400740 }
Miao Xie6d07bce2011-01-05 10:07:31 +0000741
Chris Mason0b86a832008-03-24 15:01:56 -0400742 while (1) {
743 l = path->nodes[0];
744 slot = path->slots[0];
745 if (slot >= btrfs_header_nritems(l)) {
746 ret = btrfs_next_leaf(root, path);
747 if (ret == 0)
748 continue;
749 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +0000750 goto out;
751
752 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400753 }
754 btrfs_item_key_to_cpu(l, &key, slot);
755
756 if (key.objectid < device->devid)
757 goto next;
758
759 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +0000760 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400761
Chris Masond3977122009-01-05 21:25:51 -0500762 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -0400763 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -0400764
Chris Mason0b86a832008-03-24 15:01:56 -0400765 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +0000766 extent_end = key.offset + btrfs_dev_extent_length(l,
767 dev_extent);
768 if (key.offset <= start && extent_end > end) {
769 *length = end - start + 1;
770 break;
771 } else if (key.offset <= start && extent_end > start)
772 *length += extent_end - start;
773 else if (key.offset > start && extent_end <= end)
774 *length += extent_end - key.offset;
775 else if (key.offset > start && key.offset <= end) {
776 *length += end - key.offset + 1;
777 break;
778 } else if (key.offset > end)
779 break;
780
781next:
782 path->slots[0]++;
783 }
784 ret = 0;
785out:
786 btrfs_free_path(path);
787 return ret;
788}
789
Chris Mason0b86a832008-03-24 15:01:56 -0400790/*
Miao Xie7bfc8372011-01-05 10:07:26 +0000791 * find_free_dev_extent - find free space in the specified device
792 * @trans: transaction handler
793 * @device: the device which we search the free space in
794 * @num_bytes: the size of the free space that we need
795 * @start: store the start of the free space.
796 * @len: the size of the free space. that we find, or the size of the max
797 * free space if we don't find suitable free space
798 *
Chris Mason0b86a832008-03-24 15:01:56 -0400799 * this uses a pretty simple search, the expectation is that it is
800 * called very infrequently and that a given device has a small number
801 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +0000802 *
803 * @start is used to store the start of the free space if we find. But if we
804 * don't find suitable free space, it will be used to store the start position
805 * of the max free space.
806 *
807 * @len is used to store the size of the free space that we find.
808 * But if we don't find suitable free space, it is used to store the size of
809 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -0400810 */
811int find_free_dev_extent(struct btrfs_trans_handle *trans,
812 struct btrfs_device *device, u64 num_bytes,
Miao Xie7bfc8372011-01-05 10:07:26 +0000813 u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -0400814{
815 struct btrfs_key key;
816 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +0000817 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -0400818 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +0000819 u64 hole_size;
820 u64 max_hole_start;
821 u64 max_hole_size;
822 u64 extent_end;
823 u64 search_start;
Chris Mason0b86a832008-03-24 15:01:56 -0400824 u64 search_end = device->total_bytes;
825 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +0000826 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -0400827 struct extent_buffer *l;
828
Chris Mason0b86a832008-03-24 15:01:56 -0400829 /* FIXME use last free of some kind */
830
831 /* we don't want to overwrite the superblock on the drive,
832 * so we make sure to start at an offset of at least 1MB
833 */
Arne Jansena9c9bf62011-04-12 11:01:20 +0200834 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
Chris Mason0b86a832008-03-24 15:01:56 -0400835
Miao Xie7bfc8372011-01-05 10:07:26 +0000836 max_hole_start = search_start;
837 max_hole_size = 0;
838
839 if (search_start >= search_end) {
840 ret = -ENOSPC;
841 goto error;
842 }
843
844 path = btrfs_alloc_path();
845 if (!path) {
846 ret = -ENOMEM;
847 goto error;
848 }
849 path->reada = 2;
850
Chris Mason0b86a832008-03-24 15:01:56 -0400851 key.objectid = device->devid;
852 key.offset = search_start;
853 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +0000854
Chris Mason0b86a832008-03-24 15:01:56 -0400855 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
856 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000857 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -0400858 if (ret > 0) {
859 ret = btrfs_previous_item(root, path, key.objectid, key.type);
860 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000861 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -0400862 }
Miao Xie7bfc8372011-01-05 10:07:26 +0000863
Chris Mason0b86a832008-03-24 15:01:56 -0400864 while (1) {
865 l = path->nodes[0];
866 slot = path->slots[0];
867 if (slot >= btrfs_header_nritems(l)) {
868 ret = btrfs_next_leaf(root, path);
869 if (ret == 0)
870 continue;
871 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +0000872 goto out;
873
874 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400875 }
876 btrfs_item_key_to_cpu(l, &key, slot);
877
878 if (key.objectid < device->devid)
879 goto next;
880
881 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +0000882 break;
Chris Mason0b86a832008-03-24 15:01:56 -0400883
Chris Mason0b86a832008-03-24 15:01:56 -0400884 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
885 goto next;
886
Miao Xie7bfc8372011-01-05 10:07:26 +0000887 if (key.offset > search_start) {
888 hole_size = key.offset - search_start;
889
890 if (hole_size > max_hole_size) {
891 max_hole_start = search_start;
892 max_hole_size = hole_size;
893 }
894
895 /*
896 * If this free space is greater than which we need,
897 * it must be the max free space that we have found
898 * until now, so max_hole_start must point to the start
899 * of this free space and the length of this free space
900 * is stored in max_hole_size. Thus, we return
901 * max_hole_start and max_hole_size and go back to the
902 * caller.
903 */
904 if (hole_size >= num_bytes) {
905 ret = 0;
906 goto out;
907 }
908 }
909
Chris Mason0b86a832008-03-24 15:01:56 -0400910 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +0000911 extent_end = key.offset + btrfs_dev_extent_length(l,
912 dev_extent);
913 if (extent_end > search_start)
914 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -0400915next:
916 path->slots[0]++;
917 cond_resched();
918 }
Chris Mason0b86a832008-03-24 15:01:56 -0400919
Miao Xie7bfc8372011-01-05 10:07:26 +0000920 hole_size = search_end- search_start;
921 if (hole_size > max_hole_size) {
922 max_hole_start = search_start;
923 max_hole_size = hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -0400924 }
Chris Mason0b86a832008-03-24 15:01:56 -0400925
Miao Xie7bfc8372011-01-05 10:07:26 +0000926 /* See above. */
927 if (hole_size < num_bytes)
928 ret = -ENOSPC;
929 else
930 ret = 0;
931
932out:
Yan Zheng2b820322008-11-17 21:11:30 -0500933 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +0000934error:
935 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +0000936 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +0000937 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -0400938 return ret;
939}
940
Christoph Hellwigb2950862008-12-02 09:54:17 -0500941static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -0400942 struct btrfs_device *device,
943 u64 start)
944{
945 int ret;
946 struct btrfs_path *path;
947 struct btrfs_root *root = device->dev_root;
948 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -0400949 struct btrfs_key found_key;
950 struct extent_buffer *leaf = NULL;
951 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -0400952
953 path = btrfs_alloc_path();
954 if (!path)
955 return -ENOMEM;
956
957 key.objectid = device->devid;
958 key.offset = start;
959 key.type = BTRFS_DEV_EXTENT_KEY;
960
961 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -0400962 if (ret > 0) {
963 ret = btrfs_previous_item(root, path, key.objectid,
964 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +0000965 if (ret)
966 goto out;
Chris Masona061fc82008-05-07 11:43:44 -0400967 leaf = path->nodes[0];
968 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
969 extent = btrfs_item_ptr(leaf, path->slots[0],
970 struct btrfs_dev_extent);
971 BUG_ON(found_key.offset > start || found_key.offset +
972 btrfs_dev_extent_length(leaf, extent) < start);
Chris Masona061fc82008-05-07 11:43:44 -0400973 } else if (ret == 0) {
974 leaf = path->nodes[0];
975 extent = btrfs_item_ptr(leaf, path->slots[0],
976 struct btrfs_dev_extent);
977 }
Chris Mason8f18cf12008-04-25 16:53:30 -0400978 BUG_ON(ret);
979
Chris Masondfe25022008-05-13 13:46:40 -0400980 if (device->bytes_used > 0)
981 device->bytes_used -= btrfs_dev_extent_length(leaf, extent);
Chris Mason8f18cf12008-04-25 16:53:30 -0400982 ret = btrfs_del_item(trans, root, path);
Chris Mason8f18cf12008-04-25 16:53:30 -0400983
Tsutomu Itohb0b802d2011-05-19 07:03:42 +0000984out:
Chris Mason8f18cf12008-04-25 16:53:30 -0400985 btrfs_free_path(path);
986 return ret;
987}
988
Yan Zheng2b820322008-11-17 21:11:30 -0500989int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -0400990 struct btrfs_device *device,
Chris Masone17cade2008-04-15 15:41:47 -0400991 u64 chunk_tree, u64 chunk_objectid,
Yan Zheng2b820322008-11-17 21:11:30 -0500992 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -0400993{
994 int ret;
995 struct btrfs_path *path;
996 struct btrfs_root *root = device->dev_root;
997 struct btrfs_dev_extent *extent;
998 struct extent_buffer *leaf;
999 struct btrfs_key key;
1000
Chris Masondfe25022008-05-13 13:46:40 -04001001 WARN_ON(!device->in_fs_metadata);
Chris Mason0b86a832008-03-24 15:01:56 -04001002 path = btrfs_alloc_path();
1003 if (!path)
1004 return -ENOMEM;
1005
Chris Mason0b86a832008-03-24 15:01:56 -04001006 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001007 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001008 key.type = BTRFS_DEV_EXTENT_KEY;
1009 ret = btrfs_insert_empty_item(trans, root, path, &key,
1010 sizeof(*extent));
1011 BUG_ON(ret);
1012
1013 leaf = path->nodes[0];
1014 extent = btrfs_item_ptr(leaf, path->slots[0],
1015 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001016 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1017 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1018 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1019
1020 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
1021 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
1022 BTRFS_UUID_SIZE);
1023
Chris Mason0b86a832008-03-24 15:01:56 -04001024 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1025 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001026 btrfs_free_path(path);
1027 return ret;
1028}
1029
Chris Masona1b32a52008-09-05 16:09:51 -04001030static noinline int find_next_chunk(struct btrfs_root *root,
1031 u64 objectid, u64 *offset)
Chris Mason0b86a832008-03-24 15:01:56 -04001032{
1033 struct btrfs_path *path;
1034 int ret;
1035 struct btrfs_key key;
Chris Masone17cade2008-04-15 15:41:47 -04001036 struct btrfs_chunk *chunk;
Chris Mason0b86a832008-03-24 15:01:56 -04001037 struct btrfs_key found_key;
1038
1039 path = btrfs_alloc_path();
1040 BUG_ON(!path);
1041
Chris Masone17cade2008-04-15 15:41:47 -04001042 key.objectid = objectid;
Chris Mason0b86a832008-03-24 15:01:56 -04001043 key.offset = (u64)-1;
1044 key.type = BTRFS_CHUNK_ITEM_KEY;
1045
1046 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1047 if (ret < 0)
1048 goto error;
1049
1050 BUG_ON(ret == 0);
1051
1052 ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
1053 if (ret) {
Chris Masone17cade2008-04-15 15:41:47 -04001054 *offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001055 } else {
1056 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1057 path->slots[0]);
Chris Masone17cade2008-04-15 15:41:47 -04001058 if (found_key.objectid != objectid)
1059 *offset = 0;
1060 else {
1061 chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
1062 struct btrfs_chunk);
1063 *offset = found_key.offset +
1064 btrfs_chunk_length(path->nodes[0], chunk);
1065 }
Chris Mason0b86a832008-03-24 15:01:56 -04001066 }
1067 ret = 0;
1068error:
1069 btrfs_free_path(path);
1070 return ret;
1071}
1072
Yan Zheng2b820322008-11-17 21:11:30 -05001073static noinline int find_next_devid(struct btrfs_root *root, u64 *objectid)
Chris Mason0b86a832008-03-24 15:01:56 -04001074{
1075 int ret;
1076 struct btrfs_key key;
1077 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001078 struct btrfs_path *path;
1079
1080 root = root->fs_info->chunk_root;
1081
1082 path = btrfs_alloc_path();
1083 if (!path)
1084 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001085
1086 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1087 key.type = BTRFS_DEV_ITEM_KEY;
1088 key.offset = (u64)-1;
1089
1090 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1091 if (ret < 0)
1092 goto error;
1093
1094 BUG_ON(ret == 0);
1095
1096 ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
1097 BTRFS_DEV_ITEM_KEY);
1098 if (ret) {
1099 *objectid = 1;
1100 } else {
1101 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1102 path->slots[0]);
1103 *objectid = found_key.offset + 1;
1104 }
1105 ret = 0;
1106error:
Yan Zheng2b820322008-11-17 21:11:30 -05001107 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001108 return ret;
1109}
1110
1111/*
1112 * the device information is stored in the chunk root
1113 * the btrfs_device struct should be fully filled in
1114 */
1115int btrfs_add_device(struct btrfs_trans_handle *trans,
1116 struct btrfs_root *root,
1117 struct btrfs_device *device)
1118{
1119 int ret;
1120 struct btrfs_path *path;
1121 struct btrfs_dev_item *dev_item;
1122 struct extent_buffer *leaf;
1123 struct btrfs_key key;
1124 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001125
1126 root = root->fs_info->chunk_root;
1127
1128 path = btrfs_alloc_path();
1129 if (!path)
1130 return -ENOMEM;
1131
Chris Mason0b86a832008-03-24 15:01:56 -04001132 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1133 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001134 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001135
1136 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001137 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001138 if (ret)
1139 goto out;
1140
1141 leaf = path->nodes[0];
1142 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1143
1144 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001145 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001146 btrfs_set_device_type(leaf, dev_item, device->type);
1147 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1148 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1149 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Mason0b86a832008-03-24 15:01:56 -04001150 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1151 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
Chris Masone17cade2008-04-15 15:41:47 -04001152 btrfs_set_device_group(leaf, dev_item, 0);
1153 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1154 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001155 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001156
Chris Mason0b86a832008-03-24 15:01:56 -04001157 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001158 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05001159 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1160 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001161 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001162
Yan Zheng2b820322008-11-17 21:11:30 -05001163 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001164out:
1165 btrfs_free_path(path);
1166 return ret;
1167}
Chris Mason8f18cf12008-04-25 16:53:30 -04001168
Chris Masona061fc82008-05-07 11:43:44 -04001169static int btrfs_rm_dev_item(struct btrfs_root *root,
1170 struct btrfs_device *device)
1171{
1172 int ret;
1173 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001174 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001175 struct btrfs_trans_handle *trans;
1176
1177 root = root->fs_info->chunk_root;
1178
1179 path = btrfs_alloc_path();
1180 if (!path)
1181 return -ENOMEM;
1182
Yan, Zhenga22285a2010-05-16 10:48:46 -04001183 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001184 if (IS_ERR(trans)) {
1185 btrfs_free_path(path);
1186 return PTR_ERR(trans);
1187 }
Chris Masona061fc82008-05-07 11:43:44 -04001188 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1189 key.type = BTRFS_DEV_ITEM_KEY;
1190 key.offset = device->devid;
Chris Mason7d9eb122008-07-08 14:19:17 -04001191 lock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001192
1193 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1194 if (ret < 0)
1195 goto out;
1196
1197 if (ret > 0) {
1198 ret = -ENOENT;
1199 goto out;
1200 }
1201
1202 ret = btrfs_del_item(trans, root, path);
1203 if (ret)
1204 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001205out:
1206 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04001207 unlock_chunks(root);
Chris Masona061fc82008-05-07 11:43:44 -04001208 btrfs_commit_transaction(trans, root);
1209 return ret;
1210}
1211
1212int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1213{
1214 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001215 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001216 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001217 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001218 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001219 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001220 u64 all_avail;
1221 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001222 u64 num_devices;
1223 u8 *dev_uuid;
Chris Masona061fc82008-05-07 11:43:44 -04001224 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001225 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001226
Chris Masona061fc82008-05-07 11:43:44 -04001227 mutex_lock(&uuid_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001228 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001229
1230 all_avail = root->fs_info->avail_data_alloc_bits |
1231 root->fs_info->avail_system_alloc_bits |
1232 root->fs_info->avail_metadata_alloc_bits;
1233
1234 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001235 root->fs_info->fs_devices->num_devices <= 4) {
Chris Masond3977122009-01-05 21:25:51 -05001236 printk(KERN_ERR "btrfs: unable to go below four devices "
1237 "on raid10\n");
Chris Masona061fc82008-05-07 11:43:44 -04001238 ret = -EINVAL;
1239 goto out;
1240 }
1241
1242 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) &&
Josef Bacik035fe032010-01-27 02:09:38 +00001243 root->fs_info->fs_devices->num_devices <= 2) {
Chris Masond3977122009-01-05 21:25:51 -05001244 printk(KERN_ERR "btrfs: unable to go below two "
1245 "devices on raid1\n");
Chris Masona061fc82008-05-07 11:43:44 -04001246 ret = -EINVAL;
1247 goto out;
1248 }
1249
Chris Masondfe25022008-05-13 13:46:40 -04001250 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001251 struct list_head *devices;
1252 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001253
Chris Masondfe25022008-05-13 13:46:40 -04001254 device = NULL;
1255 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001256 /*
1257 * It is safe to read the devices since the volume_mutex
1258 * is held.
1259 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001260 list_for_each_entry(tmp, devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001261 if (tmp->in_fs_metadata && !tmp->bdev) {
1262 device = tmp;
1263 break;
1264 }
1265 }
1266 bdev = NULL;
1267 bh = NULL;
1268 disk_super = NULL;
1269 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05001270 printk(KERN_ERR "btrfs: no missing devices found to "
1271 "remove\n");
Chris Masondfe25022008-05-13 13:46:40 -04001272 goto out;
1273 }
Chris Masondfe25022008-05-13 13:46:40 -04001274 } else {
Tejun Heod4d77622010-11-13 11:55:18 +01001275 bdev = blkdev_get_by_path(device_path, FMODE_READ | FMODE_EXCL,
1276 root->fs_info->bdev_holder);
Chris Masondfe25022008-05-13 13:46:40 -04001277 if (IS_ERR(bdev)) {
1278 ret = PTR_ERR(bdev);
1279 goto out;
1280 }
1281
Yan Zheng2b820322008-11-17 21:11:30 -05001282 set_blocksize(bdev, 4096);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001283 bh = btrfs_read_dev_super(bdev);
Chris Masondfe25022008-05-13 13:46:40 -04001284 if (!bh) {
Dave Young20b45072011-01-08 10:09:13 +00001285 ret = -EINVAL;
Chris Masondfe25022008-05-13 13:46:40 -04001286 goto error_close;
1287 }
1288 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001289 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001290 dev_uuid = disk_super->dev_item.uuid;
1291 device = btrfs_find_device(root, devid, dev_uuid,
1292 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001293 if (!device) {
1294 ret = -ENOENT;
1295 goto error_brelse;
1296 }
Chris Masondfe25022008-05-13 13:46:40 -04001297 }
Yan Zheng2b820322008-11-17 21:11:30 -05001298
1299 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Chris Masond3977122009-01-05 21:25:51 -05001300 printk(KERN_ERR "btrfs: unable to remove the only writeable "
1301 "device\n");
Yan Zheng2b820322008-11-17 21:11:30 -05001302 ret = -EINVAL;
1303 goto error_brelse;
1304 }
1305
1306 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001307 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001308 list_del_init(&device->dev_alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001309 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001310 root->fs_info->fs_devices->rw_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001311 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001312 }
Chris Masona061fc82008-05-07 11:43:44 -04001313
1314 ret = btrfs_shrink_device(device, 0);
1315 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001316 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001317
Chris Masona061fc82008-05-07 11:43:44 -04001318 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1319 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001320 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001321
Yan Zheng2b820322008-11-17 21:11:30 -05001322 device->in_fs_metadata = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01001323 btrfs_scrub_cancel_dev(root, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001324
1325 /*
1326 * the device list mutex makes sure that we don't change
1327 * the device list while someone else is writing out all
1328 * the device supers.
1329 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001330
1331 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001332 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001333 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001334
Yan Zhenge4404d62008-12-12 10:03:26 -05001335 device->fs_devices->num_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001336
Chris Masoncd02dca2010-12-13 14:56:23 -05001337 if (device->missing)
1338 root->fs_info->fs_devices->missing_devices--;
1339
Yan Zheng2b820322008-11-17 21:11:30 -05001340 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1341 struct btrfs_device, dev_list);
1342 if (device->bdev == root->fs_info->sb->s_bdev)
1343 root->fs_info->sb->s_bdev = next_device->bdev;
1344 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1345 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1346
Xiao Guangrong1f781602011-04-20 10:09:16 +00001347 if (device->bdev)
Yan Zhenge4404d62008-12-12 10:03:26 -05001348 device->fs_devices->open_devices--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001349
1350 call_rcu(&device->rcu, free_device);
1351 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001352
Yan Zheng2b820322008-11-17 21:11:30 -05001353 num_devices = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
1354 btrfs_set_super_num_devices(&root->fs_info->super_copy, num_devices);
1355
Xiao Guangrong1f781602011-04-20 10:09:16 +00001356 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001357 struct btrfs_fs_devices *fs_devices;
1358 fs_devices = root->fs_info->fs_devices;
1359 while (fs_devices) {
Xiao Guangrong1f781602011-04-20 10:09:16 +00001360 if (fs_devices->seed == cur_devices)
Yan Zhenge4404d62008-12-12 10:03:26 -05001361 break;
1362 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001363 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001364 fs_devices->seed = cur_devices->seed;
1365 cur_devices->seed = NULL;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001366 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001367 __btrfs_close_devices(cur_devices);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001368 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001369 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001370 }
1371
1372 /*
1373 * at this point, the device is zero sized. We want to
1374 * remove it from the devices list and zero out the old super
1375 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001376 if (clear_super) {
Chris Masondfe25022008-05-13 13:46:40 -04001377 /* make sure this device isn't detected as part of
1378 * the FS anymore
1379 */
1380 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1381 set_buffer_dirty(bh);
1382 sync_dirty_buffer(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001383 }
Chris Masona061fc82008-05-07 11:43:44 -04001384
Chris Masona061fc82008-05-07 11:43:44 -04001385 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001386
1387error_brelse:
1388 brelse(bh);
1389error_close:
Chris Masondfe25022008-05-13 13:46:40 -04001390 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001391 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001392out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001393 mutex_unlock(&root->fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001394 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001395 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001396error_undo:
1397 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001398 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001399 list_add(&device->dev_alloc_list,
1400 &root->fs_info->fs_devices->alloc_list);
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001401 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001402 root->fs_info->fs_devices->rw_devices++;
1403 }
1404 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001405}
1406
Yan Zheng2b820322008-11-17 21:11:30 -05001407/*
1408 * does all the dirty work required for changing file system's UUID.
1409 */
1410static int btrfs_prepare_sprout(struct btrfs_trans_handle *trans,
1411 struct btrfs_root *root)
1412{
1413 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1414 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001415 struct btrfs_fs_devices *seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001416 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
1417 struct btrfs_device *device;
1418 u64 super_flags;
1419
1420 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05001421 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05001422 return -EINVAL;
1423
Yan Zhenge4404d62008-12-12 10:03:26 -05001424 seed_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
1425 if (!seed_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001426 return -ENOMEM;
1427
Yan Zhenge4404d62008-12-12 10:03:26 -05001428 old_devices = clone_fs_devices(fs_devices);
1429 if (IS_ERR(old_devices)) {
1430 kfree(seed_devices);
1431 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001432 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001433
Yan Zheng2b820322008-11-17 21:11:30 -05001434 list_add(&old_devices->list, &fs_uuids);
1435
Yan Zhenge4404d62008-12-12 10:03:26 -05001436 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1437 seed_devices->opened = 1;
1438 INIT_LIST_HEAD(&seed_devices->devices);
1439 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001440 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001441
1442 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001443 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1444 synchronize_rcu);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001445 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1446
Yan Zhenge4404d62008-12-12 10:03:26 -05001447 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1448 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1449 device->fs_devices = seed_devices;
1450 }
1451
Yan Zheng2b820322008-11-17 21:11:30 -05001452 fs_devices->seeding = 0;
1453 fs_devices->num_devices = 0;
1454 fs_devices->open_devices = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001455 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001456
1457 generate_random_uuid(fs_devices->fsid);
1458 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1459 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1460 super_flags = btrfs_super_flags(disk_super) &
1461 ~BTRFS_SUPER_FLAG_SEEDING;
1462 btrfs_set_super_flags(disk_super, super_flags);
1463
1464 return 0;
1465}
1466
1467/*
1468 * strore the expected generation for seed devices in device items.
1469 */
1470static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1471 struct btrfs_root *root)
1472{
1473 struct btrfs_path *path;
1474 struct extent_buffer *leaf;
1475 struct btrfs_dev_item *dev_item;
1476 struct btrfs_device *device;
1477 struct btrfs_key key;
1478 u8 fs_uuid[BTRFS_UUID_SIZE];
1479 u8 dev_uuid[BTRFS_UUID_SIZE];
1480 u64 devid;
1481 int ret;
1482
1483 path = btrfs_alloc_path();
1484 if (!path)
1485 return -ENOMEM;
1486
1487 root = root->fs_info->chunk_root;
1488 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1489 key.offset = 0;
1490 key.type = BTRFS_DEV_ITEM_KEY;
1491
1492 while (1) {
1493 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1494 if (ret < 0)
1495 goto error;
1496
1497 leaf = path->nodes[0];
1498next_slot:
1499 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1500 ret = btrfs_next_leaf(root, path);
1501 if (ret > 0)
1502 break;
1503 if (ret < 0)
1504 goto error;
1505 leaf = path->nodes[0];
1506 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001507 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05001508 continue;
1509 }
1510
1511 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1512 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1513 key.type != BTRFS_DEV_ITEM_KEY)
1514 break;
1515
1516 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1517 struct btrfs_dev_item);
1518 devid = btrfs_device_id(leaf, dev_item);
1519 read_extent_buffer(leaf, dev_uuid,
1520 (unsigned long)btrfs_device_uuid(dev_item),
1521 BTRFS_UUID_SIZE);
1522 read_extent_buffer(leaf, fs_uuid,
1523 (unsigned long)btrfs_device_fsid(dev_item),
1524 BTRFS_UUID_SIZE);
1525 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
1526 BUG_ON(!device);
1527
1528 if (device->fs_devices->seeding) {
1529 btrfs_set_device_generation(leaf, dev_item,
1530 device->generation);
1531 btrfs_mark_buffer_dirty(leaf);
1532 }
1533
1534 path->slots[0]++;
1535 goto next_slot;
1536 }
1537 ret = 0;
1538error:
1539 btrfs_free_path(path);
1540 return ret;
1541}
1542
Chris Mason788f20e2008-04-28 15:29:42 -04001543int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1544{
1545 struct btrfs_trans_handle *trans;
1546 struct btrfs_device *device;
1547 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04001548 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05001549 struct super_block *sb = root->fs_info->sb;
Chris Mason788f20e2008-04-28 15:29:42 -04001550 u64 total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05001551 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04001552 int ret = 0;
1553
Yan Zheng2b820322008-11-17 21:11:30 -05001554 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
1555 return -EINVAL;
Chris Mason788f20e2008-04-28 15:29:42 -04001556
Tejun Heod4d77622010-11-13 11:55:18 +01001557 bdev = blkdev_get_by_path(device_path, FMODE_EXCL,
1558 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00001559 if (IS_ERR(bdev))
1560 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04001561
Yan Zheng2b820322008-11-17 21:11:30 -05001562 if (root->fs_info->fs_devices->seeding) {
1563 seeding_dev = 1;
1564 down_write(&sb->s_umount);
1565 mutex_lock(&uuid_mutex);
1566 }
1567
Chris Mason8c8bee12008-09-29 11:19:10 -04001568 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Mason7d9eb122008-07-08 14:19:17 -04001569 mutex_lock(&root->fs_info->volume_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001570
Chris Mason788f20e2008-04-28 15:29:42 -04001571 devices = &root->fs_info->fs_devices->devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001572 /*
1573 * we have the volume lock, so we don't need the extra
1574 * device list mutex while reading the list here.
1575 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001576 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04001577 if (device->bdev == bdev) {
1578 ret = -EEXIST;
Yan Zheng2b820322008-11-17 21:11:30 -05001579 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001580 }
1581 }
1582
1583 device = kzalloc(sizeof(*device), GFP_NOFS);
1584 if (!device) {
1585 /* we can safely leave the fs_devices entry around */
1586 ret = -ENOMEM;
Yan Zheng2b820322008-11-17 21:11:30 -05001587 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001588 }
1589
Chris Mason788f20e2008-04-28 15:29:42 -04001590 device->name = kstrdup(device_path, GFP_NOFS);
1591 if (!device->name) {
1592 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05001593 ret = -ENOMEM;
1594 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04001595 }
Yan Zheng2b820322008-11-17 21:11:30 -05001596
1597 ret = find_next_devid(root, &device->devid);
1598 if (ret) {
Ilya Dryomov67100f22011-02-06 19:58:21 +00001599 kfree(device->name);
Yan Zheng2b820322008-11-17 21:11:30 -05001600 kfree(device);
1601 goto error;
1602 }
1603
Yan, Zhenga22285a2010-05-16 10:48:46 -04001604 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001605 if (IS_ERR(trans)) {
Ilya Dryomov67100f22011-02-06 19:58:21 +00001606 kfree(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001607 kfree(device);
1608 ret = PTR_ERR(trans);
1609 goto error;
1610 }
1611
Yan Zheng2b820322008-11-17 21:11:30 -05001612 lock_chunks(root);
1613
Yan Zheng2b820322008-11-17 21:11:30 -05001614 device->writeable = 1;
1615 device->work.func = pending_bios_fn;
1616 generate_random_uuid(device->uuid);
1617 spin_lock_init(&device->io_lock);
1618 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04001619 device->io_width = root->sectorsize;
1620 device->io_align = root->sectorsize;
1621 device->sector_size = root->sectorsize;
1622 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04001623 device->disk_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04001624 device->dev_root = root->fs_info->dev_root;
1625 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001626 device->in_fs_metadata = 1;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00001627 device->mode = FMODE_EXCL;
Zheng Yan325cd4b2008-09-05 16:43:54 -04001628 set_blocksize(device->bdev, 4096);
1629
Yan Zheng2b820322008-11-17 21:11:30 -05001630 if (seeding_dev) {
1631 sb->s_flags &= ~MS_RDONLY;
1632 ret = btrfs_prepare_sprout(trans, root);
1633 BUG_ON(ret);
1634 }
1635
1636 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001637
1638 /*
1639 * we don't want write_supers to jump in here with our device
1640 * half setup
1641 */
1642 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001643 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001644 list_add(&device->dev_alloc_list,
1645 &root->fs_info->fs_devices->alloc_list);
1646 root->fs_info->fs_devices->num_devices++;
1647 root->fs_info->fs_devices->open_devices++;
1648 root->fs_info->fs_devices->rw_devices++;
1649 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
1650
Chris Masonc289811c2009-06-10 09:51:32 -04001651 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
1652 root->fs_info->fs_devices->rotating = 1;
1653
Chris Mason788f20e2008-04-28 15:29:42 -04001654 total_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
1655 btrfs_set_super_total_bytes(&root->fs_info->super_copy,
1656 total_bytes + device->total_bytes);
1657
1658 total_bytes = btrfs_super_num_devices(&root->fs_info->super_copy);
1659 btrfs_set_super_num_devices(&root->fs_info->super_copy,
1660 total_bytes + 1);
Chris Masone5e9a522009-06-10 15:17:02 -04001661 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001662
Yan Zheng2b820322008-11-17 21:11:30 -05001663 if (seeding_dev) {
1664 ret = init_first_rw_device(trans, root, device);
1665 BUG_ON(ret);
1666 ret = btrfs_finish_sprout(trans, root);
1667 BUG_ON(ret);
1668 } else {
1669 ret = btrfs_add_device(trans, root, device);
1670 }
1671
Chris Mason913d9522009-03-10 13:17:18 -04001672 /*
1673 * we've got more storage, clear any full flags on the space
1674 * infos
1675 */
1676 btrfs_clear_space_info_full(root->fs_info);
1677
Chris Mason7d9eb122008-07-08 14:19:17 -04001678 unlock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001679 btrfs_commit_transaction(trans, root);
1680
1681 if (seeding_dev) {
1682 mutex_unlock(&uuid_mutex);
1683 up_write(&sb->s_umount);
1684
1685 ret = btrfs_relocate_sys_chunks(root);
1686 BUG_ON(ret);
1687 }
1688out:
Chris Mason7d9eb122008-07-08 14:19:17 -04001689 mutex_unlock(&root->fs_info->volume_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04001690 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05001691error:
Tejun Heoe525fd82010-11-13 11:55:17 +01001692 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05001693 if (seeding_dev) {
1694 mutex_unlock(&uuid_mutex);
1695 up_write(&sb->s_umount);
1696 }
Chris Mason788f20e2008-04-28 15:29:42 -04001697 goto out;
1698}
1699
Chris Masond3977122009-01-05 21:25:51 -05001700static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
1701 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001702{
1703 int ret;
1704 struct btrfs_path *path;
1705 struct btrfs_root *root;
1706 struct btrfs_dev_item *dev_item;
1707 struct extent_buffer *leaf;
1708 struct btrfs_key key;
1709
1710 root = device->dev_root->fs_info->chunk_root;
1711
1712 path = btrfs_alloc_path();
1713 if (!path)
1714 return -ENOMEM;
1715
1716 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1717 key.type = BTRFS_DEV_ITEM_KEY;
1718 key.offset = device->devid;
1719
1720 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1721 if (ret < 0)
1722 goto out;
1723
1724 if (ret > 0) {
1725 ret = -ENOENT;
1726 goto out;
1727 }
1728
1729 leaf = path->nodes[0];
1730 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1731
1732 btrfs_set_device_id(leaf, dev_item, device->devid);
1733 btrfs_set_device_type(leaf, dev_item, device->type);
1734 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1735 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1736 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Chris Balld6397ba2009-04-27 07:29:03 -04001737 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
Chris Mason0b86a832008-03-24 15:01:56 -04001738 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
1739 btrfs_mark_buffer_dirty(leaf);
1740
1741out:
1742 btrfs_free_path(path);
1743 return ret;
1744}
1745
Chris Mason7d9eb122008-07-08 14:19:17 -04001746static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001747 struct btrfs_device *device, u64 new_size)
1748{
1749 struct btrfs_super_block *super_copy =
1750 &device->dev_root->fs_info->super_copy;
1751 u64 old_total = btrfs_super_total_bytes(super_copy);
1752 u64 diff = new_size - device->total_bytes;
1753
Yan Zheng2b820322008-11-17 21:11:30 -05001754 if (!device->writeable)
1755 return -EACCES;
1756 if (new_size <= device->total_bytes)
1757 return -EINVAL;
1758
Chris Mason8f18cf12008-04-25 16:53:30 -04001759 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05001760 device->fs_devices->total_rw_bytes += diff;
1761
1762 device->total_bytes = new_size;
Chris Mason9779b722009-07-24 16:41:41 -04001763 device->disk_total_bytes = new_size;
Chris Mason4184ea72009-03-10 12:39:20 -04001764 btrfs_clear_space_info_full(device->dev_root->fs_info);
1765
Chris Mason8f18cf12008-04-25 16:53:30 -04001766 return btrfs_update_device(trans, device);
1767}
1768
Chris Mason7d9eb122008-07-08 14:19:17 -04001769int btrfs_grow_device(struct btrfs_trans_handle *trans,
1770 struct btrfs_device *device, u64 new_size)
1771{
1772 int ret;
1773 lock_chunks(device->dev_root);
1774 ret = __btrfs_grow_device(trans, device, new_size);
1775 unlock_chunks(device->dev_root);
1776 return ret;
1777}
1778
Chris Mason8f18cf12008-04-25 16:53:30 -04001779static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
1780 struct btrfs_root *root,
1781 u64 chunk_tree, u64 chunk_objectid,
1782 u64 chunk_offset)
1783{
1784 int ret;
1785 struct btrfs_path *path;
1786 struct btrfs_key key;
1787
1788 root = root->fs_info->chunk_root;
1789 path = btrfs_alloc_path();
1790 if (!path)
1791 return -ENOMEM;
1792
1793 key.objectid = chunk_objectid;
1794 key.offset = chunk_offset;
1795 key.type = BTRFS_CHUNK_ITEM_KEY;
1796
1797 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1798 BUG_ON(ret);
1799
1800 ret = btrfs_del_item(trans, root, path);
Chris Mason8f18cf12008-04-25 16:53:30 -04001801
1802 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001803 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04001804}
1805
Christoph Hellwigb2950862008-12-02 09:54:17 -05001806static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04001807 chunk_offset)
1808{
1809 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
1810 struct btrfs_disk_key *disk_key;
1811 struct btrfs_chunk *chunk;
1812 u8 *ptr;
1813 int ret = 0;
1814 u32 num_stripes;
1815 u32 array_size;
1816 u32 len = 0;
1817 u32 cur;
1818 struct btrfs_key key;
1819
1820 array_size = btrfs_super_sys_array_size(super_copy);
1821
1822 ptr = super_copy->sys_chunk_array;
1823 cur = 0;
1824
1825 while (cur < array_size) {
1826 disk_key = (struct btrfs_disk_key *)ptr;
1827 btrfs_disk_key_to_cpu(&key, disk_key);
1828
1829 len = sizeof(*disk_key);
1830
1831 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1832 chunk = (struct btrfs_chunk *)(ptr + len);
1833 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
1834 len += btrfs_chunk_item_size(num_stripes);
1835 } else {
1836 ret = -EIO;
1837 break;
1838 }
1839 if (key.objectid == chunk_objectid &&
1840 key.offset == chunk_offset) {
1841 memmove(ptr, ptr + len, array_size - (cur + len));
1842 array_size -= len;
1843 btrfs_set_super_sys_array_size(super_copy, array_size);
1844 } else {
1845 ptr += len;
1846 cur += len;
1847 }
1848 }
1849 return ret;
1850}
1851
Christoph Hellwigb2950862008-12-02 09:54:17 -05001852static int btrfs_relocate_chunk(struct btrfs_root *root,
Chris Mason8f18cf12008-04-25 16:53:30 -04001853 u64 chunk_tree, u64 chunk_objectid,
1854 u64 chunk_offset)
1855{
1856 struct extent_map_tree *em_tree;
1857 struct btrfs_root *extent_root;
1858 struct btrfs_trans_handle *trans;
1859 struct extent_map *em;
1860 struct map_lookup *map;
1861 int ret;
1862 int i;
1863
1864 root = root->fs_info->chunk_root;
1865 extent_root = root->fs_info->extent_root;
1866 em_tree = &root->fs_info->mapping_tree.map_tree;
1867
Josef Bacikba1bf482009-09-11 16:11:19 -04001868 ret = btrfs_can_relocate(extent_root, chunk_offset);
1869 if (ret)
1870 return -ENOSPC;
1871
Chris Mason8f18cf12008-04-25 16:53:30 -04001872 /* step one, relocate all the extents inside this chunk */
Zheng Yan1a40e232008-09-26 10:09:34 -04001873 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001874 if (ret)
1875 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04001876
Yan, Zhenga22285a2010-05-16 10:48:46 -04001877 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001878 BUG_ON(IS_ERR(trans));
Chris Mason8f18cf12008-04-25 16:53:30 -04001879
Chris Mason7d9eb122008-07-08 14:19:17 -04001880 lock_chunks(root);
1881
Chris Mason8f18cf12008-04-25 16:53:30 -04001882 /*
1883 * step two, delete the device extents and the
1884 * chunk tree entries
1885 */
Chris Mason890871b2009-09-02 16:24:52 -04001886 read_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001887 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001888 read_unlock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001889
Chris Masona061fc82008-05-07 11:43:44 -04001890 BUG_ON(em->start > chunk_offset ||
1891 em->start + em->len < chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04001892 map = (struct map_lookup *)em->bdev;
1893
1894 for (i = 0; i < map->num_stripes; i++) {
1895 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
1896 map->stripes[i].physical);
1897 BUG_ON(ret);
Chris Masona061fc82008-05-07 11:43:44 -04001898
Chris Masondfe25022008-05-13 13:46:40 -04001899 if (map->stripes[i].dev) {
1900 ret = btrfs_update_device(trans, map->stripes[i].dev);
1901 BUG_ON(ret);
1902 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001903 }
1904 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
1905 chunk_offset);
1906
1907 BUG_ON(ret);
1908
liubo1abe9b82011-03-24 11:18:59 +00001909 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
1910
Chris Mason8f18cf12008-04-25 16:53:30 -04001911 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
1912 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
1913 BUG_ON(ret);
Chris Mason8f18cf12008-04-25 16:53:30 -04001914 }
1915
Zheng Yan1a40e232008-09-26 10:09:34 -04001916 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
1917 BUG_ON(ret);
1918
Chris Mason890871b2009-09-02 16:24:52 -04001919 write_lock(&em_tree->lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04001920 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001921 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04001922
Chris Mason8f18cf12008-04-25 16:53:30 -04001923 kfree(map);
1924 em->bdev = NULL;
1925
1926 /* once for the tree */
1927 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04001928 /* once for us */
1929 free_extent_map(em);
1930
Chris Mason7d9eb122008-07-08 14:19:17 -04001931 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04001932 btrfs_end_transaction(trans, root);
1933 return 0;
1934}
1935
Yan Zheng2b820322008-11-17 21:11:30 -05001936static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
1937{
1938 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
1939 struct btrfs_path *path;
1940 struct extent_buffer *leaf;
1941 struct btrfs_chunk *chunk;
1942 struct btrfs_key key;
1943 struct btrfs_key found_key;
1944 u64 chunk_tree = chunk_root->root_key.objectid;
1945 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04001946 bool retried = false;
1947 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001948 int ret;
1949
1950 path = btrfs_alloc_path();
1951 if (!path)
1952 return -ENOMEM;
1953
Josef Bacikba1bf482009-09-11 16:11:19 -04001954again:
Yan Zheng2b820322008-11-17 21:11:30 -05001955 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1956 key.offset = (u64)-1;
1957 key.type = BTRFS_CHUNK_ITEM_KEY;
1958
1959 while (1) {
1960 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
1961 if (ret < 0)
1962 goto error;
1963 BUG_ON(ret == 0);
1964
1965 ret = btrfs_previous_item(chunk_root, path, key.objectid,
1966 key.type);
1967 if (ret < 0)
1968 goto error;
1969 if (ret > 0)
1970 break;
1971
1972 leaf = path->nodes[0];
1973 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1974
1975 chunk = btrfs_item_ptr(leaf, path->slots[0],
1976 struct btrfs_chunk);
1977 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02001978 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05001979
1980 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
1981 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
1982 found_key.objectid,
1983 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04001984 if (ret == -ENOSPC)
1985 failed++;
1986 else if (ret)
1987 BUG();
Yan Zheng2b820322008-11-17 21:11:30 -05001988 }
1989
1990 if (found_key.offset == 0)
1991 break;
1992 key.offset = found_key.offset - 1;
1993 }
1994 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04001995 if (failed && !retried) {
1996 failed = 0;
1997 retried = true;
1998 goto again;
1999 } else if (failed && retried) {
2000 WARN_ON(1);
2001 ret = -ENOSPC;
2002 }
Yan Zheng2b820322008-11-17 21:11:30 -05002003error:
2004 btrfs_free_path(path);
2005 return ret;
2006}
2007
Chris Masonec44a352008-04-28 15:29:52 -04002008static u64 div_factor(u64 num, int factor)
2009{
2010 if (factor == 10)
2011 return num;
2012 num *= factor;
2013 do_div(num, 10);
2014 return num;
2015}
2016
Chris Masonec44a352008-04-28 15:29:52 -04002017int btrfs_balance(struct btrfs_root *dev_root)
2018{
2019 int ret;
Chris Masonec44a352008-04-28 15:29:52 -04002020 struct list_head *devices = &dev_root->fs_info->fs_devices->devices;
2021 struct btrfs_device *device;
2022 u64 old_size;
2023 u64 size_to_free;
2024 struct btrfs_path *path;
2025 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04002026 struct btrfs_root *chunk_root = dev_root->fs_info->chunk_root;
2027 struct btrfs_trans_handle *trans;
2028 struct btrfs_key found_key;
2029
Yan Zheng2b820322008-11-17 21:11:30 -05002030 if (dev_root->fs_info->sb->s_flags & MS_RDONLY)
2031 return -EROFS;
Chris Masonec44a352008-04-28 15:29:52 -04002032
Ben Hutchings6f88a442010-12-29 14:55:03 +00002033 if (!capable(CAP_SYS_ADMIN))
2034 return -EPERM;
2035
Chris Mason7d9eb122008-07-08 14:19:17 -04002036 mutex_lock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04002037 dev_root = dev_root->fs_info->dev_root;
2038
Chris Masonec44a352008-04-28 15:29:52 -04002039 /* step one make some room on all the devices */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002040 list_for_each_entry(device, devices, dev_list) {
Chris Masonec44a352008-04-28 15:29:52 -04002041 old_size = device->total_bytes;
2042 size_to_free = div_factor(old_size, 1);
2043 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05002044 if (!device->writeable ||
2045 device->total_bytes - device->bytes_used > size_to_free)
Chris Masonec44a352008-04-28 15:29:52 -04002046 continue;
2047
2048 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04002049 if (ret == -ENOSPC)
2050 break;
Chris Masonec44a352008-04-28 15:29:52 -04002051 BUG_ON(ret);
2052
Yan, Zhenga22285a2010-05-16 10:48:46 -04002053 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002054 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04002055
2056 ret = btrfs_grow_device(trans, device, old_size);
2057 BUG_ON(ret);
2058
2059 btrfs_end_transaction(trans, dev_root);
2060 }
2061
2062 /* step two, relocate all the chunks */
2063 path = btrfs_alloc_path();
2064 BUG_ON(!path);
2065
2066 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2067 key.offset = (u64)-1;
2068 key.type = BTRFS_CHUNK_ITEM_KEY;
2069
Chris Masond3977122009-01-05 21:25:51 -05002070 while (1) {
Chris Masonec44a352008-04-28 15:29:52 -04002071 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2072 if (ret < 0)
2073 goto error;
2074
2075 /*
2076 * this shouldn't happen, it means the last relocate
2077 * failed
2078 */
2079 if (ret == 0)
2080 break;
2081
2082 ret = btrfs_previous_item(chunk_root, path, 0,
2083 BTRFS_CHUNK_ITEM_KEY);
Chris Mason7d9eb122008-07-08 14:19:17 -04002084 if (ret)
Chris Masonec44a352008-04-28 15:29:52 -04002085 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04002086
Chris Masonec44a352008-04-28 15:29:52 -04002087 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2088 path->slots[0]);
2089 if (found_key.objectid != key.objectid)
2090 break;
Chris Mason7d9eb122008-07-08 14:19:17 -04002091
Chris Masonec44a352008-04-28 15:29:52 -04002092 /* chunk zero is special */
Josef Bacikba1bf482009-09-11 16:11:19 -04002093 if (found_key.offset == 0)
Chris Masonec44a352008-04-28 15:29:52 -04002094 break;
2095
David Sterbab3b4aa72011-04-21 01:20:15 +02002096 btrfs_release_path(path);
Chris Masonec44a352008-04-28 15:29:52 -04002097 ret = btrfs_relocate_chunk(chunk_root,
2098 chunk_root->root_key.objectid,
2099 found_key.objectid,
2100 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002101 BUG_ON(ret && ret != -ENOSPC);
2102 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04002103 }
2104 ret = 0;
2105error:
2106 btrfs_free_path(path);
Chris Mason7d9eb122008-07-08 14:19:17 -04002107 mutex_unlock(&dev_root->fs_info->volume_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04002108 return ret;
2109}
2110
Chris Mason8f18cf12008-04-25 16:53:30 -04002111/*
2112 * shrinking a device means finding all of the device extents past
2113 * the new size, and then following the back refs to the chunks.
2114 * The chunk relocation code actually frees the device extent
2115 */
2116int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
2117{
2118 struct btrfs_trans_handle *trans;
2119 struct btrfs_root *root = device->dev_root;
2120 struct btrfs_dev_extent *dev_extent = NULL;
2121 struct btrfs_path *path;
2122 u64 length;
2123 u64 chunk_tree;
2124 u64 chunk_objectid;
2125 u64 chunk_offset;
2126 int ret;
2127 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04002128 int failed = 0;
2129 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04002130 struct extent_buffer *l;
2131 struct btrfs_key key;
2132 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
2133 u64 old_total = btrfs_super_total_bytes(super_copy);
Josef Bacikba1bf482009-09-11 16:11:19 -04002134 u64 old_size = device->total_bytes;
Chris Mason8f18cf12008-04-25 16:53:30 -04002135 u64 diff = device->total_bytes - new_size;
2136
Yan Zheng2b820322008-11-17 21:11:30 -05002137 if (new_size >= device->total_bytes)
2138 return -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04002139
2140 path = btrfs_alloc_path();
2141 if (!path)
2142 return -ENOMEM;
2143
Chris Mason8f18cf12008-04-25 16:53:30 -04002144 path->reada = 2;
2145
Chris Mason7d9eb122008-07-08 14:19:17 -04002146 lock_chunks(root);
2147
Chris Mason8f18cf12008-04-25 16:53:30 -04002148 device->total_bytes = new_size;
Yan Zheng2b820322008-11-17 21:11:30 -05002149 if (device->writeable)
2150 device->fs_devices->total_rw_bytes -= diff;
Chris Mason7d9eb122008-07-08 14:19:17 -04002151 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002152
Josef Bacikba1bf482009-09-11 16:11:19 -04002153again:
Chris Mason8f18cf12008-04-25 16:53:30 -04002154 key.objectid = device->devid;
2155 key.offset = (u64)-1;
2156 key.type = BTRFS_DEV_EXTENT_KEY;
2157
2158 while (1) {
2159 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2160 if (ret < 0)
2161 goto done;
2162
2163 ret = btrfs_previous_item(root, path, 0, key.type);
2164 if (ret < 0)
2165 goto done;
2166 if (ret) {
2167 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02002168 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002169 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04002170 }
2171
2172 l = path->nodes[0];
2173 slot = path->slots[0];
2174 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
2175
Josef Bacikba1bf482009-09-11 16:11:19 -04002176 if (key.objectid != device->devid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002177 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04002178 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002179 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002180
2181 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
2182 length = btrfs_dev_extent_length(l, dev_extent);
2183
Josef Bacikba1bf482009-09-11 16:11:19 -04002184 if (key.offset + length <= new_size) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002185 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04002186 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04002187 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002188
2189 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
2190 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
2191 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02002192 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04002193
2194 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
2195 chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002196 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04002197 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04002198 if (ret == -ENOSPC)
2199 failed++;
2200 key.offset -= 1;
2201 }
2202
2203 if (failed && !retried) {
2204 failed = 0;
2205 retried = true;
2206 goto again;
2207 } else if (failed && retried) {
2208 ret = -ENOSPC;
2209 lock_chunks(root);
2210
2211 device->total_bytes = old_size;
2212 if (device->writeable)
2213 device->fs_devices->total_rw_bytes += diff;
2214 unlock_chunks(root);
2215 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04002216 }
2217
Chris Balld6397ba2009-04-27 07:29:03 -04002218 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002219 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002220 if (IS_ERR(trans)) {
2221 ret = PTR_ERR(trans);
2222 goto done;
2223 }
2224
Chris Balld6397ba2009-04-27 07:29:03 -04002225 lock_chunks(root);
2226
2227 device->disk_total_bytes = new_size;
2228 /* Now btrfs_update_device() will change the on-disk size. */
2229 ret = btrfs_update_device(trans, device);
2230 if (ret) {
2231 unlock_chunks(root);
2232 btrfs_end_transaction(trans, root);
2233 goto done;
2234 }
2235 WARN_ON(diff > old_total);
2236 btrfs_set_super_total_bytes(super_copy, old_total - diff);
2237 unlock_chunks(root);
2238 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002239done:
2240 btrfs_free_path(path);
2241 return ret;
2242}
2243
Christoph Hellwigb2950862008-12-02 09:54:17 -05002244static int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
Chris Mason0b86a832008-03-24 15:01:56 -04002245 struct btrfs_root *root,
2246 struct btrfs_key *key,
2247 struct btrfs_chunk *chunk, int item_size)
2248{
2249 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
2250 struct btrfs_disk_key disk_key;
2251 u32 array_size;
2252 u8 *ptr;
2253
2254 array_size = btrfs_super_sys_array_size(super_copy);
2255 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
2256 return -EFBIG;
2257
2258 ptr = super_copy->sys_chunk_array + array_size;
2259 btrfs_cpu_key_to_disk(&disk_key, key);
2260 memcpy(ptr, &disk_key, sizeof(disk_key));
2261 ptr += sizeof(disk_key);
2262 memcpy(ptr, chunk, item_size);
2263 item_size += sizeof(disk_key);
2264 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
2265 return 0;
2266}
2267
Miao Xieb2117a32011-01-05 10:07:28 +00002268/*
Arne Jansen73c5de02011-04-12 12:07:57 +02002269 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00002270 */
Arne Jansen73c5de02011-04-12 12:07:57 +02002271static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00002272{
Arne Jansen73c5de02011-04-12 12:07:57 +02002273 const struct btrfs_device_info *di_a = a;
2274 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00002275
Arne Jansen73c5de02011-04-12 12:07:57 +02002276 if (di_a->max_avail > di_b->max_avail)
2277 return -1;
2278 if (di_a->max_avail < di_b->max_avail)
2279 return 1;
2280 if (di_a->total_avail > di_b->total_avail)
2281 return -1;
2282 if (di_a->total_avail < di_b->total_avail)
2283 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00002284 return 0;
2285}
2286
2287static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2288 struct btrfs_root *extent_root,
2289 struct map_lookup **map_ret,
Arne Jansen73c5de02011-04-12 12:07:57 +02002290 u64 *num_bytes_out, u64 *stripe_size_out,
Miao Xieb2117a32011-01-05 10:07:28 +00002291 u64 start, u64 type)
2292{
2293 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00002294 struct btrfs_fs_devices *fs_devices = info->fs_devices;
2295 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02002296 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00002297 struct extent_map_tree *em_tree;
2298 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02002299 struct btrfs_device_info *devices_info = NULL;
2300 u64 total_avail;
2301 int num_stripes; /* total number of stripes to allocate */
2302 int sub_stripes; /* sub_stripes info for map */
2303 int dev_stripes; /* stripes per dev */
2304 int devs_max; /* max devs to use */
2305 int devs_min; /* min devs needed */
2306 int devs_increment; /* ndevs has to be a multiple of this */
2307 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00002308 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02002309 u64 max_stripe_size;
2310 u64 max_chunk_size;
2311 u64 stripe_size;
2312 u64 num_bytes;
2313 int ndevs;
2314 int i;
2315 int j;
Miao Xieb2117a32011-01-05 10:07:28 +00002316
2317 if ((type & BTRFS_BLOCK_GROUP_RAID1) &&
2318 (type & BTRFS_BLOCK_GROUP_DUP)) {
2319 WARN_ON(1);
2320 type &= ~BTRFS_BLOCK_GROUP_DUP;
2321 }
Arne Jansen73c5de02011-04-12 12:07:57 +02002322
Miao Xieb2117a32011-01-05 10:07:28 +00002323 if (list_empty(&fs_devices->alloc_list))
2324 return -ENOSPC;
2325
Arne Jansen73c5de02011-04-12 12:07:57 +02002326 sub_stripes = 1;
2327 dev_stripes = 1;
2328 devs_increment = 1;
2329 ncopies = 1;
2330 devs_max = 0; /* 0 == as many as possible */
2331 devs_min = 1;
2332
2333 /*
2334 * define the properties of each RAID type.
2335 * FIXME: move this to a global table and use it in all RAID
2336 * calculation code
2337 */
2338 if (type & (BTRFS_BLOCK_GROUP_DUP)) {
2339 dev_stripes = 2;
2340 ncopies = 2;
2341 devs_max = 1;
2342 } else if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
2343 devs_min = 2;
2344 } else if (type & (BTRFS_BLOCK_GROUP_RAID1)) {
2345 devs_increment = 2;
2346 ncopies = 2;
2347 devs_max = 2;
2348 devs_min = 2;
2349 } else if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
2350 sub_stripes = 2;
2351 devs_increment = 2;
2352 ncopies = 2;
2353 devs_min = 4;
2354 } else {
2355 devs_max = 1;
2356 }
2357
2358 if (type & BTRFS_BLOCK_GROUP_DATA) {
2359 max_stripe_size = 1024 * 1024 * 1024;
2360 max_chunk_size = 10 * max_stripe_size;
2361 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
2362 max_stripe_size = 256 * 1024 * 1024;
2363 max_chunk_size = max_stripe_size;
2364 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
2365 max_stripe_size = 8 * 1024 * 1024;
2366 max_chunk_size = 2 * max_stripe_size;
2367 } else {
2368 printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
2369 type);
2370 BUG_ON(1);
2371 }
2372
2373 /* we don't want a chunk larger than 10% of writeable space */
2374 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
2375 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00002376
2377 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
2378 GFP_NOFS);
2379 if (!devices_info)
2380 return -ENOMEM;
2381
Arne Jansen73c5de02011-04-12 12:07:57 +02002382 cur = fs_devices->alloc_list.next;
2383
2384 /*
2385 * in the first pass through the devices list, we gather information
2386 * about the available holes on each device.
2387 */
2388 ndevs = 0;
2389 while (cur != &fs_devices->alloc_list) {
2390 struct btrfs_device *device;
2391 u64 max_avail;
2392 u64 dev_offset;
2393
2394 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
2395
2396 cur = cur->next;
2397
2398 if (!device->writeable) {
2399 printk(KERN_ERR
2400 "btrfs: read-only device in alloc_list\n");
2401 WARN_ON(1);
2402 continue;
2403 }
2404
2405 if (!device->in_fs_metadata)
2406 continue;
2407
2408 if (device->total_bytes > device->bytes_used)
2409 total_avail = device->total_bytes - device->bytes_used;
2410 else
2411 total_avail = 0;
2412 /* avail is off by max(alloc_start, 1MB), but that is the same
2413 * for all devices, so it doesn't hurt the sorting later on
2414 */
2415
2416 ret = find_free_dev_extent(trans, device,
2417 max_stripe_size * dev_stripes,
2418 &dev_offset, &max_avail);
2419 if (ret && ret != -ENOSPC)
2420 goto error;
2421
2422 if (ret == 0)
2423 max_avail = max_stripe_size * dev_stripes;
2424
2425 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
2426 continue;
2427
2428 devices_info[ndevs].dev_offset = dev_offset;
2429 devices_info[ndevs].max_avail = max_avail;
2430 devices_info[ndevs].total_avail = total_avail;
2431 devices_info[ndevs].dev = device;
2432 ++ndevs;
2433 }
2434
2435 /*
2436 * now sort the devices by hole size / available space
2437 */
2438 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
2439 btrfs_cmp_device_info, NULL);
2440
2441 /* round down to number of usable stripes */
2442 ndevs -= ndevs % devs_increment;
2443
2444 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
2445 ret = -ENOSPC;
2446 goto error;
2447 }
2448
2449 if (devs_max && ndevs > devs_max)
2450 ndevs = devs_max;
2451 /*
2452 * the primary goal is to maximize the number of stripes, so use as many
2453 * devices as possible, even if the stripes are not maximum sized.
2454 */
2455 stripe_size = devices_info[ndevs-1].max_avail;
2456 num_stripes = ndevs * dev_stripes;
2457
2458 if (stripe_size * num_stripes > max_chunk_size * ncopies) {
2459 stripe_size = max_chunk_size * ncopies;
2460 do_div(stripe_size, num_stripes);
2461 }
2462
2463 do_div(stripe_size, dev_stripes);
2464 do_div(stripe_size, BTRFS_STRIPE_LEN);
2465 stripe_size *= BTRFS_STRIPE_LEN;
2466
Miao Xieb2117a32011-01-05 10:07:28 +00002467 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
2468 if (!map) {
2469 ret = -ENOMEM;
2470 goto error;
2471 }
2472 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04002473
Arne Jansen73c5de02011-04-12 12:07:57 +02002474 for (i = 0; i < ndevs; ++i) {
2475 for (j = 0; j < dev_stripes; ++j) {
2476 int s = i * dev_stripes + j;
2477 map->stripes[s].dev = devices_info[i].dev;
2478 map->stripes[s].physical = devices_info[i].dev_offset +
2479 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04002480 }
Chris Mason6324fbf2008-03-24 15:01:59 -04002481 }
Chris Mason593060d2008-03-25 16:50:33 -04002482 map->sector_size = extent_root->sectorsize;
Miao Xieb2117a32011-01-05 10:07:28 +00002483 map->stripe_len = BTRFS_STRIPE_LEN;
2484 map->io_align = BTRFS_STRIPE_LEN;
2485 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04002486 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04002487 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04002488
Yan Zheng2b820322008-11-17 21:11:30 -05002489 *map_ret = map;
Arne Jansen73c5de02011-04-12 12:07:57 +02002490 num_bytes = stripe_size * (num_stripes / ncopies);
Chris Mason0b86a832008-03-24 15:01:56 -04002491
Arne Jansen73c5de02011-04-12 12:07:57 +02002492 *stripe_size_out = stripe_size;
2493 *num_bytes_out = num_bytes;
2494
2495 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00002496
David Sterba172ddd62011-04-21 00:48:27 +02002497 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05002498 if (!em) {
Miao Xieb2117a32011-01-05 10:07:28 +00002499 ret = -ENOMEM;
2500 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05002501 }
Chris Mason0b86a832008-03-24 15:01:56 -04002502 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05002503 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02002504 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04002505 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002506 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04002507
Chris Mason0b86a832008-03-24 15:01:56 -04002508 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04002509 write_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002510 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002511 write_unlock(&em_tree->lock);
Chris Masonb248a412008-04-14 09:48:18 -04002512 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04002513 free_extent_map(em);
Yan Zheng2b820322008-11-17 21:11:30 -05002514
2515 ret = btrfs_make_block_group(trans, extent_root, 0, type,
2516 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
Arne Jansen73c5de02011-04-12 12:07:57 +02002517 start, num_bytes);
Yan Zheng2b820322008-11-17 21:11:30 -05002518 BUG_ON(ret);
2519
Arne Jansen73c5de02011-04-12 12:07:57 +02002520 for (i = 0; i < map->num_stripes; ++i) {
2521 struct btrfs_device *device;
2522 u64 dev_offset;
2523
2524 device = map->stripes[i].dev;
2525 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05002526
2527 ret = btrfs_alloc_dev_extent(trans, device,
2528 info->chunk_root->root_key.objectid,
2529 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
Arne Jansen73c5de02011-04-12 12:07:57 +02002530 start, dev_offset, stripe_size);
Yan Zheng2b820322008-11-17 21:11:30 -05002531 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002532 }
2533
Miao Xieb2117a32011-01-05 10:07:28 +00002534 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05002535 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00002536
2537error:
2538 kfree(map);
2539 kfree(devices_info);
2540 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05002541}
2542
2543static int __finish_chunk_alloc(struct btrfs_trans_handle *trans,
2544 struct btrfs_root *extent_root,
2545 struct map_lookup *map, u64 chunk_offset,
2546 u64 chunk_size, u64 stripe_size)
2547{
2548 u64 dev_offset;
2549 struct btrfs_key key;
2550 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2551 struct btrfs_device *device;
2552 struct btrfs_chunk *chunk;
2553 struct btrfs_stripe *stripe;
2554 size_t item_size = btrfs_chunk_item_size(map->num_stripes);
2555 int index = 0;
2556 int ret;
2557
2558 chunk = kzalloc(item_size, GFP_NOFS);
2559 if (!chunk)
2560 return -ENOMEM;
2561
2562 index = 0;
2563 while (index < map->num_stripes) {
2564 device = map->stripes[index].dev;
2565 device->bytes_used += stripe_size;
2566 ret = btrfs_update_device(trans, device);
2567 BUG_ON(ret);
2568 index++;
2569 }
2570
2571 index = 0;
2572 stripe = &chunk->stripe;
2573 while (index < map->num_stripes) {
2574 device = map->stripes[index].dev;
2575 dev_offset = map->stripes[index].physical;
2576
2577 btrfs_set_stack_stripe_devid(stripe, device->devid);
2578 btrfs_set_stack_stripe_offset(stripe, dev_offset);
2579 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
2580 stripe++;
2581 index++;
2582 }
2583
2584 btrfs_set_stack_chunk_length(chunk, chunk_size);
2585 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
2586 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
2587 btrfs_set_stack_chunk_type(chunk, map->type);
2588 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
2589 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
2590 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
2591 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
2592 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
2593
2594 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2595 key.type = BTRFS_CHUNK_ITEM_KEY;
2596 key.offset = chunk_offset;
2597
2598 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
2599 BUG_ON(ret);
2600
2601 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2602 ret = btrfs_add_system_chunk(trans, chunk_root, &key, chunk,
2603 item_size);
2604 BUG_ON(ret);
2605 }
liubo1abe9b82011-03-24 11:18:59 +00002606
Yan Zheng2b820322008-11-17 21:11:30 -05002607 kfree(chunk);
2608 return 0;
2609}
2610
2611/*
2612 * Chunk allocation falls into two parts. The first part does works
2613 * that make the new allocated chunk useable, but not do any operation
2614 * that modifies the chunk tree. The second part does the works that
2615 * require modifying the chunk tree. This division is important for the
2616 * bootstrap process of adding storage to a seed btrfs.
2617 */
2618int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
2619 struct btrfs_root *extent_root, u64 type)
2620{
2621 u64 chunk_offset;
2622 u64 chunk_size;
2623 u64 stripe_size;
2624 struct map_lookup *map;
2625 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
2626 int ret;
2627
2628 ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
2629 &chunk_offset);
2630 if (ret)
2631 return ret;
2632
2633 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2634 &stripe_size, chunk_offset, type);
2635 if (ret)
2636 return ret;
2637
2638 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2639 chunk_size, stripe_size);
2640 BUG_ON(ret);
2641 return 0;
2642}
2643
Chris Masond3977122009-01-05 21:25:51 -05002644static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05002645 struct btrfs_root *root,
2646 struct btrfs_device *device)
2647{
2648 u64 chunk_offset;
2649 u64 sys_chunk_offset;
2650 u64 chunk_size;
2651 u64 sys_chunk_size;
2652 u64 stripe_size;
2653 u64 sys_stripe_size;
2654 u64 alloc_profile;
2655 struct map_lookup *map;
2656 struct map_lookup *sys_map;
2657 struct btrfs_fs_info *fs_info = root->fs_info;
2658 struct btrfs_root *extent_root = fs_info->extent_root;
2659 int ret;
2660
2661 ret = find_next_chunk(fs_info->chunk_root,
2662 BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
2663 BUG_ON(ret);
2664
2665 alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
2666 (fs_info->metadata_alloc_profile &
2667 fs_info->avail_metadata_alloc_bits);
2668 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2669
2670 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
2671 &stripe_size, chunk_offset, alloc_profile);
2672 BUG_ON(ret);
2673
2674 sys_chunk_offset = chunk_offset + chunk_size;
2675
2676 alloc_profile = BTRFS_BLOCK_GROUP_SYSTEM |
2677 (fs_info->system_alloc_profile &
2678 fs_info->avail_system_alloc_bits);
2679 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
2680
2681 ret = __btrfs_alloc_chunk(trans, extent_root, &sys_map,
2682 &sys_chunk_size, &sys_stripe_size,
2683 sys_chunk_offset, alloc_profile);
2684 BUG_ON(ret);
2685
2686 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
2687 BUG_ON(ret);
2688
2689 /*
2690 * Modifying chunk tree needs allocating new blocks from both
2691 * system block group and metadata block group. So we only can
2692 * do operations require modifying the chunk tree after both
2693 * block groups were created.
2694 */
2695 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
2696 chunk_size, stripe_size);
2697 BUG_ON(ret);
2698
2699 ret = __finish_chunk_alloc(trans, extent_root, sys_map,
2700 sys_chunk_offset, sys_chunk_size,
2701 sys_stripe_size);
2702 BUG_ON(ret);
2703 return 0;
2704}
2705
2706int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
2707{
2708 struct extent_map *em;
2709 struct map_lookup *map;
2710 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
2711 int readonly = 0;
2712 int i;
2713
Chris Mason890871b2009-09-02 16:24:52 -04002714 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002715 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04002716 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05002717 if (!em)
2718 return 1;
2719
Josef Bacikf48b9072010-01-27 02:07:59 +00002720 if (btrfs_test_opt(root, DEGRADED)) {
2721 free_extent_map(em);
2722 return 0;
2723 }
2724
Yan Zheng2b820322008-11-17 21:11:30 -05002725 map = (struct map_lookup *)em->bdev;
2726 for (i = 0; i < map->num_stripes; i++) {
2727 if (!map->stripes[i].dev->writeable) {
2728 readonly = 1;
2729 break;
2730 }
2731 }
2732 free_extent_map(em);
2733 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04002734}
2735
2736void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
2737{
David Sterbaa8067e02011-04-21 00:34:43 +02002738 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04002739}
2740
2741void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
2742{
2743 struct extent_map *em;
2744
Chris Masond3977122009-01-05 21:25:51 -05002745 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04002746 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002747 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
2748 if (em)
2749 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04002750 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002751 if (!em)
2752 break;
2753 kfree(em->bdev);
2754 /* once for us */
2755 free_extent_map(em);
2756 /* once for the tree */
2757 free_extent_map(em);
2758 }
2759}
2760
Chris Masonf1885912008-04-09 16:28:12 -04002761int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
2762{
2763 struct extent_map *em;
2764 struct map_lookup *map;
2765 struct extent_map_tree *em_tree = &map_tree->map_tree;
2766 int ret;
2767
Chris Mason890871b2009-09-02 16:24:52 -04002768 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002769 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04002770 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04002771 BUG_ON(!em);
2772
2773 BUG_ON(em->start > logical || em->start + em->len < logical);
2774 map = (struct map_lookup *)em->bdev;
2775 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
2776 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002777 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
2778 ret = map->sub_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002779 else
2780 ret = 1;
2781 free_extent_map(em);
Chris Masonf1885912008-04-09 16:28:12 -04002782 return ret;
2783}
2784
Chris Masondfe25022008-05-13 13:46:40 -04002785static int find_live_mirror(struct map_lookup *map, int first, int num,
2786 int optimal)
2787{
2788 int i;
2789 if (map->stripes[optimal].dev->bdev)
2790 return optimal;
2791 for (i = first; i < first + num; i++) {
2792 if (map->stripes[i].dev->bdev)
2793 return i;
2794 }
2795 /* we couldn't find one that doesn't fail. Just return something
2796 * and the io error handling code will clean up eventually
2797 */
2798 return optimal;
2799}
2800
Chris Masonf2d8d742008-04-21 10:03:05 -04002801static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
2802 u64 logical, u64 *length,
2803 struct btrfs_multi_bio **multi_ret,
Jens Axboe7eaceac2011-03-10 08:52:07 +01002804 int mirror_num)
Chris Mason0b86a832008-03-24 15:01:56 -04002805{
2806 struct extent_map *em;
2807 struct map_lookup *map;
2808 struct extent_map_tree *em_tree = &map_tree->map_tree;
2809 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04002810 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00002811 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04002812 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00002813 u64 stripe_nr_orig;
2814 u64 stripe_nr_end;
Chris Masoncea9e442008-04-09 16:28:12 -04002815 int stripes_allocated = 8;
Chris Mason321aecc2008-04-16 10:49:51 -04002816 int stripes_required = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002817 int stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04002818 int i;
Chris Masonf2d8d742008-04-21 10:03:05 -04002819 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002820 int max_errors = 0;
Chris Masoncea9e442008-04-09 16:28:12 -04002821 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04002822
Li Dongyangfce3bb92011-03-24 10:24:26 +00002823 if (multi_ret && !(rw & (REQ_WRITE | REQ_DISCARD)))
Chris Masoncea9e442008-04-09 16:28:12 -04002824 stripes_allocated = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002825again:
2826 if (multi_ret) {
2827 multi = kzalloc(btrfs_multi_bio_size(stripes_allocated),
2828 GFP_NOFS);
2829 if (!multi)
2830 return -ENOMEM;
Chris Masona236aed2008-04-29 09:38:00 -04002831
2832 atomic_set(&multi->error, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04002833 }
Chris Mason0b86a832008-03-24 15:01:56 -04002834
Chris Mason890871b2009-09-02 16:24:52 -04002835 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04002836 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04002837 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04002838
Chris Mason3b951512008-04-17 11:29:12 -04002839 if (!em) {
Chris Masond3977122009-01-05 21:25:51 -05002840 printk(KERN_CRIT "unable to find logical %llu len %llu\n",
2841 (unsigned long long)logical,
2842 (unsigned long long)*length);
Chris Masonf2d8d742008-04-21 10:03:05 -04002843 BUG();
Chris Mason3b951512008-04-17 11:29:12 -04002844 }
Chris Mason0b86a832008-03-24 15:01:56 -04002845
2846 BUG_ON(em->start > logical || em->start + em->len < logical);
2847 map = (struct map_lookup *)em->bdev;
2848 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04002849
Chris Masonf1885912008-04-09 16:28:12 -04002850 if (mirror_num > map->num_stripes)
2851 mirror_num = 0;
2852
Chris Masoncea9e442008-04-09 16:28:12 -04002853 /* if our multi bio struct is too small, back off and try again */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002854 if (rw & REQ_WRITE) {
Chris Mason321aecc2008-04-16 10:49:51 -04002855 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
2856 BTRFS_BLOCK_GROUP_DUP)) {
2857 stripes_required = map->num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002858 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002859 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2860 stripes_required = map->sub_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04002861 max_errors = 1;
Chris Mason321aecc2008-04-16 10:49:51 -04002862 }
2863 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00002864 if (rw & REQ_DISCARD) {
2865 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
2866 BTRFS_BLOCK_GROUP_RAID1 |
2867 BTRFS_BLOCK_GROUP_DUP |
2868 BTRFS_BLOCK_GROUP_RAID10)) {
2869 stripes_required = map->num_stripes;
2870 }
2871 }
2872 if (multi_ret && (rw & (REQ_WRITE | REQ_DISCARD)) &&
Chris Mason321aecc2008-04-16 10:49:51 -04002873 stripes_allocated < stripes_required) {
Chris Masoncea9e442008-04-09 16:28:12 -04002874 stripes_allocated = map->num_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04002875 free_extent_map(em);
2876 kfree(multi);
2877 goto again;
2878 }
Chris Mason593060d2008-03-25 16:50:33 -04002879 stripe_nr = offset;
2880 /*
2881 * stripe_nr counts the total number of stripes we have to stride
2882 * to get to this block
2883 */
2884 do_div(stripe_nr, map->stripe_len);
2885
2886 stripe_offset = stripe_nr * map->stripe_len;
2887 BUG_ON(offset < stripe_offset);
2888
2889 /* stripe_offset is the offset of this block in its stripe*/
2890 stripe_offset = offset - stripe_offset;
2891
Li Dongyangfce3bb92011-03-24 10:24:26 +00002892 if (rw & REQ_DISCARD)
2893 *length = min_t(u64, em->len - offset, *length);
2894 else if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
2895 BTRFS_BLOCK_GROUP_RAID1 |
2896 BTRFS_BLOCK_GROUP_RAID10 |
2897 BTRFS_BLOCK_GROUP_DUP)) {
Chris Masoncea9e442008-04-09 16:28:12 -04002898 /* we limit the length of each bio to what fits in a stripe */
2899 *length = min_t(u64, em->len - offset,
Li Dongyangfce3bb92011-03-24 10:24:26 +00002900 map->stripe_len - stripe_offset);
Chris Masoncea9e442008-04-09 16:28:12 -04002901 } else {
2902 *length = em->len - offset;
2903 }
Chris Masonf2d8d742008-04-21 10:03:05 -04002904
Jens Axboe7eaceac2011-03-10 08:52:07 +01002905 if (!multi_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04002906 goto out;
2907
Chris Masonf2d8d742008-04-21 10:03:05 -04002908 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04002909 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00002910 stripe_nr_orig = stripe_nr;
2911 stripe_nr_end = (offset + *length + map->stripe_len - 1) &
2912 (~(map->stripe_len - 1));
2913 do_div(stripe_nr_end, map->stripe_len);
2914 stripe_end_offset = stripe_nr_end * map->stripe_len -
2915 (offset + *length);
2916 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
2917 if (rw & REQ_DISCARD)
2918 num_stripes = min_t(u64, map->num_stripes,
2919 stripe_nr_end - stripe_nr_orig);
2920 stripe_index = do_div(stripe_nr, map->num_stripes);
2921 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Linus Torvalds212a17a2011-03-28 15:31:05 -07002922 if (rw & (REQ_WRITE | REQ_DISCARD))
Chris Masonf2d8d742008-04-21 10:03:05 -04002923 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04002924 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04002925 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002926 else {
2927 stripe_index = find_live_mirror(map, 0,
2928 map->num_stripes,
2929 current->pid % map->num_stripes);
2930 }
Chris Mason2fff7342008-04-29 14:12:09 -04002931
Chris Mason611f0e02008-04-03 16:29:03 -04002932 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Li Dongyangfce3bb92011-03-24 10:24:26 +00002933 if (rw & (REQ_WRITE | REQ_DISCARD))
Chris Masonf2d8d742008-04-21 10:03:05 -04002934 num_stripes = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04002935 else if (mirror_num)
2936 stripe_index = mirror_num - 1;
Chris Mason2fff7342008-04-29 14:12:09 -04002937
Chris Mason321aecc2008-04-16 10:49:51 -04002938 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2939 int factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04002940
2941 stripe_index = do_div(stripe_nr, factor);
2942 stripe_index *= map->sub_stripes;
2943
Jens Axboe7eaceac2011-03-10 08:52:07 +01002944 if (rw & REQ_WRITE)
Chris Masonf2d8d742008-04-21 10:03:05 -04002945 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00002946 else if (rw & REQ_DISCARD)
2947 num_stripes = min_t(u64, map->sub_stripes *
2948 (stripe_nr_end - stripe_nr_orig),
2949 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04002950 else if (mirror_num)
2951 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04002952 else {
2953 stripe_index = find_live_mirror(map, stripe_index,
2954 map->sub_stripes, stripe_index +
2955 current->pid % map->sub_stripes);
2956 }
Chris Mason8790d502008-04-03 16:29:03 -04002957 } else {
2958 /*
2959 * after this do_div call, stripe_nr is the number of stripes
2960 * on this device we have to walk to find the data, and
2961 * stripe_index is the number of our device in the stripe array
2962 */
2963 stripe_index = do_div(stripe_nr, map->num_stripes);
2964 }
Chris Mason593060d2008-03-25 16:50:33 -04002965 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04002966
Li Dongyangfce3bb92011-03-24 10:24:26 +00002967 if (rw & REQ_DISCARD) {
2968 for (i = 0; i < num_stripes; i++) {
Chris Masonf2d8d742008-04-21 10:03:05 -04002969 multi->stripes[i].physical =
2970 map->stripes[stripe_index].physical +
2971 stripe_offset + stripe_nr * map->stripe_len;
2972 multi->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00002973
2974 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
2975 u64 stripes;
Chris Masond9d04872011-03-27 21:23:21 -04002976 u32 last_stripe = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00002977 int j;
2978
Chris Masond9d04872011-03-27 21:23:21 -04002979 div_u64_rem(stripe_nr_end - 1,
2980 map->num_stripes,
2981 &last_stripe);
2982
Li Dongyangfce3bb92011-03-24 10:24:26 +00002983 for (j = 0; j < map->num_stripes; j++) {
Chris Masond9d04872011-03-27 21:23:21 -04002984 u32 test;
2985
2986 div_u64_rem(stripe_nr_end - 1 - j,
2987 map->num_stripes, &test);
2988 if (test == stripe_index)
Li Dongyangfce3bb92011-03-24 10:24:26 +00002989 break;
2990 }
2991 stripes = stripe_nr_end - 1 - j;
2992 do_div(stripes, map->num_stripes);
2993 multi->stripes[i].length = map->stripe_len *
2994 (stripes - stripe_nr + 1);
2995
2996 if (i == 0) {
2997 multi->stripes[i].length -=
2998 stripe_offset;
2999 stripe_offset = 0;
3000 }
3001 if (stripe_index == last_stripe)
3002 multi->stripes[i].length -=
3003 stripe_end_offset;
3004 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3005 u64 stripes;
3006 int j;
3007 int factor = map->num_stripes /
3008 map->sub_stripes;
Chris Masond9d04872011-03-27 21:23:21 -04003009 u32 last_stripe = 0;
3010
3011 div_u64_rem(stripe_nr_end - 1,
3012 factor, &last_stripe);
Li Dongyangfce3bb92011-03-24 10:24:26 +00003013 last_stripe *= map->sub_stripes;
3014
3015 for (j = 0; j < factor; j++) {
Chris Masond9d04872011-03-27 21:23:21 -04003016 u32 test;
3017
3018 div_u64_rem(stripe_nr_end - 1 - j,
3019 factor, &test);
3020
3021 if (test ==
Li Dongyangfce3bb92011-03-24 10:24:26 +00003022 stripe_index / map->sub_stripes)
3023 break;
3024 }
3025 stripes = stripe_nr_end - 1 - j;
3026 do_div(stripes, factor);
3027 multi->stripes[i].length = map->stripe_len *
3028 (stripes - stripe_nr + 1);
3029
3030 if (i < map->sub_stripes) {
3031 multi->stripes[i].length -=
3032 stripe_offset;
3033 if (i == map->sub_stripes - 1)
3034 stripe_offset = 0;
3035 }
3036 if (stripe_index >= last_stripe &&
3037 stripe_index <= (last_stripe +
3038 map->sub_stripes - 1)) {
3039 multi->stripes[i].length -=
3040 stripe_end_offset;
3041 }
3042 } else
3043 multi->stripes[i].length = *length;
3044
3045 stripe_index++;
3046 if (stripe_index == map->num_stripes) {
3047 /* This could only happen for RAID0/10 */
3048 stripe_index = 0;
3049 stripe_nr++;
3050 }
Chris Masonf2d8d742008-04-21 10:03:05 -04003051 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00003052 } else {
3053 for (i = 0; i < num_stripes; i++) {
Linus Torvalds212a17a2011-03-28 15:31:05 -07003054 multi->stripes[i].physical =
3055 map->stripes[stripe_index].physical +
3056 stripe_offset +
3057 stripe_nr * map->stripe_len;
3058 multi->stripes[i].dev =
3059 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00003060 stripe_index++;
3061 }
Chris Mason593060d2008-03-25 16:50:33 -04003062 }
Chris Masonf2d8d742008-04-21 10:03:05 -04003063 if (multi_ret) {
3064 *multi_ret = multi;
3065 multi->num_stripes = num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04003066 multi->max_errors = max_errors;
Chris Masonf2d8d742008-04-21 10:03:05 -04003067 }
Chris Masoncea9e442008-04-09 16:28:12 -04003068out:
Chris Mason0b86a832008-03-24 15:01:56 -04003069 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04003070 return 0;
3071}
3072
Chris Masonf2d8d742008-04-21 10:03:05 -04003073int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
3074 u64 logical, u64 *length,
3075 struct btrfs_multi_bio **multi_ret, int mirror_num)
3076{
3077 return __btrfs_map_block(map_tree, rw, logical, length, multi_ret,
Jens Axboe7eaceac2011-03-10 08:52:07 +01003078 mirror_num);
Chris Masonf2d8d742008-04-21 10:03:05 -04003079}
3080
Yan Zhenga512bbf2008-12-08 16:46:26 -05003081int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
3082 u64 chunk_start, u64 physical, u64 devid,
3083 u64 **logical, int *naddrs, int *stripe_len)
3084{
3085 struct extent_map_tree *em_tree = &map_tree->map_tree;
3086 struct extent_map *em;
3087 struct map_lookup *map;
3088 u64 *buf;
3089 u64 bytenr;
3090 u64 length;
3091 u64 stripe_nr;
3092 int i, j, nr = 0;
3093
Chris Mason890871b2009-09-02 16:24:52 -04003094 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003095 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003096 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003097
3098 BUG_ON(!em || em->start != chunk_start);
3099 map = (struct map_lookup *)em->bdev;
3100
3101 length = em->len;
3102 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
3103 do_div(length, map->num_stripes / map->sub_stripes);
3104 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
3105 do_div(length, map->num_stripes);
3106
3107 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
3108 BUG_ON(!buf);
3109
3110 for (i = 0; i < map->num_stripes; i++) {
3111 if (devid && map->stripes[i].dev->devid != devid)
3112 continue;
3113 if (map->stripes[i].physical > physical ||
3114 map->stripes[i].physical + length <= physical)
3115 continue;
3116
3117 stripe_nr = physical - map->stripes[i].physical;
3118 do_div(stripe_nr, map->stripe_len);
3119
3120 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3121 stripe_nr = stripe_nr * map->num_stripes + i;
3122 do_div(stripe_nr, map->sub_stripes);
3123 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3124 stripe_nr = stripe_nr * map->num_stripes + i;
3125 }
3126 bytenr = chunk_start + stripe_nr * map->stripe_len;
Chris Mason934d3752008-12-08 16:43:10 -05003127 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003128 for (j = 0; j < nr; j++) {
3129 if (buf[j] == bytenr)
3130 break;
3131 }
Chris Mason934d3752008-12-08 16:43:10 -05003132 if (j == nr) {
3133 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003134 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05003135 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05003136 }
3137
Yan Zhenga512bbf2008-12-08 16:46:26 -05003138 *logical = buf;
3139 *naddrs = nr;
3140 *stripe_len = map->stripe_len;
3141
3142 free_extent_map(em);
3143 return 0;
3144}
3145
Chris Mason8790d502008-04-03 16:29:03 -04003146static void end_bio_multi_stripe(struct bio *bio, int err)
Chris Mason8790d502008-04-03 16:29:03 -04003147{
Chris Masoncea9e442008-04-09 16:28:12 -04003148 struct btrfs_multi_bio *multi = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04003149 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04003150
Chris Mason8790d502008-04-03 16:29:03 -04003151 if (err)
Chris Masona236aed2008-04-29 09:38:00 -04003152 atomic_inc(&multi->error);
Chris Mason8790d502008-04-03 16:29:03 -04003153
Chris Mason7d2b4da2008-08-05 10:13:57 -04003154 if (bio == multi->orig_bio)
3155 is_orig_bio = 1;
3156
Chris Masoncea9e442008-04-09 16:28:12 -04003157 if (atomic_dec_and_test(&multi->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04003158 if (!is_orig_bio) {
3159 bio_put(bio);
3160 bio = multi->orig_bio;
3161 }
Chris Mason8790d502008-04-03 16:29:03 -04003162 bio->bi_private = multi->private;
3163 bio->bi_end_io = multi->end_io;
Chris Masona236aed2008-04-29 09:38:00 -04003164 /* only send an error to the higher layers if it is
3165 * beyond the tolerance of the multi-bio
3166 */
Chris Mason1259ab72008-05-12 13:39:03 -04003167 if (atomic_read(&multi->error) > multi->max_errors) {
Chris Masona236aed2008-04-29 09:38:00 -04003168 err = -EIO;
Chris Mason1259ab72008-05-12 13:39:03 -04003169 } else if (err) {
3170 /*
3171 * this bio is actually up to date, we didn't
3172 * go over the max number of errors
3173 */
3174 set_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masona236aed2008-04-29 09:38:00 -04003175 err = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04003176 }
Chris Mason8790d502008-04-03 16:29:03 -04003177 kfree(multi);
3178
3179 bio_endio(bio, err);
Chris Mason7d2b4da2008-08-05 10:13:57 -04003180 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04003181 bio_put(bio);
3182 }
Chris Mason8790d502008-04-03 16:29:03 -04003183}
3184
Chris Mason8b712842008-06-11 16:50:36 -04003185struct async_sched {
3186 struct bio *bio;
3187 int rw;
3188 struct btrfs_fs_info *info;
3189 struct btrfs_work work;
3190};
3191
3192/*
3193 * see run_scheduled_bios for a description of why bios are collected for
3194 * async submit.
3195 *
3196 * This will add one bio to the pending list for a device and make sure
3197 * the work struct is scheduled.
3198 */
Chris Masond3977122009-01-05 21:25:51 -05003199static noinline int schedule_bio(struct btrfs_root *root,
Chris Masona1b32a52008-09-05 16:09:51 -04003200 struct btrfs_device *device,
3201 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04003202{
3203 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04003204 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04003205
3206 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003207 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04003208 bio_get(bio);
Chris Mason8b712842008-06-11 16:50:36 -04003209 submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04003210 bio_put(bio);
Chris Mason8b712842008-06-11 16:50:36 -04003211 return 0;
3212 }
3213
3214 /*
Chris Mason0986fe92008-08-15 15:34:15 -04003215 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04003216 * higher layers. Otherwise, the async bio makes it appear we have
3217 * made progress against dirty pages when we've really just put it
3218 * on a queue for later
3219 */
Chris Mason0986fe92008-08-15 15:34:15 -04003220 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04003221 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04003222 bio->bi_next = NULL;
3223 bio->bi_rw |= rw;
3224
3225 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003226 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04003227 pending_bios = &device->pending_sync_bios;
3228 else
3229 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04003230
Chris Masonffbd5172009-04-20 15:50:09 -04003231 if (pending_bios->tail)
3232 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04003233
Chris Masonffbd5172009-04-20 15:50:09 -04003234 pending_bios->tail = bio;
3235 if (!pending_bios->head)
3236 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04003237 if (device->running_pending)
3238 should_queue = 0;
3239
3240 spin_unlock(&device->io_lock);
3241
3242 if (should_queue)
Chris Mason1cc127b2008-06-12 14:46:17 -04003243 btrfs_queue_worker(&root->fs_info->submit_workers,
3244 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04003245 return 0;
3246}
3247
Chris Masonf1885912008-04-09 16:28:12 -04003248int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04003249 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04003250{
3251 struct btrfs_mapping_tree *map_tree;
3252 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04003253 struct bio *first_bio = bio;
Chris Masona62b9402008-10-03 16:31:08 -04003254 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04003255 u64 length = 0;
3256 u64 map_length;
Chris Masoncea9e442008-04-09 16:28:12 -04003257 struct btrfs_multi_bio *multi = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04003258 int ret;
Chris Mason8790d502008-04-03 16:29:03 -04003259 int dev_nr = 0;
3260 int total_devs = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04003261
Chris Masonf2d8d742008-04-21 10:03:05 -04003262 length = bio->bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04003263 map_tree = &root->fs_info->mapping_tree;
3264 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04003265
Chris Masonf1885912008-04-09 16:28:12 -04003266 ret = btrfs_map_block(map_tree, rw, logical, &map_length, &multi,
3267 mirror_num);
Chris Masoncea9e442008-04-09 16:28:12 -04003268 BUG_ON(ret);
3269
3270 total_devs = multi->num_stripes;
3271 if (map_length < length) {
Chris Masond3977122009-01-05 21:25:51 -05003272 printk(KERN_CRIT "mapping failed logical %llu bio len %llu "
3273 "len %llu\n", (unsigned long long)logical,
3274 (unsigned long long)length,
3275 (unsigned long long)map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04003276 BUG();
3277 }
3278 multi->end_io = first_bio->bi_end_io;
3279 multi->private = first_bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04003280 multi->orig_bio = first_bio;
Chris Masoncea9e442008-04-09 16:28:12 -04003281 atomic_set(&multi->stripes_pending, multi->num_stripes);
3282
Chris Masond3977122009-01-05 21:25:51 -05003283 while (dev_nr < total_devs) {
Chris Mason8790d502008-04-03 16:29:03 -04003284 if (total_devs > 1) {
Chris Mason8790d502008-04-03 16:29:03 -04003285 if (dev_nr < total_devs - 1) {
3286 bio = bio_clone(first_bio, GFP_NOFS);
3287 BUG_ON(!bio);
3288 } else {
3289 bio = first_bio;
3290 }
3291 bio->bi_private = multi;
3292 bio->bi_end_io = end_bio_multi_stripe;
3293 }
Chris Masoncea9e442008-04-09 16:28:12 -04003294 bio->bi_sector = multi->stripes[dev_nr].physical >> 9;
3295 dev = multi->stripes[dev_nr].dev;
Chris Mason18e503d2010-10-28 15:30:42 -04003296 if (dev && dev->bdev && (rw != WRITE || dev->writeable)) {
Chris Masondfe25022008-05-13 13:46:40 -04003297 bio->bi_bdev = dev->bdev;
Chris Mason8b712842008-06-11 16:50:36 -04003298 if (async_submit)
3299 schedule_bio(root, dev, rw, bio);
3300 else
3301 submit_bio(rw, bio);
Chris Masondfe25022008-05-13 13:46:40 -04003302 } else {
3303 bio->bi_bdev = root->fs_info->fs_devices->latest_bdev;
3304 bio->bi_sector = logical >> 9;
Chris Masondfe25022008-05-13 13:46:40 -04003305 bio_endio(bio, -EIO);
Chris Masondfe25022008-05-13 13:46:40 -04003306 }
Chris Mason8790d502008-04-03 16:29:03 -04003307 dev_nr++;
Chris Mason239b14b2008-03-24 15:02:07 -04003308 }
Chris Masoncea9e442008-04-09 16:28:12 -04003309 if (total_devs == 1)
3310 kfree(multi);
Chris Mason0b86a832008-03-24 15:01:56 -04003311 return 0;
3312}
3313
Chris Masona4437552008-04-18 10:29:38 -04003314struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05003315 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04003316{
Yan Zheng2b820322008-11-17 21:11:30 -05003317 struct btrfs_device *device;
3318 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04003319
Yan Zheng2b820322008-11-17 21:11:30 -05003320 cur_devices = root->fs_info->fs_devices;
3321 while (cur_devices) {
3322 if (!fsid ||
3323 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3324 device = __find_device(&cur_devices->devices,
3325 devid, uuid);
3326 if (device)
3327 return device;
3328 }
3329 cur_devices = cur_devices->seed;
3330 }
3331 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04003332}
3333
Chris Masondfe25022008-05-13 13:46:40 -04003334static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
3335 u64 devid, u8 *dev_uuid)
3336{
3337 struct btrfs_device *device;
3338 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
3339
3340 device = kzalloc(sizeof(*device), GFP_NOFS);
yanhai zhu7cbd8a82008-11-12 14:38:54 -05003341 if (!device)
3342 return NULL;
Chris Masondfe25022008-05-13 13:46:40 -04003343 list_add(&device->dev_list,
3344 &fs_devices->devices);
Chris Masondfe25022008-05-13 13:46:40 -04003345 device->dev_root = root->fs_info->dev_root;
3346 device->devid = devid;
Chris Mason8b712842008-06-11 16:50:36 -04003347 device->work.func = pending_bios_fn;
Yan Zhenge4404d62008-12-12 10:03:26 -05003348 device->fs_devices = fs_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05003349 device->missing = 1;
Chris Masondfe25022008-05-13 13:46:40 -04003350 fs_devices->num_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05003351 fs_devices->missing_devices++;
Chris Masondfe25022008-05-13 13:46:40 -04003352 spin_lock_init(&device->io_lock);
Chris Masond20f7042008-12-08 16:58:54 -05003353 INIT_LIST_HEAD(&device->dev_alloc_list);
Chris Masondfe25022008-05-13 13:46:40 -04003354 memcpy(device->uuid, dev_uuid, BTRFS_UUID_SIZE);
3355 return device;
3356}
3357
Chris Mason0b86a832008-03-24 15:01:56 -04003358static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
3359 struct extent_buffer *leaf,
3360 struct btrfs_chunk *chunk)
3361{
3362 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
3363 struct map_lookup *map;
3364 struct extent_map *em;
3365 u64 logical;
3366 u64 length;
3367 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04003368 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04003369 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04003370 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04003371 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04003372
Chris Masone17cade2008-04-15 15:41:47 -04003373 logical = key->offset;
3374 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04003375
Chris Mason890871b2009-09-02 16:24:52 -04003376 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003377 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04003378 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003379
3380 /* already mapped? */
3381 if (em && em->start <= logical && em->start + em->len > logical) {
3382 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04003383 return 0;
3384 } else if (em) {
3385 free_extent_map(em);
3386 }
Chris Mason0b86a832008-03-24 15:01:56 -04003387
David Sterba172ddd62011-04-21 00:48:27 +02003388 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04003389 if (!em)
3390 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04003391 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3392 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04003393 if (!map) {
3394 free_extent_map(em);
3395 return -ENOMEM;
3396 }
3397
3398 em->bdev = (struct block_device *)map;
3399 em->start = logical;
3400 em->len = length;
3401 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003402 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04003403
Chris Mason593060d2008-03-25 16:50:33 -04003404 map->num_stripes = num_stripes;
3405 map->io_width = btrfs_chunk_io_width(leaf, chunk);
3406 map->io_align = btrfs_chunk_io_align(leaf, chunk);
3407 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
3408 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
3409 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04003410 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04003411 for (i = 0; i < num_stripes; i++) {
3412 map->stripes[i].physical =
3413 btrfs_stripe_offset_nr(leaf, chunk, i);
3414 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04003415 read_extent_buffer(leaf, uuid, (unsigned long)
3416 btrfs_stripe_dev_uuid_nr(chunk, i),
3417 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003418 map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
3419 NULL);
Chris Masondfe25022008-05-13 13:46:40 -04003420 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04003421 kfree(map);
3422 free_extent_map(em);
3423 return -EIO;
3424 }
Chris Masondfe25022008-05-13 13:46:40 -04003425 if (!map->stripes[i].dev) {
3426 map->stripes[i].dev =
3427 add_missing_dev(root, devid, uuid);
3428 if (!map->stripes[i].dev) {
3429 kfree(map);
3430 free_extent_map(em);
3431 return -EIO;
3432 }
3433 }
3434 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04003435 }
3436
Chris Mason890871b2009-09-02 16:24:52 -04003437 write_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04003438 ret = add_extent_mapping(&map_tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04003439 write_unlock(&map_tree->map_tree.lock);
Chris Masonb248a412008-04-14 09:48:18 -04003440 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -04003441 free_extent_map(em);
3442
3443 return 0;
3444}
3445
3446static int fill_device_from_item(struct extent_buffer *leaf,
3447 struct btrfs_dev_item *dev_item,
3448 struct btrfs_device *device)
3449{
3450 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04003451
3452 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04003453 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
3454 device->total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003455 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
3456 device->type = btrfs_device_type(leaf, dev_item);
3457 device->io_align = btrfs_device_io_align(leaf, dev_item);
3458 device->io_width = btrfs_device_io_width(leaf, dev_item);
3459 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Chris Mason0b86a832008-03-24 15:01:56 -04003460
3461 ptr = (unsigned long)btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04003462 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003463
Chris Mason0b86a832008-03-24 15:01:56 -04003464 return 0;
3465}
3466
Yan Zheng2b820322008-11-17 21:11:30 -05003467static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
3468{
3469 struct btrfs_fs_devices *fs_devices;
3470 int ret;
3471
3472 mutex_lock(&uuid_mutex);
3473
3474 fs_devices = root->fs_info->fs_devices->seed;
3475 while (fs_devices) {
3476 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
3477 ret = 0;
3478 goto out;
3479 }
3480 fs_devices = fs_devices->seed;
3481 }
3482
3483 fs_devices = find_fsid(fsid);
3484 if (!fs_devices) {
3485 ret = -ENOENT;
3486 goto out;
3487 }
Yan Zhenge4404d62008-12-12 10:03:26 -05003488
3489 fs_devices = clone_fs_devices(fs_devices);
3490 if (IS_ERR(fs_devices)) {
3491 ret = PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003492 goto out;
3493 }
3494
Christoph Hellwig97288f22008-12-02 06:36:09 -05003495 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05003496 root->fs_info->bdev_holder);
Yan Zheng2b820322008-11-17 21:11:30 -05003497 if (ret)
3498 goto out;
3499
3500 if (!fs_devices->seeding) {
3501 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05003502 free_fs_devices(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05003503 ret = -EINVAL;
3504 goto out;
3505 }
3506
3507 fs_devices->seed = root->fs_info->fs_devices->seed;
3508 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05003509out:
3510 mutex_unlock(&uuid_mutex);
3511 return ret;
3512}
3513
Chris Mason0d81ba52008-03-24 15:02:07 -04003514static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04003515 struct extent_buffer *leaf,
3516 struct btrfs_dev_item *dev_item)
3517{
3518 struct btrfs_device *device;
3519 u64 devid;
3520 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003521 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04003522 u8 dev_uuid[BTRFS_UUID_SIZE];
3523
Chris Mason0b86a832008-03-24 15:01:56 -04003524 devid = btrfs_device_id(leaf, dev_item);
Chris Masona4437552008-04-18 10:29:38 -04003525 read_extent_buffer(leaf, dev_uuid,
3526 (unsigned long)btrfs_device_uuid(dev_item),
3527 BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003528 read_extent_buffer(leaf, fs_uuid,
3529 (unsigned long)btrfs_device_fsid(dev_item),
3530 BTRFS_UUID_SIZE);
3531
3532 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
3533 ret = open_seed_devices(root, fs_uuid);
Yan Zhenge4404d62008-12-12 10:03:26 -05003534 if (ret && !btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003535 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05003536 }
3537
3538 device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
3539 if (!device || !device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05003540 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05003541 return -EIO;
3542
3543 if (!device) {
Chris Masond3977122009-01-05 21:25:51 -05003544 printk(KERN_WARNING "warning devid %llu missing\n",
3545 (unsigned long long)devid);
Yan Zheng2b820322008-11-17 21:11:30 -05003546 device = add_missing_dev(root, devid, dev_uuid);
3547 if (!device)
3548 return -ENOMEM;
Chris Masoncd02dca2010-12-13 14:56:23 -05003549 } else if (!device->missing) {
3550 /*
3551 * this happens when a device that was properly setup
3552 * in the device info lists suddenly goes bad.
3553 * device->bdev is NULL, and so we have to set
3554 * device->missing to one here
3555 */
3556 root->fs_info->fs_devices->missing_devices++;
3557 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05003558 }
3559 }
3560
3561 if (device->fs_devices != root->fs_info->fs_devices) {
3562 BUG_ON(device->writeable);
3563 if (device->generation !=
3564 btrfs_device_generation(leaf, dev_item))
3565 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04003566 }
Chris Mason0b86a832008-03-24 15:01:56 -04003567
3568 fill_device_from_item(leaf, dev_item, device);
3569 device->dev_root = root->fs_info->dev_root;
Chris Masondfe25022008-05-13 13:46:40 -04003570 device->in_fs_metadata = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05003571 if (device->writeable)
3572 device->fs_devices->total_rw_bytes += device->total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04003573 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003574 return ret;
3575}
3576
Yan Zhenge4404d62008-12-12 10:03:26 -05003577int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04003578{
3579 struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04003580 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04003581 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04003582 struct btrfs_chunk *chunk;
Chris Mason84eed902008-04-25 09:04:37 -04003583 u8 *ptr;
3584 unsigned long sb_ptr;
3585 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003586 u32 num_stripes;
3587 u32 array_size;
3588 u32 len = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003589 u32 cur;
Chris Mason84eed902008-04-25 09:04:37 -04003590 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04003591
Yan Zhenge4404d62008-12-12 10:03:26 -05003592 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
Chris Masona061fc82008-05-07 11:43:44 -04003593 BTRFS_SUPER_INFO_SIZE);
3594 if (!sb)
3595 return -ENOMEM;
3596 btrfs_set_buffer_uptodate(sb);
Chris Mason4008c042009-02-12 14:09:45 -05003597 btrfs_set_buffer_lockdep_class(sb, 0);
3598
Chris Masona061fc82008-05-07 11:43:44 -04003599 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04003600 array_size = btrfs_super_sys_array_size(super_copy);
3601
Chris Mason0b86a832008-03-24 15:01:56 -04003602 ptr = super_copy->sys_chunk_array;
3603 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
3604 cur = 0;
3605
3606 while (cur < array_size) {
3607 disk_key = (struct btrfs_disk_key *)ptr;
3608 btrfs_disk_key_to_cpu(&key, disk_key);
3609
Chris Masona061fc82008-05-07 11:43:44 -04003610 len = sizeof(*disk_key); ptr += len;
Chris Mason0b86a832008-03-24 15:01:56 -04003611 sb_ptr += len;
3612 cur += len;
3613
Chris Mason0d81ba52008-03-24 15:02:07 -04003614 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
Chris Mason0b86a832008-03-24 15:01:56 -04003615 chunk = (struct btrfs_chunk *)sb_ptr;
Chris Mason0d81ba52008-03-24 15:02:07 -04003616 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04003617 if (ret)
3618 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003619 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
3620 len = btrfs_chunk_item_size(num_stripes);
3621 } else {
Chris Mason84eed902008-04-25 09:04:37 -04003622 ret = -EIO;
3623 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003624 }
3625 ptr += len;
3626 sb_ptr += len;
3627 cur += len;
3628 }
Chris Masona061fc82008-05-07 11:43:44 -04003629 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04003630 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04003631}
3632
3633int btrfs_read_chunk_tree(struct btrfs_root *root)
3634{
3635 struct btrfs_path *path;
3636 struct extent_buffer *leaf;
3637 struct btrfs_key key;
3638 struct btrfs_key found_key;
3639 int ret;
3640 int slot;
3641
3642 root = root->fs_info->chunk_root;
3643
3644 path = btrfs_alloc_path();
3645 if (!path)
3646 return -ENOMEM;
3647
3648 /* first we search for all of the device items, and then we
3649 * read in all of the chunk items. This way we can create chunk
3650 * mappings that reference all of the devices that are afound
3651 */
3652 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
3653 key.offset = 0;
3654 key.type = 0;
3655again:
3656 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00003657 if (ret < 0)
3658 goto error;
Chris Masond3977122009-01-05 21:25:51 -05003659 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003660 leaf = path->nodes[0];
3661 slot = path->slots[0];
3662 if (slot >= btrfs_header_nritems(leaf)) {
3663 ret = btrfs_next_leaf(root, path);
3664 if (ret == 0)
3665 continue;
3666 if (ret < 0)
3667 goto error;
3668 break;
3669 }
3670 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3671 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3672 if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
3673 break;
3674 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
3675 struct btrfs_dev_item *dev_item;
3676 dev_item = btrfs_item_ptr(leaf, slot,
3677 struct btrfs_dev_item);
Chris Mason0d81ba52008-03-24 15:02:07 -04003678 ret = read_one_dev(root, leaf, dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05003679 if (ret)
3680 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003681 }
3682 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
3683 struct btrfs_chunk *chunk;
3684 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3685 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05003686 if (ret)
3687 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04003688 }
3689 path->slots[0]++;
3690 }
3691 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
3692 key.objectid = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003693 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04003694 goto again;
3695 }
Chris Mason0b86a832008-03-24 15:01:56 -04003696 ret = 0;
3697error:
Yan Zheng2b820322008-11-17 21:11:30 -05003698 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04003699 return ret;
3700}