]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/btrfs/volumes.c
Btrfs: record first logical byte in memory
[mirror_ubuntu-artful-kernel.git] / fs / btrfs / volumes.c
CommitLineData
0b86a832
CM
1/*
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>
5a0e3ad6 20#include <linux/slab.h>
8a4b83cc 21#include <linux/buffer_head.h>
f2d8d74d 22#include <linux/blkdev.h>
788f20eb 23#include <linux/random.h>
b765ead5 24#include <linux/iocontext.h>
6f88a440 25#include <linux/capability.h>
442a4f63 26#include <linux/ratelimit.h>
59641015 27#include <linux/kthread.h>
4b4e25f2 28#include "compat.h"
0b86a832
CM
29#include "ctree.h"
30#include "extent_map.h"
31#include "disk-io.h"
32#include "transaction.h"
33#include "print-tree.h"
34#include "volumes.h"
8b712842 35#include "async-thread.h"
21adbd5c 36#include "check-integrity.h"
606686ee 37#include "rcu-string.h"
3fed40cc 38#include "math.h"
8dabb742 39#include "dev-replace.h"
0b86a832 40
2b82032c
YZ
41static int init_first_rw_device(struct btrfs_trans_handle *trans,
42 struct btrfs_root *root,
43 struct btrfs_device *device);
44static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
733f4fbb
SB
45static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
46static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
2b82032c 47
8a4b83cc
CM
48static DEFINE_MUTEX(uuid_mutex);
49static LIST_HEAD(fs_uuids);
50
7d9eb12c
CM
51static void lock_chunks(struct btrfs_root *root)
52{
7d9eb12c
CM
53 mutex_lock(&root->fs_info->chunk_mutex);
54}
55
56static void unlock_chunks(struct btrfs_root *root)
57{
7d9eb12c
CM
58 mutex_unlock(&root->fs_info->chunk_mutex);
59}
60
e4404d6e
YZ
61static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
62{
63 struct btrfs_device *device;
64 WARN_ON(fs_devices->opened);
65 while (!list_empty(&fs_devices->devices)) {
66 device = list_entry(fs_devices->devices.next,
67 struct btrfs_device, dev_list);
68 list_del(&device->dev_list);
606686ee 69 rcu_string_free(device->name);
e4404d6e
YZ
70 kfree(device);
71 }
72 kfree(fs_devices);
73}
74
b8b8ff59
LC
75static void btrfs_kobject_uevent(struct block_device *bdev,
76 enum kobject_action action)
77{
78 int ret;
79
80 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
81 if (ret)
82 pr_warn("Sending event '%d' to kobject: '%s' (%p): failed\n",
83 action,
84 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
85 &disk_to_dev(bdev->bd_disk)->kobj);
86}
87
143bede5 88void btrfs_cleanup_fs_uuids(void)
8a4b83cc
CM
89{
90 struct btrfs_fs_devices *fs_devices;
8a4b83cc 91
2b82032c
YZ
92 while (!list_empty(&fs_uuids)) {
93 fs_devices = list_entry(fs_uuids.next,
94 struct btrfs_fs_devices, list);
95 list_del(&fs_devices->list);
e4404d6e 96 free_fs_devices(fs_devices);
8a4b83cc 97 }
8a4b83cc
CM
98}
99
a1b32a59
CM
100static noinline struct btrfs_device *__find_device(struct list_head *head,
101 u64 devid, u8 *uuid)
8a4b83cc
CM
102{
103 struct btrfs_device *dev;
8a4b83cc 104
c6e30871 105 list_for_each_entry(dev, head, dev_list) {
a443755f 106 if (dev->devid == devid &&
8f18cf13 107 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
8a4b83cc 108 return dev;
a443755f 109 }
8a4b83cc
CM
110 }
111 return NULL;
112}
113
a1b32a59 114static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
8a4b83cc 115{
8a4b83cc
CM
116 struct btrfs_fs_devices *fs_devices;
117
c6e30871 118 list_for_each_entry(fs_devices, &fs_uuids, list) {
8a4b83cc
CM
119 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
120 return fs_devices;
121 }
122 return NULL;
123}
124
beaf8ab3
SB
125static int
126btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
127 int flush, struct block_device **bdev,
128 struct buffer_head **bh)
129{
130 int ret;
131
132 *bdev = blkdev_get_by_path(device_path, flags, holder);
133
134 if (IS_ERR(*bdev)) {
135 ret = PTR_ERR(*bdev);
136 printk(KERN_INFO "btrfs: open %s failed\n", device_path);
137 goto error;
138 }
139
140 if (flush)
141 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
142 ret = set_blocksize(*bdev, 4096);
143 if (ret) {
144 blkdev_put(*bdev, flags);
145 goto error;
146 }
147 invalidate_bdev(*bdev);
148 *bh = btrfs_read_dev_super(*bdev);
149 if (!*bh) {
150 ret = -EINVAL;
151 blkdev_put(*bdev, flags);
152 goto error;
153 }
154
155 return 0;
156
157error:
158 *bdev = NULL;
159 *bh = NULL;
160 return ret;
161}
162
ffbd517d
CM
163static void requeue_list(struct btrfs_pending_bios *pending_bios,
164 struct bio *head, struct bio *tail)
165{
166
167 struct bio *old_head;
168
169 old_head = pending_bios->head;
170 pending_bios->head = head;
171 if (pending_bios->tail)
172 tail->bi_next = old_head;
173 else
174 pending_bios->tail = tail;
175}
176
8b712842
CM
177/*
178 * we try to collect pending bios for a device so we don't get a large
179 * number of procs sending bios down to the same device. This greatly
180 * improves the schedulers ability to collect and merge the bios.
181 *
182 * But, it also turns into a long list of bios to process and that is sure
183 * to eventually make the worker thread block. The solution here is to
184 * make some progress and then put this work struct back at the end of
185 * the list if the block device is congested. This way, multiple devices
186 * can make progress from a single worker thread.
187 */
143bede5 188static noinline void run_scheduled_bios(struct btrfs_device *device)
8b712842
CM
189{
190 struct bio *pending;
191 struct backing_dev_info *bdi;
b64a2851 192 struct btrfs_fs_info *fs_info;
ffbd517d 193 struct btrfs_pending_bios *pending_bios;
8b712842
CM
194 struct bio *tail;
195 struct bio *cur;
196 int again = 0;
ffbd517d 197 unsigned long num_run;
d644d8a1 198 unsigned long batch_run = 0;
b64a2851 199 unsigned long limit;
b765ead5 200 unsigned long last_waited = 0;
d84275c9 201 int force_reg = 0;
0e588859 202 int sync_pending = 0;
211588ad
CM
203 struct blk_plug plug;
204
205 /*
206 * this function runs all the bios we've collected for
207 * a particular device. We don't want to wander off to
208 * another device without first sending all of these down.
209 * So, setup a plug here and finish it off before we return
210 */
211 blk_start_plug(&plug);
8b712842 212
bedf762b 213 bdi = blk_get_backing_dev_info(device->bdev);
b64a2851
CM
214 fs_info = device->dev_root->fs_info;
215 limit = btrfs_async_submit_limit(fs_info);
216 limit = limit * 2 / 3;
217
8b712842
CM
218loop:
219 spin_lock(&device->io_lock);
220
a6837051 221loop_lock:
d84275c9 222 num_run = 0;
ffbd517d 223
8b712842
CM
224 /* take all the bios off the list at once and process them
225 * later on (without the lock held). But, remember the
226 * tail and other pointers so the bios can be properly reinserted
227 * into the list if we hit congestion
228 */
d84275c9 229 if (!force_reg && device->pending_sync_bios.head) {
ffbd517d 230 pending_bios = &device->pending_sync_bios;
d84275c9
CM
231 force_reg = 1;
232 } else {
ffbd517d 233 pending_bios = &device->pending_bios;
d84275c9
CM
234 force_reg = 0;
235 }
ffbd517d
CM
236
237 pending = pending_bios->head;
238 tail = pending_bios->tail;
8b712842 239 WARN_ON(pending && !tail);
8b712842
CM
240
241 /*
242 * if pending was null this time around, no bios need processing
243 * at all and we can stop. Otherwise it'll loop back up again
244 * and do an additional check so no bios are missed.
245 *
246 * device->running_pending is used to synchronize with the
247 * schedule_bio code.
248 */
ffbd517d
CM
249 if (device->pending_sync_bios.head == NULL &&
250 device->pending_bios.head == NULL) {
8b712842
CM
251 again = 0;
252 device->running_pending = 0;
ffbd517d
CM
253 } else {
254 again = 1;
255 device->running_pending = 1;
8b712842 256 }
ffbd517d
CM
257
258 pending_bios->head = NULL;
259 pending_bios->tail = NULL;
260
8b712842
CM
261 spin_unlock(&device->io_lock);
262
d397712b 263 while (pending) {
ffbd517d
CM
264
265 rmb();
d84275c9
CM
266 /* we want to work on both lists, but do more bios on the
267 * sync list than the regular list
268 */
269 if ((num_run > 32 &&
270 pending_bios != &device->pending_sync_bios &&
271 device->pending_sync_bios.head) ||
272 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
273 device->pending_bios.head)) {
ffbd517d
CM
274 spin_lock(&device->io_lock);
275 requeue_list(pending_bios, pending, tail);
276 goto loop_lock;
277 }
278
8b712842
CM
279 cur = pending;
280 pending = pending->bi_next;
281 cur->bi_next = NULL;
b64a2851 282
66657b31 283 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
b64a2851
CM
284 waitqueue_active(&fs_info->async_submit_wait))
285 wake_up(&fs_info->async_submit_wait);
492bb6de
CM
286
287 BUG_ON(atomic_read(&cur->bi_cnt) == 0);
d644d8a1 288
2ab1ba68
CM
289 /*
290 * if we're doing the sync list, record that our
291 * plug has some sync requests on it
292 *
293 * If we're doing the regular list and there are
294 * sync requests sitting around, unplug before
295 * we add more
296 */
297 if (pending_bios == &device->pending_sync_bios) {
298 sync_pending = 1;
299 } else if (sync_pending) {
300 blk_finish_plug(&plug);
301 blk_start_plug(&plug);
302 sync_pending = 0;
303 }
304
21adbd5c 305 btrfsic_submit_bio(cur->bi_rw, cur);
5ff7ba3a
CM
306 num_run++;
307 batch_run++;
7eaceacc 308 if (need_resched())
ffbd517d 309 cond_resched();
8b712842
CM
310
311 /*
312 * we made progress, there is more work to do and the bdi
313 * is now congested. Back off and let other work structs
314 * run instead
315 */
57fd5a5f 316 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
5f2cc086 317 fs_info->fs_devices->open_devices > 1) {
b765ead5 318 struct io_context *ioc;
8b712842 319
b765ead5
CM
320 ioc = current->io_context;
321
322 /*
323 * the main goal here is that we don't want to
324 * block if we're going to be able to submit
325 * more requests without blocking.
326 *
327 * This code does two great things, it pokes into
328 * the elevator code from a filesystem _and_
329 * it makes assumptions about how batching works.
330 */
331 if (ioc && ioc->nr_batch_requests > 0 &&
332 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
333 (last_waited == 0 ||
334 ioc->last_waited == last_waited)) {
335 /*
336 * we want to go through our batch of
337 * requests and stop. So, we copy out
338 * the ioc->last_waited time and test
339 * against it before looping
340 */
341 last_waited = ioc->last_waited;
7eaceacc 342 if (need_resched())
ffbd517d 343 cond_resched();
b765ead5
CM
344 continue;
345 }
8b712842 346 spin_lock(&device->io_lock);
ffbd517d 347 requeue_list(pending_bios, pending, tail);
a6837051 348 device->running_pending = 1;
8b712842
CM
349
350 spin_unlock(&device->io_lock);
351 btrfs_requeue_work(&device->work);
352 goto done;
353 }
d85c8a6f
CM
354 /* unplug every 64 requests just for good measure */
355 if (batch_run % 64 == 0) {
356 blk_finish_plug(&plug);
357 blk_start_plug(&plug);
358 sync_pending = 0;
359 }
8b712842 360 }
ffbd517d 361
51684082
CM
362 cond_resched();
363 if (again)
364 goto loop;
365
366 spin_lock(&device->io_lock);
367 if (device->pending_bios.head || device->pending_sync_bios.head)
368 goto loop_lock;
369 spin_unlock(&device->io_lock);
370
8b712842 371done:
211588ad 372 blk_finish_plug(&plug);
8b712842
CM
373}
374
b2950863 375static void pending_bios_fn(struct btrfs_work *work)
8b712842
CM
376{
377 struct btrfs_device *device;
378
379 device = container_of(work, struct btrfs_device, work);
380 run_scheduled_bios(device);
381}
382
a1b32a59 383static noinline int device_list_add(const char *path,
8a4b83cc
CM
384 struct btrfs_super_block *disk_super,
385 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
386{
387 struct btrfs_device *device;
388 struct btrfs_fs_devices *fs_devices;
606686ee 389 struct rcu_string *name;
8a4b83cc
CM
390 u64 found_transid = btrfs_super_generation(disk_super);
391
392 fs_devices = find_fsid(disk_super->fsid);
393 if (!fs_devices) {
515dc322 394 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
8a4b83cc
CM
395 if (!fs_devices)
396 return -ENOMEM;
397 INIT_LIST_HEAD(&fs_devices->devices);
b3075717 398 INIT_LIST_HEAD(&fs_devices->alloc_list);
8a4b83cc
CM
399 list_add(&fs_devices->list, &fs_uuids);
400 memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
401 fs_devices->latest_devid = devid;
402 fs_devices->latest_trans = found_transid;
e5e9a520 403 mutex_init(&fs_devices->device_list_mutex);
8a4b83cc
CM
404 device = NULL;
405 } else {
a443755f
CM
406 device = __find_device(&fs_devices->devices, devid,
407 disk_super->dev_item.uuid);
8a4b83cc
CM
408 }
409 if (!device) {
2b82032c
YZ
410 if (fs_devices->opened)
411 return -EBUSY;
412
8a4b83cc
CM
413 device = kzalloc(sizeof(*device), GFP_NOFS);
414 if (!device) {
415 /* we can safely leave the fs_devices entry around */
416 return -ENOMEM;
417 }
418 device->devid = devid;
733f4fbb 419 device->dev_stats_valid = 0;
8b712842 420 device->work.func = pending_bios_fn;
a443755f
CM
421 memcpy(device->uuid, disk_super->dev_item.uuid,
422 BTRFS_UUID_SIZE);
b248a415 423 spin_lock_init(&device->io_lock);
606686ee
JB
424
425 name = rcu_string_strdup(path, GFP_NOFS);
426 if (!name) {
8a4b83cc
CM
427 kfree(device);
428 return -ENOMEM;
429 }
606686ee 430 rcu_assign_pointer(device->name, name);
2b82032c 431 INIT_LIST_HEAD(&device->dev_alloc_list);
e5e9a520 432
90519d66
AJ
433 /* init readahead state */
434 spin_lock_init(&device->reada_lock);
435 device->reada_curr_zone = NULL;
436 atomic_set(&device->reada_in_flight, 0);
437 device->reada_next = 0;
438 INIT_RADIX_TREE(&device->reada_zones, GFP_NOFS & ~__GFP_WAIT);
439 INIT_RADIX_TREE(&device->reada_extents, GFP_NOFS & ~__GFP_WAIT);
440
e5e9a520 441 mutex_lock(&fs_devices->device_list_mutex);
1f78160c 442 list_add_rcu(&device->dev_list, &fs_devices->devices);
e5e9a520
CM
443 mutex_unlock(&fs_devices->device_list_mutex);
444
2b82032c 445 device->fs_devices = fs_devices;
8a4b83cc 446 fs_devices->num_devices++;
606686ee
JB
447 } else if (!device->name || strcmp(device->name->str, path)) {
448 name = rcu_string_strdup(path, GFP_NOFS);
3a0524dc
TH
449 if (!name)
450 return -ENOMEM;
606686ee
JB
451 rcu_string_free(device->name);
452 rcu_assign_pointer(device->name, name);
cd02dca5
CM
453 if (device->missing) {
454 fs_devices->missing_devices--;
455 device->missing = 0;
456 }
8a4b83cc
CM
457 }
458
459 if (found_transid > fs_devices->latest_trans) {
460 fs_devices->latest_devid = devid;
461 fs_devices->latest_trans = found_transid;
462 }
8a4b83cc
CM
463 *fs_devices_ret = fs_devices;
464 return 0;
465}
466
e4404d6e
YZ
467static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
468{
469 struct btrfs_fs_devices *fs_devices;
470 struct btrfs_device *device;
471 struct btrfs_device *orig_dev;
472
473 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
474 if (!fs_devices)
475 return ERR_PTR(-ENOMEM);
476
477 INIT_LIST_HEAD(&fs_devices->devices);
478 INIT_LIST_HEAD(&fs_devices->alloc_list);
479 INIT_LIST_HEAD(&fs_devices->list);
e5e9a520 480 mutex_init(&fs_devices->device_list_mutex);
e4404d6e
YZ
481 fs_devices->latest_devid = orig->latest_devid;
482 fs_devices->latest_trans = orig->latest_trans;
02db0844 483 fs_devices->total_devices = orig->total_devices;
e4404d6e
YZ
484 memcpy(fs_devices->fsid, orig->fsid, sizeof(fs_devices->fsid));
485
46224705 486 /* We have held the volume lock, it is safe to get the devices. */
e4404d6e 487 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
606686ee
JB
488 struct rcu_string *name;
489
e4404d6e
YZ
490 device = kzalloc(sizeof(*device), GFP_NOFS);
491 if (!device)
492 goto error;
493
606686ee
JB
494 /*
495 * This is ok to do without rcu read locked because we hold the
496 * uuid mutex so nothing we touch in here is going to disappear.
497 */
498 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
499 if (!name) {
fd2696f3 500 kfree(device);
e4404d6e 501 goto error;
fd2696f3 502 }
606686ee 503 rcu_assign_pointer(device->name, name);
e4404d6e
YZ
504
505 device->devid = orig_dev->devid;
506 device->work.func = pending_bios_fn;
507 memcpy(device->uuid, orig_dev->uuid, sizeof(device->uuid));
e4404d6e
YZ
508 spin_lock_init(&device->io_lock);
509 INIT_LIST_HEAD(&device->dev_list);
510 INIT_LIST_HEAD(&device->dev_alloc_list);
511
512 list_add(&device->dev_list, &fs_devices->devices);
513 device->fs_devices = fs_devices;
514 fs_devices->num_devices++;
515 }
516 return fs_devices;
517error:
518 free_fs_devices(fs_devices);
519 return ERR_PTR(-ENOMEM);
520}
521
8dabb742
SB
522void btrfs_close_extra_devices(struct btrfs_fs_info *fs_info,
523 struct btrfs_fs_devices *fs_devices, int step)
dfe25020 524{
c6e30871 525 struct btrfs_device *device, *next;
dfe25020 526
a6b0d5c8
CM
527 struct block_device *latest_bdev = NULL;
528 u64 latest_devid = 0;
529 u64 latest_transid = 0;
530
dfe25020
CM
531 mutex_lock(&uuid_mutex);
532again:
46224705 533 /* This is the initialized path, it is safe to release the devices. */
c6e30871 534 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
a6b0d5c8 535 if (device->in_fs_metadata) {
63a212ab
SB
536 if (!device->is_tgtdev_for_dev_replace &&
537 (!latest_transid ||
538 device->generation > latest_transid)) {
a6b0d5c8
CM
539 latest_devid = device->devid;
540 latest_transid = device->generation;
541 latest_bdev = device->bdev;
542 }
2b82032c 543 continue;
a6b0d5c8 544 }
2b82032c 545
8dabb742
SB
546 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
547 /*
548 * In the first step, keep the device which has
549 * the correct fsid and the devid that is used
550 * for the dev_replace procedure.
551 * In the second step, the dev_replace state is
552 * read from the device tree and it is known
553 * whether the procedure is really active or
554 * not, which means whether this device is
555 * used or whether it should be removed.
556 */
557 if (step == 0 || device->is_tgtdev_for_dev_replace) {
558 continue;
559 }
560 }
2b82032c 561 if (device->bdev) {
d4d77629 562 blkdev_put(device->bdev, device->mode);
2b82032c
YZ
563 device->bdev = NULL;
564 fs_devices->open_devices--;
565 }
566 if (device->writeable) {
567 list_del_init(&device->dev_alloc_list);
568 device->writeable = 0;
8dabb742
SB
569 if (!device->is_tgtdev_for_dev_replace)
570 fs_devices->rw_devices--;
2b82032c 571 }
e4404d6e
YZ
572 list_del_init(&device->dev_list);
573 fs_devices->num_devices--;
606686ee 574 rcu_string_free(device->name);
e4404d6e 575 kfree(device);
dfe25020 576 }
2b82032c
YZ
577
578 if (fs_devices->seed) {
579 fs_devices = fs_devices->seed;
2b82032c
YZ
580 goto again;
581 }
582
a6b0d5c8
CM
583 fs_devices->latest_bdev = latest_bdev;
584 fs_devices->latest_devid = latest_devid;
585 fs_devices->latest_trans = latest_transid;
586
dfe25020 587 mutex_unlock(&uuid_mutex);
dfe25020 588}
a0af469b 589
1f78160c
XG
590static void __free_device(struct work_struct *work)
591{
592 struct btrfs_device *device;
593
594 device = container_of(work, struct btrfs_device, rcu_work);
595
596 if (device->bdev)
597 blkdev_put(device->bdev, device->mode);
598
606686ee 599 rcu_string_free(device->name);
1f78160c
XG
600 kfree(device);
601}
602
603static void free_device(struct rcu_head *head)
604{
605 struct btrfs_device *device;
606
607 device = container_of(head, struct btrfs_device, rcu);
608
609 INIT_WORK(&device->rcu_work, __free_device);
610 schedule_work(&device->rcu_work);
611}
612
2b82032c 613static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
8a4b83cc 614{
8a4b83cc 615 struct btrfs_device *device;
e4404d6e 616
2b82032c
YZ
617 if (--fs_devices->opened > 0)
618 return 0;
8a4b83cc 619
c9513edb 620 mutex_lock(&fs_devices->device_list_mutex);
c6e30871 621 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1f78160c 622 struct btrfs_device *new_device;
606686ee 623 struct rcu_string *name;
1f78160c
XG
624
625 if (device->bdev)
a0af469b 626 fs_devices->open_devices--;
1f78160c 627
8dabb742 628 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
2b82032c
YZ
629 list_del_init(&device->dev_alloc_list);
630 fs_devices->rw_devices--;
631 }
632
d5e2003c
JB
633 if (device->can_discard)
634 fs_devices->num_can_discard--;
635
1f78160c 636 new_device = kmalloc(sizeof(*new_device), GFP_NOFS);
79787eaa 637 BUG_ON(!new_device); /* -ENOMEM */
1f78160c 638 memcpy(new_device, device, sizeof(*new_device));
606686ee
JB
639
640 /* Safe because we are under uuid_mutex */
99f5944b
JB
641 if (device->name) {
642 name = rcu_string_strdup(device->name->str, GFP_NOFS);
643 BUG_ON(device->name && !name); /* -ENOMEM */
644 rcu_assign_pointer(new_device->name, name);
645 }
1f78160c
XG
646 new_device->bdev = NULL;
647 new_device->writeable = 0;
648 new_device->in_fs_metadata = 0;
d5e2003c 649 new_device->can_discard = 0;
1f78160c
XG
650 list_replace_rcu(&device->dev_list, &new_device->dev_list);
651
652 call_rcu(&device->rcu, free_device);
8a4b83cc 653 }
c9513edb
XG
654 mutex_unlock(&fs_devices->device_list_mutex);
655
e4404d6e
YZ
656 WARN_ON(fs_devices->open_devices);
657 WARN_ON(fs_devices->rw_devices);
2b82032c
YZ
658 fs_devices->opened = 0;
659 fs_devices->seeding = 0;
2b82032c 660
8a4b83cc
CM
661 return 0;
662}
663
2b82032c
YZ
664int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
665{
e4404d6e 666 struct btrfs_fs_devices *seed_devices = NULL;
2b82032c
YZ
667 int ret;
668
669 mutex_lock(&uuid_mutex);
670 ret = __btrfs_close_devices(fs_devices);
e4404d6e
YZ
671 if (!fs_devices->opened) {
672 seed_devices = fs_devices->seed;
673 fs_devices->seed = NULL;
674 }
2b82032c 675 mutex_unlock(&uuid_mutex);
e4404d6e
YZ
676
677 while (seed_devices) {
678 fs_devices = seed_devices;
679 seed_devices = fs_devices->seed;
680 __btrfs_close_devices(fs_devices);
681 free_fs_devices(fs_devices);
682 }
2b82032c
YZ
683 return ret;
684}
685
e4404d6e
YZ
686static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
687 fmode_t flags, void *holder)
8a4b83cc 688{
d5e2003c 689 struct request_queue *q;
8a4b83cc
CM
690 struct block_device *bdev;
691 struct list_head *head = &fs_devices->devices;
8a4b83cc 692 struct btrfs_device *device;
a0af469b
CM
693 struct block_device *latest_bdev = NULL;
694 struct buffer_head *bh;
695 struct btrfs_super_block *disk_super;
696 u64 latest_devid = 0;
697 u64 latest_transid = 0;
a0af469b 698 u64 devid;
2b82032c 699 int seeding = 1;
a0af469b 700 int ret = 0;
8a4b83cc 701
d4d77629
TH
702 flags |= FMODE_EXCL;
703
c6e30871 704 list_for_each_entry(device, head, dev_list) {
c1c4d91c
CM
705 if (device->bdev)
706 continue;
dfe25020
CM
707 if (!device->name)
708 continue;
709
beaf8ab3
SB
710 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
711 &bdev, &bh);
712 if (ret)
713 continue;
a0af469b
CM
714
715 disk_super = (struct btrfs_super_block *)bh->b_data;
a343832f 716 devid = btrfs_stack_device_id(&disk_super->dev_item);
a0af469b
CM
717 if (devid != device->devid)
718 goto error_brelse;
719
2b82032c
YZ
720 if (memcmp(device->uuid, disk_super->dev_item.uuid,
721 BTRFS_UUID_SIZE))
722 goto error_brelse;
723
724 device->generation = btrfs_super_generation(disk_super);
725 if (!latest_transid || device->generation > latest_transid) {
a0af469b 726 latest_devid = devid;
2b82032c 727 latest_transid = device->generation;
a0af469b
CM
728 latest_bdev = bdev;
729 }
730
2b82032c
YZ
731 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
732 device->writeable = 0;
733 } else {
734 device->writeable = !bdev_read_only(bdev);
735 seeding = 0;
736 }
737
d5e2003c
JB
738 q = bdev_get_queue(bdev);
739 if (blk_queue_discard(q)) {
740 device->can_discard = 1;
741 fs_devices->num_can_discard++;
742 }
743
8a4b83cc 744 device->bdev = bdev;
dfe25020 745 device->in_fs_metadata = 0;
15916de8
CM
746 device->mode = flags;
747
c289811c
CM
748 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
749 fs_devices->rotating = 1;
750
a0af469b 751 fs_devices->open_devices++;
8dabb742 752 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
2b82032c
YZ
753 fs_devices->rw_devices++;
754 list_add(&device->dev_alloc_list,
755 &fs_devices->alloc_list);
756 }
4f6c9328 757 brelse(bh);
a0af469b 758 continue;
a061fc8d 759
a0af469b
CM
760error_brelse:
761 brelse(bh);
d4d77629 762 blkdev_put(bdev, flags);
a0af469b 763 continue;
8a4b83cc 764 }
a0af469b 765 if (fs_devices->open_devices == 0) {
20bcd649 766 ret = -EINVAL;
a0af469b
CM
767 goto out;
768 }
2b82032c
YZ
769 fs_devices->seeding = seeding;
770 fs_devices->opened = 1;
a0af469b
CM
771 fs_devices->latest_bdev = latest_bdev;
772 fs_devices->latest_devid = latest_devid;
773 fs_devices->latest_trans = latest_transid;
2b82032c 774 fs_devices->total_rw_bytes = 0;
a0af469b 775out:
2b82032c
YZ
776 return ret;
777}
778
779int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
97288f2c 780 fmode_t flags, void *holder)
2b82032c
YZ
781{
782 int ret;
783
784 mutex_lock(&uuid_mutex);
785 if (fs_devices->opened) {
e4404d6e
YZ
786 fs_devices->opened++;
787 ret = 0;
2b82032c 788 } else {
15916de8 789 ret = __btrfs_open_devices(fs_devices, flags, holder);
2b82032c 790 }
8a4b83cc 791 mutex_unlock(&uuid_mutex);
8a4b83cc
CM
792 return ret;
793}
794
6f60cbd3
DS
795/*
796 * Look for a btrfs signature on a device. This may be called out of the mount path
797 * and we are not allowed to call set_blocksize during the scan. The superblock
798 * is read via pagecache
799 */
97288f2c 800int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
8a4b83cc
CM
801 struct btrfs_fs_devices **fs_devices_ret)
802{
803 struct btrfs_super_block *disk_super;
804 struct block_device *bdev;
6f60cbd3
DS
805 struct page *page;
806 void *p;
807 int ret = -EINVAL;
8a4b83cc 808 u64 devid;
f2984462 809 u64 transid;
02db0844 810 u64 total_devices;
6f60cbd3
DS
811 u64 bytenr;
812 pgoff_t index;
8a4b83cc 813
6f60cbd3
DS
814 /*
815 * we would like to check all the supers, but that would make
816 * a btrfs mount succeed after a mkfs from a different FS.
817 * So, we need to add a special mount option to scan for
818 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
819 */
820 bytenr = btrfs_sb_offset(0);
d4d77629 821 flags |= FMODE_EXCL;
10f6327b 822 mutex_lock(&uuid_mutex);
6f60cbd3
DS
823
824 bdev = blkdev_get_by_path(path, flags, holder);
825
826 if (IS_ERR(bdev)) {
827 ret = PTR_ERR(bdev);
828 printk(KERN_INFO "btrfs: open %s failed\n", path);
beaf8ab3 829 goto error;
6f60cbd3
DS
830 }
831
832 /* make sure our super fits in the device */
833 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
834 goto error_bdev_put;
835
836 /* make sure our super fits in the page */
837 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
838 goto error_bdev_put;
839
840 /* make sure our super doesn't straddle pages on disk */
841 index = bytenr >> PAGE_CACHE_SHIFT;
842 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
843 goto error_bdev_put;
844
845 /* pull in the page with our super */
846 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
847 index, GFP_NOFS);
848
849 if (IS_ERR_OR_NULL(page))
850 goto error_bdev_put;
851
852 p = kmap(page);
853
854 /* align our pointer to the offset of the super block */
855 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
856
857 if (btrfs_super_bytenr(disk_super) != bytenr ||
858 strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
859 sizeof(disk_super->magic)))
860 goto error_unmap;
861
a343832f 862 devid = btrfs_stack_device_id(&disk_super->dev_item);
f2984462 863 transid = btrfs_super_generation(disk_super);
02db0844 864 total_devices = btrfs_super_num_devices(disk_super);
6f60cbd3 865
d03f918a
SB
866 if (disk_super->label[0]) {
867 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
868 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
d397712b 869 printk(KERN_INFO "device label %s ", disk_super->label);
d03f918a 870 } else {
22b63a29 871 printk(KERN_INFO "device fsid %pU ", disk_super->fsid);
d03f918a 872 }
6f60cbd3 873
119e10cf 874 printk(KERN_CONT "devid %llu transid %llu %s\n",
d397712b 875 (unsigned long long)devid, (unsigned long long)transid, path);
6f60cbd3 876
8a4b83cc 877 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
02db0844
JB
878 if (!ret && fs_devices_ret)
879 (*fs_devices_ret)->total_devices = total_devices;
6f60cbd3
DS
880
881error_unmap:
882 kunmap(page);
883 page_cache_release(page);
884
885error_bdev_put:
d4d77629 886 blkdev_put(bdev, flags);
8a4b83cc 887error:
beaf8ab3 888 mutex_unlock(&uuid_mutex);
8a4b83cc
CM
889 return ret;
890}
0b86a832 891
6d07bcec
MX
892/* helper to account the used device space in the range */
893int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
894 u64 end, u64 *length)
895{
896 struct btrfs_key key;
897 struct btrfs_root *root = device->dev_root;
898 struct btrfs_dev_extent *dev_extent;
899 struct btrfs_path *path;
900 u64 extent_end;
901 int ret;
902 int slot;
903 struct extent_buffer *l;
904
905 *length = 0;
906
63a212ab 907 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
6d07bcec
MX
908 return 0;
909
910 path = btrfs_alloc_path();
911 if (!path)
912 return -ENOMEM;
913 path->reada = 2;
914
915 key.objectid = device->devid;
916 key.offset = start;
917 key.type = BTRFS_DEV_EXTENT_KEY;
918
919 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
920 if (ret < 0)
921 goto out;
922 if (ret > 0) {
923 ret = btrfs_previous_item(root, path, key.objectid, key.type);
924 if (ret < 0)
925 goto out;
926 }
927
928 while (1) {
929 l = path->nodes[0];
930 slot = path->slots[0];
931 if (slot >= btrfs_header_nritems(l)) {
932 ret = btrfs_next_leaf(root, path);
933 if (ret == 0)
934 continue;
935 if (ret < 0)
936 goto out;
937
938 break;
939 }
940 btrfs_item_key_to_cpu(l, &key, slot);
941
942 if (key.objectid < device->devid)
943 goto next;
944
945 if (key.objectid > device->devid)
946 break;
947
948 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
949 goto next;
950
951 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
952 extent_end = key.offset + btrfs_dev_extent_length(l,
953 dev_extent);
954 if (key.offset <= start && extent_end > end) {
955 *length = end - start + 1;
956 break;
957 } else if (key.offset <= start && extent_end > start)
958 *length += extent_end - start;
959 else if (key.offset > start && extent_end <= end)
960 *length += extent_end - key.offset;
961 else if (key.offset > start && key.offset <= end) {
962 *length += end - key.offset + 1;
963 break;
964 } else if (key.offset > end)
965 break;
966
967next:
968 path->slots[0]++;
969 }
970 ret = 0;
971out:
972 btrfs_free_path(path);
973 return ret;
974}
975
0b86a832 976/*
7bfc837d 977 * find_free_dev_extent - find free space in the specified device
7bfc837d
MX
978 * @device: the device which we search the free space in
979 * @num_bytes: the size of the free space that we need
980 * @start: store the start of the free space.
981 * @len: the size of the free space. that we find, or the size of the max
982 * free space if we don't find suitable free space
983 *
0b86a832
CM
984 * this uses a pretty simple search, the expectation is that it is
985 * called very infrequently and that a given device has a small number
986 * of extents
7bfc837d
MX
987 *
988 * @start is used to store the start of the free space if we find. But if we
989 * don't find suitable free space, it will be used to store the start position
990 * of the max free space.
991 *
992 * @len is used to store the size of the free space that we find.
993 * But if we don't find suitable free space, it is used to store the size of
994 * the max free space.
0b86a832 995 */
125ccb0a 996int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes,
7bfc837d 997 u64 *start, u64 *len)
0b86a832
CM
998{
999 struct btrfs_key key;
1000 struct btrfs_root *root = device->dev_root;
7bfc837d 1001 struct btrfs_dev_extent *dev_extent;
2b82032c 1002 struct btrfs_path *path;
7bfc837d
MX
1003 u64 hole_size;
1004 u64 max_hole_start;
1005 u64 max_hole_size;
1006 u64 extent_end;
1007 u64 search_start;
0b86a832
CM
1008 u64 search_end = device->total_bytes;
1009 int ret;
7bfc837d 1010 int slot;
0b86a832
CM
1011 struct extent_buffer *l;
1012
0b86a832
CM
1013 /* FIXME use last free of some kind */
1014
8a4b83cc
CM
1015 /* we don't want to overwrite the superblock on the drive,
1016 * so we make sure to start at an offset of at least 1MB
1017 */
a9c9bf68 1018 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
8f18cf13 1019
7bfc837d
MX
1020 max_hole_start = search_start;
1021 max_hole_size = 0;
38c01b96 1022 hole_size = 0;
7bfc837d 1023
63a212ab 1024 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
7bfc837d
MX
1025 ret = -ENOSPC;
1026 goto error;
1027 }
1028
1029 path = btrfs_alloc_path();
1030 if (!path) {
1031 ret = -ENOMEM;
1032 goto error;
1033 }
1034 path->reada = 2;
1035
0b86a832
CM
1036 key.objectid = device->devid;
1037 key.offset = search_start;
1038 key.type = BTRFS_DEV_EXTENT_KEY;
7bfc837d 1039
125ccb0a 1040 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
0b86a832 1041 if (ret < 0)
7bfc837d 1042 goto out;
1fcbac58
YZ
1043 if (ret > 0) {
1044 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1045 if (ret < 0)
7bfc837d 1046 goto out;
1fcbac58 1047 }
7bfc837d 1048
0b86a832
CM
1049 while (1) {
1050 l = path->nodes[0];
1051 slot = path->slots[0];
1052 if (slot >= btrfs_header_nritems(l)) {
1053 ret = btrfs_next_leaf(root, path);
1054 if (ret == 0)
1055 continue;
1056 if (ret < 0)
7bfc837d
MX
1057 goto out;
1058
1059 break;
0b86a832
CM
1060 }
1061 btrfs_item_key_to_cpu(l, &key, slot);
1062
1063 if (key.objectid < device->devid)
1064 goto next;
1065
1066 if (key.objectid > device->devid)
7bfc837d 1067 break;
0b86a832 1068
7bfc837d
MX
1069 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
1070 goto next;
9779b72f 1071
7bfc837d
MX
1072 if (key.offset > search_start) {
1073 hole_size = key.offset - search_start;
9779b72f 1074
7bfc837d
MX
1075 if (hole_size > max_hole_size) {
1076 max_hole_start = search_start;
1077 max_hole_size = hole_size;
1078 }
9779b72f 1079
7bfc837d
MX
1080 /*
1081 * If this free space is greater than which we need,
1082 * it must be the max free space that we have found
1083 * until now, so max_hole_start must point to the start
1084 * of this free space and the length of this free space
1085 * is stored in max_hole_size. Thus, we return
1086 * max_hole_start and max_hole_size and go back to the
1087 * caller.
1088 */
1089 if (hole_size >= num_bytes) {
1090 ret = 0;
1091 goto out;
0b86a832
CM
1092 }
1093 }
0b86a832 1094
0b86a832 1095 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
7bfc837d
MX
1096 extent_end = key.offset + btrfs_dev_extent_length(l,
1097 dev_extent);
1098 if (extent_end > search_start)
1099 search_start = extent_end;
0b86a832
CM
1100next:
1101 path->slots[0]++;
1102 cond_resched();
1103 }
0b86a832 1104
38c01b96 1105 /*
1106 * At this point, search_start should be the end of
1107 * allocated dev extents, and when shrinking the device,
1108 * search_end may be smaller than search_start.
1109 */
1110 if (search_end > search_start)
1111 hole_size = search_end - search_start;
1112
7bfc837d
MX
1113 if (hole_size > max_hole_size) {
1114 max_hole_start = search_start;
1115 max_hole_size = hole_size;
0b86a832 1116 }
0b86a832 1117
7bfc837d
MX
1118 /* See above. */
1119 if (hole_size < num_bytes)
1120 ret = -ENOSPC;
1121 else
1122 ret = 0;
1123
1124out:
2b82032c 1125 btrfs_free_path(path);
7bfc837d
MX
1126error:
1127 *start = max_hole_start;
b2117a39 1128 if (len)
7bfc837d 1129 *len = max_hole_size;
0b86a832
CM
1130 return ret;
1131}
1132
b2950863 1133static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
8f18cf13
CM
1134 struct btrfs_device *device,
1135 u64 start)
1136{
1137 int ret;
1138 struct btrfs_path *path;
1139 struct btrfs_root *root = device->dev_root;
1140 struct btrfs_key key;
a061fc8d
CM
1141 struct btrfs_key found_key;
1142 struct extent_buffer *leaf = NULL;
1143 struct btrfs_dev_extent *extent = NULL;
8f18cf13
CM
1144
1145 path = btrfs_alloc_path();
1146 if (!path)
1147 return -ENOMEM;
1148
1149 key.objectid = device->devid;
1150 key.offset = start;
1151 key.type = BTRFS_DEV_EXTENT_KEY;
924cd8fb 1152again:
8f18cf13 1153 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
a061fc8d
CM
1154 if (ret > 0) {
1155 ret = btrfs_previous_item(root, path, key.objectid,
1156 BTRFS_DEV_EXTENT_KEY);
b0b802d7
TI
1157 if (ret)
1158 goto out;
a061fc8d
CM
1159 leaf = path->nodes[0];
1160 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1161 extent = btrfs_item_ptr(leaf, path->slots[0],
1162 struct btrfs_dev_extent);
1163 BUG_ON(found_key.offset > start || found_key.offset +
1164 btrfs_dev_extent_length(leaf, extent) < start);
924cd8fb
MX
1165 key = found_key;
1166 btrfs_release_path(path);
1167 goto again;
a061fc8d
CM
1168 } else if (ret == 0) {
1169 leaf = path->nodes[0];
1170 extent = btrfs_item_ptr(leaf, path->slots[0],
1171 struct btrfs_dev_extent);
79787eaa
JM
1172 } else {
1173 btrfs_error(root->fs_info, ret, "Slot search failed");
1174 goto out;
a061fc8d 1175 }
8f18cf13 1176
2bf64758
JB
1177 if (device->bytes_used > 0) {
1178 u64 len = btrfs_dev_extent_length(leaf, extent);
1179 device->bytes_used -= len;
1180 spin_lock(&root->fs_info->free_chunk_lock);
1181 root->fs_info->free_chunk_space += len;
1182 spin_unlock(&root->fs_info->free_chunk_lock);
1183 }
8f18cf13 1184 ret = btrfs_del_item(trans, root, path);
79787eaa
JM
1185 if (ret) {
1186 btrfs_error(root->fs_info, ret,
1187 "Failed to remove dev extent item");
1188 }
b0b802d7 1189out:
8f18cf13
CM
1190 btrfs_free_path(path);
1191 return ret;
1192}
1193
2b82032c 1194int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
0b86a832 1195 struct btrfs_device *device,
e17cade2 1196 u64 chunk_tree, u64 chunk_objectid,
2b82032c 1197 u64 chunk_offset, u64 start, u64 num_bytes)
0b86a832
CM
1198{
1199 int ret;
1200 struct btrfs_path *path;
1201 struct btrfs_root *root = device->dev_root;
1202 struct btrfs_dev_extent *extent;
1203 struct extent_buffer *leaf;
1204 struct btrfs_key key;
1205
dfe25020 1206 WARN_ON(!device->in_fs_metadata);
63a212ab 1207 WARN_ON(device->is_tgtdev_for_dev_replace);
0b86a832
CM
1208 path = btrfs_alloc_path();
1209 if (!path)
1210 return -ENOMEM;
1211
0b86a832 1212 key.objectid = device->devid;
2b82032c 1213 key.offset = start;
0b86a832
CM
1214 key.type = BTRFS_DEV_EXTENT_KEY;
1215 ret = btrfs_insert_empty_item(trans, root, path, &key,
1216 sizeof(*extent));
2cdcecbc
MF
1217 if (ret)
1218 goto out;
0b86a832
CM
1219
1220 leaf = path->nodes[0];
1221 extent = btrfs_item_ptr(leaf, path->slots[0],
1222 struct btrfs_dev_extent);
e17cade2
CM
1223 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1224 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1225 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1226
1227 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
1228 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
1229 BTRFS_UUID_SIZE);
1230
0b86a832
CM
1231 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1232 btrfs_mark_buffer_dirty(leaf);
2cdcecbc 1233out:
0b86a832
CM
1234 btrfs_free_path(path);
1235 return ret;
1236}
1237
a1b32a59
CM
1238static noinline int find_next_chunk(struct btrfs_root *root,
1239 u64 objectid, u64 *offset)
0b86a832
CM
1240{
1241 struct btrfs_path *path;
1242 int ret;
1243 struct btrfs_key key;
e17cade2 1244 struct btrfs_chunk *chunk;
0b86a832
CM
1245 struct btrfs_key found_key;
1246
1247 path = btrfs_alloc_path();
92b8e897
MF
1248 if (!path)
1249 return -ENOMEM;
0b86a832 1250
e17cade2 1251 key.objectid = objectid;
0b86a832
CM
1252 key.offset = (u64)-1;
1253 key.type = BTRFS_CHUNK_ITEM_KEY;
1254
1255 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1256 if (ret < 0)
1257 goto error;
1258
79787eaa 1259 BUG_ON(ret == 0); /* Corruption */
0b86a832
CM
1260
1261 ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
1262 if (ret) {
e17cade2 1263 *offset = 0;
0b86a832
CM
1264 } else {
1265 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1266 path->slots[0]);
e17cade2
CM
1267 if (found_key.objectid != objectid)
1268 *offset = 0;
1269 else {
1270 chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
1271 struct btrfs_chunk);
1272 *offset = found_key.offset +
1273 btrfs_chunk_length(path->nodes[0], chunk);
1274 }
0b86a832
CM
1275 }
1276 ret = 0;
1277error:
1278 btrfs_free_path(path);
1279 return ret;
1280}
1281
2b82032c 1282static noinline int find_next_devid(struct btrfs_root *root, u64 *objectid)
0b86a832
CM
1283{
1284 int ret;
1285 struct btrfs_key key;
1286 struct btrfs_key found_key;
2b82032c
YZ
1287 struct btrfs_path *path;
1288
1289 root = root->fs_info->chunk_root;
1290
1291 path = btrfs_alloc_path();
1292 if (!path)
1293 return -ENOMEM;
0b86a832
CM
1294
1295 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1296 key.type = BTRFS_DEV_ITEM_KEY;
1297 key.offset = (u64)-1;
1298
1299 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1300 if (ret < 0)
1301 goto error;
1302
79787eaa 1303 BUG_ON(ret == 0); /* Corruption */
0b86a832
CM
1304
1305 ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
1306 BTRFS_DEV_ITEM_KEY);
1307 if (ret) {
1308 *objectid = 1;
1309 } else {
1310 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1311 path->slots[0]);
1312 *objectid = found_key.offset + 1;
1313 }
1314 ret = 0;
1315error:
2b82032c 1316 btrfs_free_path(path);
0b86a832
CM
1317 return ret;
1318}
1319
1320/*
1321 * the device information is stored in the chunk root
1322 * the btrfs_device struct should be fully filled in
1323 */
1324int btrfs_add_device(struct btrfs_trans_handle *trans,
1325 struct btrfs_root *root,
1326 struct btrfs_device *device)
1327{
1328 int ret;
1329 struct btrfs_path *path;
1330 struct btrfs_dev_item *dev_item;
1331 struct extent_buffer *leaf;
1332 struct btrfs_key key;
1333 unsigned long ptr;
0b86a832
CM
1334
1335 root = root->fs_info->chunk_root;
1336
1337 path = btrfs_alloc_path();
1338 if (!path)
1339 return -ENOMEM;
1340
0b86a832
CM
1341 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1342 key.type = BTRFS_DEV_ITEM_KEY;
2b82032c 1343 key.offset = device->devid;
0b86a832
CM
1344
1345 ret = btrfs_insert_empty_item(trans, root, path, &key,
0d81ba5d 1346 sizeof(*dev_item));
0b86a832
CM
1347 if (ret)
1348 goto out;
1349
1350 leaf = path->nodes[0];
1351 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1352
1353 btrfs_set_device_id(leaf, dev_item, device->devid);
2b82032c 1354 btrfs_set_device_generation(leaf, dev_item, 0);
0b86a832
CM
1355 btrfs_set_device_type(leaf, dev_item, device->type);
1356 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1357 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1358 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
0b86a832
CM
1359 btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
1360 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
e17cade2
CM
1361 btrfs_set_device_group(leaf, dev_item, 0);
1362 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1363 btrfs_set_device_bandwidth(leaf, dev_item, 0);
c3027eb5 1364 btrfs_set_device_start_offset(leaf, dev_item, 0);
0b86a832 1365
0b86a832 1366 ptr = (unsigned long)btrfs_device_uuid(dev_item);
e17cade2 1367 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
2b82032c
YZ
1368 ptr = (unsigned long)btrfs_device_fsid(dev_item);
1369 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
0b86a832 1370 btrfs_mark_buffer_dirty(leaf);
0b86a832 1371
2b82032c 1372 ret = 0;
0b86a832
CM
1373out:
1374 btrfs_free_path(path);
1375 return ret;
1376}
8f18cf13 1377
a061fc8d
CM
1378static int btrfs_rm_dev_item(struct btrfs_root *root,
1379 struct btrfs_device *device)
1380{
1381 int ret;
1382 struct btrfs_path *path;
a061fc8d 1383 struct btrfs_key key;
a061fc8d
CM
1384 struct btrfs_trans_handle *trans;
1385
1386 root = root->fs_info->chunk_root;
1387
1388 path = btrfs_alloc_path();
1389 if (!path)
1390 return -ENOMEM;
1391
a22285a6 1392 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
1393 if (IS_ERR(trans)) {
1394 btrfs_free_path(path);
1395 return PTR_ERR(trans);
1396 }
a061fc8d
CM
1397 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1398 key.type = BTRFS_DEV_ITEM_KEY;
1399 key.offset = device->devid;
7d9eb12c 1400 lock_chunks(root);
a061fc8d
CM
1401
1402 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1403 if (ret < 0)
1404 goto out;
1405
1406 if (ret > 0) {
1407 ret = -ENOENT;
1408 goto out;
1409 }
1410
1411 ret = btrfs_del_item(trans, root, path);
1412 if (ret)
1413 goto out;
a061fc8d
CM
1414out:
1415 btrfs_free_path(path);
7d9eb12c 1416 unlock_chunks(root);
a061fc8d
CM
1417 btrfs_commit_transaction(trans, root);
1418 return ret;
1419}
1420
1421int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1422{
1423 struct btrfs_device *device;
2b82032c 1424 struct btrfs_device *next_device;
a061fc8d 1425 struct block_device *bdev;
dfe25020 1426 struct buffer_head *bh = NULL;
a061fc8d 1427 struct btrfs_super_block *disk_super;
1f78160c 1428 struct btrfs_fs_devices *cur_devices;
a061fc8d
CM
1429 u64 all_avail;
1430 u64 devid;
2b82032c
YZ
1431 u64 num_devices;
1432 u8 *dev_uuid;
a061fc8d 1433 int ret = 0;
1f78160c 1434 bool clear_super = false;
a061fc8d 1435
a061fc8d
CM
1436 mutex_lock(&uuid_mutex);
1437
1438 all_avail = root->fs_info->avail_data_alloc_bits |
1439 root->fs_info->avail_system_alloc_bits |
1440 root->fs_info->avail_metadata_alloc_bits;
1441
8dabb742
SB
1442 num_devices = root->fs_info->fs_devices->num_devices;
1443 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1444 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1445 WARN_ON(num_devices < 1);
1446 num_devices--;
1447 }
1448 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1449
1450 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
d397712b
CM
1451 printk(KERN_ERR "btrfs: unable to go below four devices "
1452 "on raid10\n");
a061fc8d
CM
1453 ret = -EINVAL;
1454 goto out;
1455 }
1456
8dabb742 1457 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
d397712b
CM
1458 printk(KERN_ERR "btrfs: unable to go below two "
1459 "devices on raid1\n");
a061fc8d
CM
1460 ret = -EINVAL;
1461 goto out;
1462 }
1463
dfe25020 1464 if (strcmp(device_path, "missing") == 0) {
dfe25020
CM
1465 struct list_head *devices;
1466 struct btrfs_device *tmp;
a061fc8d 1467
dfe25020
CM
1468 device = NULL;
1469 devices = &root->fs_info->fs_devices->devices;
46224705
XG
1470 /*
1471 * It is safe to read the devices since the volume_mutex
1472 * is held.
1473 */
c6e30871 1474 list_for_each_entry(tmp, devices, dev_list) {
63a212ab
SB
1475 if (tmp->in_fs_metadata &&
1476 !tmp->is_tgtdev_for_dev_replace &&
1477 !tmp->bdev) {
dfe25020
CM
1478 device = tmp;
1479 break;
1480 }
1481 }
1482 bdev = NULL;
1483 bh = NULL;
1484 disk_super = NULL;
1485 if (!device) {
d397712b
CM
1486 printk(KERN_ERR "btrfs: no missing devices found to "
1487 "remove\n");
dfe25020
CM
1488 goto out;
1489 }
dfe25020 1490 } else {
beaf8ab3 1491 ret = btrfs_get_bdev_and_sb(device_path,
cc975eb4 1492 FMODE_WRITE | FMODE_EXCL,
beaf8ab3
SB
1493 root->fs_info->bdev_holder, 0,
1494 &bdev, &bh);
1495 if (ret)
dfe25020 1496 goto out;
dfe25020 1497 disk_super = (struct btrfs_super_block *)bh->b_data;
a343832f 1498 devid = btrfs_stack_device_id(&disk_super->dev_item);
2b82032c 1499 dev_uuid = disk_super->dev_item.uuid;
aa1b8cd4 1500 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2b82032c 1501 disk_super->fsid);
dfe25020
CM
1502 if (!device) {
1503 ret = -ENOENT;
1504 goto error_brelse;
1505 }
2b82032c 1506 }
dfe25020 1507
63a212ab
SB
1508 if (device->is_tgtdev_for_dev_replace) {
1509 pr_err("btrfs: unable to remove the dev_replace target dev\n");
1510 ret = -EINVAL;
1511 goto error_brelse;
1512 }
1513
2b82032c 1514 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
d397712b
CM
1515 printk(KERN_ERR "btrfs: unable to remove the only writeable "
1516 "device\n");
2b82032c
YZ
1517 ret = -EINVAL;
1518 goto error_brelse;
1519 }
1520
1521 if (device->writeable) {
0c1daee0 1522 lock_chunks(root);
2b82032c 1523 list_del_init(&device->dev_alloc_list);
0c1daee0 1524 unlock_chunks(root);
2b82032c 1525 root->fs_info->fs_devices->rw_devices--;
1f78160c 1526 clear_super = true;
dfe25020 1527 }
a061fc8d
CM
1528
1529 ret = btrfs_shrink_device(device, 0);
1530 if (ret)
9b3517e9 1531 goto error_undo;
a061fc8d 1532
63a212ab
SB
1533 /*
1534 * TODO: the superblock still includes this device in its num_devices
1535 * counter although write_all_supers() is not locked out. This
1536 * could give a filesystem state which requires a degraded mount.
1537 */
a061fc8d
CM
1538 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1539 if (ret)
9b3517e9 1540 goto error_undo;
a061fc8d 1541
2bf64758
JB
1542 spin_lock(&root->fs_info->free_chunk_lock);
1543 root->fs_info->free_chunk_space = device->total_bytes -
1544 device->bytes_used;
1545 spin_unlock(&root->fs_info->free_chunk_lock);
1546
2b82032c 1547 device->in_fs_metadata = 0;
aa1b8cd4 1548 btrfs_scrub_cancel_dev(root->fs_info, device);
e5e9a520
CM
1549
1550 /*
1551 * the device list mutex makes sure that we don't change
1552 * the device list while someone else is writing out all
1553 * the device supers.
1554 */
1f78160c
XG
1555
1556 cur_devices = device->fs_devices;
e5e9a520 1557 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
1f78160c 1558 list_del_rcu(&device->dev_list);
e5e9a520 1559
e4404d6e 1560 device->fs_devices->num_devices--;
02db0844 1561 device->fs_devices->total_devices--;
2b82032c 1562
cd02dca5
CM
1563 if (device->missing)
1564 root->fs_info->fs_devices->missing_devices--;
1565
2b82032c
YZ
1566 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1567 struct btrfs_device, dev_list);
1568 if (device->bdev == root->fs_info->sb->s_bdev)
1569 root->fs_info->sb->s_bdev = next_device->bdev;
1570 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1571 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1572
1f78160c 1573 if (device->bdev)
e4404d6e 1574 device->fs_devices->open_devices--;
1f78160c
XG
1575
1576 call_rcu(&device->rcu, free_device);
1577 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
e4404d6e 1578
6c41761f
DS
1579 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1580 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
2b82032c 1581
1f78160c 1582 if (cur_devices->open_devices == 0) {
e4404d6e
YZ
1583 struct btrfs_fs_devices *fs_devices;
1584 fs_devices = root->fs_info->fs_devices;
1585 while (fs_devices) {
1f78160c 1586 if (fs_devices->seed == cur_devices)
e4404d6e
YZ
1587 break;
1588 fs_devices = fs_devices->seed;
2b82032c 1589 }
1f78160c
XG
1590 fs_devices->seed = cur_devices->seed;
1591 cur_devices->seed = NULL;
0c1daee0 1592 lock_chunks(root);
1f78160c 1593 __btrfs_close_devices(cur_devices);
0c1daee0 1594 unlock_chunks(root);
1f78160c 1595 free_fs_devices(cur_devices);
2b82032c
YZ
1596 }
1597
5af3e8cc
SB
1598 root->fs_info->num_tolerated_disk_barrier_failures =
1599 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1600
2b82032c
YZ
1601 /*
1602 * at this point, the device is zero sized. We want to
1603 * remove it from the devices list and zero out the old super
1604 */
aa1b8cd4 1605 if (clear_super && disk_super) {
dfe25020
CM
1606 /* make sure this device isn't detected as part of
1607 * the FS anymore
1608 */
1609 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1610 set_buffer_dirty(bh);
1611 sync_dirty_buffer(bh);
dfe25020 1612 }
a061fc8d 1613
a061fc8d 1614 ret = 0;
a061fc8d 1615
b8b8ff59 1616 /* Notify udev that device has changed */
3c911608
ES
1617 if (bdev)
1618 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
b8b8ff59 1619
a061fc8d
CM
1620error_brelse:
1621 brelse(bh);
dfe25020 1622 if (bdev)
e525fd89 1623 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
a061fc8d
CM
1624out:
1625 mutex_unlock(&uuid_mutex);
a061fc8d 1626 return ret;
9b3517e9
ID
1627error_undo:
1628 if (device->writeable) {
0c1daee0 1629 lock_chunks(root);
9b3517e9
ID
1630 list_add(&device->dev_alloc_list,
1631 &root->fs_info->fs_devices->alloc_list);
0c1daee0 1632 unlock_chunks(root);
9b3517e9
ID
1633 root->fs_info->fs_devices->rw_devices++;
1634 }
1635 goto error_brelse;
a061fc8d
CM
1636}
1637
e93c89c1
SB
1638void btrfs_rm_dev_replace_srcdev(struct btrfs_fs_info *fs_info,
1639 struct btrfs_device *srcdev)
1640{
1641 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
1642 list_del_rcu(&srcdev->dev_list);
1643 list_del_rcu(&srcdev->dev_alloc_list);
1644 fs_info->fs_devices->num_devices--;
1645 if (srcdev->missing) {
1646 fs_info->fs_devices->missing_devices--;
1647 fs_info->fs_devices->rw_devices++;
1648 }
1649 if (srcdev->can_discard)
1650 fs_info->fs_devices->num_can_discard--;
1651 if (srcdev->bdev)
1652 fs_info->fs_devices->open_devices--;
1653
1654 call_rcu(&srcdev->rcu, free_device);
1655}
1656
1657void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
1658 struct btrfs_device *tgtdev)
1659{
1660 struct btrfs_device *next_device;
1661
1662 WARN_ON(!tgtdev);
1663 mutex_lock(&fs_info->fs_devices->device_list_mutex);
1664 if (tgtdev->bdev) {
1665 btrfs_scratch_superblock(tgtdev);
1666 fs_info->fs_devices->open_devices--;
1667 }
1668 fs_info->fs_devices->num_devices--;
1669 if (tgtdev->can_discard)
1670 fs_info->fs_devices->num_can_discard++;
1671
1672 next_device = list_entry(fs_info->fs_devices->devices.next,
1673 struct btrfs_device, dev_list);
1674 if (tgtdev->bdev == fs_info->sb->s_bdev)
1675 fs_info->sb->s_bdev = next_device->bdev;
1676 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
1677 fs_info->fs_devices->latest_bdev = next_device->bdev;
1678 list_del_rcu(&tgtdev->dev_list);
1679
1680 call_rcu(&tgtdev->rcu, free_device);
1681
1682 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
1683}
1684
7ba15b7d
SB
1685int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
1686 struct btrfs_device **device)
1687{
1688 int ret = 0;
1689 struct btrfs_super_block *disk_super;
1690 u64 devid;
1691 u8 *dev_uuid;
1692 struct block_device *bdev;
1693 struct buffer_head *bh;
1694
1695 *device = NULL;
1696 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
1697 root->fs_info->bdev_holder, 0, &bdev, &bh);
1698 if (ret)
1699 return ret;
1700 disk_super = (struct btrfs_super_block *)bh->b_data;
1701 devid = btrfs_stack_device_id(&disk_super->dev_item);
1702 dev_uuid = disk_super->dev_item.uuid;
aa1b8cd4 1703 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
7ba15b7d
SB
1704 disk_super->fsid);
1705 brelse(bh);
1706 if (!*device)
1707 ret = -ENOENT;
1708 blkdev_put(bdev, FMODE_READ);
1709 return ret;
1710}
1711
1712int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
1713 char *device_path,
1714 struct btrfs_device **device)
1715{
1716 *device = NULL;
1717 if (strcmp(device_path, "missing") == 0) {
1718 struct list_head *devices;
1719 struct btrfs_device *tmp;
1720
1721 devices = &root->fs_info->fs_devices->devices;
1722 /*
1723 * It is safe to read the devices since the volume_mutex
1724 * is held by the caller.
1725 */
1726 list_for_each_entry(tmp, devices, dev_list) {
1727 if (tmp->in_fs_metadata && !tmp->bdev) {
1728 *device = tmp;
1729 break;
1730 }
1731 }
1732
1733 if (!*device) {
1734 pr_err("btrfs: no missing device found\n");
1735 return -ENOENT;
1736 }
1737
1738 return 0;
1739 } else {
1740 return btrfs_find_device_by_path(root, device_path, device);
1741 }
1742}
1743
2b82032c
YZ
1744/*
1745 * does all the dirty work required for changing file system's UUID.
1746 */
125ccb0a 1747static int btrfs_prepare_sprout(struct btrfs_root *root)
2b82032c
YZ
1748{
1749 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
1750 struct btrfs_fs_devices *old_devices;
e4404d6e 1751 struct btrfs_fs_devices *seed_devices;
6c41761f 1752 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
2b82032c
YZ
1753 struct btrfs_device *device;
1754 u64 super_flags;
1755
1756 BUG_ON(!mutex_is_locked(&uuid_mutex));
e4404d6e 1757 if (!fs_devices->seeding)
2b82032c
YZ
1758 return -EINVAL;
1759
e4404d6e
YZ
1760 seed_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
1761 if (!seed_devices)
2b82032c
YZ
1762 return -ENOMEM;
1763
e4404d6e
YZ
1764 old_devices = clone_fs_devices(fs_devices);
1765 if (IS_ERR(old_devices)) {
1766 kfree(seed_devices);
1767 return PTR_ERR(old_devices);
2b82032c 1768 }
e4404d6e 1769
2b82032c
YZ
1770 list_add(&old_devices->list, &fs_uuids);
1771
e4404d6e
YZ
1772 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
1773 seed_devices->opened = 1;
1774 INIT_LIST_HEAD(&seed_devices->devices);
1775 INIT_LIST_HEAD(&seed_devices->alloc_list);
e5e9a520 1776 mutex_init(&seed_devices->device_list_mutex);
c9513edb
XG
1777
1778 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
1f78160c
XG
1779 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
1780 synchronize_rcu);
c9513edb
XG
1781 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
1782
e4404d6e
YZ
1783 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
1784 list_for_each_entry(device, &seed_devices->devices, dev_list) {
1785 device->fs_devices = seed_devices;
1786 }
1787
2b82032c
YZ
1788 fs_devices->seeding = 0;
1789 fs_devices->num_devices = 0;
1790 fs_devices->open_devices = 0;
02db0844 1791 fs_devices->total_devices = 0;
e4404d6e 1792 fs_devices->seed = seed_devices;
2b82032c
YZ
1793
1794 generate_random_uuid(fs_devices->fsid);
1795 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1796 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
1797 super_flags = btrfs_super_flags(disk_super) &
1798 ~BTRFS_SUPER_FLAG_SEEDING;
1799 btrfs_set_super_flags(disk_super, super_flags);
1800
1801 return 0;
1802}
1803
1804/*
1805 * strore the expected generation for seed devices in device items.
1806 */
1807static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
1808 struct btrfs_root *root)
1809{
1810 struct btrfs_path *path;
1811 struct extent_buffer *leaf;
1812 struct btrfs_dev_item *dev_item;
1813 struct btrfs_device *device;
1814 struct btrfs_key key;
1815 u8 fs_uuid[BTRFS_UUID_SIZE];
1816 u8 dev_uuid[BTRFS_UUID_SIZE];
1817 u64 devid;
1818 int ret;
1819
1820 path = btrfs_alloc_path();
1821 if (!path)
1822 return -ENOMEM;
1823
1824 root = root->fs_info->chunk_root;
1825 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1826 key.offset = 0;
1827 key.type = BTRFS_DEV_ITEM_KEY;
1828
1829 while (1) {
1830 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1831 if (ret < 0)
1832 goto error;
1833
1834 leaf = path->nodes[0];
1835next_slot:
1836 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1837 ret = btrfs_next_leaf(root, path);
1838 if (ret > 0)
1839 break;
1840 if (ret < 0)
1841 goto error;
1842 leaf = path->nodes[0];
1843 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
b3b4aa74 1844 btrfs_release_path(path);
2b82032c
YZ
1845 continue;
1846 }
1847
1848 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1849 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
1850 key.type != BTRFS_DEV_ITEM_KEY)
1851 break;
1852
1853 dev_item = btrfs_item_ptr(leaf, path->slots[0],
1854 struct btrfs_dev_item);
1855 devid = btrfs_device_id(leaf, dev_item);
1856 read_extent_buffer(leaf, dev_uuid,
1857 (unsigned long)btrfs_device_uuid(dev_item),
1858 BTRFS_UUID_SIZE);
1859 read_extent_buffer(leaf, fs_uuid,
1860 (unsigned long)btrfs_device_fsid(dev_item),
1861 BTRFS_UUID_SIZE);
aa1b8cd4
SB
1862 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
1863 fs_uuid);
79787eaa 1864 BUG_ON(!device); /* Logic error */
2b82032c
YZ
1865
1866 if (device->fs_devices->seeding) {
1867 btrfs_set_device_generation(leaf, dev_item,
1868 device->generation);
1869 btrfs_mark_buffer_dirty(leaf);
1870 }
1871
1872 path->slots[0]++;
1873 goto next_slot;
1874 }
1875 ret = 0;
1876error:
1877 btrfs_free_path(path);
1878 return ret;
1879}
1880
788f20eb
CM
1881int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
1882{
d5e2003c 1883 struct request_queue *q;
788f20eb
CM
1884 struct btrfs_trans_handle *trans;
1885 struct btrfs_device *device;
1886 struct block_device *bdev;
788f20eb 1887 struct list_head *devices;
2b82032c 1888 struct super_block *sb = root->fs_info->sb;
606686ee 1889 struct rcu_string *name;
788f20eb 1890 u64 total_bytes;
2b82032c 1891 int seeding_dev = 0;
788f20eb
CM
1892 int ret = 0;
1893
2b82032c 1894 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
f8c5d0b4 1895 return -EROFS;
788f20eb 1896
a5d16333 1897 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
d4d77629 1898 root->fs_info->bdev_holder);
7f59203a
JB
1899 if (IS_ERR(bdev))
1900 return PTR_ERR(bdev);
a2135011 1901
2b82032c
YZ
1902 if (root->fs_info->fs_devices->seeding) {
1903 seeding_dev = 1;
1904 down_write(&sb->s_umount);
1905 mutex_lock(&uuid_mutex);
1906 }
1907
8c8bee1d 1908 filemap_write_and_wait(bdev->bd_inode->i_mapping);
a2135011 1909
788f20eb 1910 devices = &root->fs_info->fs_devices->devices;
d25628bd
LB
1911
1912 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
c6e30871 1913 list_for_each_entry(device, devices, dev_list) {
788f20eb
CM
1914 if (device->bdev == bdev) {
1915 ret = -EEXIST;
d25628bd
LB
1916 mutex_unlock(
1917 &root->fs_info->fs_devices->device_list_mutex);
2b82032c 1918 goto error;
788f20eb
CM
1919 }
1920 }
d25628bd 1921 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
788f20eb
CM
1922
1923 device = kzalloc(sizeof(*device), GFP_NOFS);
1924 if (!device) {
1925 /* we can safely leave the fs_devices entry around */
1926 ret = -ENOMEM;
2b82032c 1927 goto error;
788f20eb
CM
1928 }
1929
606686ee
JB
1930 name = rcu_string_strdup(device_path, GFP_NOFS);
1931 if (!name) {
788f20eb 1932 kfree(device);
2b82032c
YZ
1933 ret = -ENOMEM;
1934 goto error;
788f20eb 1935 }
606686ee 1936 rcu_assign_pointer(device->name, name);
2b82032c
YZ
1937
1938 ret = find_next_devid(root, &device->devid);
1939 if (ret) {
606686ee 1940 rcu_string_free(device->name);
2b82032c
YZ
1941 kfree(device);
1942 goto error;
1943 }
1944
a22285a6 1945 trans = btrfs_start_transaction(root, 0);
98d5dc13 1946 if (IS_ERR(trans)) {
606686ee 1947 rcu_string_free(device->name);
98d5dc13
TI
1948 kfree(device);
1949 ret = PTR_ERR(trans);
1950 goto error;
1951 }
1952
2b82032c
YZ
1953 lock_chunks(root);
1954
d5e2003c
JB
1955 q = bdev_get_queue(bdev);
1956 if (blk_queue_discard(q))
1957 device->can_discard = 1;
2b82032c
YZ
1958 device->writeable = 1;
1959 device->work.func = pending_bios_fn;
1960 generate_random_uuid(device->uuid);
1961 spin_lock_init(&device->io_lock);
1962 device->generation = trans->transid;
788f20eb
CM
1963 device->io_width = root->sectorsize;
1964 device->io_align = root->sectorsize;
1965 device->sector_size = root->sectorsize;
1966 device->total_bytes = i_size_read(bdev->bd_inode);
2cc3c559 1967 device->disk_total_bytes = device->total_bytes;
788f20eb
CM
1968 device->dev_root = root->fs_info->dev_root;
1969 device->bdev = bdev;
dfe25020 1970 device->in_fs_metadata = 1;
63a212ab 1971 device->is_tgtdev_for_dev_replace = 0;
fb01aa85 1972 device->mode = FMODE_EXCL;
2b82032c 1973 set_blocksize(device->bdev, 4096);
788f20eb 1974
2b82032c
YZ
1975 if (seeding_dev) {
1976 sb->s_flags &= ~MS_RDONLY;
125ccb0a 1977 ret = btrfs_prepare_sprout(root);
79787eaa 1978 BUG_ON(ret); /* -ENOMEM */
2b82032c 1979 }
788f20eb 1980
2b82032c 1981 device->fs_devices = root->fs_info->fs_devices;
e5e9a520 1982
e5e9a520 1983 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
1f78160c 1984 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
2b82032c
YZ
1985 list_add(&device->dev_alloc_list,
1986 &root->fs_info->fs_devices->alloc_list);
1987 root->fs_info->fs_devices->num_devices++;
1988 root->fs_info->fs_devices->open_devices++;
1989 root->fs_info->fs_devices->rw_devices++;
02db0844 1990 root->fs_info->fs_devices->total_devices++;
d5e2003c
JB
1991 if (device->can_discard)
1992 root->fs_info->fs_devices->num_can_discard++;
2b82032c 1993 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
325cd4ba 1994
2bf64758
JB
1995 spin_lock(&root->fs_info->free_chunk_lock);
1996 root->fs_info->free_chunk_space += device->total_bytes;
1997 spin_unlock(&root->fs_info->free_chunk_lock);
1998
c289811c
CM
1999 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2000 root->fs_info->fs_devices->rotating = 1;
2001
6c41761f
DS
2002 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
2003 btrfs_set_super_total_bytes(root->fs_info->super_copy,
788f20eb
CM
2004 total_bytes + device->total_bytes);
2005
6c41761f
DS
2006 total_bytes = btrfs_super_num_devices(root->fs_info->super_copy);
2007 btrfs_set_super_num_devices(root->fs_info->super_copy,
788f20eb 2008 total_bytes + 1);
e5e9a520 2009 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
788f20eb 2010
2b82032c
YZ
2011 if (seeding_dev) {
2012 ret = init_first_rw_device(trans, root, device);
005d6427
DS
2013 if (ret) {
2014 btrfs_abort_transaction(trans, root, ret);
79787eaa 2015 goto error_trans;
005d6427 2016 }
2b82032c 2017 ret = btrfs_finish_sprout(trans, root);
005d6427
DS
2018 if (ret) {
2019 btrfs_abort_transaction(trans, root, ret);
79787eaa 2020 goto error_trans;
005d6427 2021 }
2b82032c
YZ
2022 } else {
2023 ret = btrfs_add_device(trans, root, device);
005d6427
DS
2024 if (ret) {
2025 btrfs_abort_transaction(trans, root, ret);
79787eaa 2026 goto error_trans;
005d6427 2027 }
2b82032c
YZ
2028 }
2029
913d952e
CM
2030 /*
2031 * we've got more storage, clear any full flags on the space
2032 * infos
2033 */
2034 btrfs_clear_space_info_full(root->fs_info);
2035
7d9eb12c 2036 unlock_chunks(root);
5af3e8cc
SB
2037 root->fs_info->num_tolerated_disk_barrier_failures =
2038 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
79787eaa 2039 ret = btrfs_commit_transaction(trans, root);
a2135011 2040
2b82032c
YZ
2041 if (seeding_dev) {
2042 mutex_unlock(&uuid_mutex);
2043 up_write(&sb->s_umount);
788f20eb 2044
79787eaa
JM
2045 if (ret) /* transaction commit */
2046 return ret;
2047
2b82032c 2048 ret = btrfs_relocate_sys_chunks(root);
79787eaa
JM
2049 if (ret < 0)
2050 btrfs_error(root->fs_info, ret,
2051 "Failed to relocate sys chunks after "
2052 "device initialization. This can be fixed "
2053 "using the \"btrfs balance\" command.");
671415b7
MX
2054 trans = btrfs_attach_transaction(root);
2055 if (IS_ERR(trans)) {
2056 if (PTR_ERR(trans) == -ENOENT)
2057 return 0;
2058 return PTR_ERR(trans);
2059 }
2060 ret = btrfs_commit_transaction(trans, root);
2b82032c 2061 }
c9e9f97b 2062
2b82032c 2063 return ret;
79787eaa
JM
2064
2065error_trans:
2066 unlock_chunks(root);
79787eaa 2067 btrfs_end_transaction(trans, root);
606686ee 2068 rcu_string_free(device->name);
79787eaa 2069 kfree(device);
2b82032c 2070error:
e525fd89 2071 blkdev_put(bdev, FMODE_EXCL);
2b82032c
YZ
2072 if (seeding_dev) {
2073 mutex_unlock(&uuid_mutex);
2074 up_write(&sb->s_umount);
2075 }
c9e9f97b 2076 return ret;
788f20eb
CM
2077}
2078
e93c89c1
SB
2079int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
2080 struct btrfs_device **device_out)
2081{
2082 struct request_queue *q;
2083 struct btrfs_device *device;
2084 struct block_device *bdev;
2085 struct btrfs_fs_info *fs_info = root->fs_info;
2086 struct list_head *devices;
2087 struct rcu_string *name;
2088 int ret = 0;
2089
2090 *device_out = NULL;
2091 if (fs_info->fs_devices->seeding)
2092 return -EINVAL;
2093
2094 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2095 fs_info->bdev_holder);
2096 if (IS_ERR(bdev))
2097 return PTR_ERR(bdev);
2098
2099 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2100
2101 devices = &fs_info->fs_devices->devices;
2102 list_for_each_entry(device, devices, dev_list) {
2103 if (device->bdev == bdev) {
2104 ret = -EEXIST;
2105 goto error;
2106 }
2107 }
2108
2109 device = kzalloc(sizeof(*device), GFP_NOFS);
2110 if (!device) {
2111 ret = -ENOMEM;
2112 goto error;
2113 }
2114
2115 name = rcu_string_strdup(device_path, GFP_NOFS);
2116 if (!name) {
2117 kfree(device);
2118 ret = -ENOMEM;
2119 goto error;
2120 }
2121 rcu_assign_pointer(device->name, name);
2122
2123 q = bdev_get_queue(bdev);
2124 if (blk_queue_discard(q))
2125 device->can_discard = 1;
2126 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2127 device->writeable = 1;
2128 device->work.func = pending_bios_fn;
2129 generate_random_uuid(device->uuid);
2130 device->devid = BTRFS_DEV_REPLACE_DEVID;
2131 spin_lock_init(&device->io_lock);
2132 device->generation = 0;
2133 device->io_width = root->sectorsize;
2134 device->io_align = root->sectorsize;
2135 device->sector_size = root->sectorsize;
2136 device->total_bytes = i_size_read(bdev->bd_inode);
2137 device->disk_total_bytes = device->total_bytes;
2138 device->dev_root = fs_info->dev_root;
2139 device->bdev = bdev;
2140 device->in_fs_metadata = 1;
2141 device->is_tgtdev_for_dev_replace = 1;
2142 device->mode = FMODE_EXCL;
2143 set_blocksize(device->bdev, 4096);
2144 device->fs_devices = fs_info->fs_devices;
2145 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2146 fs_info->fs_devices->num_devices++;
2147 fs_info->fs_devices->open_devices++;
2148 if (device->can_discard)
2149 fs_info->fs_devices->num_can_discard++;
2150 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2151
2152 *device_out = device;
2153 return ret;
2154
2155error:
2156 blkdev_put(bdev, FMODE_EXCL);
2157 return ret;
2158}
2159
2160void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2161 struct btrfs_device *tgtdev)
2162{
2163 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2164 tgtdev->io_width = fs_info->dev_root->sectorsize;
2165 tgtdev->io_align = fs_info->dev_root->sectorsize;
2166 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2167 tgtdev->dev_root = fs_info->dev_root;
2168 tgtdev->in_fs_metadata = 1;
2169}
2170
d397712b
CM
2171static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2172 struct btrfs_device *device)
0b86a832
CM
2173{
2174 int ret;
2175 struct btrfs_path *path;
2176 struct btrfs_root *root;
2177 struct btrfs_dev_item *dev_item;
2178 struct extent_buffer *leaf;
2179 struct btrfs_key key;
2180
2181 root = device->dev_root->fs_info->chunk_root;
2182
2183 path = btrfs_alloc_path();
2184 if (!path)
2185 return -ENOMEM;
2186
2187 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2188 key.type = BTRFS_DEV_ITEM_KEY;
2189 key.offset = device->devid;
2190
2191 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2192 if (ret < 0)
2193 goto out;
2194
2195 if (ret > 0) {
2196 ret = -ENOENT;
2197 goto out;
2198 }
2199
2200 leaf = path->nodes[0];
2201 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2202
2203 btrfs_set_device_id(leaf, dev_item, device->devid);
2204 btrfs_set_device_type(leaf, dev_item, device->type);
2205 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2206 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2207 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
d6397bae 2208 btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
0b86a832
CM
2209 btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
2210 btrfs_mark_buffer_dirty(leaf);
2211
2212out:
2213 btrfs_free_path(path);
2214 return ret;
2215}
2216
7d9eb12c 2217static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
8f18cf13
CM
2218 struct btrfs_device *device, u64 new_size)
2219{
2220 struct btrfs_super_block *super_copy =
6c41761f 2221 device->dev_root->fs_info->super_copy;
8f18cf13
CM
2222 u64 old_total = btrfs_super_total_bytes(super_copy);
2223 u64 diff = new_size - device->total_bytes;
2224
2b82032c
YZ
2225 if (!device->writeable)
2226 return -EACCES;
63a212ab
SB
2227 if (new_size <= device->total_bytes ||
2228 device->is_tgtdev_for_dev_replace)
2b82032c
YZ
2229 return -EINVAL;
2230
8f18cf13 2231 btrfs_set_super_total_bytes(super_copy, old_total + diff);
2b82032c
YZ
2232 device->fs_devices->total_rw_bytes += diff;
2233
2234 device->total_bytes = new_size;
9779b72f 2235 device->disk_total_bytes = new_size;
4184ea7f
CM
2236 btrfs_clear_space_info_full(device->dev_root->fs_info);
2237
8f18cf13
CM
2238 return btrfs_update_device(trans, device);
2239}
2240
7d9eb12c
CM
2241int btrfs_grow_device(struct btrfs_trans_handle *trans,
2242 struct btrfs_device *device, u64 new_size)
2243{
2244 int ret;
2245 lock_chunks(device->dev_root);
2246 ret = __btrfs_grow_device(trans, device, new_size);
2247 unlock_chunks(device->dev_root);
2248 return ret;
2249}
2250
8f18cf13
CM
2251static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
2252 struct btrfs_root *root,
2253 u64 chunk_tree, u64 chunk_objectid,
2254 u64 chunk_offset)
2255{
2256 int ret;
2257 struct btrfs_path *path;
2258 struct btrfs_key key;
2259
2260 root = root->fs_info->chunk_root;
2261 path = btrfs_alloc_path();
2262 if (!path)
2263 return -ENOMEM;
2264
2265 key.objectid = chunk_objectid;
2266 key.offset = chunk_offset;
2267 key.type = BTRFS_CHUNK_ITEM_KEY;
2268
2269 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
79787eaa
JM
2270 if (ret < 0)
2271 goto out;
2272 else if (ret > 0) { /* Logic error or corruption */
2273 btrfs_error(root->fs_info, -ENOENT,
2274 "Failed lookup while freeing chunk.");
2275 ret = -ENOENT;
2276 goto out;
2277 }
8f18cf13
CM
2278
2279 ret = btrfs_del_item(trans, root, path);
79787eaa
JM
2280 if (ret < 0)
2281 btrfs_error(root->fs_info, ret,
2282 "Failed to delete chunk item.");
2283out:
8f18cf13 2284 btrfs_free_path(path);
65a246c5 2285 return ret;
8f18cf13
CM
2286}
2287
b2950863 2288static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
8f18cf13
CM
2289 chunk_offset)
2290{
6c41761f 2291 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
8f18cf13
CM
2292 struct btrfs_disk_key *disk_key;
2293 struct btrfs_chunk *chunk;
2294 u8 *ptr;
2295 int ret = 0;
2296 u32 num_stripes;
2297 u32 array_size;
2298 u32 len = 0;
2299 u32 cur;
2300 struct btrfs_key key;
2301
2302 array_size = btrfs_super_sys_array_size(super_copy);
2303
2304 ptr = super_copy->sys_chunk_array;
2305 cur = 0;
2306
2307 while (cur < array_size) {
2308 disk_key = (struct btrfs_disk_key *)ptr;
2309 btrfs_disk_key_to_cpu(&key, disk_key);
2310
2311 len = sizeof(*disk_key);
2312
2313 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2314 chunk = (struct btrfs_chunk *)(ptr + len);
2315 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2316 len += btrfs_chunk_item_size(num_stripes);
2317 } else {
2318 ret = -EIO;
2319 break;
2320 }
2321 if (key.objectid == chunk_objectid &&
2322 key.offset == chunk_offset) {
2323 memmove(ptr, ptr + len, array_size - (cur + len));
2324 array_size -= len;
2325 btrfs_set_super_sys_array_size(super_copy, array_size);
2326 } else {
2327 ptr += len;
2328 cur += len;
2329 }
2330 }
2331 return ret;
2332}
2333
b2950863 2334static int btrfs_relocate_chunk(struct btrfs_root *root,
8f18cf13
CM
2335 u64 chunk_tree, u64 chunk_objectid,
2336 u64 chunk_offset)
2337{
2338 struct extent_map_tree *em_tree;
2339 struct btrfs_root *extent_root;
2340 struct btrfs_trans_handle *trans;
2341 struct extent_map *em;
2342 struct map_lookup *map;
2343 int ret;
2344 int i;
2345
2346 root = root->fs_info->chunk_root;
2347 extent_root = root->fs_info->extent_root;
2348 em_tree = &root->fs_info->mapping_tree.map_tree;
2349
ba1bf481
JB
2350 ret = btrfs_can_relocate(extent_root, chunk_offset);
2351 if (ret)
2352 return -ENOSPC;
2353
8f18cf13 2354 /* step one, relocate all the extents inside this chunk */
1a40e23b 2355 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
a22285a6
YZ
2356 if (ret)
2357 return ret;
8f18cf13 2358
a22285a6 2359 trans = btrfs_start_transaction(root, 0);
98d5dc13 2360 BUG_ON(IS_ERR(trans));
8f18cf13 2361
7d9eb12c
CM
2362 lock_chunks(root);
2363
8f18cf13
CM
2364 /*
2365 * step two, delete the device extents and the
2366 * chunk tree entries
2367 */
890871be 2368 read_lock(&em_tree->lock);
8f18cf13 2369 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
890871be 2370 read_unlock(&em_tree->lock);
8f18cf13 2371
285190d9 2372 BUG_ON(!em || em->start > chunk_offset ||
a061fc8d 2373 em->start + em->len < chunk_offset);
8f18cf13
CM
2374 map = (struct map_lookup *)em->bdev;
2375
2376 for (i = 0; i < map->num_stripes; i++) {
2377 ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
2378 map->stripes[i].physical);
2379 BUG_ON(ret);
a061fc8d 2380
dfe25020
CM
2381 if (map->stripes[i].dev) {
2382 ret = btrfs_update_device(trans, map->stripes[i].dev);
2383 BUG_ON(ret);
2384 }
8f18cf13
CM
2385 }
2386 ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
2387 chunk_offset);
2388
2389 BUG_ON(ret);
2390
1abe9b8a 2391 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2392
8f18cf13
CM
2393 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2394 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2395 BUG_ON(ret);
8f18cf13
CM
2396 }
2397
2b82032c
YZ
2398 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
2399 BUG_ON(ret);
2400
890871be 2401 write_lock(&em_tree->lock);
2b82032c 2402 remove_extent_mapping(em_tree, em);
890871be 2403 write_unlock(&em_tree->lock);
2b82032c
YZ
2404
2405 kfree(map);
2406 em->bdev = NULL;
2407
2408 /* once for the tree */
2409 free_extent_map(em);
2410 /* once for us */
2411 free_extent_map(em);
2412
2413 unlock_chunks(root);
2414 btrfs_end_transaction(trans, root);
2415 return 0;
2416}
2417
2418static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2419{
2420 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2421 struct btrfs_path *path;
2422 struct extent_buffer *leaf;
2423 struct btrfs_chunk *chunk;
2424 struct btrfs_key key;
2425 struct btrfs_key found_key;
2426 u64 chunk_tree = chunk_root->root_key.objectid;
2427 u64 chunk_type;
ba1bf481
JB
2428 bool retried = false;
2429 int failed = 0;
2b82032c
YZ
2430 int ret;
2431
2432 path = btrfs_alloc_path();
2433 if (!path)
2434 return -ENOMEM;
2435
ba1bf481 2436again:
2b82032c
YZ
2437 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2438 key.offset = (u64)-1;
2439 key.type = BTRFS_CHUNK_ITEM_KEY;
2440
2441 while (1) {
2442 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2443 if (ret < 0)
2444 goto error;
79787eaa 2445 BUG_ON(ret == 0); /* Corruption */
2b82032c
YZ
2446
2447 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2448 key.type);
2449 if (ret < 0)
2450 goto error;
2451 if (ret > 0)
2452 break;
1a40e23b 2453
2b82032c
YZ
2454 leaf = path->nodes[0];
2455 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1a40e23b 2456
2b82032c
YZ
2457 chunk = btrfs_item_ptr(leaf, path->slots[0],
2458 struct btrfs_chunk);
2459 chunk_type = btrfs_chunk_type(leaf, chunk);
b3b4aa74 2460 btrfs_release_path(path);
8f18cf13 2461
2b82032c
YZ
2462 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
2463 ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
2464 found_key.objectid,
2465 found_key.offset);
ba1bf481
JB
2466 if (ret == -ENOSPC)
2467 failed++;
2468 else if (ret)
2469 BUG();
2b82032c 2470 }
8f18cf13 2471
2b82032c
YZ
2472 if (found_key.offset == 0)
2473 break;
2474 key.offset = found_key.offset - 1;
2475 }
2476 ret = 0;
ba1bf481
JB
2477 if (failed && !retried) {
2478 failed = 0;
2479 retried = true;
2480 goto again;
2481 } else if (failed && retried) {
2482 WARN_ON(1);
2483 ret = -ENOSPC;
2484 }
2b82032c
YZ
2485error:
2486 btrfs_free_path(path);
2487 return ret;
8f18cf13
CM
2488}
2489
0940ebf6
ID
2490static int insert_balance_item(struct btrfs_root *root,
2491 struct btrfs_balance_control *bctl)
2492{
2493 struct btrfs_trans_handle *trans;
2494 struct btrfs_balance_item *item;
2495 struct btrfs_disk_balance_args disk_bargs;
2496 struct btrfs_path *path;
2497 struct extent_buffer *leaf;
2498 struct btrfs_key key;
2499 int ret, err;
2500
2501 path = btrfs_alloc_path();
2502 if (!path)
2503 return -ENOMEM;
2504
2505 trans = btrfs_start_transaction(root, 0);
2506 if (IS_ERR(trans)) {
2507 btrfs_free_path(path);
2508 return PTR_ERR(trans);
2509 }
2510
2511 key.objectid = BTRFS_BALANCE_OBJECTID;
2512 key.type = BTRFS_BALANCE_ITEM_KEY;
2513 key.offset = 0;
2514
2515 ret = btrfs_insert_empty_item(trans, root, path, &key,
2516 sizeof(*item));
2517 if (ret)
2518 goto out;
2519
2520 leaf = path->nodes[0];
2521 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2522
2523 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2524
2525 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2526 btrfs_set_balance_data(leaf, item, &disk_bargs);
2527 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2528 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2529 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2530 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2531
2532 btrfs_set_balance_flags(leaf, item, bctl->flags);
2533
2534 btrfs_mark_buffer_dirty(leaf);
2535out:
2536 btrfs_free_path(path);
2537 err = btrfs_commit_transaction(trans, root);
2538 if (err && !ret)
2539 ret = err;
2540 return ret;
2541}
2542
2543static int del_balance_item(struct btrfs_root *root)
2544{
2545 struct btrfs_trans_handle *trans;
2546 struct btrfs_path *path;
2547 struct btrfs_key key;
2548 int ret, err;
2549
2550 path = btrfs_alloc_path();
2551 if (!path)
2552 return -ENOMEM;
2553
2554 trans = btrfs_start_transaction(root, 0);
2555 if (IS_ERR(trans)) {
2556 btrfs_free_path(path);
2557 return PTR_ERR(trans);
2558 }
2559
2560 key.objectid = BTRFS_BALANCE_OBJECTID;
2561 key.type = BTRFS_BALANCE_ITEM_KEY;
2562 key.offset = 0;
2563
2564 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2565 if (ret < 0)
2566 goto out;
2567 if (ret > 0) {
2568 ret = -ENOENT;
2569 goto out;
2570 }
2571
2572 ret = btrfs_del_item(trans, root, path);
2573out:
2574 btrfs_free_path(path);
2575 err = btrfs_commit_transaction(trans, root);
2576 if (err && !ret)
2577 ret = err;
2578 return ret;
2579}
2580
59641015
ID
2581/*
2582 * This is a heuristic used to reduce the number of chunks balanced on
2583 * resume after balance was interrupted.
2584 */
2585static void update_balance_args(struct btrfs_balance_control *bctl)
2586{
2587 /*
2588 * Turn on soft mode for chunk types that were being converted.
2589 */
2590 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
2591 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
2592 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
2593 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
2594 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
2595 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
2596
2597 /*
2598 * Turn on usage filter if is not already used. The idea is
2599 * that chunks that we have already balanced should be
2600 * reasonably full. Don't do it for chunks that are being
2601 * converted - that will keep us from relocating unconverted
2602 * (albeit full) chunks.
2603 */
2604 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2605 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2606 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
2607 bctl->data.usage = 90;
2608 }
2609 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2610 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2611 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
2612 bctl->sys.usage = 90;
2613 }
2614 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
2615 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
2616 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
2617 bctl->meta.usage = 90;
2618 }
2619}
2620
c9e9f97b
ID
2621/*
2622 * Should be called with both balance and volume mutexes held to
2623 * serialize other volume operations (add_dev/rm_dev/resize) with
2624 * restriper. Same goes for unset_balance_control.
2625 */
2626static void set_balance_control(struct btrfs_balance_control *bctl)
2627{
2628 struct btrfs_fs_info *fs_info = bctl->fs_info;
2629
2630 BUG_ON(fs_info->balance_ctl);
2631
2632 spin_lock(&fs_info->balance_lock);
2633 fs_info->balance_ctl = bctl;
2634 spin_unlock(&fs_info->balance_lock);
2635}
2636
2637static void unset_balance_control(struct btrfs_fs_info *fs_info)
2638{
2639 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
2640
2641 BUG_ON(!fs_info->balance_ctl);
2642
2643 spin_lock(&fs_info->balance_lock);
2644 fs_info->balance_ctl = NULL;
2645 spin_unlock(&fs_info->balance_lock);
2646
2647 kfree(bctl);
2648}
2649
ed25e9b2
ID
2650/*
2651 * Balance filters. Return 1 if chunk should be filtered out
2652 * (should not be balanced).
2653 */
899c81ea 2654static int chunk_profiles_filter(u64 chunk_type,
ed25e9b2
ID
2655 struct btrfs_balance_args *bargs)
2656{
899c81ea
ID
2657 chunk_type = chunk_to_extended(chunk_type) &
2658 BTRFS_EXTENDED_PROFILE_MASK;
ed25e9b2 2659
899c81ea 2660 if (bargs->profiles & chunk_type)
ed25e9b2
ID
2661 return 0;
2662
2663 return 1;
2664}
2665
5ce5b3c0
ID
2666static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
2667 struct btrfs_balance_args *bargs)
2668{
2669 struct btrfs_block_group_cache *cache;
2670 u64 chunk_used, user_thresh;
2671 int ret = 1;
2672
2673 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2674 chunk_used = btrfs_block_group_used(&cache->item);
2675
a105bb88
ID
2676 if (bargs->usage == 0)
2677 user_thresh = 0;
2678 else if (bargs->usage > 100)
2679 user_thresh = cache->key.offset;
2680 else
2681 user_thresh = div_factor_fine(cache->key.offset,
2682 bargs->usage);
2683
5ce5b3c0
ID
2684 if (chunk_used < user_thresh)
2685 ret = 0;
2686
2687 btrfs_put_block_group(cache);
2688 return ret;
2689}
2690
409d404b
ID
2691static int chunk_devid_filter(struct extent_buffer *leaf,
2692 struct btrfs_chunk *chunk,
2693 struct btrfs_balance_args *bargs)
2694{
2695 struct btrfs_stripe *stripe;
2696 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2697 int i;
2698
2699 for (i = 0; i < num_stripes; i++) {
2700 stripe = btrfs_stripe_nr(chunk, i);
2701 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
2702 return 0;
2703 }
2704
2705 return 1;
2706}
2707
94e60d5a
ID
2708/* [pstart, pend) */
2709static int chunk_drange_filter(struct extent_buffer *leaf,
2710 struct btrfs_chunk *chunk,
2711 u64 chunk_offset,
2712 struct btrfs_balance_args *bargs)
2713{
2714 struct btrfs_stripe *stripe;
2715 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
2716 u64 stripe_offset;
2717 u64 stripe_length;
2718 int factor;
2719 int i;
2720
2721 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
2722 return 0;
2723
2724 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
2725 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10))
2726 factor = 2;
2727 else
2728 factor = 1;
2729 factor = num_stripes / factor;
2730
2731 for (i = 0; i < num_stripes; i++) {
2732 stripe = btrfs_stripe_nr(chunk, i);
2733 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
2734 continue;
2735
2736 stripe_offset = btrfs_stripe_offset(leaf, stripe);
2737 stripe_length = btrfs_chunk_length(leaf, chunk);
2738 do_div(stripe_length, factor);
2739
2740 if (stripe_offset < bargs->pend &&
2741 stripe_offset + stripe_length > bargs->pstart)
2742 return 0;
2743 }
2744
2745 return 1;
2746}
2747
ea67176a
ID
2748/* [vstart, vend) */
2749static int chunk_vrange_filter(struct extent_buffer *leaf,
2750 struct btrfs_chunk *chunk,
2751 u64 chunk_offset,
2752 struct btrfs_balance_args *bargs)
2753{
2754 if (chunk_offset < bargs->vend &&
2755 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
2756 /* at least part of the chunk is inside this vrange */
2757 return 0;
2758
2759 return 1;
2760}
2761
899c81ea 2762static int chunk_soft_convert_filter(u64 chunk_type,
cfa4c961
ID
2763 struct btrfs_balance_args *bargs)
2764{
2765 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
2766 return 0;
2767
899c81ea
ID
2768 chunk_type = chunk_to_extended(chunk_type) &
2769 BTRFS_EXTENDED_PROFILE_MASK;
cfa4c961 2770
899c81ea 2771 if (bargs->target == chunk_type)
cfa4c961
ID
2772 return 1;
2773
2774 return 0;
2775}
2776
f43ffb60
ID
2777static int should_balance_chunk(struct btrfs_root *root,
2778 struct extent_buffer *leaf,
2779 struct btrfs_chunk *chunk, u64 chunk_offset)
2780{
2781 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
2782 struct btrfs_balance_args *bargs = NULL;
2783 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
2784
2785 /* type filter */
2786 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
2787 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
2788 return 0;
2789 }
2790
2791 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
2792 bargs = &bctl->data;
2793 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
2794 bargs = &bctl->sys;
2795 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
2796 bargs = &bctl->meta;
2797
ed25e9b2
ID
2798 /* profiles filter */
2799 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
2800 chunk_profiles_filter(chunk_type, bargs)) {
2801 return 0;
5ce5b3c0
ID
2802 }
2803
2804 /* usage filter */
2805 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
2806 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
2807 return 0;
409d404b
ID
2808 }
2809
2810 /* devid filter */
2811 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
2812 chunk_devid_filter(leaf, chunk, bargs)) {
2813 return 0;
94e60d5a
ID
2814 }
2815
2816 /* drange filter, makes sense only with devid filter */
2817 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
2818 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
2819 return 0;
ea67176a
ID
2820 }
2821
2822 /* vrange filter */
2823 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
2824 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
2825 return 0;
ed25e9b2
ID
2826 }
2827
cfa4c961
ID
2828 /* soft profile changing mode */
2829 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
2830 chunk_soft_convert_filter(chunk_type, bargs)) {
2831 return 0;
2832 }
2833
f43ffb60
ID
2834 return 1;
2835}
2836
c9e9f97b 2837static int __btrfs_balance(struct btrfs_fs_info *fs_info)
ec44a35c 2838{
19a39dce 2839 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
c9e9f97b
ID
2840 struct btrfs_root *chunk_root = fs_info->chunk_root;
2841 struct btrfs_root *dev_root = fs_info->dev_root;
2842 struct list_head *devices;
ec44a35c
CM
2843 struct btrfs_device *device;
2844 u64 old_size;
2845 u64 size_to_free;
f43ffb60 2846 struct btrfs_chunk *chunk;
ec44a35c
CM
2847 struct btrfs_path *path;
2848 struct btrfs_key key;
ec44a35c 2849 struct btrfs_key found_key;
c9e9f97b 2850 struct btrfs_trans_handle *trans;
f43ffb60
ID
2851 struct extent_buffer *leaf;
2852 int slot;
c9e9f97b
ID
2853 int ret;
2854 int enospc_errors = 0;
19a39dce 2855 bool counting = true;
ec44a35c 2856
ec44a35c 2857 /* step one make some room on all the devices */
c9e9f97b 2858 devices = &fs_info->fs_devices->devices;
c6e30871 2859 list_for_each_entry(device, devices, dev_list) {
ec44a35c
CM
2860 old_size = device->total_bytes;
2861 size_to_free = div_factor(old_size, 1);
2862 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
2b82032c 2863 if (!device->writeable ||
63a212ab
SB
2864 device->total_bytes - device->bytes_used > size_to_free ||
2865 device->is_tgtdev_for_dev_replace)
ec44a35c
CM
2866 continue;
2867
2868 ret = btrfs_shrink_device(device, old_size - size_to_free);
ba1bf481
JB
2869 if (ret == -ENOSPC)
2870 break;
ec44a35c
CM
2871 BUG_ON(ret);
2872
a22285a6 2873 trans = btrfs_start_transaction(dev_root, 0);
98d5dc13 2874 BUG_ON(IS_ERR(trans));
ec44a35c
CM
2875
2876 ret = btrfs_grow_device(trans, device, old_size);
2877 BUG_ON(ret);
2878
2879 btrfs_end_transaction(trans, dev_root);
2880 }
2881
2882 /* step two, relocate all the chunks */
2883 path = btrfs_alloc_path();
17e9f796
MF
2884 if (!path) {
2885 ret = -ENOMEM;
2886 goto error;
2887 }
19a39dce
ID
2888
2889 /* zero out stat counters */
2890 spin_lock(&fs_info->balance_lock);
2891 memset(&bctl->stat, 0, sizeof(bctl->stat));
2892 spin_unlock(&fs_info->balance_lock);
2893again:
ec44a35c
CM
2894 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2895 key.offset = (u64)-1;
2896 key.type = BTRFS_CHUNK_ITEM_KEY;
2897
d397712b 2898 while (1) {
19a39dce 2899 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
a7e99c69 2900 atomic_read(&fs_info->balance_cancel_req)) {
837d5b6e
ID
2901 ret = -ECANCELED;
2902 goto error;
2903 }
2904
ec44a35c
CM
2905 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
2906 if (ret < 0)
2907 goto error;
2908
2909 /*
2910 * this shouldn't happen, it means the last relocate
2911 * failed
2912 */
2913 if (ret == 0)
c9e9f97b 2914 BUG(); /* FIXME break ? */
ec44a35c
CM
2915
2916 ret = btrfs_previous_item(chunk_root, path, 0,
2917 BTRFS_CHUNK_ITEM_KEY);
c9e9f97b
ID
2918 if (ret) {
2919 ret = 0;
ec44a35c 2920 break;
c9e9f97b 2921 }
7d9eb12c 2922
f43ffb60
ID
2923 leaf = path->nodes[0];
2924 slot = path->slots[0];
2925 btrfs_item_key_to_cpu(leaf, &found_key, slot);
7d9eb12c 2926
ec44a35c
CM
2927 if (found_key.objectid != key.objectid)
2928 break;
7d9eb12c 2929
ec44a35c 2930 /* chunk zero is special */
ba1bf481 2931 if (found_key.offset == 0)
ec44a35c
CM
2932 break;
2933
f43ffb60
ID
2934 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
2935
19a39dce
ID
2936 if (!counting) {
2937 spin_lock(&fs_info->balance_lock);
2938 bctl->stat.considered++;
2939 spin_unlock(&fs_info->balance_lock);
2940 }
2941
f43ffb60
ID
2942 ret = should_balance_chunk(chunk_root, leaf, chunk,
2943 found_key.offset);
b3b4aa74 2944 btrfs_release_path(path);
f43ffb60
ID
2945 if (!ret)
2946 goto loop;
2947
19a39dce
ID
2948 if (counting) {
2949 spin_lock(&fs_info->balance_lock);
2950 bctl->stat.expected++;
2951 spin_unlock(&fs_info->balance_lock);
2952 goto loop;
2953 }
2954
ec44a35c
CM
2955 ret = btrfs_relocate_chunk(chunk_root,
2956 chunk_root->root_key.objectid,
2957 found_key.objectid,
2958 found_key.offset);
508794eb
JB
2959 if (ret && ret != -ENOSPC)
2960 goto error;
19a39dce 2961 if (ret == -ENOSPC) {
c9e9f97b 2962 enospc_errors++;
19a39dce
ID
2963 } else {
2964 spin_lock(&fs_info->balance_lock);
2965 bctl->stat.completed++;
2966 spin_unlock(&fs_info->balance_lock);
2967 }
f43ffb60 2968loop:
ba1bf481 2969 key.offset = found_key.offset - 1;
ec44a35c 2970 }
c9e9f97b 2971
19a39dce
ID
2972 if (counting) {
2973 btrfs_release_path(path);
2974 counting = false;
2975 goto again;
2976 }
ec44a35c
CM
2977error:
2978 btrfs_free_path(path);
c9e9f97b
ID
2979 if (enospc_errors) {
2980 printk(KERN_INFO "btrfs: %d enospc errors during balance\n",
2981 enospc_errors);
2982 if (!ret)
2983 ret = -ENOSPC;
2984 }
2985
ec44a35c
CM
2986 return ret;
2987}
2988
0c460c0d
ID
2989/**
2990 * alloc_profile_is_valid - see if a given profile is valid and reduced
2991 * @flags: profile to validate
2992 * @extended: if true @flags is treated as an extended profile
2993 */
2994static int alloc_profile_is_valid(u64 flags, int extended)
2995{
2996 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
2997 BTRFS_BLOCK_GROUP_PROFILE_MASK);
2998
2999 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3000
3001 /* 1) check that all other bits are zeroed */
3002 if (flags & ~mask)
3003 return 0;
3004
3005 /* 2) see if profile is reduced */
3006 if (flags == 0)
3007 return !extended; /* "0" is valid for usual profiles */
3008
3009 /* true if exactly one bit set */
3010 return (flags & (flags - 1)) == 0;
3011}
3012
837d5b6e
ID
3013static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3014{
a7e99c69
ID
3015 /* cancel requested || normal exit path */
3016 return atomic_read(&fs_info->balance_cancel_req) ||
3017 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3018 atomic_read(&fs_info->balance_cancel_req) == 0);
837d5b6e
ID
3019}
3020
c9e9f97b
ID
3021static void __cancel_balance(struct btrfs_fs_info *fs_info)
3022{
0940ebf6
ID
3023 int ret;
3024
c9e9f97b 3025 unset_balance_control(fs_info);
0940ebf6
ID
3026 ret = del_balance_item(fs_info->tree_root);
3027 BUG_ON(ret);
ed0fb78f
ID
3028
3029 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
c9e9f97b
ID
3030}
3031
19a39dce 3032void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
c9e9f97b
ID
3033 struct btrfs_ioctl_balance_args *bargs);
3034
3035/*
3036 * Should be called with both balance and volume mutexes held
3037 */
3038int btrfs_balance(struct btrfs_balance_control *bctl,
3039 struct btrfs_ioctl_balance_args *bargs)
3040{
3041 struct btrfs_fs_info *fs_info = bctl->fs_info;
f43ffb60 3042 u64 allowed;
e4837f8f 3043 int mixed = 0;
c9e9f97b 3044 int ret;
8dabb742 3045 u64 num_devices;
c9e9f97b 3046
837d5b6e 3047 if (btrfs_fs_closing(fs_info) ||
a7e99c69
ID
3048 atomic_read(&fs_info->balance_pause_req) ||
3049 atomic_read(&fs_info->balance_cancel_req)) {
c9e9f97b
ID
3050 ret = -EINVAL;
3051 goto out;
3052 }
3053
e4837f8f
ID
3054 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3055 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3056 mixed = 1;
3057
f43ffb60
ID
3058 /*
3059 * In case of mixed groups both data and meta should be picked,
3060 * and identical options should be given for both of them.
3061 */
e4837f8f
ID
3062 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3063 if (mixed && (bctl->flags & allowed)) {
f43ffb60
ID
3064 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3065 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3066 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
3067 printk(KERN_ERR "btrfs: with mixed groups data and "
3068 "metadata balance options must be the same\n");
3069 ret = -EINVAL;
3070 goto out;
3071 }
3072 }
3073
8dabb742
SB
3074 num_devices = fs_info->fs_devices->num_devices;
3075 btrfs_dev_replace_lock(&fs_info->dev_replace);
3076 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3077 BUG_ON(num_devices < 1);
3078 num_devices--;
3079 }
3080 btrfs_dev_replace_unlock(&fs_info->dev_replace);
e4d8ec0f 3081 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
8dabb742 3082 if (num_devices == 1)
e4d8ec0f 3083 allowed |= BTRFS_BLOCK_GROUP_DUP;
8dabb742 3084 else if (num_devices < 4)
e4d8ec0f
ID
3085 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
3086 else
3087 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
3088 BTRFS_BLOCK_GROUP_RAID10);
3089
6728b198
ID
3090 if ((bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3091 (!alloc_profile_is_valid(bctl->data.target, 1) ||
3092 (bctl->data.target & ~allowed))) {
e4d8ec0f
ID
3093 printk(KERN_ERR "btrfs: unable to start balance with target "
3094 "data profile %llu\n",
3095 (unsigned long long)bctl->data.target);
3096 ret = -EINVAL;
3097 goto out;
3098 }
6728b198
ID
3099 if ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3100 (!alloc_profile_is_valid(bctl->meta.target, 1) ||
3101 (bctl->meta.target & ~allowed))) {
e4d8ec0f
ID
3102 printk(KERN_ERR "btrfs: unable to start balance with target "
3103 "metadata profile %llu\n",
3104 (unsigned long long)bctl->meta.target);
3105 ret = -EINVAL;
3106 goto out;
3107 }
6728b198
ID
3108 if ((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3109 (!alloc_profile_is_valid(bctl->sys.target, 1) ||
3110 (bctl->sys.target & ~allowed))) {
e4d8ec0f
ID
3111 printk(KERN_ERR "btrfs: unable to start balance with target "
3112 "system profile %llu\n",
3113 (unsigned long long)bctl->sys.target);
3114 ret = -EINVAL;
3115 goto out;
3116 }
3117
e4837f8f
ID
3118 /* allow dup'ed data chunks only in mixed mode */
3119 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
6728b198 3120 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
e4d8ec0f
ID
3121 printk(KERN_ERR "btrfs: dup for data is not allowed\n");
3122 ret = -EINVAL;
3123 goto out;
3124 }
3125
3126 /* allow to reduce meta or sys integrity only if force set */
3127 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3128 BTRFS_BLOCK_GROUP_RAID10;
3129 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3130 (fs_info->avail_system_alloc_bits & allowed) &&
3131 !(bctl->sys.target & allowed)) ||
3132 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3133 (fs_info->avail_metadata_alloc_bits & allowed) &&
3134 !(bctl->meta.target & allowed))) {
3135 if (bctl->flags & BTRFS_BALANCE_FORCE) {
3136 printk(KERN_INFO "btrfs: force reducing metadata "
3137 "integrity\n");
3138 } else {
3139 printk(KERN_ERR "btrfs: balance will reduce metadata "
3140 "integrity, use force if you want this\n");
3141 ret = -EINVAL;
3142 goto out;
3143 }
3144 }
3145
5af3e8cc
SB
3146 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3147 int num_tolerated_disk_barrier_failures;
3148 u64 target = bctl->sys.target;
3149
3150 num_tolerated_disk_barrier_failures =
3151 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3152 if (num_tolerated_disk_barrier_failures > 0 &&
3153 (target &
3154 (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3155 BTRFS_AVAIL_ALLOC_BIT_SINGLE)))
3156 num_tolerated_disk_barrier_failures = 0;
3157 else if (num_tolerated_disk_barrier_failures > 1 &&
3158 (target &
3159 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)))
3160 num_tolerated_disk_barrier_failures = 1;
3161
3162 fs_info->num_tolerated_disk_barrier_failures =
3163 num_tolerated_disk_barrier_failures;
3164 }
3165
0940ebf6 3166 ret = insert_balance_item(fs_info->tree_root, bctl);
59641015 3167 if (ret && ret != -EEXIST)
0940ebf6
ID
3168 goto out;
3169
59641015
ID
3170 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3171 BUG_ON(ret == -EEXIST);
3172 set_balance_control(bctl);
3173 } else {
3174 BUG_ON(ret != -EEXIST);
3175 spin_lock(&fs_info->balance_lock);
3176 update_balance_args(bctl);
3177 spin_unlock(&fs_info->balance_lock);
3178 }
c9e9f97b 3179
837d5b6e 3180 atomic_inc(&fs_info->balance_running);
c9e9f97b
ID
3181 mutex_unlock(&fs_info->balance_mutex);
3182
3183 ret = __btrfs_balance(fs_info);
3184
3185 mutex_lock(&fs_info->balance_mutex);
837d5b6e 3186 atomic_dec(&fs_info->balance_running);
c9e9f97b
ID
3187
3188 if (bargs) {
3189 memset(bargs, 0, sizeof(*bargs));
19a39dce 3190 update_ioctl_balance_args(fs_info, 0, bargs);
c9e9f97b
ID
3191 }
3192
837d5b6e
ID
3193 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3194 balance_need_close(fs_info)) {
3195 __cancel_balance(fs_info);
3196 }
3197
5af3e8cc
SB
3198 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3199 fs_info->num_tolerated_disk_barrier_failures =
3200 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3201 }
3202
837d5b6e 3203 wake_up(&fs_info->balance_wait_q);
c9e9f97b
ID
3204
3205 return ret;
3206out:
59641015
ID
3207 if (bctl->flags & BTRFS_BALANCE_RESUME)
3208 __cancel_balance(fs_info);
ed0fb78f 3209 else {
59641015 3210 kfree(bctl);
ed0fb78f
ID
3211 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3212 }
59641015
ID
3213 return ret;
3214}
3215
3216static int balance_kthread(void *data)
3217{
2b6ba629 3218 struct btrfs_fs_info *fs_info = data;
9555c6c1 3219 int ret = 0;
59641015
ID
3220
3221 mutex_lock(&fs_info->volume_mutex);
3222 mutex_lock(&fs_info->balance_mutex);
3223
2b6ba629 3224 if (fs_info->balance_ctl) {
9555c6c1 3225 printk(KERN_INFO "btrfs: continuing balance\n");
2b6ba629 3226 ret = btrfs_balance(fs_info->balance_ctl, NULL);
9555c6c1 3227 }
59641015
ID
3228
3229 mutex_unlock(&fs_info->balance_mutex);
3230 mutex_unlock(&fs_info->volume_mutex);
2b6ba629 3231
59641015
ID
3232 return ret;
3233}
3234
2b6ba629
ID
3235int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3236{
3237 struct task_struct *tsk;
3238
3239 spin_lock(&fs_info->balance_lock);
3240 if (!fs_info->balance_ctl) {
3241 spin_unlock(&fs_info->balance_lock);
3242 return 0;
3243 }
3244 spin_unlock(&fs_info->balance_lock);
3245
3246 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
3247 printk(KERN_INFO "btrfs: force skipping balance\n");
3248 return 0;
3249 }
3250
3251 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
3252 if (IS_ERR(tsk))
3253 return PTR_ERR(tsk);
3254
3255 return 0;
3256}
3257
68310a5e 3258int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
59641015 3259{
59641015
ID
3260 struct btrfs_balance_control *bctl;
3261 struct btrfs_balance_item *item;
3262 struct btrfs_disk_balance_args disk_bargs;
3263 struct btrfs_path *path;
3264 struct extent_buffer *leaf;
3265 struct btrfs_key key;
3266 int ret;
3267
3268 path = btrfs_alloc_path();
3269 if (!path)
3270 return -ENOMEM;
3271
59641015
ID
3272 key.objectid = BTRFS_BALANCE_OBJECTID;
3273 key.type = BTRFS_BALANCE_ITEM_KEY;
3274 key.offset = 0;
3275
68310a5e 3276 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
59641015 3277 if (ret < 0)
68310a5e 3278 goto out;
59641015
ID
3279 if (ret > 0) { /* ret = -ENOENT; */
3280 ret = 0;
68310a5e
ID
3281 goto out;
3282 }
3283
3284 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3285 if (!bctl) {
3286 ret = -ENOMEM;
3287 goto out;
59641015
ID
3288 }
3289
3290 leaf = path->nodes[0];
3291 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3292
68310a5e
ID
3293 bctl->fs_info = fs_info;
3294 bctl->flags = btrfs_balance_flags(leaf, item);
3295 bctl->flags |= BTRFS_BALANCE_RESUME;
59641015
ID
3296
3297 btrfs_balance_data(leaf, item, &disk_bargs);
3298 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3299 btrfs_balance_meta(leaf, item, &disk_bargs);
3300 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3301 btrfs_balance_sys(leaf, item, &disk_bargs);
3302 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3303
ed0fb78f
ID
3304 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3305
68310a5e
ID
3306 mutex_lock(&fs_info->volume_mutex);
3307 mutex_lock(&fs_info->balance_mutex);
59641015 3308
68310a5e
ID
3309 set_balance_control(bctl);
3310
3311 mutex_unlock(&fs_info->balance_mutex);
3312 mutex_unlock(&fs_info->volume_mutex);
59641015
ID
3313out:
3314 btrfs_free_path(path);
ec44a35c
CM
3315 return ret;
3316}
3317
837d5b6e
ID
3318int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3319{
3320 int ret = 0;
3321
3322 mutex_lock(&fs_info->balance_mutex);
3323 if (!fs_info->balance_ctl) {
3324 mutex_unlock(&fs_info->balance_mutex);
3325 return -ENOTCONN;
3326 }
3327
3328 if (atomic_read(&fs_info->balance_running)) {
3329 atomic_inc(&fs_info->balance_pause_req);
3330 mutex_unlock(&fs_info->balance_mutex);
3331
3332 wait_event(fs_info->balance_wait_q,
3333 atomic_read(&fs_info->balance_running) == 0);
3334
3335 mutex_lock(&fs_info->balance_mutex);
3336 /* we are good with balance_ctl ripped off from under us */
3337 BUG_ON(atomic_read(&fs_info->balance_running));
3338 atomic_dec(&fs_info->balance_pause_req);
3339 } else {
3340 ret = -ENOTCONN;
3341 }
3342
3343 mutex_unlock(&fs_info->balance_mutex);
3344 return ret;
3345}
3346
a7e99c69
ID
3347int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3348{
3349 mutex_lock(&fs_info->balance_mutex);
3350 if (!fs_info->balance_ctl) {
3351 mutex_unlock(&fs_info->balance_mutex);
3352 return -ENOTCONN;
3353 }
3354
3355 atomic_inc(&fs_info->balance_cancel_req);
3356 /*
3357 * if we are running just wait and return, balance item is
3358 * deleted in btrfs_balance in this case
3359 */
3360 if (atomic_read(&fs_info->balance_running)) {
3361 mutex_unlock(&fs_info->balance_mutex);
3362 wait_event(fs_info->balance_wait_q,
3363 atomic_read(&fs_info->balance_running) == 0);
3364 mutex_lock(&fs_info->balance_mutex);
3365 } else {
3366 /* __cancel_balance needs volume_mutex */
3367 mutex_unlock(&fs_info->balance_mutex);
3368 mutex_lock(&fs_info->volume_mutex);
3369 mutex_lock(&fs_info->balance_mutex);
3370
3371 if (fs_info->balance_ctl)
3372 __cancel_balance(fs_info);
3373
3374 mutex_unlock(&fs_info->volume_mutex);
3375 }
3376
3377 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3378 atomic_dec(&fs_info->balance_cancel_req);
3379 mutex_unlock(&fs_info->balance_mutex);
3380 return 0;
3381}
3382
8f18cf13
CM
3383/*
3384 * shrinking a device means finding all of the device extents past
3385 * the new size, and then following the back refs to the chunks.
3386 * The chunk relocation code actually frees the device extent
3387 */
3388int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
3389{
3390 struct btrfs_trans_handle *trans;
3391 struct btrfs_root *root = device->dev_root;
3392 struct btrfs_dev_extent *dev_extent = NULL;
3393 struct btrfs_path *path;
3394 u64 length;
3395 u64 chunk_tree;
3396 u64 chunk_objectid;
3397 u64 chunk_offset;
3398 int ret;
3399 int slot;
ba1bf481
JB
3400 int failed = 0;
3401 bool retried = false;
8f18cf13
CM
3402 struct extent_buffer *l;
3403 struct btrfs_key key;
6c41761f 3404 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
8f18cf13 3405 u64 old_total = btrfs_super_total_bytes(super_copy);
ba1bf481 3406 u64 old_size = device->total_bytes;
8f18cf13
CM
3407 u64 diff = device->total_bytes - new_size;
3408
63a212ab
SB
3409 if (device->is_tgtdev_for_dev_replace)
3410 return -EINVAL;
3411
8f18cf13
CM
3412 path = btrfs_alloc_path();
3413 if (!path)
3414 return -ENOMEM;
3415
8f18cf13
CM
3416 path->reada = 2;
3417
7d9eb12c
CM
3418 lock_chunks(root);
3419
8f18cf13 3420 device->total_bytes = new_size;
2bf64758 3421 if (device->writeable) {
2b82032c 3422 device->fs_devices->total_rw_bytes -= diff;
2bf64758
JB
3423 spin_lock(&root->fs_info->free_chunk_lock);
3424 root->fs_info->free_chunk_space -= diff;
3425 spin_unlock(&root->fs_info->free_chunk_lock);
3426 }
7d9eb12c 3427 unlock_chunks(root);
8f18cf13 3428
ba1bf481 3429again:
8f18cf13
CM
3430 key.objectid = device->devid;
3431 key.offset = (u64)-1;
3432 key.type = BTRFS_DEV_EXTENT_KEY;
3433
213e64da 3434 do {
8f18cf13
CM
3435 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3436 if (ret < 0)
3437 goto done;
3438
3439 ret = btrfs_previous_item(root, path, 0, key.type);
3440 if (ret < 0)
3441 goto done;
3442 if (ret) {
3443 ret = 0;
b3b4aa74 3444 btrfs_release_path(path);
bf1fb512 3445 break;
8f18cf13
CM
3446 }
3447
3448 l = path->nodes[0];
3449 slot = path->slots[0];
3450 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
3451
ba1bf481 3452 if (key.objectid != device->devid) {
b3b4aa74 3453 btrfs_release_path(path);
bf1fb512 3454 break;
ba1bf481 3455 }
8f18cf13
CM
3456
3457 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3458 length = btrfs_dev_extent_length(l, dev_extent);
3459
ba1bf481 3460 if (key.offset + length <= new_size) {
b3b4aa74 3461 btrfs_release_path(path);
d6397bae 3462 break;
ba1bf481 3463 }
8f18cf13
CM
3464
3465 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
3466 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
3467 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
b3b4aa74 3468 btrfs_release_path(path);
8f18cf13
CM
3469
3470 ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
3471 chunk_offset);
ba1bf481 3472 if (ret && ret != -ENOSPC)
8f18cf13 3473 goto done;
ba1bf481
JB
3474 if (ret == -ENOSPC)
3475 failed++;
213e64da 3476 } while (key.offset-- > 0);
ba1bf481
JB
3477
3478 if (failed && !retried) {
3479 failed = 0;
3480 retried = true;
3481 goto again;
3482 } else if (failed && retried) {
3483 ret = -ENOSPC;
3484 lock_chunks(root);
3485
3486 device->total_bytes = old_size;
3487 if (device->writeable)
3488 device->fs_devices->total_rw_bytes += diff;
2bf64758
JB
3489 spin_lock(&root->fs_info->free_chunk_lock);
3490 root->fs_info->free_chunk_space += diff;
3491 spin_unlock(&root->fs_info->free_chunk_lock);
ba1bf481
JB
3492 unlock_chunks(root);
3493 goto done;
8f18cf13
CM
3494 }
3495
d6397bae 3496 /* Shrinking succeeded, else we would be at "done". */
a22285a6 3497 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
3498 if (IS_ERR(trans)) {
3499 ret = PTR_ERR(trans);
3500 goto done;
3501 }
3502
d6397bae
CB
3503 lock_chunks(root);
3504
3505 device->disk_total_bytes = new_size;
3506 /* Now btrfs_update_device() will change the on-disk size. */
3507 ret = btrfs_update_device(trans, device);
3508 if (ret) {
3509 unlock_chunks(root);
3510 btrfs_end_transaction(trans, root);
3511 goto done;
3512 }
3513 WARN_ON(diff > old_total);
3514 btrfs_set_super_total_bytes(super_copy, old_total - diff);
3515 unlock_chunks(root);
3516 btrfs_end_transaction(trans, root);
8f18cf13
CM
3517done:
3518 btrfs_free_path(path);
3519 return ret;
3520}
3521
125ccb0a 3522static int btrfs_add_system_chunk(struct btrfs_root *root,
0b86a832
CM
3523 struct btrfs_key *key,
3524 struct btrfs_chunk *chunk, int item_size)
3525{
6c41761f 3526 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
0b86a832
CM
3527 struct btrfs_disk_key disk_key;
3528 u32 array_size;
3529 u8 *ptr;
3530
3531 array_size = btrfs_super_sys_array_size(super_copy);
3532 if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
3533 return -EFBIG;
3534
3535 ptr = super_copy->sys_chunk_array + array_size;
3536 btrfs_cpu_key_to_disk(&disk_key, key);
3537 memcpy(ptr, &disk_key, sizeof(disk_key));
3538 ptr += sizeof(disk_key);
3539 memcpy(ptr, chunk, item_size);
3540 item_size += sizeof(disk_key);
3541 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
3542 return 0;
3543}
3544
73c5de00
AJ
3545/*
3546 * sort the devices in descending order by max_avail, total_avail
3547 */
3548static int btrfs_cmp_device_info(const void *a, const void *b)
9b3f68b9 3549{
73c5de00
AJ
3550 const struct btrfs_device_info *di_a = a;
3551 const struct btrfs_device_info *di_b = b;
9b3f68b9 3552
73c5de00 3553 if (di_a->max_avail > di_b->max_avail)
b2117a39 3554 return -1;
73c5de00 3555 if (di_a->max_avail < di_b->max_avail)
b2117a39 3556 return 1;
73c5de00
AJ
3557 if (di_a->total_avail > di_b->total_avail)
3558 return -1;
3559 if (di_a->total_avail < di_b->total_avail)
3560 return 1;
3561 return 0;
b2117a39 3562}
0b86a832 3563
31e50229
LB
3564struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
3565 { 2, 1, 0, 4, 2, 2 /* raid10 */ },
3566 { 1, 1, 2, 2, 2, 2 /* raid1 */ },
3567 { 1, 2, 1, 1, 1, 2 /* dup */ },
3568 { 1, 1, 0, 2, 1, 1 /* raid0 */ },
c9f01bfe 3569 { 1, 1, 1, 1, 1, 1 /* single */ },
31e50229
LB
3570};
3571
73c5de00
AJ
3572static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
3573 struct btrfs_root *extent_root,
3574 struct map_lookup **map_ret,
3575 u64 *num_bytes_out, u64 *stripe_size_out,
3576 u64 start, u64 type)
b2117a39 3577{
73c5de00
AJ
3578 struct btrfs_fs_info *info = extent_root->fs_info;
3579 struct btrfs_fs_devices *fs_devices = info->fs_devices;
3580 struct list_head *cur;
3581 struct map_lookup *map = NULL;
3582 struct extent_map_tree *em_tree;
3583 struct extent_map *em;
3584 struct btrfs_device_info *devices_info = NULL;
3585 u64 total_avail;
3586 int num_stripes; /* total number of stripes to allocate */
3587 int sub_stripes; /* sub_stripes info for map */
3588 int dev_stripes; /* stripes per dev */
3589 int devs_max; /* max devs to use */
3590 int devs_min; /* min devs needed */
3591 int devs_increment; /* ndevs has to be a multiple of this */
3592 int ncopies; /* how many copies to data has */
3593 int ret;
3594 u64 max_stripe_size;
3595 u64 max_chunk_size;
3596 u64 stripe_size;
3597 u64 num_bytes;
3598 int ndevs;
3599 int i;
3600 int j;
31e50229 3601 int index;
593060d7 3602
0c460c0d 3603 BUG_ON(!alloc_profile_is_valid(type, 0));
9b3f68b9 3604
73c5de00
AJ
3605 if (list_empty(&fs_devices->alloc_list))
3606 return -ENOSPC;
b2117a39 3607
31e50229 3608 index = __get_raid_index(type);
73c5de00 3609
31e50229
LB
3610 sub_stripes = btrfs_raid_array[index].sub_stripes;
3611 dev_stripes = btrfs_raid_array[index].dev_stripes;
3612 devs_max = btrfs_raid_array[index].devs_max;
3613 devs_min = btrfs_raid_array[index].devs_min;
3614 devs_increment = btrfs_raid_array[index].devs_increment;
3615 ncopies = btrfs_raid_array[index].ncopies;
b2117a39 3616
9b3f68b9 3617 if (type & BTRFS_BLOCK_GROUP_DATA) {
73c5de00
AJ
3618 max_stripe_size = 1024 * 1024 * 1024;
3619 max_chunk_size = 10 * max_stripe_size;
9b3f68b9 3620 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
1100373f
CM
3621 /* for larger filesystems, use larger metadata chunks */
3622 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
3623 max_stripe_size = 1024 * 1024 * 1024;
3624 else
3625 max_stripe_size = 256 * 1024 * 1024;
73c5de00 3626 max_chunk_size = max_stripe_size;
a40a90a0 3627 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
96bdc7dc 3628 max_stripe_size = 32 * 1024 * 1024;
73c5de00
AJ
3629 max_chunk_size = 2 * max_stripe_size;
3630 } else {
3631 printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
3632 type);
3633 BUG_ON(1);
9b3f68b9
CM
3634 }
3635
2b82032c
YZ
3636 /* we don't want a chunk larger than 10% of writeable space */
3637 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
3638 max_chunk_size);
9b3f68b9 3639
73c5de00
AJ
3640 devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
3641 GFP_NOFS);
3642 if (!devices_info)
3643 return -ENOMEM;
0cad8a11 3644
73c5de00 3645 cur = fs_devices->alloc_list.next;
9b3f68b9 3646
9f680ce0 3647 /*
73c5de00
AJ
3648 * in the first pass through the devices list, we gather information
3649 * about the available holes on each device.
9f680ce0 3650 */
73c5de00
AJ
3651 ndevs = 0;
3652 while (cur != &fs_devices->alloc_list) {
3653 struct btrfs_device *device;
3654 u64 max_avail;
3655 u64 dev_offset;
b2117a39 3656
73c5de00 3657 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
9f680ce0 3658
73c5de00 3659 cur = cur->next;
b2117a39 3660
73c5de00 3661 if (!device->writeable) {
31b1a2bd 3662 WARN(1, KERN_ERR
73c5de00 3663 "btrfs: read-only device in alloc_list\n");
73c5de00
AJ
3664 continue;
3665 }
b2117a39 3666
63a212ab
SB
3667 if (!device->in_fs_metadata ||
3668 device->is_tgtdev_for_dev_replace)
73c5de00 3669 continue;
b2117a39 3670
73c5de00
AJ
3671 if (device->total_bytes > device->bytes_used)
3672 total_avail = device->total_bytes - device->bytes_used;
3673 else
3674 total_avail = 0;
38c01b96 3675
3676 /* If there is no space on this device, skip it. */
3677 if (total_avail == 0)
3678 continue;
b2117a39 3679
125ccb0a 3680 ret = find_free_dev_extent(device,
73c5de00
AJ
3681 max_stripe_size * dev_stripes,
3682 &dev_offset, &max_avail);
3683 if (ret && ret != -ENOSPC)
3684 goto error;
b2117a39 3685
73c5de00
AJ
3686 if (ret == 0)
3687 max_avail = max_stripe_size * dev_stripes;
b2117a39 3688
73c5de00
AJ
3689 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
3690 continue;
b2117a39 3691
73c5de00
AJ
3692 devices_info[ndevs].dev_offset = dev_offset;
3693 devices_info[ndevs].max_avail = max_avail;
3694 devices_info[ndevs].total_avail = total_avail;
3695 devices_info[ndevs].dev = device;
3696 ++ndevs;
8dabb742 3697 WARN_ON(ndevs > fs_devices->rw_devices);
73c5de00 3698 }
b2117a39 3699
73c5de00
AJ
3700 /*
3701 * now sort the devices by hole size / available space
3702 */
3703 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
3704 btrfs_cmp_device_info, NULL);
b2117a39 3705
73c5de00
AJ
3706 /* round down to number of usable stripes */
3707 ndevs -= ndevs % devs_increment;
b2117a39 3708
73c5de00
AJ
3709 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
3710 ret = -ENOSPC;
3711 goto error;
b2117a39 3712 }
9f680ce0 3713
73c5de00
AJ
3714 if (devs_max && ndevs > devs_max)
3715 ndevs = devs_max;
3716 /*
3717 * the primary goal is to maximize the number of stripes, so use as many
3718 * devices as possible, even if the stripes are not maximum sized.
3719 */
3720 stripe_size = devices_info[ndevs-1].max_avail;
3721 num_stripes = ndevs * dev_stripes;
b2117a39 3722
37db63a4 3723 if (stripe_size * ndevs > max_chunk_size * ncopies) {
73c5de00 3724 stripe_size = max_chunk_size * ncopies;
37db63a4 3725 do_div(stripe_size, ndevs);
b2117a39 3726 }
b2117a39 3727
73c5de00 3728 do_div(stripe_size, dev_stripes);
37db63a4
ID
3729
3730 /* align to BTRFS_STRIPE_LEN */
73c5de00
AJ
3731 do_div(stripe_size, BTRFS_STRIPE_LEN);
3732 stripe_size *= BTRFS_STRIPE_LEN;
b2117a39
MX
3733
3734 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
3735 if (!map) {
3736 ret = -ENOMEM;
3737 goto error;
3738 }
3739 map->num_stripes = num_stripes;
9b3f68b9 3740
73c5de00
AJ
3741 for (i = 0; i < ndevs; ++i) {
3742 for (j = 0; j < dev_stripes; ++j) {
3743 int s = i * dev_stripes + j;
3744 map->stripes[s].dev = devices_info[i].dev;
3745 map->stripes[s].physical = devices_info[i].dev_offset +
3746 j * stripe_size;
6324fbf3 3747 }
6324fbf3 3748 }
2b82032c 3749 map->sector_size = extent_root->sectorsize;
b2117a39
MX
3750 map->stripe_len = BTRFS_STRIPE_LEN;
3751 map->io_align = BTRFS_STRIPE_LEN;
3752 map->io_width = BTRFS_STRIPE_LEN;
2b82032c 3753 map->type = type;
2b82032c 3754 map->sub_stripes = sub_stripes;
0b86a832 3755
2b82032c 3756 *map_ret = map;
73c5de00 3757 num_bytes = stripe_size * (num_stripes / ncopies);
0b86a832 3758
73c5de00
AJ
3759 *stripe_size_out = stripe_size;
3760 *num_bytes_out = num_bytes;
0b86a832 3761
73c5de00 3762 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
1abe9b8a 3763
172ddd60 3764 em = alloc_extent_map();
2b82032c 3765 if (!em) {
b2117a39
MX
3766 ret = -ENOMEM;
3767 goto error;
593060d7 3768 }
2b82032c
YZ
3769 em->bdev = (struct block_device *)map;
3770 em->start = start;
73c5de00 3771 em->len = num_bytes;
2b82032c
YZ
3772 em->block_start = 0;
3773 em->block_len = em->len;
593060d7 3774
2b82032c 3775 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
890871be 3776 write_lock(&em_tree->lock);
2b82032c 3777 ret = add_extent_mapping(em_tree, em);
890871be 3778 write_unlock(&em_tree->lock);
2b82032c 3779 free_extent_map(em);
1dd4602f
MF
3780 if (ret)
3781 goto error;
0b86a832 3782
2b82032c
YZ
3783 ret = btrfs_make_block_group(trans, extent_root, 0, type,
3784 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
73c5de00 3785 start, num_bytes);
79787eaa
JM
3786 if (ret)
3787 goto error;
611f0e00 3788
73c5de00
AJ
3789 for (i = 0; i < map->num_stripes; ++i) {
3790 struct btrfs_device *device;
3791 u64 dev_offset;
3792
3793 device = map->stripes[i].dev;
3794 dev_offset = map->stripes[i].physical;
0b86a832
CM
3795
3796 ret = btrfs_alloc_dev_extent(trans, device,
2b82032c
YZ
3797 info->chunk_root->root_key.objectid,
3798 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
73c5de00 3799 start, dev_offset, stripe_size);
79787eaa
JM
3800 if (ret) {
3801 btrfs_abort_transaction(trans, extent_root, ret);
3802 goto error;
3803 }
2b82032c
YZ
3804 }
3805
b2117a39 3806 kfree(devices_info);
2b82032c 3807 return 0;
b2117a39
MX
3808
3809error:
3810 kfree(map);
3811 kfree(devices_info);
3812 return ret;
2b82032c
YZ
3813}
3814
3815static int __finish_chunk_alloc(struct btrfs_trans_handle *trans,
3816 struct btrfs_root *extent_root,
3817 struct map_lookup *map, u64 chunk_offset,
3818 u64 chunk_size, u64 stripe_size)
3819{
3820 u64 dev_offset;
3821 struct btrfs_key key;
3822 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
3823 struct btrfs_device *device;
3824 struct btrfs_chunk *chunk;
3825 struct btrfs_stripe *stripe;
3826 size_t item_size = btrfs_chunk_item_size(map->num_stripes);
3827 int index = 0;
3828 int ret;
3829
3830 chunk = kzalloc(item_size, GFP_NOFS);
3831 if (!chunk)
3832 return -ENOMEM;
3833
3834 index = 0;
3835 while (index < map->num_stripes) {
3836 device = map->stripes[index].dev;
3837 device->bytes_used += stripe_size;
0b86a832 3838 ret = btrfs_update_device(trans, device);
3acd3953
MF
3839 if (ret)
3840 goto out_free;
2b82032c
YZ
3841 index++;
3842 }
3843
2bf64758
JB
3844 spin_lock(&extent_root->fs_info->free_chunk_lock);
3845 extent_root->fs_info->free_chunk_space -= (stripe_size *
3846 map->num_stripes);
3847 spin_unlock(&extent_root->fs_info->free_chunk_lock);
3848
2b82032c
YZ
3849 index = 0;
3850 stripe = &chunk->stripe;
3851 while (index < map->num_stripes) {
3852 device = map->stripes[index].dev;
3853 dev_offset = map->stripes[index].physical;
0b86a832 3854
e17cade2
CM
3855 btrfs_set_stack_stripe_devid(stripe, device->devid);
3856 btrfs_set_stack_stripe_offset(stripe, dev_offset);
3857 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
2b82032c 3858 stripe++;
0b86a832
CM
3859 index++;
3860 }
3861
2b82032c 3862 btrfs_set_stack_chunk_length(chunk, chunk_size);
0b86a832 3863 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
2b82032c
YZ
3864 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
3865 btrfs_set_stack_chunk_type(chunk, map->type);
3866 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
3867 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
3868 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
0b86a832 3869 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
2b82032c 3870 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
0b86a832 3871
2b82032c
YZ
3872 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3873 key.type = BTRFS_CHUNK_ITEM_KEY;
3874 key.offset = chunk_offset;
0b86a832 3875
2b82032c 3876 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
0b86a832 3877
4ed1d16e
MF
3878 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
3879 /*
3880 * TODO: Cleanup of inserted chunk root in case of
3881 * failure.
3882 */
125ccb0a 3883 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
2b82032c 3884 item_size);
8f18cf13 3885 }
1abe9b8a 3886
3acd3953 3887out_free:
0b86a832 3888 kfree(chunk);
4ed1d16e 3889 return ret;
2b82032c 3890}
0b86a832 3891
2b82032c
YZ
3892/*
3893 * Chunk allocation falls into two parts. The first part does works
3894 * that make the new allocated chunk useable, but not do any operation
3895 * that modifies the chunk tree. The second part does the works that
3896 * require modifying the chunk tree. This division is important for the
3897 * bootstrap process of adding storage to a seed btrfs.
3898 */
3899int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
3900 struct btrfs_root *extent_root, u64 type)
3901{
3902 u64 chunk_offset;
3903 u64 chunk_size;
3904 u64 stripe_size;
3905 struct map_lookup *map;
3906 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
3907 int ret;
3908
3909 ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
3910 &chunk_offset);
3911 if (ret)
3912 return ret;
3913
3914 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
3915 &stripe_size, chunk_offset, type);
3916 if (ret)
3917 return ret;
3918
3919 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
3920 chunk_size, stripe_size);
79787eaa
JM
3921 if (ret)
3922 return ret;
2b82032c
YZ
3923 return 0;
3924}
3925
d397712b 3926static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
2b82032c
YZ
3927 struct btrfs_root *root,
3928 struct btrfs_device *device)
3929{
3930 u64 chunk_offset;
3931 u64 sys_chunk_offset;
3932 u64 chunk_size;
3933 u64 sys_chunk_size;
3934 u64 stripe_size;
3935 u64 sys_stripe_size;
3936 u64 alloc_profile;
3937 struct map_lookup *map;
3938 struct map_lookup *sys_map;
3939 struct btrfs_fs_info *fs_info = root->fs_info;
3940 struct btrfs_root *extent_root = fs_info->extent_root;
3941 int ret;
3942
3943 ret = find_next_chunk(fs_info->chunk_root,
3944 BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
92b8e897
MF
3945 if (ret)
3946 return ret;
2b82032c
YZ
3947
3948 alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
6fef8df1 3949 fs_info->avail_metadata_alloc_bits;
2b82032c
YZ
3950 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
3951
3952 ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
3953 &stripe_size, chunk_offset, alloc_profile);
79787eaa
JM
3954 if (ret)
3955 return ret;
2b82032c
YZ
3956
3957 sys_chunk_offset = chunk_offset + chunk_size;
3958
3959 alloc_profile = BTRFS_BLOCK_GROUP_SYSTEM |
6fef8df1 3960 fs_info->avail_system_alloc_bits;
2b82032c
YZ
3961 alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
3962
3963 ret = __btrfs_alloc_chunk(trans, extent_root, &sys_map,
3964 &sys_chunk_size, &sys_stripe_size,
3965 sys_chunk_offset, alloc_profile);
005d6427
DS
3966 if (ret) {
3967 btrfs_abort_transaction(trans, root, ret);
3968 goto out;
3969 }
2b82032c
YZ
3970
3971 ret = btrfs_add_device(trans, fs_info->chunk_root, device);
005d6427
DS
3972 if (ret) {
3973 btrfs_abort_transaction(trans, root, ret);
3974 goto out;
3975 }
2b82032c
YZ
3976
3977 /*
3978 * Modifying chunk tree needs allocating new blocks from both
3979 * system block group and metadata block group. So we only can
3980 * do operations require modifying the chunk tree after both
3981 * block groups were created.
3982 */
3983 ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
3984 chunk_size, stripe_size);
005d6427
DS
3985 if (ret) {
3986 btrfs_abort_transaction(trans, root, ret);
3987 goto out;
3988 }
2b82032c
YZ
3989
3990 ret = __finish_chunk_alloc(trans, extent_root, sys_map,
3991 sys_chunk_offset, sys_chunk_size,
3992 sys_stripe_size);
79787eaa 3993 if (ret)
005d6427 3994 btrfs_abort_transaction(trans, root, ret);
79787eaa 3995
005d6427 3996out:
79787eaa 3997
79787eaa 3998 return ret;
2b82032c
YZ
3999}
4000
4001int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4002{
4003 struct extent_map *em;
4004 struct map_lookup *map;
4005 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4006 int readonly = 0;
4007 int i;
4008
890871be 4009 read_lock(&map_tree->map_tree.lock);
2b82032c 4010 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
890871be 4011 read_unlock(&map_tree->map_tree.lock);
2b82032c
YZ
4012 if (!em)
4013 return 1;
4014
f48b9075
JB
4015 if (btrfs_test_opt(root, DEGRADED)) {
4016 free_extent_map(em);
4017 return 0;
4018 }
4019
2b82032c
YZ
4020 map = (struct map_lookup *)em->bdev;
4021 for (i = 0; i < map->num_stripes; i++) {
4022 if (!map->stripes[i].dev->writeable) {
4023 readonly = 1;
4024 break;
4025 }
4026 }
0b86a832 4027 free_extent_map(em);
2b82032c 4028 return readonly;
0b86a832
CM
4029}
4030
4031void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4032{
a8067e02 4033 extent_map_tree_init(&tree->map_tree);
0b86a832
CM
4034}
4035
4036void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4037{
4038 struct extent_map *em;
4039
d397712b 4040 while (1) {
890871be 4041 write_lock(&tree->map_tree.lock);
0b86a832
CM
4042 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4043 if (em)
4044 remove_extent_mapping(&tree->map_tree, em);
890871be 4045 write_unlock(&tree->map_tree.lock);
0b86a832
CM
4046 if (!em)
4047 break;
4048 kfree(em->bdev);
4049 /* once for us */
4050 free_extent_map(em);
4051 /* once for the tree */
4052 free_extent_map(em);
4053 }
4054}
4055
5d964051 4056int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
f188591e 4057{
5d964051 4058 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
f188591e
CM
4059 struct extent_map *em;
4060 struct map_lookup *map;
4061 struct extent_map_tree *em_tree = &map_tree->map_tree;
4062 int ret;
4063
890871be 4064 read_lock(&em_tree->lock);
f188591e 4065 em = lookup_extent_mapping(em_tree, logical, len);
890871be 4066 read_unlock(&em_tree->lock);
f188591e
CM
4067 BUG_ON(!em);
4068
4069 BUG_ON(em->start > logical || em->start + em->len < logical);
4070 map = (struct map_lookup *)em->bdev;
4071 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
4072 ret = map->num_stripes;
321aecc6
CM
4073 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4074 ret = map->sub_stripes;
f188591e
CM
4075 else
4076 ret = 1;
4077 free_extent_map(em);
ad6d620e
SB
4078
4079 btrfs_dev_replace_lock(&fs_info->dev_replace);
4080 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
4081 ret++;
4082 btrfs_dev_replace_unlock(&fs_info->dev_replace);
4083
f188591e
CM
4084 return ret;
4085}
4086
30d9861f
SB
4087static int find_live_mirror(struct btrfs_fs_info *fs_info,
4088 struct map_lookup *map, int first, int num,
4089 int optimal, int dev_replace_is_ongoing)
dfe25020
CM
4090{
4091 int i;
30d9861f
SB
4092 int tolerance;
4093 struct btrfs_device *srcdev;
4094
4095 if (dev_replace_is_ongoing &&
4096 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
4097 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
4098 srcdev = fs_info->dev_replace.srcdev;
4099 else
4100 srcdev = NULL;
4101
4102 /*
4103 * try to avoid the drive that is the source drive for a
4104 * dev-replace procedure, only choose it if no other non-missing
4105 * mirror is available
4106 */
4107 for (tolerance = 0; tolerance < 2; tolerance++) {
4108 if (map->stripes[optimal].dev->bdev &&
4109 (tolerance || map->stripes[optimal].dev != srcdev))
4110 return optimal;
4111 for (i = first; i < first + num; i++) {
4112 if (map->stripes[i].dev->bdev &&
4113 (tolerance || map->stripes[i].dev != srcdev))
4114 return i;
4115 }
dfe25020 4116 }
30d9861f 4117
dfe25020
CM
4118 /* we couldn't find one that doesn't fail. Just return something
4119 * and the io error handling code will clean up eventually
4120 */
4121 return optimal;
4122}
4123
3ec706c8 4124static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
f2d8d74d 4125 u64 logical, u64 *length,
a1d3c478 4126 struct btrfs_bio **bbio_ret,
7eaceacc 4127 int mirror_num)
0b86a832
CM
4128{
4129 struct extent_map *em;
4130 struct map_lookup *map;
3ec706c8 4131 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
0b86a832
CM
4132 struct extent_map_tree *em_tree = &map_tree->map_tree;
4133 u64 offset;
593060d7 4134 u64 stripe_offset;
fce3bb9a 4135 u64 stripe_end_offset;
593060d7 4136 u64 stripe_nr;
fce3bb9a
LD
4137 u64 stripe_nr_orig;
4138 u64 stripe_nr_end;
593060d7 4139 int stripe_index;
cea9e445 4140 int i;
de11cc12 4141 int ret = 0;
f2d8d74d 4142 int num_stripes;
a236aed1 4143 int max_errors = 0;
a1d3c478 4144 struct btrfs_bio *bbio = NULL;
472262f3
SB
4145 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
4146 int dev_replace_is_ongoing = 0;
4147 int num_alloc_stripes;
ad6d620e
SB
4148 int patch_the_first_stripe_for_dev_replace = 0;
4149 u64 physical_to_patch_in_first_stripe = 0;
0b86a832 4150
890871be 4151 read_lock(&em_tree->lock);
0b86a832 4152 em = lookup_extent_mapping(em_tree, logical, *length);
890871be 4153 read_unlock(&em_tree->lock);
f2d8d74d 4154
3b951516 4155 if (!em) {
48940662 4156 printk(KERN_CRIT "btrfs: unable to find logical %llu len %llu\n",
d397712b
CM
4157 (unsigned long long)logical,
4158 (unsigned long long)*length);
f2d8d74d 4159 BUG();
3b951516 4160 }
0b86a832
CM
4161
4162 BUG_ON(em->start > logical || em->start + em->len < logical);
4163 map = (struct map_lookup *)em->bdev;
4164 offset = logical - em->start;
593060d7
CM
4165
4166 stripe_nr = offset;
4167 /*
4168 * stripe_nr counts the total number of stripes we have to stride
4169 * to get to this block
4170 */
4171 do_div(stripe_nr, map->stripe_len);
4172
4173 stripe_offset = stripe_nr * map->stripe_len;
4174 BUG_ON(offset < stripe_offset);
4175
4176 /* stripe_offset is the offset of this block in its stripe*/
4177 stripe_offset = offset - stripe_offset;
4178
fce3bb9a
LD
4179 if (rw & REQ_DISCARD)
4180 *length = min_t(u64, em->len - offset, *length);
52ba6929 4181 else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
cea9e445
CM
4182 /* we limit the length of each bio to what fits in a stripe */
4183 *length = min_t(u64, em->len - offset,
fce3bb9a 4184 map->stripe_len - stripe_offset);
cea9e445
CM
4185 } else {
4186 *length = em->len - offset;
4187 }
f2d8d74d 4188
a1d3c478 4189 if (!bbio_ret)
cea9e445
CM
4190 goto out;
4191
472262f3
SB
4192 btrfs_dev_replace_lock(dev_replace);
4193 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
4194 if (!dev_replace_is_ongoing)
4195 btrfs_dev_replace_unlock(dev_replace);
4196
ad6d620e
SB
4197 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
4198 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
4199 dev_replace->tgtdev != NULL) {
4200 /*
4201 * in dev-replace case, for repair case (that's the only
4202 * case where the mirror is selected explicitly when
4203 * calling btrfs_map_block), blocks left of the left cursor
4204 * can also be read from the target drive.
4205 * For REQ_GET_READ_MIRRORS, the target drive is added as
4206 * the last one to the array of stripes. For READ, it also
4207 * needs to be supported using the same mirror number.
4208 * If the requested block is not left of the left cursor,
4209 * EIO is returned. This can happen because btrfs_num_copies()
4210 * returns one more in the dev-replace case.
4211 */
4212 u64 tmp_length = *length;
4213 struct btrfs_bio *tmp_bbio = NULL;
4214 int tmp_num_stripes;
4215 u64 srcdev_devid = dev_replace->srcdev->devid;
4216 int index_srcdev = 0;
4217 int found = 0;
4218 u64 physical_of_found = 0;
4219
4220 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
4221 logical, &tmp_length, &tmp_bbio, 0);
4222 if (ret) {
4223 WARN_ON(tmp_bbio != NULL);
4224 goto out;
4225 }
4226
4227 tmp_num_stripes = tmp_bbio->num_stripes;
4228 if (mirror_num > tmp_num_stripes) {
4229 /*
4230 * REQ_GET_READ_MIRRORS does not contain this
4231 * mirror, that means that the requested area
4232 * is not left of the left cursor
4233 */
4234 ret = -EIO;
4235 kfree(tmp_bbio);
4236 goto out;
4237 }
4238
4239 /*
4240 * process the rest of the function using the mirror_num
4241 * of the source drive. Therefore look it up first.
4242 * At the end, patch the device pointer to the one of the
4243 * target drive.
4244 */
4245 for (i = 0; i < tmp_num_stripes; i++) {
4246 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
4247 /*
4248 * In case of DUP, in order to keep it
4249 * simple, only add the mirror with the
4250 * lowest physical address
4251 */
4252 if (found &&
4253 physical_of_found <=
4254 tmp_bbio->stripes[i].physical)
4255 continue;
4256 index_srcdev = i;
4257 found = 1;
4258 physical_of_found =
4259 tmp_bbio->stripes[i].physical;
4260 }
4261 }
4262
4263 if (found) {
4264 mirror_num = index_srcdev + 1;
4265 patch_the_first_stripe_for_dev_replace = 1;
4266 physical_to_patch_in_first_stripe = physical_of_found;
4267 } else {
4268 WARN_ON(1);
4269 ret = -EIO;
4270 kfree(tmp_bbio);
4271 goto out;
4272 }
4273
4274 kfree(tmp_bbio);
4275 } else if (mirror_num > map->num_stripes) {
4276 mirror_num = 0;
4277 }
4278
f2d8d74d 4279 num_stripes = 1;
cea9e445 4280 stripe_index = 0;
fce3bb9a
LD
4281 stripe_nr_orig = stripe_nr;
4282 stripe_nr_end = (offset + *length + map->stripe_len - 1) &
4283 (~(map->stripe_len - 1));
4284 do_div(stripe_nr_end, map->stripe_len);
4285 stripe_end_offset = stripe_nr_end * map->stripe_len -
4286 (offset + *length);
4287 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
4288 if (rw & REQ_DISCARD)
4289 num_stripes = min_t(u64, map->num_stripes,
4290 stripe_nr_end - stripe_nr_orig);
4291 stripe_index = do_div(stripe_nr, map->num_stripes);
4292 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
29a8d9a0 4293 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
f2d8d74d 4294 num_stripes = map->num_stripes;
2fff734f 4295 else if (mirror_num)
f188591e 4296 stripe_index = mirror_num - 1;
dfe25020 4297 else {
30d9861f 4298 stripe_index = find_live_mirror(fs_info, map, 0,
dfe25020 4299 map->num_stripes,
30d9861f
SB
4300 current->pid % map->num_stripes,
4301 dev_replace_is_ongoing);
a1d3c478 4302 mirror_num = stripe_index + 1;
dfe25020 4303 }
2fff734f 4304
611f0e00 4305 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
29a8d9a0 4306 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
f2d8d74d 4307 num_stripes = map->num_stripes;
a1d3c478 4308 } else if (mirror_num) {
f188591e 4309 stripe_index = mirror_num - 1;
a1d3c478
JS
4310 } else {
4311 mirror_num = 1;
4312 }
2fff734f 4313
321aecc6
CM
4314 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
4315 int factor = map->num_stripes / map->sub_stripes;
321aecc6
CM
4316
4317 stripe_index = do_div(stripe_nr, factor);
4318 stripe_index *= map->sub_stripes;
4319
29a8d9a0 4320 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
f2d8d74d 4321 num_stripes = map->sub_stripes;
fce3bb9a
LD
4322 else if (rw & REQ_DISCARD)
4323 num_stripes = min_t(u64, map->sub_stripes *
4324 (stripe_nr_end - stripe_nr_orig),
4325 map->num_stripes);
321aecc6
CM
4326 else if (mirror_num)
4327 stripe_index += mirror_num - 1;
dfe25020 4328 else {
3e74317a 4329 int old_stripe_index = stripe_index;
30d9861f
SB
4330 stripe_index = find_live_mirror(fs_info, map,
4331 stripe_index,
dfe25020 4332 map->sub_stripes, stripe_index +
30d9861f
SB
4333 current->pid % map->sub_stripes,
4334 dev_replace_is_ongoing);
3e74317a 4335 mirror_num = stripe_index - old_stripe_index + 1;
dfe25020 4336 }
8790d502
CM
4337 } else {
4338 /*
4339 * after this do_div call, stripe_nr is the number of stripes
4340 * on this device we have to walk to find the data, and
4341 * stripe_index is the number of our device in the stripe array
4342 */
4343 stripe_index = do_div(stripe_nr, map->num_stripes);
a1d3c478 4344 mirror_num = stripe_index + 1;
8790d502 4345 }
593060d7 4346 BUG_ON(stripe_index >= map->num_stripes);
cea9e445 4347
472262f3 4348 num_alloc_stripes = num_stripes;
ad6d620e
SB
4349 if (dev_replace_is_ongoing) {
4350 if (rw & (REQ_WRITE | REQ_DISCARD))
4351 num_alloc_stripes <<= 1;
4352 if (rw & REQ_GET_READ_MIRRORS)
4353 num_alloc_stripes++;
4354 }
472262f3 4355 bbio = kzalloc(btrfs_bio_size(num_alloc_stripes), GFP_NOFS);
de11cc12
LZ
4356 if (!bbio) {
4357 ret = -ENOMEM;
4358 goto out;
4359 }
4360 atomic_set(&bbio->error, 0);
4361
fce3bb9a 4362 if (rw & REQ_DISCARD) {
ec9ef7a1
LZ
4363 int factor = 0;
4364 int sub_stripes = 0;
4365 u64 stripes_per_dev = 0;
4366 u32 remaining_stripes = 0;
b89203f7 4367 u32 last_stripe = 0;
ec9ef7a1
LZ
4368
4369 if (map->type &
4370 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
4371 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
4372 sub_stripes = 1;
4373 else
4374 sub_stripes = map->sub_stripes;
4375
4376 factor = map->num_stripes / sub_stripes;
4377 stripes_per_dev = div_u64_rem(stripe_nr_end -
4378 stripe_nr_orig,
4379 factor,
4380 &remaining_stripes);
b89203f7
LB
4381 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
4382 last_stripe *= sub_stripes;
ec9ef7a1
LZ
4383 }
4384
fce3bb9a 4385 for (i = 0; i < num_stripes; i++) {
a1d3c478 4386 bbio->stripes[i].physical =
f2d8d74d
CM
4387 map->stripes[stripe_index].physical +
4388 stripe_offset + stripe_nr * map->stripe_len;
a1d3c478 4389 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
fce3bb9a 4390
ec9ef7a1
LZ
4391 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
4392 BTRFS_BLOCK_GROUP_RAID10)) {
4393 bbio->stripes[i].length = stripes_per_dev *
4394 map->stripe_len;
b89203f7 4395
ec9ef7a1
LZ
4396 if (i / sub_stripes < remaining_stripes)
4397 bbio->stripes[i].length +=
4398 map->stripe_len;
b89203f7
LB
4399
4400 /*
4401 * Special for the first stripe and
4402 * the last stripe:
4403 *
4404 * |-------|...|-------|
4405 * |----------|
4406 * off end_off
4407 */
ec9ef7a1 4408 if (i < sub_stripes)
a1d3c478 4409 bbio->stripes[i].length -=
fce3bb9a 4410 stripe_offset;
b89203f7
LB
4411
4412 if (stripe_index >= last_stripe &&
4413 stripe_index <= (last_stripe +
4414 sub_stripes - 1))
a1d3c478 4415 bbio->stripes[i].length -=
fce3bb9a 4416 stripe_end_offset;
b89203f7 4417
ec9ef7a1
LZ
4418 if (i == sub_stripes - 1)
4419 stripe_offset = 0;
fce3bb9a 4420 } else
a1d3c478 4421 bbio->stripes[i].length = *length;
fce3bb9a
LD
4422
4423 stripe_index++;
4424 if (stripe_index == map->num_stripes) {
4425 /* This could only happen for RAID0/10 */
4426 stripe_index = 0;
4427 stripe_nr++;
4428 }
4429 }
4430 } else {
4431 for (i = 0; i < num_stripes; i++) {
a1d3c478 4432 bbio->stripes[i].physical =
212a17ab
LT
4433 map->stripes[stripe_index].physical +
4434 stripe_offset +
4435 stripe_nr * map->stripe_len;
a1d3c478 4436 bbio->stripes[i].dev =
212a17ab 4437 map->stripes[stripe_index].dev;
fce3bb9a 4438 stripe_index++;
f2d8d74d 4439 }
593060d7 4440 }
de11cc12 4441
29a8d9a0 4442 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) {
de11cc12
LZ
4443 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4444 BTRFS_BLOCK_GROUP_RAID10 |
4445 BTRFS_BLOCK_GROUP_DUP)) {
4446 max_errors = 1;
4447 }
f2d8d74d 4448 }
de11cc12 4449
472262f3
SB
4450 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
4451 dev_replace->tgtdev != NULL) {
4452 int index_where_to_add;
4453 u64 srcdev_devid = dev_replace->srcdev->devid;
4454
4455 /*
4456 * duplicate the write operations while the dev replace
4457 * procedure is running. Since the copying of the old disk
4458 * to the new disk takes place at run time while the
4459 * filesystem is mounted writable, the regular write
4460 * operations to the old disk have to be duplicated to go
4461 * to the new disk as well.
4462 * Note that device->missing is handled by the caller, and
4463 * that the write to the old disk is already set up in the
4464 * stripes array.
4465 */
4466 index_where_to_add = num_stripes;
4467 for (i = 0; i < num_stripes; i++) {
4468 if (bbio->stripes[i].dev->devid == srcdev_devid) {
4469 /* write to new disk, too */
4470 struct btrfs_bio_stripe *new =
4471 bbio->stripes + index_where_to_add;
4472 struct btrfs_bio_stripe *old =
4473 bbio->stripes + i;
4474
4475 new->physical = old->physical;
4476 new->length = old->length;
4477 new->dev = dev_replace->tgtdev;
4478 index_where_to_add++;
4479 max_errors++;
4480 }
4481 }
4482 num_stripes = index_where_to_add;
ad6d620e
SB
4483 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
4484 dev_replace->tgtdev != NULL) {
4485 u64 srcdev_devid = dev_replace->srcdev->devid;
4486 int index_srcdev = 0;
4487 int found = 0;
4488 u64 physical_of_found = 0;
4489
4490 /*
4491 * During the dev-replace procedure, the target drive can
4492 * also be used to read data in case it is needed to repair
4493 * a corrupt block elsewhere. This is possible if the
4494 * requested area is left of the left cursor. In this area,
4495 * the target drive is a full copy of the source drive.
4496 */
4497 for (i = 0; i < num_stripes; i++) {
4498 if (bbio->stripes[i].dev->devid == srcdev_devid) {
4499 /*
4500 * In case of DUP, in order to keep it
4501 * simple, only add the mirror with the
4502 * lowest physical address
4503 */
4504 if (found &&
4505 physical_of_found <=
4506 bbio->stripes[i].physical)
4507 continue;
4508 index_srcdev = i;
4509 found = 1;
4510 physical_of_found = bbio->stripes[i].physical;
4511 }
4512 }
4513 if (found) {
4514 u64 length = map->stripe_len;
4515
4516 if (physical_of_found + length <=
4517 dev_replace->cursor_left) {
4518 struct btrfs_bio_stripe *tgtdev_stripe =
4519 bbio->stripes + num_stripes;
4520
4521 tgtdev_stripe->physical = physical_of_found;
4522 tgtdev_stripe->length =
4523 bbio->stripes[index_srcdev].length;
4524 tgtdev_stripe->dev = dev_replace->tgtdev;
4525
4526 num_stripes++;
4527 }
4528 }
472262f3
SB
4529 }
4530
de11cc12
LZ
4531 *bbio_ret = bbio;
4532 bbio->num_stripes = num_stripes;
4533 bbio->max_errors = max_errors;
4534 bbio->mirror_num = mirror_num;
ad6d620e
SB
4535
4536 /*
4537 * this is the case that REQ_READ && dev_replace_is_ongoing &&
4538 * mirror_num == num_stripes + 1 && dev_replace target drive is
4539 * available as a mirror
4540 */
4541 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
4542 WARN_ON(num_stripes > 1);
4543 bbio->stripes[0].dev = dev_replace->tgtdev;
4544 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
4545 bbio->mirror_num = map->num_stripes + 1;
4546 }
cea9e445 4547out:
472262f3
SB
4548 if (dev_replace_is_ongoing)
4549 btrfs_dev_replace_unlock(dev_replace);
0b86a832 4550 free_extent_map(em);
de11cc12 4551 return ret;
0b86a832
CM
4552}
4553
3ec706c8 4554int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
f2d8d74d 4555 u64 logical, u64 *length,
a1d3c478 4556 struct btrfs_bio **bbio_ret, int mirror_num)
f2d8d74d 4557{
3ec706c8 4558 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
7eaceacc 4559 mirror_num);
f2d8d74d
CM
4560}
4561
a512bbf8
YZ
4562int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
4563 u64 chunk_start, u64 physical, u64 devid,
4564 u64 **logical, int *naddrs, int *stripe_len)
4565{
4566 struct extent_map_tree *em_tree = &map_tree->map_tree;
4567 struct extent_map *em;
4568 struct map_lookup *map;
4569 u64 *buf;
4570 u64 bytenr;
4571 u64 length;
4572 u64 stripe_nr;
4573 int i, j, nr = 0;
4574
890871be 4575 read_lock(&em_tree->lock);
a512bbf8 4576 em = lookup_extent_mapping(em_tree, chunk_start, 1);
890871be 4577 read_unlock(&em_tree->lock);
a512bbf8
YZ
4578
4579 BUG_ON(!em || em->start != chunk_start);
4580 map = (struct map_lookup *)em->bdev;
4581
4582 length = em->len;
4583 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4584 do_div(length, map->num_stripes / map->sub_stripes);
4585 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
4586 do_div(length, map->num_stripes);
4587
4588 buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
79787eaa 4589 BUG_ON(!buf); /* -ENOMEM */
a512bbf8
YZ
4590
4591 for (i = 0; i < map->num_stripes; i++) {
4592 if (devid && map->stripes[i].dev->devid != devid)
4593 continue;
4594 if (map->stripes[i].physical > physical ||
4595 map->stripes[i].physical + length <= physical)
4596 continue;
4597
4598 stripe_nr = physical - map->stripes[i].physical;
4599 do_div(stripe_nr, map->stripe_len);
4600
4601 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
4602 stripe_nr = stripe_nr * map->num_stripes + i;
4603 do_div(stripe_nr, map->sub_stripes);
4604 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
4605 stripe_nr = stripe_nr * map->num_stripes + i;
4606 }
4607 bytenr = chunk_start + stripe_nr * map->stripe_len;
934d375b 4608 WARN_ON(nr >= map->num_stripes);
a512bbf8
YZ
4609 for (j = 0; j < nr; j++) {
4610 if (buf[j] == bytenr)
4611 break;
4612 }
934d375b
CM
4613 if (j == nr) {
4614 WARN_ON(nr >= map->num_stripes);
a512bbf8 4615 buf[nr++] = bytenr;
934d375b 4616 }
a512bbf8
YZ
4617 }
4618
a512bbf8
YZ
4619 *logical = buf;
4620 *naddrs = nr;
4621 *stripe_len = map->stripe_len;
4622
4623 free_extent_map(em);
4624 return 0;
f2d8d74d
CM
4625}
4626
442a4f63
SB
4627static void *merge_stripe_index_into_bio_private(void *bi_private,
4628 unsigned int stripe_index)
4629{
4630 /*
4631 * with single, dup, RAID0, RAID1 and RAID10, stripe_index is
4632 * at most 1.
4633 * The alternative solution (instead of stealing bits from the
4634 * pointer) would be to allocate an intermediate structure
4635 * that contains the old private pointer plus the stripe_index.
4636 */
4637 BUG_ON((((uintptr_t)bi_private) & 3) != 0);
4638 BUG_ON(stripe_index > 3);
4639 return (void *)(((uintptr_t)bi_private) | stripe_index);
4640}
4641
4642static struct btrfs_bio *extract_bbio_from_bio_private(void *bi_private)
4643{
4644 return (struct btrfs_bio *)(((uintptr_t)bi_private) & ~((uintptr_t)3));
4645}
4646
4647static unsigned int extract_stripe_index_from_bio_private(void *bi_private)
4648{
4649 return (unsigned int)((uintptr_t)bi_private) & 3;
4650}
4651
a1d3c478 4652static void btrfs_end_bio(struct bio *bio, int err)
8790d502 4653{
442a4f63 4654 struct btrfs_bio *bbio = extract_bbio_from_bio_private(bio->bi_private);
7d2b4daa 4655 int is_orig_bio = 0;
8790d502 4656
442a4f63 4657 if (err) {
a1d3c478 4658 atomic_inc(&bbio->error);
442a4f63
SB
4659 if (err == -EIO || err == -EREMOTEIO) {
4660 unsigned int stripe_index =
4661 extract_stripe_index_from_bio_private(
4662 bio->bi_private);
4663 struct btrfs_device *dev;
4664
4665 BUG_ON(stripe_index >= bbio->num_stripes);
4666 dev = bbio->stripes[stripe_index].dev;
597a60fa
SB
4667 if (dev->bdev) {
4668 if (bio->bi_rw & WRITE)
4669 btrfs_dev_stat_inc(dev,
4670 BTRFS_DEV_STAT_WRITE_ERRS);
4671 else
4672 btrfs_dev_stat_inc(dev,
4673 BTRFS_DEV_STAT_READ_ERRS);
4674 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
4675 btrfs_dev_stat_inc(dev,
4676 BTRFS_DEV_STAT_FLUSH_ERRS);
4677 btrfs_dev_stat_print_on_error(dev);
4678 }
442a4f63
SB
4679 }
4680 }
8790d502 4681
a1d3c478 4682 if (bio == bbio->orig_bio)
7d2b4daa
CM
4683 is_orig_bio = 1;
4684
a1d3c478 4685 if (atomic_dec_and_test(&bbio->stripes_pending)) {
7d2b4daa
CM
4686 if (!is_orig_bio) {
4687 bio_put(bio);
a1d3c478 4688 bio = bbio->orig_bio;
7d2b4daa 4689 }
a1d3c478
JS
4690 bio->bi_private = bbio->private;
4691 bio->bi_end_io = bbio->end_io;
2774b2ca
JS
4692 bio->bi_bdev = (struct block_device *)
4693 (unsigned long)bbio->mirror_num;
a236aed1
CM
4694 /* only send an error to the higher layers if it is
4695 * beyond the tolerance of the multi-bio
4696 */
a1d3c478 4697 if (atomic_read(&bbio->error) > bbio->max_errors) {
a236aed1 4698 err = -EIO;
5dbc8fca 4699 } else {
1259ab75
CM
4700 /*
4701 * this bio is actually up to date, we didn't
4702 * go over the max number of errors
4703 */
4704 set_bit(BIO_UPTODATE, &bio->bi_flags);
a236aed1 4705 err = 0;
1259ab75 4706 }
a1d3c478 4707 kfree(bbio);
8790d502
CM
4708
4709 bio_endio(bio, err);
7d2b4daa 4710 } else if (!is_orig_bio) {
8790d502
CM
4711 bio_put(bio);
4712 }
8790d502
CM
4713}
4714
8b712842
CM
4715struct async_sched {
4716 struct bio *bio;
4717 int rw;
4718 struct btrfs_fs_info *info;
4719 struct btrfs_work work;
4720};
4721
4722/*
4723 * see run_scheduled_bios for a description of why bios are collected for
4724 * async submit.
4725 *
4726 * This will add one bio to the pending list for a device and make sure
4727 * the work struct is scheduled.
4728 */
143bede5 4729static noinline void schedule_bio(struct btrfs_root *root,
a1b32a59
CM
4730 struct btrfs_device *device,
4731 int rw, struct bio *bio)
8b712842
CM
4732{
4733 int should_queue = 1;
ffbd517d 4734 struct btrfs_pending_bios *pending_bios;
8b712842
CM
4735
4736 /* don't bother with additional async steps for reads, right now */
7b6d91da 4737 if (!(rw & REQ_WRITE)) {
492bb6de 4738 bio_get(bio);
21adbd5c 4739 btrfsic_submit_bio(rw, bio);
492bb6de 4740 bio_put(bio);
143bede5 4741 return;
8b712842
CM
4742 }
4743
4744 /*
0986fe9e 4745 * nr_async_bios allows us to reliably return congestion to the
8b712842
CM
4746 * higher layers. Otherwise, the async bio makes it appear we have
4747 * made progress against dirty pages when we've really just put it
4748 * on a queue for later
4749 */
0986fe9e 4750 atomic_inc(&root->fs_info->nr_async_bios);
492bb6de 4751 WARN_ON(bio->bi_next);
8b712842
CM
4752 bio->bi_next = NULL;
4753 bio->bi_rw |= rw;
4754
4755 spin_lock(&device->io_lock);
7b6d91da 4756 if (bio->bi_rw & REQ_SYNC)
ffbd517d
CM
4757 pending_bios = &device->pending_sync_bios;
4758 else
4759 pending_bios = &device->pending_bios;
8b712842 4760
ffbd517d
CM
4761 if (pending_bios->tail)
4762 pending_bios->tail->bi_next = bio;
8b712842 4763
ffbd517d
CM
4764 pending_bios->tail = bio;
4765 if (!pending_bios->head)
4766 pending_bios->head = bio;
8b712842
CM
4767 if (device->running_pending)
4768 should_queue = 0;
4769
4770 spin_unlock(&device->io_lock);
4771
4772 if (should_queue)
1cc127b5
CM
4773 btrfs_queue_worker(&root->fs_info->submit_workers,
4774 &device->work);
8b712842
CM
4775}
4776
de1ee92a
JB
4777static int bio_size_ok(struct block_device *bdev, struct bio *bio,
4778 sector_t sector)
4779{
4780 struct bio_vec *prev;
4781 struct request_queue *q = bdev_get_queue(bdev);
4782 unsigned short max_sectors = queue_max_sectors(q);
4783 struct bvec_merge_data bvm = {
4784 .bi_bdev = bdev,
4785 .bi_sector = sector,
4786 .bi_rw = bio->bi_rw,
4787 };
4788
4789 if (bio->bi_vcnt == 0) {
4790 WARN_ON(1);
4791 return 1;
4792 }
4793
4794 prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
4795 if ((bio->bi_size >> 9) > max_sectors)
4796 return 0;
4797
4798 if (!q->merge_bvec_fn)
4799 return 1;
4800
4801 bvm.bi_size = bio->bi_size - prev->bv_len;
4802 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len)
4803 return 0;
4804 return 1;
4805}
4806
4807static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
4808 struct bio *bio, u64 physical, int dev_nr,
4809 int rw, int async)
4810{
4811 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
4812
4813 bio->bi_private = bbio;
4814 bio->bi_private = merge_stripe_index_into_bio_private(
4815 bio->bi_private, (unsigned int)dev_nr);
4816 bio->bi_end_io = btrfs_end_bio;
4817 bio->bi_sector = physical >> 9;
4818#ifdef DEBUG
4819 {
4820 struct rcu_string *name;
4821
4822 rcu_read_lock();
4823 name = rcu_dereference(dev->name);
d1423248 4824 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
de1ee92a
JB
4825 "(%s id %llu), size=%u\n", rw,
4826 (u64)bio->bi_sector, (u_long)dev->bdev->bd_dev,
4827 name->str, dev->devid, bio->bi_size);
4828 rcu_read_unlock();
4829 }
4830#endif
4831 bio->bi_bdev = dev->bdev;
4832 if (async)
4833 schedule_bio(root, dev, rw, bio);
4834 else
4835 btrfsic_submit_bio(rw, bio);
4836}
4837
4838static int breakup_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
4839 struct bio *first_bio, struct btrfs_device *dev,
4840 int dev_nr, int rw, int async)
4841{
4842 struct bio_vec *bvec = first_bio->bi_io_vec;
4843 struct bio *bio;
4844 int nr_vecs = bio_get_nr_vecs(dev->bdev);
4845 u64 physical = bbio->stripes[dev_nr].physical;
4846
4847again:
4848 bio = btrfs_bio_alloc(dev->bdev, physical >> 9, nr_vecs, GFP_NOFS);
4849 if (!bio)
4850 return -ENOMEM;
4851
4852 while (bvec <= (first_bio->bi_io_vec + first_bio->bi_vcnt - 1)) {
4853 if (bio_add_page(bio, bvec->bv_page, bvec->bv_len,
4854 bvec->bv_offset) < bvec->bv_len) {
4855 u64 len = bio->bi_size;
4856
4857 atomic_inc(&bbio->stripes_pending);
4858 submit_stripe_bio(root, bbio, bio, physical, dev_nr,
4859 rw, async);
4860 physical += len;
4861 goto again;
4862 }
4863 bvec++;
4864 }
4865
4866 submit_stripe_bio(root, bbio, bio, physical, dev_nr, rw, async);
4867 return 0;
4868}
4869
4870static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
4871{
4872 atomic_inc(&bbio->error);
4873 if (atomic_dec_and_test(&bbio->stripes_pending)) {
4874 bio->bi_private = bbio->private;
4875 bio->bi_end_io = bbio->end_io;
4876 bio->bi_bdev = (struct block_device *)
4877 (unsigned long)bbio->mirror_num;
4878 bio->bi_sector = logical >> 9;
4879 kfree(bbio);
4880 bio_endio(bio, -EIO);
4881 }
4882}
4883
f188591e 4884int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
8b712842 4885 int mirror_num, int async_submit)
0b86a832 4886{
0b86a832 4887 struct btrfs_device *dev;
8790d502 4888 struct bio *first_bio = bio;
a62b9401 4889 u64 logical = (u64)bio->bi_sector << 9;
0b86a832
CM
4890 u64 length = 0;
4891 u64 map_length;
0b86a832 4892 int ret;
8790d502
CM
4893 int dev_nr = 0;
4894 int total_devs = 1;
a1d3c478 4895 struct btrfs_bio *bbio = NULL;
0b86a832 4896
f2d8d74d 4897 length = bio->bi_size;
0b86a832 4898 map_length = length;
cea9e445 4899
3ec706c8 4900 ret = btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
f188591e 4901 mirror_num);
61891923 4902 if (ret)
79787eaa 4903 return ret;
cea9e445 4904
a1d3c478 4905 total_devs = bbio->num_stripes;
cea9e445 4906 if (map_length < length) {
48940662 4907 printk(KERN_CRIT "btrfs: mapping failed logical %llu bio len %llu "
d397712b
CM
4908 "len %llu\n", (unsigned long long)logical,
4909 (unsigned long long)length,
4910 (unsigned long long)map_length);
cea9e445
CM
4911 BUG();
4912 }
a1d3c478
JS
4913
4914 bbio->orig_bio = first_bio;
4915 bbio->private = first_bio->bi_private;
4916 bbio->end_io = first_bio->bi_end_io;
4917 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
cea9e445 4918
d397712b 4919 while (dev_nr < total_devs) {
de1ee92a
JB
4920 dev = bbio->stripes[dev_nr].dev;
4921 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
4922 bbio_error(bbio, first_bio, logical);
4923 dev_nr++;
4924 continue;
4925 }
4926
4927 /*
4928 * Check and see if we're ok with this bio based on it's size
4929 * and offset with the given device.
4930 */
4931 if (!bio_size_ok(dev->bdev, first_bio,
4932 bbio->stripes[dev_nr].physical >> 9)) {
4933 ret = breakup_stripe_bio(root, bbio, first_bio, dev,
4934 dev_nr, rw, async_submit);
4935 BUG_ON(ret);
4936 dev_nr++;
4937 continue;
4938 }
4939
a1d3c478
JS
4940 if (dev_nr < total_devs - 1) {
4941 bio = bio_clone(first_bio, GFP_NOFS);
79787eaa 4942 BUG_ON(!bio); /* -ENOMEM */
a1d3c478
JS
4943 } else {
4944 bio = first_bio;
8790d502 4945 }
de1ee92a
JB
4946
4947 submit_stripe_bio(root, bbio, bio,
4948 bbio->stripes[dev_nr].physical, dev_nr, rw,
4949 async_submit);
8790d502
CM
4950 dev_nr++;
4951 }
0b86a832
CM
4952 return 0;
4953}
4954
aa1b8cd4 4955struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
2b82032c 4956 u8 *uuid, u8 *fsid)
0b86a832 4957{
2b82032c
YZ
4958 struct btrfs_device *device;
4959 struct btrfs_fs_devices *cur_devices;
4960
aa1b8cd4 4961 cur_devices = fs_info->fs_devices;
2b82032c
YZ
4962 while (cur_devices) {
4963 if (!fsid ||
4964 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
4965 device = __find_device(&cur_devices->devices,
4966 devid, uuid);
4967 if (device)
4968 return device;
4969 }
4970 cur_devices = cur_devices->seed;
4971 }
4972 return NULL;
0b86a832
CM
4973}
4974
dfe25020
CM
4975static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
4976 u64 devid, u8 *dev_uuid)
4977{
4978 struct btrfs_device *device;
4979 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
4980
4981 device = kzalloc(sizeof(*device), GFP_NOFS);
7cbd8a83 4982 if (!device)
4983 return NULL;
dfe25020
CM
4984 list_add(&device->dev_list,
4985 &fs_devices->devices);
dfe25020
CM
4986 device->dev_root = root->fs_info->dev_root;
4987 device->devid = devid;
8b712842 4988 device->work.func = pending_bios_fn;
e4404d6e 4989 device->fs_devices = fs_devices;
cd02dca5 4990 device->missing = 1;
dfe25020 4991 fs_devices->num_devices++;
cd02dca5 4992 fs_devices->missing_devices++;
dfe25020 4993 spin_lock_init(&device->io_lock);
d20f7043 4994 INIT_LIST_HEAD(&device->dev_alloc_list);
dfe25020
CM
4995 memcpy(device->uuid, dev_uuid, BTRFS_UUID_SIZE);
4996 return device;
4997}
4998
0b86a832
CM
4999static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
5000 struct extent_buffer *leaf,
5001 struct btrfs_chunk *chunk)
5002{
5003 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5004 struct map_lookup *map;
5005 struct extent_map *em;
5006 u64 logical;
5007 u64 length;
5008 u64 devid;
a443755f 5009 u8 uuid[BTRFS_UUID_SIZE];
593060d7 5010 int num_stripes;
0b86a832 5011 int ret;
593060d7 5012 int i;
0b86a832 5013
e17cade2
CM
5014 logical = key->offset;
5015 length = btrfs_chunk_length(leaf, chunk);
a061fc8d 5016
890871be 5017 read_lock(&map_tree->map_tree.lock);
0b86a832 5018 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
890871be 5019 read_unlock(&map_tree->map_tree.lock);
0b86a832
CM
5020
5021 /* already mapped? */
5022 if (em && em->start <= logical && em->start + em->len > logical) {
5023 free_extent_map(em);
0b86a832
CM
5024 return 0;
5025 } else if (em) {
5026 free_extent_map(em);
5027 }
0b86a832 5028
172ddd60 5029 em = alloc_extent_map();
0b86a832
CM
5030 if (!em)
5031 return -ENOMEM;
593060d7
CM
5032 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
5033 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
0b86a832
CM
5034 if (!map) {
5035 free_extent_map(em);
5036 return -ENOMEM;
5037 }
5038
5039 em->bdev = (struct block_device *)map;
5040 em->start = logical;
5041 em->len = length;
70c8a91c 5042 em->orig_start = 0;
0b86a832 5043 em->block_start = 0;
c8b97818 5044 em->block_len = em->len;
0b86a832 5045
593060d7
CM
5046 map->num_stripes = num_stripes;
5047 map->io_width = btrfs_chunk_io_width(leaf, chunk);
5048 map->io_align = btrfs_chunk_io_align(leaf, chunk);
5049 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
5050 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
5051 map->type = btrfs_chunk_type(leaf, chunk);
321aecc6 5052 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
593060d7
CM
5053 for (i = 0; i < num_stripes; i++) {
5054 map->stripes[i].physical =
5055 btrfs_stripe_offset_nr(leaf, chunk, i);
5056 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
a443755f
CM
5057 read_extent_buffer(leaf, uuid, (unsigned long)
5058 btrfs_stripe_dev_uuid_nr(chunk, i),
5059 BTRFS_UUID_SIZE);
aa1b8cd4
SB
5060 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
5061 uuid, NULL);
dfe25020 5062 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
593060d7
CM
5063 kfree(map);
5064 free_extent_map(em);
5065 return -EIO;
5066 }
dfe25020
CM
5067 if (!map->stripes[i].dev) {
5068 map->stripes[i].dev =
5069 add_missing_dev(root, devid, uuid);
5070 if (!map->stripes[i].dev) {
5071 kfree(map);
5072 free_extent_map(em);
5073 return -EIO;
5074 }
5075 }
5076 map->stripes[i].dev->in_fs_metadata = 1;
0b86a832
CM
5077 }
5078
890871be 5079 write_lock(&map_tree->map_tree.lock);
0b86a832 5080 ret = add_extent_mapping(&map_tree->map_tree, em);
890871be 5081 write_unlock(&map_tree->map_tree.lock);
79787eaa 5082 BUG_ON(ret); /* Tree corruption */
0b86a832
CM
5083 free_extent_map(em);
5084
5085 return 0;
5086}
5087
143bede5 5088static void fill_device_from_item(struct extent_buffer *leaf,
0b86a832
CM
5089 struct btrfs_dev_item *dev_item,
5090 struct btrfs_device *device)
5091{
5092 unsigned long ptr;
0b86a832
CM
5093
5094 device->devid = btrfs_device_id(leaf, dev_item);
d6397bae
CB
5095 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
5096 device->total_bytes = device->disk_total_bytes;
0b86a832
CM
5097 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
5098 device->type = btrfs_device_type(leaf, dev_item);
5099 device->io_align = btrfs_device_io_align(leaf, dev_item);
5100 device->io_width = btrfs_device_io_width(leaf, dev_item);
5101 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
8dabb742 5102 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
63a212ab 5103 device->is_tgtdev_for_dev_replace = 0;
0b86a832
CM
5104
5105 ptr = (unsigned long)btrfs_device_uuid(dev_item);
e17cade2 5106 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
0b86a832
CM
5107}
5108
2b82032c
YZ
5109static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
5110{
5111 struct btrfs_fs_devices *fs_devices;
5112 int ret;
5113
b367e47f 5114 BUG_ON(!mutex_is_locked(&uuid_mutex));
2b82032c
YZ
5115
5116 fs_devices = root->fs_info->fs_devices->seed;
5117 while (fs_devices) {
5118 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
5119 ret = 0;
5120 goto out;
5121 }
5122 fs_devices = fs_devices->seed;
5123 }
5124
5125 fs_devices = find_fsid(fsid);
5126 if (!fs_devices) {
5127 ret = -ENOENT;
5128 goto out;
5129 }
e4404d6e
YZ
5130
5131 fs_devices = clone_fs_devices(fs_devices);
5132 if (IS_ERR(fs_devices)) {
5133 ret = PTR_ERR(fs_devices);
2b82032c
YZ
5134 goto out;
5135 }
5136
97288f2c 5137 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
15916de8 5138 root->fs_info->bdev_holder);
48d28232
JL
5139 if (ret) {
5140 free_fs_devices(fs_devices);
2b82032c 5141 goto out;
48d28232 5142 }
2b82032c
YZ
5143
5144 if (!fs_devices->seeding) {
5145 __btrfs_close_devices(fs_devices);
e4404d6e 5146 free_fs_devices(fs_devices);
2b82032c
YZ
5147 ret = -EINVAL;
5148 goto out;
5149 }
5150
5151 fs_devices->seed = root->fs_info->fs_devices->seed;
5152 root->fs_info->fs_devices->seed = fs_devices;
2b82032c 5153out:
2b82032c
YZ
5154 return ret;
5155}
5156
0d81ba5d 5157static int read_one_dev(struct btrfs_root *root,
0b86a832
CM
5158 struct extent_buffer *leaf,
5159 struct btrfs_dev_item *dev_item)
5160{
5161 struct btrfs_device *device;
5162 u64 devid;
5163 int ret;
2b82032c 5164 u8 fs_uuid[BTRFS_UUID_SIZE];
a443755f
CM
5165 u8 dev_uuid[BTRFS_UUID_SIZE];
5166
0b86a832 5167 devid = btrfs_device_id(leaf, dev_item);
a443755f
CM
5168 read_extent_buffer(leaf, dev_uuid,
5169 (unsigned long)btrfs_device_uuid(dev_item),
5170 BTRFS_UUID_SIZE);
2b82032c
YZ
5171 read_extent_buffer(leaf, fs_uuid,
5172 (unsigned long)btrfs_device_fsid(dev_item),
5173 BTRFS_UUID_SIZE);
5174
5175 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
5176 ret = open_seed_devices(root, fs_uuid);
e4404d6e 5177 if (ret && !btrfs_test_opt(root, DEGRADED))
2b82032c 5178 return ret;
2b82032c
YZ
5179 }
5180
aa1b8cd4 5181 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
2b82032c 5182 if (!device || !device->bdev) {
e4404d6e 5183 if (!btrfs_test_opt(root, DEGRADED))
2b82032c
YZ
5184 return -EIO;
5185
5186 if (!device) {
d397712b
CM
5187 printk(KERN_WARNING "warning devid %llu missing\n",
5188 (unsigned long long)devid);
2b82032c
YZ
5189 device = add_missing_dev(root, devid, dev_uuid);
5190 if (!device)
5191 return -ENOMEM;
cd02dca5
CM
5192 } else if (!device->missing) {
5193 /*
5194 * this happens when a device that was properly setup
5195 * in the device info lists suddenly goes bad.
5196 * device->bdev is NULL, and so we have to set
5197 * device->missing to one here
5198 */
5199 root->fs_info->fs_devices->missing_devices++;
5200 device->missing = 1;
2b82032c
YZ
5201 }
5202 }
5203
5204 if (device->fs_devices != root->fs_info->fs_devices) {
5205 BUG_ON(device->writeable);
5206 if (device->generation !=
5207 btrfs_device_generation(leaf, dev_item))
5208 return -EINVAL;
6324fbf3 5209 }
0b86a832
CM
5210
5211 fill_device_from_item(leaf, dev_item, device);
5212 device->dev_root = root->fs_info->dev_root;
dfe25020 5213 device->in_fs_metadata = 1;
63a212ab 5214 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
2b82032c 5215 device->fs_devices->total_rw_bytes += device->total_bytes;
2bf64758
JB
5216 spin_lock(&root->fs_info->free_chunk_lock);
5217 root->fs_info->free_chunk_space += device->total_bytes -
5218 device->bytes_used;
5219 spin_unlock(&root->fs_info->free_chunk_lock);
5220 }
0b86a832 5221 ret = 0;
0b86a832
CM
5222 return ret;
5223}
5224
e4404d6e 5225int btrfs_read_sys_array(struct btrfs_root *root)
0b86a832 5226{
6c41761f 5227 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
a061fc8d 5228 struct extent_buffer *sb;
0b86a832 5229 struct btrfs_disk_key *disk_key;
0b86a832 5230 struct btrfs_chunk *chunk;
84eed90f
CM
5231 u8 *ptr;
5232 unsigned long sb_ptr;
5233 int ret = 0;
0b86a832
CM
5234 u32 num_stripes;
5235 u32 array_size;
5236 u32 len = 0;
0b86a832 5237 u32 cur;
84eed90f 5238 struct btrfs_key key;
0b86a832 5239
e4404d6e 5240 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
a061fc8d
CM
5241 BTRFS_SUPER_INFO_SIZE);
5242 if (!sb)
5243 return -ENOMEM;
5244 btrfs_set_buffer_uptodate(sb);
85d4e461 5245 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
8a334426
DS
5246 /*
5247 * The sb extent buffer is artifical and just used to read the system array.
5248 * btrfs_set_buffer_uptodate() call does not properly mark all it's
5249 * pages up-to-date when the page is larger: extent does not cover the
5250 * whole page and consequently check_page_uptodate does not find all
5251 * the page's extents up-to-date (the hole beyond sb),
5252 * write_extent_buffer then triggers a WARN_ON.
5253 *
5254 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
5255 * but sb spans only this function. Add an explicit SetPageUptodate call
5256 * to silence the warning eg. on PowerPC 64.
5257 */
5258 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
727011e0 5259 SetPageUptodate(sb->pages[0]);
4008c04a 5260
a061fc8d 5261 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
0b86a832
CM
5262 array_size = btrfs_super_sys_array_size(super_copy);
5263
0b86a832
CM
5264 ptr = super_copy->sys_chunk_array;
5265 sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
5266 cur = 0;
5267
5268 while (cur < array_size) {
5269 disk_key = (struct btrfs_disk_key *)ptr;
5270 btrfs_disk_key_to_cpu(&key, disk_key);
5271
a061fc8d 5272 len = sizeof(*disk_key); ptr += len;
0b86a832
CM
5273 sb_ptr += len;
5274 cur += len;
5275
0d81ba5d 5276 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
0b86a832 5277 chunk = (struct btrfs_chunk *)sb_ptr;
0d81ba5d 5278 ret = read_one_chunk(root, &key, sb, chunk);
84eed90f
CM
5279 if (ret)
5280 break;
0b86a832
CM
5281 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
5282 len = btrfs_chunk_item_size(num_stripes);
5283 } else {
84eed90f
CM
5284 ret = -EIO;
5285 break;
0b86a832
CM
5286 }
5287 ptr += len;
5288 sb_ptr += len;
5289 cur += len;
5290 }
a061fc8d 5291 free_extent_buffer(sb);
84eed90f 5292 return ret;
0b86a832
CM
5293}
5294
5295int btrfs_read_chunk_tree(struct btrfs_root *root)
5296{
5297 struct btrfs_path *path;
5298 struct extent_buffer *leaf;
5299 struct btrfs_key key;
5300 struct btrfs_key found_key;
5301 int ret;
5302 int slot;
5303
5304 root = root->fs_info->chunk_root;
5305
5306 path = btrfs_alloc_path();
5307 if (!path)
5308 return -ENOMEM;
5309
b367e47f
LZ
5310 mutex_lock(&uuid_mutex);
5311 lock_chunks(root);
5312
0b86a832
CM
5313 /* first we search for all of the device items, and then we
5314 * read in all of the chunk items. This way we can create chunk
5315 * mappings that reference all of the devices that are afound
5316 */
5317 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
5318 key.offset = 0;
5319 key.type = 0;
5320again:
5321 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
ab59381e
ZL
5322 if (ret < 0)
5323 goto error;
d397712b 5324 while (1) {
0b86a832
CM
5325 leaf = path->nodes[0];
5326 slot = path->slots[0];
5327 if (slot >= btrfs_header_nritems(leaf)) {
5328 ret = btrfs_next_leaf(root, path);
5329 if (ret == 0)
5330 continue;
5331 if (ret < 0)
5332 goto error;
5333 break;
5334 }
5335 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5336 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
5337 if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
5338 break;
5339 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
5340 struct btrfs_dev_item *dev_item;
5341 dev_item = btrfs_item_ptr(leaf, slot,
5342 struct btrfs_dev_item);
0d81ba5d 5343 ret = read_one_dev(root, leaf, dev_item);
2b82032c
YZ
5344 if (ret)
5345 goto error;
0b86a832
CM
5346 }
5347 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
5348 struct btrfs_chunk *chunk;
5349 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
5350 ret = read_one_chunk(root, &found_key, leaf, chunk);
2b82032c
YZ
5351 if (ret)
5352 goto error;
0b86a832
CM
5353 }
5354 path->slots[0]++;
5355 }
5356 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
5357 key.objectid = 0;
b3b4aa74 5358 btrfs_release_path(path);
0b86a832
CM
5359 goto again;
5360 }
0b86a832
CM
5361 ret = 0;
5362error:
b367e47f
LZ
5363 unlock_chunks(root);
5364 mutex_unlock(&uuid_mutex);
5365
2b82032c 5366 btrfs_free_path(path);
0b86a832
CM
5367 return ret;
5368}
442a4f63 5369
733f4fbb
SB
5370static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
5371{
5372 int i;
5373
5374 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
5375 btrfs_dev_stat_reset(dev, i);
5376}
5377
5378int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
5379{
5380 struct btrfs_key key;
5381 struct btrfs_key found_key;
5382 struct btrfs_root *dev_root = fs_info->dev_root;
5383 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
5384 struct extent_buffer *eb;
5385 int slot;
5386 int ret = 0;
5387 struct btrfs_device *device;
5388 struct btrfs_path *path = NULL;
5389 int i;
5390
5391 path = btrfs_alloc_path();
5392 if (!path) {
5393 ret = -ENOMEM;
5394 goto out;
5395 }
5396
5397 mutex_lock(&fs_devices->device_list_mutex);
5398 list_for_each_entry(device, &fs_devices->devices, dev_list) {
5399 int item_size;
5400 struct btrfs_dev_stats_item *ptr;
5401
5402 key.objectid = 0;
5403 key.type = BTRFS_DEV_STATS_KEY;
5404 key.offset = device->devid;
5405 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
5406 if (ret) {
733f4fbb
SB
5407 __btrfs_reset_dev_stats(device);
5408 device->dev_stats_valid = 1;
5409 btrfs_release_path(path);
5410 continue;
5411 }
5412 slot = path->slots[0];
5413 eb = path->nodes[0];
5414 btrfs_item_key_to_cpu(eb, &found_key, slot);
5415 item_size = btrfs_item_size_nr(eb, slot);
5416
5417 ptr = btrfs_item_ptr(eb, slot,
5418 struct btrfs_dev_stats_item);
5419
5420 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
5421 if (item_size >= (1 + i) * sizeof(__le64))
5422 btrfs_dev_stat_set(device, i,
5423 btrfs_dev_stats_value(eb, ptr, i));
5424 else
5425 btrfs_dev_stat_reset(device, i);
5426 }
5427
5428 device->dev_stats_valid = 1;
5429 btrfs_dev_stat_print_on_load(device);
5430 btrfs_release_path(path);
5431 }
5432 mutex_unlock(&fs_devices->device_list_mutex);
5433
5434out:
5435 btrfs_free_path(path);
5436 return ret < 0 ? ret : 0;
5437}
5438
5439static int update_dev_stat_item(struct btrfs_trans_handle *trans,
5440 struct btrfs_root *dev_root,
5441 struct btrfs_device *device)
5442{
5443 struct btrfs_path *path;
5444 struct btrfs_key key;
5445 struct extent_buffer *eb;
5446 struct btrfs_dev_stats_item *ptr;
5447 int ret;
5448 int i;
5449
5450 key.objectid = 0;
5451 key.type = BTRFS_DEV_STATS_KEY;
5452 key.offset = device->devid;
5453
5454 path = btrfs_alloc_path();
5455 BUG_ON(!path);
5456 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
5457 if (ret < 0) {
606686ee
JB
5458 printk_in_rcu(KERN_WARNING "btrfs: error %d while searching for dev_stats item for device %s!\n",
5459 ret, rcu_str_deref(device->name));
733f4fbb
SB
5460 goto out;
5461 }
5462
5463 if (ret == 0 &&
5464 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
5465 /* need to delete old one and insert a new one */
5466 ret = btrfs_del_item(trans, dev_root, path);
5467 if (ret != 0) {
606686ee
JB
5468 printk_in_rcu(KERN_WARNING "btrfs: delete too small dev_stats item for device %s failed %d!\n",
5469 rcu_str_deref(device->name), ret);
733f4fbb
SB
5470 goto out;
5471 }
5472 ret = 1;
5473 }
5474
5475 if (ret == 1) {
5476 /* need to insert a new item */
5477 btrfs_release_path(path);
5478 ret = btrfs_insert_empty_item(trans, dev_root, path,
5479 &key, sizeof(*ptr));
5480 if (ret < 0) {
606686ee
JB
5481 printk_in_rcu(KERN_WARNING "btrfs: insert dev_stats item for device %s failed %d!\n",
5482 rcu_str_deref(device->name), ret);
733f4fbb
SB
5483 goto out;
5484 }
5485 }
5486
5487 eb = path->nodes[0];
5488 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
5489 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
5490 btrfs_set_dev_stats_value(eb, ptr, i,
5491 btrfs_dev_stat_read(device, i));
5492 btrfs_mark_buffer_dirty(eb);
5493
5494out:
5495 btrfs_free_path(path);
5496 return ret;
5497}
5498
5499/*
5500 * called from commit_transaction. Writes all changed device stats to disk.
5501 */
5502int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
5503 struct btrfs_fs_info *fs_info)
5504{
5505 struct btrfs_root *dev_root = fs_info->dev_root;
5506 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
5507 struct btrfs_device *device;
5508 int ret = 0;
5509
5510 mutex_lock(&fs_devices->device_list_mutex);
5511 list_for_each_entry(device, &fs_devices->devices, dev_list) {
5512 if (!device->dev_stats_valid || !device->dev_stats_dirty)
5513 continue;
5514
5515 ret = update_dev_stat_item(trans, dev_root, device);
5516 if (!ret)
5517 device->dev_stats_dirty = 0;
5518 }
5519 mutex_unlock(&fs_devices->device_list_mutex);
5520
5521 return ret;
5522}
5523
442a4f63
SB
5524void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
5525{
5526 btrfs_dev_stat_inc(dev, index);
5527 btrfs_dev_stat_print_on_error(dev);
5528}
5529
5530void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
5531{
733f4fbb
SB
5532 if (!dev->dev_stats_valid)
5533 return;
606686ee 5534 printk_ratelimited_in_rcu(KERN_ERR
442a4f63 5535 "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
606686ee 5536 rcu_str_deref(dev->name),
442a4f63
SB
5537 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
5538 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
5539 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
5540 btrfs_dev_stat_read(dev,
5541 BTRFS_DEV_STAT_CORRUPTION_ERRS),
5542 btrfs_dev_stat_read(dev,
5543 BTRFS_DEV_STAT_GENERATION_ERRS));
5544}
c11d2c23 5545
733f4fbb
SB
5546static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
5547{
a98cdb85
SB
5548 int i;
5549
5550 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
5551 if (btrfs_dev_stat_read(dev, i) != 0)
5552 break;
5553 if (i == BTRFS_DEV_STAT_VALUES_MAX)
5554 return; /* all values == 0, suppress message */
5555
606686ee
JB
5556 printk_in_rcu(KERN_INFO "btrfs: bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u\n",
5557 rcu_str_deref(dev->name),
733f4fbb
SB
5558 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
5559 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
5560 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
5561 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
5562 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
5563}
5564
c11d2c23 5565int btrfs_get_dev_stats(struct btrfs_root *root,
b27f7c0c 5566 struct btrfs_ioctl_get_dev_stats *stats)
c11d2c23
SB
5567{
5568 struct btrfs_device *dev;
5569 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
5570 int i;
5571
5572 mutex_lock(&fs_devices->device_list_mutex);
aa1b8cd4 5573 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
c11d2c23
SB
5574 mutex_unlock(&fs_devices->device_list_mutex);
5575
5576 if (!dev) {
5577 printk(KERN_WARNING
5578 "btrfs: get dev_stats failed, device not found\n");
5579 return -ENODEV;
733f4fbb
SB
5580 } else if (!dev->dev_stats_valid) {
5581 printk(KERN_WARNING
5582 "btrfs: get dev_stats failed, not yet valid\n");
5583 return -ENODEV;
b27f7c0c 5584 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
c11d2c23
SB
5585 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
5586 if (stats->nr_items > i)
5587 stats->values[i] =
5588 btrfs_dev_stat_read_and_reset(dev, i);
5589 else
5590 btrfs_dev_stat_reset(dev, i);
5591 }
5592 } else {
5593 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
5594 if (stats->nr_items > i)
5595 stats->values[i] = btrfs_dev_stat_read(dev, i);
5596 }
5597 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
5598 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
5599 return 0;
5600}
a8a6dab7
SB
5601
5602int btrfs_scratch_superblock(struct btrfs_device *device)
5603{
5604 struct buffer_head *bh;
5605 struct btrfs_super_block *disk_super;
5606
5607 bh = btrfs_read_dev_super(device->bdev);
5608 if (!bh)
5609 return -EINVAL;
5610 disk_super = (struct btrfs_super_block *)bh->b_data;
5611
5612 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
5613 set_buffer_dirty(bh);
5614 sync_dirty_buffer(bh);
5615 brelse(bh);
5616
5617 return 0;
5618}