Merge branch 'dev/fst-followup' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.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>
53b381b3 28#include <linux/raid/pq.h>
803b2f54 29#include <linux/semaphore.h>
53b381b3 30#include <asm/div64.h>
0b86a832
CM
31#include "ctree.h"
32#include "extent_map.h"
33#include "disk-io.h"
34#include "transaction.h"
35#include "print-tree.h"
36#include "volumes.h"
53b381b3 37#include "raid56.h"
8b712842 38#include "async-thread.h"
21adbd5c 39#include "check-integrity.h"
606686ee 40#include "rcu-string.h"
3fed40cc 41#include "math.h"
8dabb742 42#include "dev-replace.h"
99994cde 43#include "sysfs.h"
0b86a832 44
af902047
ZL
45const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
46 [BTRFS_RAID_RAID10] = {
47 .sub_stripes = 2,
48 .dev_stripes = 1,
49 .devs_max = 0, /* 0 == as many as possible */
50 .devs_min = 4,
8789f4fe 51 .tolerated_failures = 1,
af902047
ZL
52 .devs_increment = 2,
53 .ncopies = 2,
54 },
55 [BTRFS_RAID_RAID1] = {
56 .sub_stripes = 1,
57 .dev_stripes = 1,
58 .devs_max = 2,
59 .devs_min = 2,
8789f4fe 60 .tolerated_failures = 1,
af902047
ZL
61 .devs_increment = 2,
62 .ncopies = 2,
63 },
64 [BTRFS_RAID_DUP] = {
65 .sub_stripes = 1,
66 .dev_stripes = 2,
67 .devs_max = 1,
68 .devs_min = 1,
8789f4fe 69 .tolerated_failures = 0,
af902047
ZL
70 .devs_increment = 1,
71 .ncopies = 2,
72 },
73 [BTRFS_RAID_RAID0] = {
74 .sub_stripes = 1,
75 .dev_stripes = 1,
76 .devs_max = 0,
77 .devs_min = 2,
8789f4fe 78 .tolerated_failures = 0,
af902047
ZL
79 .devs_increment = 1,
80 .ncopies = 1,
81 },
82 [BTRFS_RAID_SINGLE] = {
83 .sub_stripes = 1,
84 .dev_stripes = 1,
85 .devs_max = 1,
86 .devs_min = 1,
8789f4fe 87 .tolerated_failures = 0,
af902047
ZL
88 .devs_increment = 1,
89 .ncopies = 1,
90 },
91 [BTRFS_RAID_RAID5] = {
92 .sub_stripes = 1,
93 .dev_stripes = 1,
94 .devs_max = 0,
95 .devs_min = 2,
8789f4fe 96 .tolerated_failures = 1,
af902047
ZL
97 .devs_increment = 1,
98 .ncopies = 2,
99 },
100 [BTRFS_RAID_RAID6] = {
101 .sub_stripes = 1,
102 .dev_stripes = 1,
103 .devs_max = 0,
104 .devs_min = 3,
8789f4fe 105 .tolerated_failures = 2,
af902047
ZL
106 .devs_increment = 1,
107 .ncopies = 3,
108 },
109};
110
fb75d857 111const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
af902047
ZL
112 [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10,
113 [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1,
114 [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP,
115 [BTRFS_RAID_RAID0] = BTRFS_BLOCK_GROUP_RAID0,
116 [BTRFS_RAID_SINGLE] = 0,
117 [BTRFS_RAID_RAID5] = BTRFS_BLOCK_GROUP_RAID5,
118 [BTRFS_RAID_RAID6] = BTRFS_BLOCK_GROUP_RAID6,
119};
120
2b82032c
YZ
121static int init_first_rw_device(struct btrfs_trans_handle *trans,
122 struct btrfs_root *root,
123 struct btrfs_device *device);
124static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
733f4fbb 125static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
48a3b636 126static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
733f4fbb 127static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
87ad58c5 128static void btrfs_close_one_device(struct btrfs_device *device);
2b82032c 129
67a2c45e 130DEFINE_MUTEX(uuid_mutex);
8a4b83cc 131static LIST_HEAD(fs_uuids);
c73eccf7
AJ
132struct list_head *btrfs_get_fs_uuids(void)
133{
134 return &fs_uuids;
135}
8a4b83cc 136
2208a378
ID
137static struct btrfs_fs_devices *__alloc_fs_devices(void)
138{
139 struct btrfs_fs_devices *fs_devs;
140
141 fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS);
142 if (!fs_devs)
143 return ERR_PTR(-ENOMEM);
144
145 mutex_init(&fs_devs->device_list_mutex);
146
147 INIT_LIST_HEAD(&fs_devs->devices);
935e5cc9 148 INIT_LIST_HEAD(&fs_devs->resized_devices);
2208a378
ID
149 INIT_LIST_HEAD(&fs_devs->alloc_list);
150 INIT_LIST_HEAD(&fs_devs->list);
151
152 return fs_devs;
153}
154
155/**
156 * alloc_fs_devices - allocate struct btrfs_fs_devices
157 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
158 * generated.
159 *
160 * Return: a pointer to a new &struct btrfs_fs_devices on success;
161 * ERR_PTR() on error. Returned struct is not linked onto any lists and
162 * can be destroyed with kfree() right away.
163 */
164static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
165{
166 struct btrfs_fs_devices *fs_devs;
167
168 fs_devs = __alloc_fs_devices();
169 if (IS_ERR(fs_devs))
170 return fs_devs;
171
172 if (fsid)
173 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
174 else
175 generate_random_uuid(fs_devs->fsid);
176
177 return fs_devs;
178}
179
e4404d6e
YZ
180static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
181{
182 struct btrfs_device *device;
183 WARN_ON(fs_devices->opened);
184 while (!list_empty(&fs_devices->devices)) {
185 device = list_entry(fs_devices->devices.next,
186 struct btrfs_device, dev_list);
187 list_del(&device->dev_list);
606686ee 188 rcu_string_free(device->name);
e4404d6e
YZ
189 kfree(device);
190 }
191 kfree(fs_devices);
192}
193
b8b8ff59
LC
194static void btrfs_kobject_uevent(struct block_device *bdev,
195 enum kobject_action action)
196{
197 int ret;
198
199 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
200 if (ret)
efe120a0 201 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
b8b8ff59
LC
202 action,
203 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
204 &disk_to_dev(bdev->bd_disk)->kobj);
205}
206
143bede5 207void btrfs_cleanup_fs_uuids(void)
8a4b83cc
CM
208{
209 struct btrfs_fs_devices *fs_devices;
8a4b83cc 210
2b82032c
YZ
211 while (!list_empty(&fs_uuids)) {
212 fs_devices = list_entry(fs_uuids.next,
213 struct btrfs_fs_devices, list);
214 list_del(&fs_devices->list);
e4404d6e 215 free_fs_devices(fs_devices);
8a4b83cc 216 }
8a4b83cc
CM
217}
218
12bd2fc0
ID
219static struct btrfs_device *__alloc_device(void)
220{
221 struct btrfs_device *dev;
222
223 dev = kzalloc(sizeof(*dev), GFP_NOFS);
224 if (!dev)
225 return ERR_PTR(-ENOMEM);
226
227 INIT_LIST_HEAD(&dev->dev_list);
228 INIT_LIST_HEAD(&dev->dev_alloc_list);
935e5cc9 229 INIT_LIST_HEAD(&dev->resized_list);
12bd2fc0
ID
230
231 spin_lock_init(&dev->io_lock);
232
233 spin_lock_init(&dev->reada_lock);
234 atomic_set(&dev->reada_in_flight, 0);
addc3fa7 235 atomic_set(&dev->dev_stats_ccnt, 0);
546bed63 236 btrfs_device_data_ordered_init(dev);
d0164adc
MG
237 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
238 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
12bd2fc0
ID
239
240 return dev;
241}
242
a1b32a59
CM
243static noinline struct btrfs_device *__find_device(struct list_head *head,
244 u64 devid, u8 *uuid)
8a4b83cc
CM
245{
246 struct btrfs_device *dev;
8a4b83cc 247
c6e30871 248 list_for_each_entry(dev, head, dev_list) {
a443755f 249 if (dev->devid == devid &&
8f18cf13 250 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
8a4b83cc 251 return dev;
a443755f 252 }
8a4b83cc
CM
253 }
254 return NULL;
255}
256
a1b32a59 257static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
8a4b83cc 258{
8a4b83cc
CM
259 struct btrfs_fs_devices *fs_devices;
260
c6e30871 261 list_for_each_entry(fs_devices, &fs_uuids, list) {
8a4b83cc
CM
262 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
263 return fs_devices;
264 }
265 return NULL;
266}
267
beaf8ab3
SB
268static int
269btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
270 int flush, struct block_device **bdev,
271 struct buffer_head **bh)
272{
273 int ret;
274
275 *bdev = blkdev_get_by_path(device_path, flags, holder);
276
277 if (IS_ERR(*bdev)) {
278 ret = PTR_ERR(*bdev);
beaf8ab3
SB
279 goto error;
280 }
281
282 if (flush)
283 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
284 ret = set_blocksize(*bdev, 4096);
285 if (ret) {
286 blkdev_put(*bdev, flags);
287 goto error;
288 }
289 invalidate_bdev(*bdev);
290 *bh = btrfs_read_dev_super(*bdev);
92fc03fb
AJ
291 if (IS_ERR(*bh)) {
292 ret = PTR_ERR(*bh);
beaf8ab3
SB
293 blkdev_put(*bdev, flags);
294 goto error;
295 }
296
297 return 0;
298
299error:
300 *bdev = NULL;
301 *bh = NULL;
302 return ret;
303}
304
ffbd517d
CM
305static void requeue_list(struct btrfs_pending_bios *pending_bios,
306 struct bio *head, struct bio *tail)
307{
308
309 struct bio *old_head;
310
311 old_head = pending_bios->head;
312 pending_bios->head = head;
313 if (pending_bios->tail)
314 tail->bi_next = old_head;
315 else
316 pending_bios->tail = tail;
317}
318
8b712842
CM
319/*
320 * we try to collect pending bios for a device so we don't get a large
321 * number of procs sending bios down to the same device. This greatly
322 * improves the schedulers ability to collect and merge the bios.
323 *
324 * But, it also turns into a long list of bios to process and that is sure
325 * to eventually make the worker thread block. The solution here is to
326 * make some progress and then put this work struct back at the end of
327 * the list if the block device is congested. This way, multiple devices
328 * can make progress from a single worker thread.
329 */
143bede5 330static noinline void run_scheduled_bios(struct btrfs_device *device)
8b712842
CM
331{
332 struct bio *pending;
333 struct backing_dev_info *bdi;
b64a2851 334 struct btrfs_fs_info *fs_info;
ffbd517d 335 struct btrfs_pending_bios *pending_bios;
8b712842
CM
336 struct bio *tail;
337 struct bio *cur;
338 int again = 0;
ffbd517d 339 unsigned long num_run;
d644d8a1 340 unsigned long batch_run = 0;
b64a2851 341 unsigned long limit;
b765ead5 342 unsigned long last_waited = 0;
d84275c9 343 int force_reg = 0;
0e588859 344 int sync_pending = 0;
211588ad
CM
345 struct blk_plug plug;
346
347 /*
348 * this function runs all the bios we've collected for
349 * a particular device. We don't want to wander off to
350 * another device without first sending all of these down.
351 * So, setup a plug here and finish it off before we return
352 */
353 blk_start_plug(&plug);
8b712842 354
bedf762b 355 bdi = blk_get_backing_dev_info(device->bdev);
b64a2851
CM
356 fs_info = device->dev_root->fs_info;
357 limit = btrfs_async_submit_limit(fs_info);
358 limit = limit * 2 / 3;
359
8b712842
CM
360loop:
361 spin_lock(&device->io_lock);
362
a6837051 363loop_lock:
d84275c9 364 num_run = 0;
ffbd517d 365
8b712842
CM
366 /* take all the bios off the list at once and process them
367 * later on (without the lock held). But, remember the
368 * tail and other pointers so the bios can be properly reinserted
369 * into the list if we hit congestion
370 */
d84275c9 371 if (!force_reg && device->pending_sync_bios.head) {
ffbd517d 372 pending_bios = &device->pending_sync_bios;
d84275c9
CM
373 force_reg = 1;
374 } else {
ffbd517d 375 pending_bios = &device->pending_bios;
d84275c9
CM
376 force_reg = 0;
377 }
ffbd517d
CM
378
379 pending = pending_bios->head;
380 tail = pending_bios->tail;
8b712842 381 WARN_ON(pending && !tail);
8b712842
CM
382
383 /*
384 * if pending was null this time around, no bios need processing
385 * at all and we can stop. Otherwise it'll loop back up again
386 * and do an additional check so no bios are missed.
387 *
388 * device->running_pending is used to synchronize with the
389 * schedule_bio code.
390 */
ffbd517d
CM
391 if (device->pending_sync_bios.head == NULL &&
392 device->pending_bios.head == NULL) {
8b712842
CM
393 again = 0;
394 device->running_pending = 0;
ffbd517d
CM
395 } else {
396 again = 1;
397 device->running_pending = 1;
8b712842 398 }
ffbd517d
CM
399
400 pending_bios->head = NULL;
401 pending_bios->tail = NULL;
402
8b712842
CM
403 spin_unlock(&device->io_lock);
404
d397712b 405 while (pending) {
ffbd517d
CM
406
407 rmb();
d84275c9
CM
408 /* we want to work on both lists, but do more bios on the
409 * sync list than the regular list
410 */
411 if ((num_run > 32 &&
412 pending_bios != &device->pending_sync_bios &&
413 device->pending_sync_bios.head) ||
414 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
415 device->pending_bios.head)) {
ffbd517d
CM
416 spin_lock(&device->io_lock);
417 requeue_list(pending_bios, pending, tail);
418 goto loop_lock;
419 }
420
8b712842
CM
421 cur = pending;
422 pending = pending->bi_next;
423 cur->bi_next = NULL;
b64a2851 424
ee863954
DS
425 /*
426 * atomic_dec_return implies a barrier for waitqueue_active
427 */
66657b31 428 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
b64a2851
CM
429 waitqueue_active(&fs_info->async_submit_wait))
430 wake_up(&fs_info->async_submit_wait);
492bb6de 431
dac56212 432 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
d644d8a1 433
2ab1ba68
CM
434 /*
435 * if we're doing the sync list, record that our
436 * plug has some sync requests on it
437 *
438 * If we're doing the regular list and there are
439 * sync requests sitting around, unplug before
440 * we add more
441 */
442 if (pending_bios == &device->pending_sync_bios) {
443 sync_pending = 1;
444 } else if (sync_pending) {
445 blk_finish_plug(&plug);
446 blk_start_plug(&plug);
447 sync_pending = 0;
448 }
449
21adbd5c 450 btrfsic_submit_bio(cur->bi_rw, cur);
5ff7ba3a
CM
451 num_run++;
452 batch_run++;
853d8ec4
DS
453
454 cond_resched();
8b712842
CM
455
456 /*
457 * we made progress, there is more work to do and the bdi
458 * is now congested. Back off and let other work structs
459 * run instead
460 */
57fd5a5f 461 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
5f2cc086 462 fs_info->fs_devices->open_devices > 1) {
b765ead5 463 struct io_context *ioc;
8b712842 464
b765ead5
CM
465 ioc = current->io_context;
466
467 /*
468 * the main goal here is that we don't want to
469 * block if we're going to be able to submit
470 * more requests without blocking.
471 *
472 * This code does two great things, it pokes into
473 * the elevator code from a filesystem _and_
474 * it makes assumptions about how batching works.
475 */
476 if (ioc && ioc->nr_batch_requests > 0 &&
477 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
478 (last_waited == 0 ||
479 ioc->last_waited == last_waited)) {
480 /*
481 * we want to go through our batch of
482 * requests and stop. So, we copy out
483 * the ioc->last_waited time and test
484 * against it before looping
485 */
486 last_waited = ioc->last_waited;
853d8ec4 487 cond_resched();
b765ead5
CM
488 continue;
489 }
8b712842 490 spin_lock(&device->io_lock);
ffbd517d 491 requeue_list(pending_bios, pending, tail);
a6837051 492 device->running_pending = 1;
8b712842
CM
493
494 spin_unlock(&device->io_lock);
a8c93d4e
QW
495 btrfs_queue_work(fs_info->submit_workers,
496 &device->work);
8b712842
CM
497 goto done;
498 }
d85c8a6f
CM
499 /* unplug every 64 requests just for good measure */
500 if (batch_run % 64 == 0) {
501 blk_finish_plug(&plug);
502 blk_start_plug(&plug);
503 sync_pending = 0;
504 }
8b712842 505 }
ffbd517d 506
51684082
CM
507 cond_resched();
508 if (again)
509 goto loop;
510
511 spin_lock(&device->io_lock);
512 if (device->pending_bios.head || device->pending_sync_bios.head)
513 goto loop_lock;
514 spin_unlock(&device->io_lock);
515
8b712842 516done:
211588ad 517 blk_finish_plug(&plug);
8b712842
CM
518}
519
b2950863 520static void pending_bios_fn(struct btrfs_work *work)
8b712842
CM
521{
522 struct btrfs_device *device;
523
524 device = container_of(work, struct btrfs_device, work);
525 run_scheduled_bios(device);
526}
527
4fde46f0
AJ
528
529void btrfs_free_stale_device(struct btrfs_device *cur_dev)
530{
531 struct btrfs_fs_devices *fs_devs;
532 struct btrfs_device *dev;
533
534 if (!cur_dev->name)
535 return;
536
537 list_for_each_entry(fs_devs, &fs_uuids, list) {
538 int del = 1;
539
540 if (fs_devs->opened)
541 continue;
542 if (fs_devs->seeding)
543 continue;
544
545 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
546
547 if (dev == cur_dev)
548 continue;
549 if (!dev->name)
550 continue;
551
552 /*
553 * Todo: This won't be enough. What if the same device
554 * comes back (with new uuid and) with its mapper path?
555 * But for now, this does help as mostly an admin will
556 * either use mapper or non mapper path throughout.
557 */
558 rcu_read_lock();
559 del = strcmp(rcu_str_deref(dev->name),
560 rcu_str_deref(cur_dev->name));
561 rcu_read_unlock();
562 if (!del)
563 break;
564 }
565
566 if (!del) {
567 /* delete the stale device */
568 if (fs_devs->num_devices == 1) {
569 btrfs_sysfs_remove_fsid(fs_devs);
570 list_del(&fs_devs->list);
571 free_fs_devices(fs_devs);
572 } else {
573 fs_devs->num_devices--;
574 list_del(&dev->dev_list);
575 rcu_string_free(dev->name);
576 kfree(dev);
577 }
578 break;
579 }
580 }
581}
582
60999ca4
DS
583/*
584 * Add new device to list of registered devices
585 *
586 * Returns:
587 * 1 - first time device is seen
588 * 0 - device already known
589 * < 0 - error
590 */
a1b32a59 591static noinline int device_list_add(const char *path,
8a4b83cc
CM
592 struct btrfs_super_block *disk_super,
593 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
594{
595 struct btrfs_device *device;
596 struct btrfs_fs_devices *fs_devices;
606686ee 597 struct rcu_string *name;
60999ca4 598 int ret = 0;
8a4b83cc
CM
599 u64 found_transid = btrfs_super_generation(disk_super);
600
601 fs_devices = find_fsid(disk_super->fsid);
602 if (!fs_devices) {
2208a378
ID
603 fs_devices = alloc_fs_devices(disk_super->fsid);
604 if (IS_ERR(fs_devices))
605 return PTR_ERR(fs_devices);
606
8a4b83cc 607 list_add(&fs_devices->list, &fs_uuids);
2208a378 608
8a4b83cc
CM
609 device = NULL;
610 } else {
a443755f
CM
611 device = __find_device(&fs_devices->devices, devid,
612 disk_super->dev_item.uuid);
8a4b83cc 613 }
443f24fe 614
8a4b83cc 615 if (!device) {
2b82032c
YZ
616 if (fs_devices->opened)
617 return -EBUSY;
618
12bd2fc0
ID
619 device = btrfs_alloc_device(NULL, &devid,
620 disk_super->dev_item.uuid);
621 if (IS_ERR(device)) {
8a4b83cc 622 /* we can safely leave the fs_devices entry around */
12bd2fc0 623 return PTR_ERR(device);
8a4b83cc 624 }
606686ee
JB
625
626 name = rcu_string_strdup(path, GFP_NOFS);
627 if (!name) {
8a4b83cc
CM
628 kfree(device);
629 return -ENOMEM;
630 }
606686ee 631 rcu_assign_pointer(device->name, name);
90519d66 632
e5e9a520 633 mutex_lock(&fs_devices->device_list_mutex);
1f78160c 634 list_add_rcu(&device->dev_list, &fs_devices->devices);
f7171750 635 fs_devices->num_devices++;
e5e9a520
CM
636 mutex_unlock(&fs_devices->device_list_mutex);
637
60999ca4 638 ret = 1;
2b82032c 639 device->fs_devices = fs_devices;
606686ee 640 } else if (!device->name || strcmp(device->name->str, path)) {
b96de000
AJ
641 /*
642 * When FS is already mounted.
643 * 1. If you are here and if the device->name is NULL that
644 * means this device was missing at time of FS mount.
645 * 2. If you are here and if the device->name is different
646 * from 'path' that means either
647 * a. The same device disappeared and reappeared with
648 * different name. or
649 * b. The missing-disk-which-was-replaced, has
650 * reappeared now.
651 *
652 * We must allow 1 and 2a above. But 2b would be a spurious
653 * and unintentional.
654 *
655 * Further in case of 1 and 2a above, the disk at 'path'
656 * would have missed some transaction when it was away and
657 * in case of 2a the stale bdev has to be updated as well.
658 * 2b must not be allowed at all time.
659 */
660
661 /*
0f23ae74
CM
662 * For now, we do allow update to btrfs_fs_device through the
663 * btrfs dev scan cli after FS has been mounted. We're still
664 * tracking a problem where systems fail mount by subvolume id
665 * when we reject replacement on a mounted FS.
b96de000 666 */
0f23ae74 667 if (!fs_devices->opened && found_transid < device->generation) {
77bdae4d
AJ
668 /*
669 * That is if the FS is _not_ mounted and if you
670 * are here, that means there is more than one
671 * disk with same uuid and devid.We keep the one
672 * with larger generation number or the last-in if
673 * generation are equal.
674 */
0f23ae74 675 return -EEXIST;
77bdae4d 676 }
b96de000 677
606686ee 678 name = rcu_string_strdup(path, GFP_NOFS);
3a0524dc
TH
679 if (!name)
680 return -ENOMEM;
606686ee
JB
681 rcu_string_free(device->name);
682 rcu_assign_pointer(device->name, name);
cd02dca5
CM
683 if (device->missing) {
684 fs_devices->missing_devices--;
685 device->missing = 0;
686 }
8a4b83cc
CM
687 }
688
77bdae4d
AJ
689 /*
690 * Unmount does not free the btrfs_device struct but would zero
691 * generation along with most of the other members. So just update
692 * it back. We need it to pick the disk with largest generation
693 * (as above).
694 */
695 if (!fs_devices->opened)
696 device->generation = found_transid;
697
4fde46f0
AJ
698 /*
699 * if there is new btrfs on an already registered device,
700 * then remove the stale device entry.
701 */
702 btrfs_free_stale_device(device);
703
8a4b83cc 704 *fs_devices_ret = fs_devices;
60999ca4
DS
705
706 return ret;
8a4b83cc
CM
707}
708
e4404d6e
YZ
709static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
710{
711 struct btrfs_fs_devices *fs_devices;
712 struct btrfs_device *device;
713 struct btrfs_device *orig_dev;
714
2208a378
ID
715 fs_devices = alloc_fs_devices(orig->fsid);
716 if (IS_ERR(fs_devices))
717 return fs_devices;
e4404d6e 718
adbbb863 719 mutex_lock(&orig->device_list_mutex);
02db0844 720 fs_devices->total_devices = orig->total_devices;
e4404d6e 721
46224705 722 /* We have held the volume lock, it is safe to get the devices. */
e4404d6e 723 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
606686ee
JB
724 struct rcu_string *name;
725
12bd2fc0
ID
726 device = btrfs_alloc_device(NULL, &orig_dev->devid,
727 orig_dev->uuid);
728 if (IS_ERR(device))
e4404d6e
YZ
729 goto error;
730
606686ee
JB
731 /*
732 * This is ok to do without rcu read locked because we hold the
733 * uuid mutex so nothing we touch in here is going to disappear.
734 */
e755f780
AJ
735 if (orig_dev->name) {
736 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
737 if (!name) {
738 kfree(device);
739 goto error;
740 }
741 rcu_assign_pointer(device->name, name);
fd2696f3 742 }
e4404d6e 743
e4404d6e
YZ
744 list_add(&device->dev_list, &fs_devices->devices);
745 device->fs_devices = fs_devices;
746 fs_devices->num_devices++;
747 }
adbbb863 748 mutex_unlock(&orig->device_list_mutex);
e4404d6e
YZ
749 return fs_devices;
750error:
adbbb863 751 mutex_unlock(&orig->device_list_mutex);
e4404d6e
YZ
752 free_fs_devices(fs_devices);
753 return ERR_PTR(-ENOMEM);
754}
755
9eaed21e 756void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
dfe25020 757{
c6e30871 758 struct btrfs_device *device, *next;
443f24fe 759 struct btrfs_device *latest_dev = NULL;
a6b0d5c8 760
dfe25020
CM
761 mutex_lock(&uuid_mutex);
762again:
46224705 763 /* This is the initialized path, it is safe to release the devices. */
c6e30871 764 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
a6b0d5c8 765 if (device->in_fs_metadata) {
63a212ab 766 if (!device->is_tgtdev_for_dev_replace &&
443f24fe
MX
767 (!latest_dev ||
768 device->generation > latest_dev->generation)) {
769 latest_dev = device;
a6b0d5c8 770 }
2b82032c 771 continue;
a6b0d5c8 772 }
2b82032c 773
8dabb742
SB
774 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
775 /*
776 * In the first step, keep the device which has
777 * the correct fsid and the devid that is used
778 * for the dev_replace procedure.
779 * In the second step, the dev_replace state is
780 * read from the device tree and it is known
781 * whether the procedure is really active or
782 * not, which means whether this device is
783 * used or whether it should be removed.
784 */
785 if (step == 0 || device->is_tgtdev_for_dev_replace) {
786 continue;
787 }
788 }
2b82032c 789 if (device->bdev) {
d4d77629 790 blkdev_put(device->bdev, device->mode);
2b82032c
YZ
791 device->bdev = NULL;
792 fs_devices->open_devices--;
793 }
794 if (device->writeable) {
795 list_del_init(&device->dev_alloc_list);
796 device->writeable = 0;
8dabb742
SB
797 if (!device->is_tgtdev_for_dev_replace)
798 fs_devices->rw_devices--;
2b82032c 799 }
e4404d6e
YZ
800 list_del_init(&device->dev_list);
801 fs_devices->num_devices--;
606686ee 802 rcu_string_free(device->name);
e4404d6e 803 kfree(device);
dfe25020 804 }
2b82032c
YZ
805
806 if (fs_devices->seed) {
807 fs_devices = fs_devices->seed;
2b82032c
YZ
808 goto again;
809 }
810
443f24fe 811 fs_devices->latest_bdev = latest_dev->bdev;
a6b0d5c8 812
dfe25020 813 mutex_unlock(&uuid_mutex);
dfe25020 814}
a0af469b 815
1f78160c
XG
816static void __free_device(struct work_struct *work)
817{
818 struct btrfs_device *device;
819
820 device = container_of(work, struct btrfs_device, rcu_work);
821
822 if (device->bdev)
823 blkdev_put(device->bdev, device->mode);
824
606686ee 825 rcu_string_free(device->name);
1f78160c
XG
826 kfree(device);
827}
828
829static void free_device(struct rcu_head *head)
830{
831 struct btrfs_device *device;
832
833 device = container_of(head, struct btrfs_device, rcu);
834
835 INIT_WORK(&device->rcu_work, __free_device);
836 schedule_work(&device->rcu_work);
837}
838
2b82032c 839static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
8a4b83cc 840{
2037a093 841 struct btrfs_device *device, *tmp;
e4404d6e 842
2b82032c
YZ
843 if (--fs_devices->opened > 0)
844 return 0;
8a4b83cc 845
c9513edb 846 mutex_lock(&fs_devices->device_list_mutex);
2037a093 847 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
f190aa47 848 btrfs_close_one_device(device);
8a4b83cc 849 }
c9513edb
XG
850 mutex_unlock(&fs_devices->device_list_mutex);
851
e4404d6e
YZ
852 WARN_ON(fs_devices->open_devices);
853 WARN_ON(fs_devices->rw_devices);
2b82032c
YZ
854 fs_devices->opened = 0;
855 fs_devices->seeding = 0;
2b82032c 856
8a4b83cc
CM
857 return 0;
858}
859
2b82032c
YZ
860int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
861{
e4404d6e 862 struct btrfs_fs_devices *seed_devices = NULL;
2b82032c
YZ
863 int ret;
864
865 mutex_lock(&uuid_mutex);
866 ret = __btrfs_close_devices(fs_devices);
e4404d6e
YZ
867 if (!fs_devices->opened) {
868 seed_devices = fs_devices->seed;
869 fs_devices->seed = NULL;
870 }
2b82032c 871 mutex_unlock(&uuid_mutex);
e4404d6e
YZ
872
873 while (seed_devices) {
874 fs_devices = seed_devices;
875 seed_devices = fs_devices->seed;
876 __btrfs_close_devices(fs_devices);
877 free_fs_devices(fs_devices);
878 }
bc178622
ES
879 /*
880 * Wait for rcu kworkers under __btrfs_close_devices
881 * to finish all blkdev_puts so device is really
882 * free when umount is done.
883 */
884 rcu_barrier();
2b82032c
YZ
885 return ret;
886}
887
e4404d6e
YZ
888static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
889 fmode_t flags, void *holder)
8a4b83cc 890{
d5e2003c 891 struct request_queue *q;
8a4b83cc
CM
892 struct block_device *bdev;
893 struct list_head *head = &fs_devices->devices;
8a4b83cc 894 struct btrfs_device *device;
443f24fe 895 struct btrfs_device *latest_dev = NULL;
a0af469b
CM
896 struct buffer_head *bh;
897 struct btrfs_super_block *disk_super;
a0af469b 898 u64 devid;
2b82032c 899 int seeding = 1;
a0af469b 900 int ret = 0;
8a4b83cc 901
d4d77629
TH
902 flags |= FMODE_EXCL;
903
c6e30871 904 list_for_each_entry(device, head, dev_list) {
c1c4d91c
CM
905 if (device->bdev)
906 continue;
dfe25020
CM
907 if (!device->name)
908 continue;
909
f63e0cca
ES
910 /* Just open everything we can; ignore failures here */
911 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
912 &bdev, &bh))
beaf8ab3 913 continue;
a0af469b
CM
914
915 disk_super = (struct btrfs_super_block *)bh->b_data;
a343832f 916 devid = btrfs_stack_device_id(&disk_super->dev_item);
a0af469b
CM
917 if (devid != device->devid)
918 goto error_brelse;
919
2b82032c
YZ
920 if (memcmp(device->uuid, disk_super->dev_item.uuid,
921 BTRFS_UUID_SIZE))
922 goto error_brelse;
923
924 device->generation = btrfs_super_generation(disk_super);
443f24fe
MX
925 if (!latest_dev ||
926 device->generation > latest_dev->generation)
927 latest_dev = device;
a0af469b 928
2b82032c
YZ
929 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
930 device->writeable = 0;
931 } else {
932 device->writeable = !bdev_read_only(bdev);
933 seeding = 0;
934 }
935
d5e2003c 936 q = bdev_get_queue(bdev);
90180da4 937 if (blk_queue_discard(q))
d5e2003c 938 device->can_discard = 1;
d5e2003c 939
8a4b83cc 940 device->bdev = bdev;
dfe25020 941 device->in_fs_metadata = 0;
15916de8
CM
942 device->mode = flags;
943
c289811c
CM
944 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
945 fs_devices->rotating = 1;
946
a0af469b 947 fs_devices->open_devices++;
55e50e45
ID
948 if (device->writeable &&
949 device->devid != BTRFS_DEV_REPLACE_DEVID) {
2b82032c
YZ
950 fs_devices->rw_devices++;
951 list_add(&device->dev_alloc_list,
952 &fs_devices->alloc_list);
953 }
4f6c9328 954 brelse(bh);
a0af469b 955 continue;
a061fc8d 956
a0af469b
CM
957error_brelse:
958 brelse(bh);
d4d77629 959 blkdev_put(bdev, flags);
a0af469b 960 continue;
8a4b83cc 961 }
a0af469b 962 if (fs_devices->open_devices == 0) {
20bcd649 963 ret = -EINVAL;
a0af469b
CM
964 goto out;
965 }
2b82032c
YZ
966 fs_devices->seeding = seeding;
967 fs_devices->opened = 1;
443f24fe 968 fs_devices->latest_bdev = latest_dev->bdev;
2b82032c 969 fs_devices->total_rw_bytes = 0;
a0af469b 970out:
2b82032c
YZ
971 return ret;
972}
973
974int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
97288f2c 975 fmode_t flags, void *holder)
2b82032c
YZ
976{
977 int ret;
978
979 mutex_lock(&uuid_mutex);
980 if (fs_devices->opened) {
e4404d6e
YZ
981 fs_devices->opened++;
982 ret = 0;
2b82032c 983 } else {
15916de8 984 ret = __btrfs_open_devices(fs_devices, flags, holder);
2b82032c 985 }
8a4b83cc 986 mutex_unlock(&uuid_mutex);
8a4b83cc
CM
987 return ret;
988}
989
6f60cbd3
DS
990/*
991 * Look for a btrfs signature on a device. This may be called out of the mount path
992 * and we are not allowed to call set_blocksize during the scan. The superblock
993 * is read via pagecache
994 */
97288f2c 995int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
8a4b83cc
CM
996 struct btrfs_fs_devices **fs_devices_ret)
997{
998 struct btrfs_super_block *disk_super;
999 struct block_device *bdev;
6f60cbd3
DS
1000 struct page *page;
1001 void *p;
1002 int ret = -EINVAL;
8a4b83cc 1003 u64 devid;
f2984462 1004 u64 transid;
02db0844 1005 u64 total_devices;
6f60cbd3
DS
1006 u64 bytenr;
1007 pgoff_t index;
8a4b83cc 1008
6f60cbd3
DS
1009 /*
1010 * we would like to check all the supers, but that would make
1011 * a btrfs mount succeed after a mkfs from a different FS.
1012 * So, we need to add a special mount option to scan for
1013 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1014 */
1015 bytenr = btrfs_sb_offset(0);
d4d77629 1016 flags |= FMODE_EXCL;
10f6327b 1017 mutex_lock(&uuid_mutex);
6f60cbd3
DS
1018
1019 bdev = blkdev_get_by_path(path, flags, holder);
1020
1021 if (IS_ERR(bdev)) {
1022 ret = PTR_ERR(bdev);
beaf8ab3 1023 goto error;
6f60cbd3
DS
1024 }
1025
1026 /* make sure our super fits in the device */
1027 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
1028 goto error_bdev_put;
1029
1030 /* make sure our super fits in the page */
1031 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
1032 goto error_bdev_put;
1033
1034 /* make sure our super doesn't straddle pages on disk */
1035 index = bytenr >> PAGE_CACHE_SHIFT;
1036 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
1037 goto error_bdev_put;
1038
1039 /* pull in the page with our super */
1040 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1041 index, GFP_NOFS);
1042
1043 if (IS_ERR_OR_NULL(page))
1044 goto error_bdev_put;
1045
1046 p = kmap(page);
1047
1048 /* align our pointer to the offset of the super block */
1049 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
1050
1051 if (btrfs_super_bytenr(disk_super) != bytenr ||
3cae210f 1052 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
6f60cbd3
DS
1053 goto error_unmap;
1054
a343832f 1055 devid = btrfs_stack_device_id(&disk_super->dev_item);
f2984462 1056 transid = btrfs_super_generation(disk_super);
02db0844 1057 total_devices = btrfs_super_num_devices(disk_super);
6f60cbd3 1058
8a4b83cc 1059 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
60999ca4
DS
1060 if (ret > 0) {
1061 if (disk_super->label[0]) {
1062 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
1063 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
1064 printk(KERN_INFO "BTRFS: device label %s ", disk_super->label);
1065 } else {
1066 printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid);
1067 }
1068
1069 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
1070 ret = 0;
1071 }
02db0844
JB
1072 if (!ret && fs_devices_ret)
1073 (*fs_devices_ret)->total_devices = total_devices;
6f60cbd3
DS
1074
1075error_unmap:
1076 kunmap(page);
1077 page_cache_release(page);
1078
1079error_bdev_put:
d4d77629 1080 blkdev_put(bdev, flags);
8a4b83cc 1081error:
beaf8ab3 1082 mutex_unlock(&uuid_mutex);
8a4b83cc
CM
1083 return ret;
1084}
0b86a832 1085
6d07bcec
MX
1086/* helper to account the used device space in the range */
1087int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1088 u64 end, u64 *length)
1089{
1090 struct btrfs_key key;
1091 struct btrfs_root *root = device->dev_root;
1092 struct btrfs_dev_extent *dev_extent;
1093 struct btrfs_path *path;
1094 u64 extent_end;
1095 int ret;
1096 int slot;
1097 struct extent_buffer *l;
1098
1099 *length = 0;
1100
63a212ab 1101 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
6d07bcec
MX
1102 return 0;
1103
1104 path = btrfs_alloc_path();
1105 if (!path)
1106 return -ENOMEM;
e4058b54 1107 path->reada = READA_FORWARD;
6d07bcec
MX
1108
1109 key.objectid = device->devid;
1110 key.offset = start;
1111 key.type = BTRFS_DEV_EXTENT_KEY;
1112
1113 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1114 if (ret < 0)
1115 goto out;
1116 if (ret > 0) {
1117 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1118 if (ret < 0)
1119 goto out;
1120 }
1121
1122 while (1) {
1123 l = path->nodes[0];
1124 slot = path->slots[0];
1125 if (slot >= btrfs_header_nritems(l)) {
1126 ret = btrfs_next_leaf(root, path);
1127 if (ret == 0)
1128 continue;
1129 if (ret < 0)
1130 goto out;
1131
1132 break;
1133 }
1134 btrfs_item_key_to_cpu(l, &key, slot);
1135
1136 if (key.objectid < device->devid)
1137 goto next;
1138
1139 if (key.objectid > device->devid)
1140 break;
1141
962a298f 1142 if (key.type != BTRFS_DEV_EXTENT_KEY)
6d07bcec
MX
1143 goto next;
1144
1145 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
1146 extent_end = key.offset + btrfs_dev_extent_length(l,
1147 dev_extent);
1148 if (key.offset <= start && extent_end > end) {
1149 *length = end - start + 1;
1150 break;
1151 } else if (key.offset <= start && extent_end > start)
1152 *length += extent_end - start;
1153 else if (key.offset > start && extent_end <= end)
1154 *length += extent_end - key.offset;
1155 else if (key.offset > start && key.offset <= end) {
1156 *length += end - key.offset + 1;
1157 break;
1158 } else if (key.offset > end)
1159 break;
1160
1161next:
1162 path->slots[0]++;
1163 }
1164 ret = 0;
1165out:
1166 btrfs_free_path(path);
1167 return ret;
1168}
1169
499f377f 1170static int contains_pending_extent(struct btrfs_transaction *transaction,
6df9a95e
JB
1171 struct btrfs_device *device,
1172 u64 *start, u64 len)
1173{
499f377f 1174 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
6df9a95e 1175 struct extent_map *em;
499f377f 1176 struct list_head *search_list = &fs_info->pinned_chunks;
6df9a95e 1177 int ret = 0;
1b984508 1178 u64 physical_start = *start;
6df9a95e 1179
499f377f
JM
1180 if (transaction)
1181 search_list = &transaction->pending_chunks;
04216820
FM
1182again:
1183 list_for_each_entry(em, search_list, list) {
6df9a95e
JB
1184 struct map_lookup *map;
1185 int i;
1186
95617d69 1187 map = em->map_lookup;
6df9a95e 1188 for (i = 0; i < map->num_stripes; i++) {
c152b63e
FM
1189 u64 end;
1190
6df9a95e
JB
1191 if (map->stripes[i].dev != device)
1192 continue;
1b984508 1193 if (map->stripes[i].physical >= physical_start + len ||
6df9a95e 1194 map->stripes[i].physical + em->orig_block_len <=
1b984508 1195 physical_start)
6df9a95e 1196 continue;
c152b63e
FM
1197 /*
1198 * Make sure that while processing the pinned list we do
1199 * not override our *start with a lower value, because
1200 * we can have pinned chunks that fall within this
1201 * device hole and that have lower physical addresses
1202 * than the pending chunks we processed before. If we
1203 * do not take this special care we can end up getting
1204 * 2 pending chunks that start at the same physical
1205 * device offsets because the end offset of a pinned
1206 * chunk can be equal to the start offset of some
1207 * pending chunk.
1208 */
1209 end = map->stripes[i].physical + em->orig_block_len;
1210 if (end > *start) {
1211 *start = end;
1212 ret = 1;
1213 }
6df9a95e
JB
1214 }
1215 }
499f377f
JM
1216 if (search_list != &fs_info->pinned_chunks) {
1217 search_list = &fs_info->pinned_chunks;
04216820
FM
1218 goto again;
1219 }
6df9a95e
JB
1220
1221 return ret;
1222}
1223
1224
0b86a832 1225/*
499f377f
JM
1226 * find_free_dev_extent_start - find free space in the specified device
1227 * @device: the device which we search the free space in
1228 * @num_bytes: the size of the free space that we need
1229 * @search_start: the position from which to begin the search
1230 * @start: store the start of the free space.
1231 * @len: the size of the free space. that we find, or the size
1232 * of the max free space if we don't find suitable free space
7bfc837d 1233 *
0b86a832
CM
1234 * this uses a pretty simple search, the expectation is that it is
1235 * called very infrequently and that a given device has a small number
1236 * of extents
7bfc837d
MX
1237 *
1238 * @start is used to store the start of the free space if we find. But if we
1239 * don't find suitable free space, it will be used to store the start position
1240 * of the max free space.
1241 *
1242 * @len is used to store the size of the free space that we find.
1243 * But if we don't find suitable free space, it is used to store the size of
1244 * the max free space.
0b86a832 1245 */
499f377f
JM
1246int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1247 struct btrfs_device *device, u64 num_bytes,
1248 u64 search_start, u64 *start, u64 *len)
0b86a832
CM
1249{
1250 struct btrfs_key key;
1251 struct btrfs_root *root = device->dev_root;
7bfc837d 1252 struct btrfs_dev_extent *dev_extent;
2b82032c 1253 struct btrfs_path *path;
7bfc837d
MX
1254 u64 hole_size;
1255 u64 max_hole_start;
1256 u64 max_hole_size;
1257 u64 extent_end;
0b86a832
CM
1258 u64 search_end = device->total_bytes;
1259 int ret;
7bfc837d 1260 int slot;
0b86a832 1261 struct extent_buffer *l;
8cdc7c5b
FM
1262 u64 min_search_start;
1263
1264 /*
1265 * We don't want to overwrite the superblock on the drive nor any area
1266 * used by the boot loader (grub for example), so we make sure to start
1267 * at an offset of at least 1MB.
1268 */
1269 min_search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
1270 search_start = max(search_start, min_search_start);
0b86a832 1271
6df9a95e
JB
1272 path = btrfs_alloc_path();
1273 if (!path)
1274 return -ENOMEM;
f2ab7618 1275
7bfc837d
MX
1276 max_hole_start = search_start;
1277 max_hole_size = 0;
1278
f2ab7618 1279again:
63a212ab 1280 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
7bfc837d 1281 ret = -ENOSPC;
6df9a95e 1282 goto out;
7bfc837d
MX
1283 }
1284
e4058b54 1285 path->reada = READA_FORWARD;
6df9a95e
JB
1286 path->search_commit_root = 1;
1287 path->skip_locking = 1;
7bfc837d 1288
0b86a832
CM
1289 key.objectid = device->devid;
1290 key.offset = search_start;
1291 key.type = BTRFS_DEV_EXTENT_KEY;
7bfc837d 1292
125ccb0a 1293 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
0b86a832 1294 if (ret < 0)
7bfc837d 1295 goto out;
1fcbac58
YZ
1296 if (ret > 0) {
1297 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1298 if (ret < 0)
7bfc837d 1299 goto out;
1fcbac58 1300 }
7bfc837d 1301
0b86a832
CM
1302 while (1) {
1303 l = path->nodes[0];
1304 slot = path->slots[0];
1305 if (slot >= btrfs_header_nritems(l)) {
1306 ret = btrfs_next_leaf(root, path);
1307 if (ret == 0)
1308 continue;
1309 if (ret < 0)
7bfc837d
MX
1310 goto out;
1311
1312 break;
0b86a832
CM
1313 }
1314 btrfs_item_key_to_cpu(l, &key, slot);
1315
1316 if (key.objectid < device->devid)
1317 goto next;
1318
1319 if (key.objectid > device->devid)
7bfc837d 1320 break;
0b86a832 1321
962a298f 1322 if (key.type != BTRFS_DEV_EXTENT_KEY)
7bfc837d 1323 goto next;
9779b72f 1324
7bfc837d
MX
1325 if (key.offset > search_start) {
1326 hole_size = key.offset - search_start;
9779b72f 1327
6df9a95e
JB
1328 /*
1329 * Have to check before we set max_hole_start, otherwise
1330 * we could end up sending back this offset anyway.
1331 */
499f377f 1332 if (contains_pending_extent(transaction, device,
6df9a95e 1333 &search_start,
1b984508
FL
1334 hole_size)) {
1335 if (key.offset >= search_start) {
1336 hole_size = key.offset - search_start;
1337 } else {
1338 WARN_ON_ONCE(1);
1339 hole_size = 0;
1340 }
1341 }
6df9a95e 1342
7bfc837d
MX
1343 if (hole_size > max_hole_size) {
1344 max_hole_start = search_start;
1345 max_hole_size = hole_size;
1346 }
9779b72f 1347
7bfc837d
MX
1348 /*
1349 * If this free space is greater than which we need,
1350 * it must be the max free space that we have found
1351 * until now, so max_hole_start must point to the start
1352 * of this free space and the length of this free space
1353 * is stored in max_hole_size. Thus, we return
1354 * max_hole_start and max_hole_size and go back to the
1355 * caller.
1356 */
1357 if (hole_size >= num_bytes) {
1358 ret = 0;
1359 goto out;
0b86a832
CM
1360 }
1361 }
0b86a832 1362
0b86a832 1363 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
7bfc837d
MX
1364 extent_end = key.offset + btrfs_dev_extent_length(l,
1365 dev_extent);
1366 if (extent_end > search_start)
1367 search_start = extent_end;
0b86a832
CM
1368next:
1369 path->slots[0]++;
1370 cond_resched();
1371 }
0b86a832 1372
38c01b96 1373 /*
1374 * At this point, search_start should be the end of
1375 * allocated dev extents, and when shrinking the device,
1376 * search_end may be smaller than search_start.
1377 */
f2ab7618 1378 if (search_end > search_start) {
38c01b96 1379 hole_size = search_end - search_start;
1380
499f377f 1381 if (contains_pending_extent(transaction, device, &search_start,
f2ab7618
ZL
1382 hole_size)) {
1383 btrfs_release_path(path);
1384 goto again;
1385 }
0b86a832 1386
f2ab7618
ZL
1387 if (hole_size > max_hole_size) {
1388 max_hole_start = search_start;
1389 max_hole_size = hole_size;
1390 }
6df9a95e
JB
1391 }
1392
7bfc837d 1393 /* See above. */
f2ab7618 1394 if (max_hole_size < num_bytes)
7bfc837d
MX
1395 ret = -ENOSPC;
1396 else
1397 ret = 0;
1398
1399out:
2b82032c 1400 btrfs_free_path(path);
7bfc837d 1401 *start = max_hole_start;
b2117a39 1402 if (len)
7bfc837d 1403 *len = max_hole_size;
0b86a832
CM
1404 return ret;
1405}
1406
499f377f
JM
1407int find_free_dev_extent(struct btrfs_trans_handle *trans,
1408 struct btrfs_device *device, u64 num_bytes,
1409 u64 *start, u64 *len)
1410{
499f377f 1411 /* FIXME use last free of some kind */
499f377f 1412 return find_free_dev_extent_start(trans->transaction, device,
8cdc7c5b 1413 num_bytes, 0, start, len);
499f377f
JM
1414}
1415
b2950863 1416static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
8f18cf13 1417 struct btrfs_device *device,
2196d6e8 1418 u64 start, u64 *dev_extent_len)
8f18cf13
CM
1419{
1420 int ret;
1421 struct btrfs_path *path;
1422 struct btrfs_root *root = device->dev_root;
1423 struct btrfs_key key;
a061fc8d
CM
1424 struct btrfs_key found_key;
1425 struct extent_buffer *leaf = NULL;
1426 struct btrfs_dev_extent *extent = NULL;
8f18cf13
CM
1427
1428 path = btrfs_alloc_path();
1429 if (!path)
1430 return -ENOMEM;
1431
1432 key.objectid = device->devid;
1433 key.offset = start;
1434 key.type = BTRFS_DEV_EXTENT_KEY;
924cd8fb 1435again:
8f18cf13 1436 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
a061fc8d
CM
1437 if (ret > 0) {
1438 ret = btrfs_previous_item(root, path, key.objectid,
1439 BTRFS_DEV_EXTENT_KEY);
b0b802d7
TI
1440 if (ret)
1441 goto out;
a061fc8d
CM
1442 leaf = path->nodes[0];
1443 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1444 extent = btrfs_item_ptr(leaf, path->slots[0],
1445 struct btrfs_dev_extent);
1446 BUG_ON(found_key.offset > start || found_key.offset +
1447 btrfs_dev_extent_length(leaf, extent) < start);
924cd8fb
MX
1448 key = found_key;
1449 btrfs_release_path(path);
1450 goto again;
a061fc8d
CM
1451 } else if (ret == 0) {
1452 leaf = path->nodes[0];
1453 extent = btrfs_item_ptr(leaf, path->slots[0],
1454 struct btrfs_dev_extent);
79787eaa 1455 } else {
a4553fef 1456 btrfs_std_error(root->fs_info, ret, "Slot search failed");
79787eaa 1457 goto out;
a061fc8d 1458 }
8f18cf13 1459
2196d6e8
MX
1460 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1461
8f18cf13 1462 ret = btrfs_del_item(trans, root, path);
79787eaa 1463 if (ret) {
a4553fef 1464 btrfs_std_error(root->fs_info, ret,
79787eaa 1465 "Failed to remove dev extent item");
13212b54 1466 } else {
3204d33c 1467 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
79787eaa 1468 }
b0b802d7 1469out:
8f18cf13
CM
1470 btrfs_free_path(path);
1471 return ret;
1472}
1473
48a3b636
ES
1474static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1475 struct btrfs_device *device,
1476 u64 chunk_tree, u64 chunk_objectid,
1477 u64 chunk_offset, u64 start, u64 num_bytes)
0b86a832
CM
1478{
1479 int ret;
1480 struct btrfs_path *path;
1481 struct btrfs_root *root = device->dev_root;
1482 struct btrfs_dev_extent *extent;
1483 struct extent_buffer *leaf;
1484 struct btrfs_key key;
1485
dfe25020 1486 WARN_ON(!device->in_fs_metadata);
63a212ab 1487 WARN_ON(device->is_tgtdev_for_dev_replace);
0b86a832
CM
1488 path = btrfs_alloc_path();
1489 if (!path)
1490 return -ENOMEM;
1491
0b86a832 1492 key.objectid = device->devid;
2b82032c 1493 key.offset = start;
0b86a832
CM
1494 key.type = BTRFS_DEV_EXTENT_KEY;
1495 ret = btrfs_insert_empty_item(trans, root, path, &key,
1496 sizeof(*extent));
2cdcecbc
MF
1497 if (ret)
1498 goto out;
0b86a832
CM
1499
1500 leaf = path->nodes[0];
1501 extent = btrfs_item_ptr(leaf, path->slots[0],
1502 struct btrfs_dev_extent);
e17cade2
CM
1503 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1504 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1505 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1506
1507 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
231e88f4 1508 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
e17cade2 1509
0b86a832
CM
1510 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1511 btrfs_mark_buffer_dirty(leaf);
2cdcecbc 1512out:
0b86a832
CM
1513 btrfs_free_path(path);
1514 return ret;
1515}
1516
6df9a95e 1517static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
0b86a832 1518{
6df9a95e
JB
1519 struct extent_map_tree *em_tree;
1520 struct extent_map *em;
1521 struct rb_node *n;
1522 u64 ret = 0;
0b86a832 1523
6df9a95e
JB
1524 em_tree = &fs_info->mapping_tree.map_tree;
1525 read_lock(&em_tree->lock);
1526 n = rb_last(&em_tree->map);
1527 if (n) {
1528 em = rb_entry(n, struct extent_map, rb_node);
1529 ret = em->start + em->len;
0b86a832 1530 }
6df9a95e
JB
1531 read_unlock(&em_tree->lock);
1532
0b86a832
CM
1533 return ret;
1534}
1535
53f10659
ID
1536static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1537 u64 *devid_ret)
0b86a832
CM
1538{
1539 int ret;
1540 struct btrfs_key key;
1541 struct btrfs_key found_key;
2b82032c
YZ
1542 struct btrfs_path *path;
1543
2b82032c
YZ
1544 path = btrfs_alloc_path();
1545 if (!path)
1546 return -ENOMEM;
0b86a832
CM
1547
1548 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1549 key.type = BTRFS_DEV_ITEM_KEY;
1550 key.offset = (u64)-1;
1551
53f10659 1552 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
0b86a832
CM
1553 if (ret < 0)
1554 goto error;
1555
79787eaa 1556 BUG_ON(ret == 0); /* Corruption */
0b86a832 1557
53f10659
ID
1558 ret = btrfs_previous_item(fs_info->chunk_root, path,
1559 BTRFS_DEV_ITEMS_OBJECTID,
0b86a832
CM
1560 BTRFS_DEV_ITEM_KEY);
1561 if (ret) {
53f10659 1562 *devid_ret = 1;
0b86a832
CM
1563 } else {
1564 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1565 path->slots[0]);
53f10659 1566 *devid_ret = found_key.offset + 1;
0b86a832
CM
1567 }
1568 ret = 0;
1569error:
2b82032c 1570 btrfs_free_path(path);
0b86a832
CM
1571 return ret;
1572}
1573
1574/*
1575 * the device information is stored in the chunk root
1576 * the btrfs_device struct should be fully filled in
1577 */
48a3b636
ES
1578static int btrfs_add_device(struct btrfs_trans_handle *trans,
1579 struct btrfs_root *root,
1580 struct btrfs_device *device)
0b86a832
CM
1581{
1582 int ret;
1583 struct btrfs_path *path;
1584 struct btrfs_dev_item *dev_item;
1585 struct extent_buffer *leaf;
1586 struct btrfs_key key;
1587 unsigned long ptr;
0b86a832
CM
1588
1589 root = root->fs_info->chunk_root;
1590
1591 path = btrfs_alloc_path();
1592 if (!path)
1593 return -ENOMEM;
1594
0b86a832
CM
1595 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1596 key.type = BTRFS_DEV_ITEM_KEY;
2b82032c 1597 key.offset = device->devid;
0b86a832
CM
1598
1599 ret = btrfs_insert_empty_item(trans, root, path, &key,
0d81ba5d 1600 sizeof(*dev_item));
0b86a832
CM
1601 if (ret)
1602 goto out;
1603
1604 leaf = path->nodes[0];
1605 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1606
1607 btrfs_set_device_id(leaf, dev_item, device->devid);
2b82032c 1608 btrfs_set_device_generation(leaf, dev_item, 0);
0b86a832
CM
1609 btrfs_set_device_type(leaf, dev_item, device->type);
1610 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1611 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1612 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
7cc8e58d
MX
1613 btrfs_set_device_total_bytes(leaf, dev_item,
1614 btrfs_device_get_disk_total_bytes(device));
1615 btrfs_set_device_bytes_used(leaf, dev_item,
1616 btrfs_device_get_bytes_used(device));
e17cade2
CM
1617 btrfs_set_device_group(leaf, dev_item, 0);
1618 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1619 btrfs_set_device_bandwidth(leaf, dev_item, 0);
c3027eb5 1620 btrfs_set_device_start_offset(leaf, dev_item, 0);
0b86a832 1621
410ba3a2 1622 ptr = btrfs_device_uuid(dev_item);
e17cade2 1623 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
1473b24e 1624 ptr = btrfs_device_fsid(dev_item);
2b82032c 1625 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
0b86a832 1626 btrfs_mark_buffer_dirty(leaf);
0b86a832 1627
2b82032c 1628 ret = 0;
0b86a832
CM
1629out:
1630 btrfs_free_path(path);
1631 return ret;
1632}
8f18cf13 1633
5a1972bd
QW
1634/*
1635 * Function to update ctime/mtime for a given device path.
1636 * Mainly used for ctime/mtime based probe like libblkid.
1637 */
1638static void update_dev_time(char *path_name)
1639{
1640 struct file *filp;
1641
1642 filp = filp_open(path_name, O_RDWR, 0);
98af592f 1643 if (IS_ERR(filp))
5a1972bd
QW
1644 return;
1645 file_update_time(filp);
1646 filp_close(filp, NULL);
5a1972bd
QW
1647}
1648
a061fc8d
CM
1649static int btrfs_rm_dev_item(struct btrfs_root *root,
1650 struct btrfs_device *device)
1651{
1652 int ret;
1653 struct btrfs_path *path;
a061fc8d 1654 struct btrfs_key key;
a061fc8d
CM
1655 struct btrfs_trans_handle *trans;
1656
1657 root = root->fs_info->chunk_root;
1658
1659 path = btrfs_alloc_path();
1660 if (!path)
1661 return -ENOMEM;
1662
a22285a6 1663 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
1664 if (IS_ERR(trans)) {
1665 btrfs_free_path(path);
1666 return PTR_ERR(trans);
1667 }
a061fc8d
CM
1668 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1669 key.type = BTRFS_DEV_ITEM_KEY;
1670 key.offset = device->devid;
1671
1672 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1673 if (ret < 0)
1674 goto out;
1675
1676 if (ret > 0) {
1677 ret = -ENOENT;
1678 goto out;
1679 }
1680
1681 ret = btrfs_del_item(trans, root, path);
1682 if (ret)
1683 goto out;
a061fc8d
CM
1684out:
1685 btrfs_free_path(path);
1686 btrfs_commit_transaction(trans, root);
1687 return ret;
1688}
1689
1690int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1691{
1692 struct btrfs_device *device;
2b82032c 1693 struct btrfs_device *next_device;
a061fc8d 1694 struct block_device *bdev;
dfe25020 1695 struct buffer_head *bh = NULL;
a061fc8d 1696 struct btrfs_super_block *disk_super;
1f78160c 1697 struct btrfs_fs_devices *cur_devices;
a061fc8d
CM
1698 u64 all_avail;
1699 u64 devid;
2b82032c
YZ
1700 u64 num_devices;
1701 u8 *dev_uuid;
de98ced9 1702 unsigned seq;
a061fc8d 1703 int ret = 0;
1f78160c 1704 bool clear_super = false;
a061fc8d 1705
a061fc8d
CM
1706 mutex_lock(&uuid_mutex);
1707
de98ced9
MX
1708 do {
1709 seq = read_seqbegin(&root->fs_info->profiles_lock);
1710
1711 all_avail = root->fs_info->avail_data_alloc_bits |
1712 root->fs_info->avail_system_alloc_bits |
1713 root->fs_info->avail_metadata_alloc_bits;
1714 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
a061fc8d 1715
8dabb742
SB
1716 num_devices = root->fs_info->fs_devices->num_devices;
1717 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1718 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1719 WARN_ON(num_devices < 1);
1720 num_devices--;
1721 }
1722 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1723
1724 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
183860f6 1725 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
a061fc8d
CM
1726 goto out;
1727 }
1728
8dabb742 1729 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
183860f6 1730 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
a061fc8d
CM
1731 goto out;
1732 }
1733
53b381b3
DW
1734 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1735 root->fs_info->fs_devices->rw_devices <= 2) {
183860f6 1736 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
53b381b3
DW
1737 goto out;
1738 }
1739 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1740 root->fs_info->fs_devices->rw_devices <= 3) {
183860f6 1741 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
53b381b3
DW
1742 goto out;
1743 }
1744
dfe25020 1745 if (strcmp(device_path, "missing") == 0) {
dfe25020
CM
1746 struct list_head *devices;
1747 struct btrfs_device *tmp;
a061fc8d 1748
dfe25020
CM
1749 device = NULL;
1750 devices = &root->fs_info->fs_devices->devices;
46224705
XG
1751 /*
1752 * It is safe to read the devices since the volume_mutex
1753 * is held.
1754 */
c6e30871 1755 list_for_each_entry(tmp, devices, dev_list) {
63a212ab
SB
1756 if (tmp->in_fs_metadata &&
1757 !tmp->is_tgtdev_for_dev_replace &&
1758 !tmp->bdev) {
dfe25020
CM
1759 device = tmp;
1760 break;
1761 }
1762 }
1763 bdev = NULL;
1764 bh = NULL;
1765 disk_super = NULL;
1766 if (!device) {
183860f6 1767 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
dfe25020
CM
1768 goto out;
1769 }
dfe25020 1770 } else {
beaf8ab3 1771 ret = btrfs_get_bdev_and_sb(device_path,
cc975eb4 1772 FMODE_WRITE | FMODE_EXCL,
beaf8ab3
SB
1773 root->fs_info->bdev_holder, 0,
1774 &bdev, &bh);
1775 if (ret)
dfe25020 1776 goto out;
dfe25020 1777 disk_super = (struct btrfs_super_block *)bh->b_data;
a343832f 1778 devid = btrfs_stack_device_id(&disk_super->dev_item);
2b82032c 1779 dev_uuid = disk_super->dev_item.uuid;
aa1b8cd4 1780 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2b82032c 1781 disk_super->fsid);
dfe25020
CM
1782 if (!device) {
1783 ret = -ENOENT;
1784 goto error_brelse;
1785 }
2b82032c 1786 }
dfe25020 1787
63a212ab 1788 if (device->is_tgtdev_for_dev_replace) {
183860f6 1789 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
63a212ab
SB
1790 goto error_brelse;
1791 }
1792
2b82032c 1793 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
183860f6 1794 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
2b82032c
YZ
1795 goto error_brelse;
1796 }
1797
1798 if (device->writeable) {
0c1daee0 1799 lock_chunks(root);
2b82032c 1800 list_del_init(&device->dev_alloc_list);
c3929c36 1801 device->fs_devices->rw_devices--;
0c1daee0 1802 unlock_chunks(root);
1f78160c 1803 clear_super = true;
dfe25020 1804 }
a061fc8d 1805
d7901554 1806 mutex_unlock(&uuid_mutex);
a061fc8d 1807 ret = btrfs_shrink_device(device, 0);
d7901554 1808 mutex_lock(&uuid_mutex);
a061fc8d 1809 if (ret)
9b3517e9 1810 goto error_undo;
a061fc8d 1811
63a212ab
SB
1812 /*
1813 * TODO: the superblock still includes this device in its num_devices
1814 * counter although write_all_supers() is not locked out. This
1815 * could give a filesystem state which requires a degraded mount.
1816 */
a061fc8d
CM
1817 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1818 if (ret)
9b3517e9 1819 goto error_undo;
a061fc8d 1820
2b82032c 1821 device->in_fs_metadata = 0;
aa1b8cd4 1822 btrfs_scrub_cancel_dev(root->fs_info, device);
e5e9a520
CM
1823
1824 /*
1825 * the device list mutex makes sure that we don't change
1826 * the device list while someone else is writing out all
d7306801
FDBM
1827 * the device supers. Whoever is writing all supers, should
1828 * lock the device list mutex before getting the number of
1829 * devices in the super block (super_copy). Conversely,
1830 * whoever updates the number of devices in the super block
1831 * (super_copy) should hold the device list mutex.
e5e9a520 1832 */
1f78160c
XG
1833
1834 cur_devices = device->fs_devices;
e5e9a520 1835 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
1f78160c 1836 list_del_rcu(&device->dev_list);
e5e9a520 1837
e4404d6e 1838 device->fs_devices->num_devices--;
02db0844 1839 device->fs_devices->total_devices--;
2b82032c 1840
cd02dca5 1841 if (device->missing)
3a7d55c8 1842 device->fs_devices->missing_devices--;
cd02dca5 1843
2b82032c
YZ
1844 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1845 struct btrfs_device, dev_list);
1846 if (device->bdev == root->fs_info->sb->s_bdev)
1847 root->fs_info->sb->s_bdev = next_device->bdev;
1848 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1849 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1850
0bfaa9c5 1851 if (device->bdev) {
e4404d6e 1852 device->fs_devices->open_devices--;
0bfaa9c5 1853 /* remove sysfs entry */
32576040 1854 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
0bfaa9c5 1855 }
99994cde 1856
1f78160c 1857 call_rcu(&device->rcu, free_device);
e4404d6e 1858
6c41761f
DS
1859 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1860 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
d7306801 1861 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2b82032c 1862
1f78160c 1863 if (cur_devices->open_devices == 0) {
e4404d6e
YZ
1864 struct btrfs_fs_devices *fs_devices;
1865 fs_devices = root->fs_info->fs_devices;
1866 while (fs_devices) {
8321cf25
RS
1867 if (fs_devices->seed == cur_devices) {
1868 fs_devices->seed = cur_devices->seed;
e4404d6e 1869 break;
8321cf25 1870 }
e4404d6e 1871 fs_devices = fs_devices->seed;
2b82032c 1872 }
1f78160c 1873 cur_devices->seed = NULL;
1f78160c 1874 __btrfs_close_devices(cur_devices);
1f78160c 1875 free_fs_devices(cur_devices);
2b82032c
YZ
1876 }
1877
5af3e8cc
SB
1878 root->fs_info->num_tolerated_disk_barrier_failures =
1879 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1880
2b82032c
YZ
1881 /*
1882 * at this point, the device is zero sized. We want to
1883 * remove it from the devices list and zero out the old super
1884 */
aa1b8cd4 1885 if (clear_super && disk_super) {
4d90d28b
AJ
1886 u64 bytenr;
1887 int i;
1888
dfe25020
CM
1889 /* make sure this device isn't detected as part of
1890 * the FS anymore
1891 */
1892 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1893 set_buffer_dirty(bh);
1894 sync_dirty_buffer(bh);
4d90d28b
AJ
1895
1896 /* clear the mirror copies of super block on the disk
1897 * being removed, 0th copy is been taken care above and
1898 * the below would take of the rest
1899 */
1900 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1901 bytenr = btrfs_sb_offset(i);
1902 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
1903 i_size_read(bdev->bd_inode))
1904 break;
1905
1906 brelse(bh);
1907 bh = __bread(bdev, bytenr / 4096,
1908 BTRFS_SUPER_INFO_SIZE);
1909 if (!bh)
1910 continue;
1911
1912 disk_super = (struct btrfs_super_block *)bh->b_data;
1913
1914 if (btrfs_super_bytenr(disk_super) != bytenr ||
1915 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
1916 continue;
1917 }
1918 memset(&disk_super->magic, 0,
1919 sizeof(disk_super->magic));
1920 set_buffer_dirty(bh);
1921 sync_dirty_buffer(bh);
1922 }
dfe25020 1923 }
a061fc8d 1924
a061fc8d 1925 ret = 0;
a061fc8d 1926
5a1972bd
QW
1927 if (bdev) {
1928 /* Notify udev that device has changed */
3c911608 1929 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
b8b8ff59 1930
5a1972bd
QW
1931 /* Update ctime/mtime for device path for libblkid */
1932 update_dev_time(device_path);
1933 }
1934
a061fc8d
CM
1935error_brelse:
1936 brelse(bh);
dfe25020 1937 if (bdev)
e525fd89 1938 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
a061fc8d
CM
1939out:
1940 mutex_unlock(&uuid_mutex);
a061fc8d 1941 return ret;
9b3517e9
ID
1942error_undo:
1943 if (device->writeable) {
0c1daee0 1944 lock_chunks(root);
9b3517e9
ID
1945 list_add(&device->dev_alloc_list,
1946 &root->fs_info->fs_devices->alloc_list);
c3929c36 1947 device->fs_devices->rw_devices++;
0c1daee0 1948 unlock_chunks(root);
9b3517e9
ID
1949 }
1950 goto error_brelse;
a061fc8d
CM
1951}
1952
084b6e7c
QW
1953void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1954 struct btrfs_device *srcdev)
e93c89c1 1955{
d51908ce
AJ
1956 struct btrfs_fs_devices *fs_devices;
1957
e93c89c1 1958 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
1357272f 1959
25e8e911
AJ
1960 /*
1961 * in case of fs with no seed, srcdev->fs_devices will point
1962 * to fs_devices of fs_info. However when the dev being replaced is
1963 * a seed dev it will point to the seed's local fs_devices. In short
1964 * srcdev will have its correct fs_devices in both the cases.
1965 */
1966 fs_devices = srcdev->fs_devices;
d51908ce 1967
e93c89c1
SB
1968 list_del_rcu(&srcdev->dev_list);
1969 list_del_rcu(&srcdev->dev_alloc_list);
d51908ce 1970 fs_devices->num_devices--;
82372bc8 1971 if (srcdev->missing)
d51908ce 1972 fs_devices->missing_devices--;
e93c89c1 1973
82372bc8
MX
1974 if (srcdev->writeable) {
1975 fs_devices->rw_devices--;
1976 /* zero out the old super if it is writable */
31388ab2 1977 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
1357272f
ID
1978 }
1979
82372bc8 1980 if (srcdev->bdev)
d51908ce 1981 fs_devices->open_devices--;
084b6e7c
QW
1982}
1983
1984void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1985 struct btrfs_device *srcdev)
1986{
1987 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
e93c89c1
SB
1988
1989 call_rcu(&srcdev->rcu, free_device);
94d5f0c2
AJ
1990
1991 /*
1992 * unless fs_devices is seed fs, num_devices shouldn't go
1993 * zero
1994 */
1995 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1996
1997 /* if this is no devs we rather delete the fs_devices */
1998 if (!fs_devices->num_devices) {
1999 struct btrfs_fs_devices *tmp_fs_devices;
2000
2001 tmp_fs_devices = fs_info->fs_devices;
2002 while (tmp_fs_devices) {
2003 if (tmp_fs_devices->seed == fs_devices) {
2004 tmp_fs_devices->seed = fs_devices->seed;
2005 break;
2006 }
2007 tmp_fs_devices = tmp_fs_devices->seed;
2008 }
2009 fs_devices->seed = NULL;
8bef8401
AJ
2010 __btrfs_close_devices(fs_devices);
2011 free_fs_devices(fs_devices);
94d5f0c2 2012 }
e93c89c1
SB
2013}
2014
2015void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2016 struct btrfs_device *tgtdev)
2017{
2018 struct btrfs_device *next_device;
2019
67a2c45e 2020 mutex_lock(&uuid_mutex);
e93c89c1
SB
2021 WARN_ON(!tgtdev);
2022 mutex_lock(&fs_info->fs_devices->device_list_mutex);
d2ff1b20 2023
32576040 2024 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
d2ff1b20 2025
e93c89c1 2026 if (tgtdev->bdev) {
31388ab2 2027 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
e93c89c1
SB
2028 fs_info->fs_devices->open_devices--;
2029 }
2030 fs_info->fs_devices->num_devices--;
e93c89c1
SB
2031
2032 next_device = list_entry(fs_info->fs_devices->devices.next,
2033 struct btrfs_device, dev_list);
2034 if (tgtdev->bdev == fs_info->sb->s_bdev)
2035 fs_info->sb->s_bdev = next_device->bdev;
2036 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
2037 fs_info->fs_devices->latest_bdev = next_device->bdev;
2038 list_del_rcu(&tgtdev->dev_list);
2039
2040 call_rcu(&tgtdev->rcu, free_device);
2041
2042 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
67a2c45e 2043 mutex_unlock(&uuid_mutex);
e93c89c1
SB
2044}
2045
48a3b636
ES
2046static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
2047 struct btrfs_device **device)
7ba15b7d
SB
2048{
2049 int ret = 0;
2050 struct btrfs_super_block *disk_super;
2051 u64 devid;
2052 u8 *dev_uuid;
2053 struct block_device *bdev;
2054 struct buffer_head *bh;
2055
2056 *device = NULL;
2057 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2058 root->fs_info->bdev_holder, 0, &bdev, &bh);
2059 if (ret)
2060 return ret;
2061 disk_super = (struct btrfs_super_block *)bh->b_data;
2062 devid = btrfs_stack_device_id(&disk_super->dev_item);
2063 dev_uuid = disk_super->dev_item.uuid;
aa1b8cd4 2064 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
7ba15b7d
SB
2065 disk_super->fsid);
2066 brelse(bh);
2067 if (!*device)
2068 ret = -ENOENT;
2069 blkdev_put(bdev, FMODE_READ);
2070 return ret;
2071}
2072
2073int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2074 char *device_path,
2075 struct btrfs_device **device)
2076{
2077 *device = NULL;
2078 if (strcmp(device_path, "missing") == 0) {
2079 struct list_head *devices;
2080 struct btrfs_device *tmp;
2081
2082 devices = &root->fs_info->fs_devices->devices;
2083 /*
2084 * It is safe to read the devices since the volume_mutex
2085 * is held by the caller.
2086 */
2087 list_for_each_entry(tmp, devices, dev_list) {
2088 if (tmp->in_fs_metadata && !tmp->bdev) {
2089 *device = tmp;
2090 break;
2091 }
2092 }
2093
d74a6259
AJ
2094 if (!*device)
2095 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
7ba15b7d
SB
2096
2097 return 0;
2098 } else {
2099 return btrfs_find_device_by_path(root, device_path, device);
2100 }
2101}
2102
2b82032c
YZ
2103/*
2104 * does all the dirty work required for changing file system's UUID.
2105 */
125ccb0a 2106static int btrfs_prepare_sprout(struct btrfs_root *root)
2b82032c
YZ
2107{
2108 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2109 struct btrfs_fs_devices *old_devices;
e4404d6e 2110 struct btrfs_fs_devices *seed_devices;
6c41761f 2111 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
2b82032c
YZ
2112 struct btrfs_device *device;
2113 u64 super_flags;
2114
2115 BUG_ON(!mutex_is_locked(&uuid_mutex));
e4404d6e 2116 if (!fs_devices->seeding)
2b82032c
YZ
2117 return -EINVAL;
2118
2208a378
ID
2119 seed_devices = __alloc_fs_devices();
2120 if (IS_ERR(seed_devices))
2121 return PTR_ERR(seed_devices);
2b82032c 2122
e4404d6e
YZ
2123 old_devices = clone_fs_devices(fs_devices);
2124 if (IS_ERR(old_devices)) {
2125 kfree(seed_devices);
2126 return PTR_ERR(old_devices);
2b82032c 2127 }
e4404d6e 2128
2b82032c
YZ
2129 list_add(&old_devices->list, &fs_uuids);
2130
e4404d6e
YZ
2131 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2132 seed_devices->opened = 1;
2133 INIT_LIST_HEAD(&seed_devices->devices);
2134 INIT_LIST_HEAD(&seed_devices->alloc_list);
e5e9a520 2135 mutex_init(&seed_devices->device_list_mutex);
c9513edb
XG
2136
2137 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
1f78160c
XG
2138 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2139 synchronize_rcu);
2196d6e8
MX
2140 list_for_each_entry(device, &seed_devices->devices, dev_list)
2141 device->fs_devices = seed_devices;
c9513edb 2142
2196d6e8 2143 lock_chunks(root);
e4404d6e 2144 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2196d6e8 2145 unlock_chunks(root);
e4404d6e 2146
2b82032c
YZ
2147 fs_devices->seeding = 0;
2148 fs_devices->num_devices = 0;
2149 fs_devices->open_devices = 0;
69611ac8 2150 fs_devices->missing_devices = 0;
69611ac8 2151 fs_devices->rotating = 0;
e4404d6e 2152 fs_devices->seed = seed_devices;
2b82032c
YZ
2153
2154 generate_random_uuid(fs_devices->fsid);
2155 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2156 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
f7171750
FDBM
2157 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2158
2b82032c
YZ
2159 super_flags = btrfs_super_flags(disk_super) &
2160 ~BTRFS_SUPER_FLAG_SEEDING;
2161 btrfs_set_super_flags(disk_super, super_flags);
2162
2163 return 0;
2164}
2165
2166/*
2167 * strore the expected generation for seed devices in device items.
2168 */
2169static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2170 struct btrfs_root *root)
2171{
2172 struct btrfs_path *path;
2173 struct extent_buffer *leaf;
2174 struct btrfs_dev_item *dev_item;
2175 struct btrfs_device *device;
2176 struct btrfs_key key;
2177 u8 fs_uuid[BTRFS_UUID_SIZE];
2178 u8 dev_uuid[BTRFS_UUID_SIZE];
2179 u64 devid;
2180 int ret;
2181
2182 path = btrfs_alloc_path();
2183 if (!path)
2184 return -ENOMEM;
2185
2186 root = root->fs_info->chunk_root;
2187 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2188 key.offset = 0;
2189 key.type = BTRFS_DEV_ITEM_KEY;
2190
2191 while (1) {
2192 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2193 if (ret < 0)
2194 goto error;
2195
2196 leaf = path->nodes[0];
2197next_slot:
2198 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2199 ret = btrfs_next_leaf(root, path);
2200 if (ret > 0)
2201 break;
2202 if (ret < 0)
2203 goto error;
2204 leaf = path->nodes[0];
2205 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
b3b4aa74 2206 btrfs_release_path(path);
2b82032c
YZ
2207 continue;
2208 }
2209
2210 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2211 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2212 key.type != BTRFS_DEV_ITEM_KEY)
2213 break;
2214
2215 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2216 struct btrfs_dev_item);
2217 devid = btrfs_device_id(leaf, dev_item);
410ba3a2 2218 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
2b82032c 2219 BTRFS_UUID_SIZE);
1473b24e 2220 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
2b82032c 2221 BTRFS_UUID_SIZE);
aa1b8cd4
SB
2222 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2223 fs_uuid);
79787eaa 2224 BUG_ON(!device); /* Logic error */
2b82032c
YZ
2225
2226 if (device->fs_devices->seeding) {
2227 btrfs_set_device_generation(leaf, dev_item,
2228 device->generation);
2229 btrfs_mark_buffer_dirty(leaf);
2230 }
2231
2232 path->slots[0]++;
2233 goto next_slot;
2234 }
2235 ret = 0;
2236error:
2237 btrfs_free_path(path);
2238 return ret;
2239}
2240
788f20eb
CM
2241int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2242{
d5e2003c 2243 struct request_queue *q;
788f20eb
CM
2244 struct btrfs_trans_handle *trans;
2245 struct btrfs_device *device;
2246 struct block_device *bdev;
788f20eb 2247 struct list_head *devices;
2b82032c 2248 struct super_block *sb = root->fs_info->sb;
606686ee 2249 struct rcu_string *name;
3c1dbdf5 2250 u64 tmp;
2b82032c 2251 int seeding_dev = 0;
788f20eb
CM
2252 int ret = 0;
2253
2b82032c 2254 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
f8c5d0b4 2255 return -EROFS;
788f20eb 2256
a5d16333 2257 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
d4d77629 2258 root->fs_info->bdev_holder);
7f59203a
JB
2259 if (IS_ERR(bdev))
2260 return PTR_ERR(bdev);
a2135011 2261
2b82032c
YZ
2262 if (root->fs_info->fs_devices->seeding) {
2263 seeding_dev = 1;
2264 down_write(&sb->s_umount);
2265 mutex_lock(&uuid_mutex);
2266 }
2267
8c8bee1d 2268 filemap_write_and_wait(bdev->bd_inode->i_mapping);
a2135011 2269
788f20eb 2270 devices = &root->fs_info->fs_devices->devices;
d25628bd
LB
2271
2272 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
c6e30871 2273 list_for_each_entry(device, devices, dev_list) {
788f20eb
CM
2274 if (device->bdev == bdev) {
2275 ret = -EEXIST;
d25628bd
LB
2276 mutex_unlock(
2277 &root->fs_info->fs_devices->device_list_mutex);
2b82032c 2278 goto error;
788f20eb
CM
2279 }
2280 }
d25628bd 2281 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
788f20eb 2282
12bd2fc0
ID
2283 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2284 if (IS_ERR(device)) {
788f20eb 2285 /* we can safely leave the fs_devices entry around */
12bd2fc0 2286 ret = PTR_ERR(device);
2b82032c 2287 goto error;
788f20eb
CM
2288 }
2289
606686ee
JB
2290 name = rcu_string_strdup(device_path, GFP_NOFS);
2291 if (!name) {
788f20eb 2292 kfree(device);
2b82032c
YZ
2293 ret = -ENOMEM;
2294 goto error;
788f20eb 2295 }
606686ee 2296 rcu_assign_pointer(device->name, name);
2b82032c 2297
a22285a6 2298 trans = btrfs_start_transaction(root, 0);
98d5dc13 2299 if (IS_ERR(trans)) {
606686ee 2300 rcu_string_free(device->name);
98d5dc13
TI
2301 kfree(device);
2302 ret = PTR_ERR(trans);
2303 goto error;
2304 }
2305
d5e2003c
JB
2306 q = bdev_get_queue(bdev);
2307 if (blk_queue_discard(q))
2308 device->can_discard = 1;
2b82032c 2309 device->writeable = 1;
2b82032c 2310 device->generation = trans->transid;
788f20eb
CM
2311 device->io_width = root->sectorsize;
2312 device->io_align = root->sectorsize;
2313 device->sector_size = root->sectorsize;
2314 device->total_bytes = i_size_read(bdev->bd_inode);
2cc3c559 2315 device->disk_total_bytes = device->total_bytes;
935e5cc9 2316 device->commit_total_bytes = device->total_bytes;
788f20eb
CM
2317 device->dev_root = root->fs_info->dev_root;
2318 device->bdev = bdev;
dfe25020 2319 device->in_fs_metadata = 1;
63a212ab 2320 device->is_tgtdev_for_dev_replace = 0;
fb01aa85 2321 device->mode = FMODE_EXCL;
27087f37 2322 device->dev_stats_valid = 1;
2b82032c 2323 set_blocksize(device->bdev, 4096);
788f20eb 2324
2b82032c
YZ
2325 if (seeding_dev) {
2326 sb->s_flags &= ~MS_RDONLY;
125ccb0a 2327 ret = btrfs_prepare_sprout(root);
79787eaa 2328 BUG_ON(ret); /* -ENOMEM */
2b82032c 2329 }
788f20eb 2330
2b82032c 2331 device->fs_devices = root->fs_info->fs_devices;
e5e9a520 2332
e5e9a520 2333 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2196d6e8 2334 lock_chunks(root);
1f78160c 2335 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
2b82032c
YZ
2336 list_add(&device->dev_alloc_list,
2337 &root->fs_info->fs_devices->alloc_list);
2338 root->fs_info->fs_devices->num_devices++;
2339 root->fs_info->fs_devices->open_devices++;
2340 root->fs_info->fs_devices->rw_devices++;
02db0844 2341 root->fs_info->fs_devices->total_devices++;
2b82032c 2342 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
325cd4ba 2343
2bf64758
JB
2344 spin_lock(&root->fs_info->free_chunk_lock);
2345 root->fs_info->free_chunk_space += device->total_bytes;
2346 spin_unlock(&root->fs_info->free_chunk_lock);
2347
c289811c
CM
2348 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2349 root->fs_info->fs_devices->rotating = 1;
2350
3c1dbdf5 2351 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
6c41761f 2352 btrfs_set_super_total_bytes(root->fs_info->super_copy,
3c1dbdf5 2353 tmp + device->total_bytes);
788f20eb 2354
3c1dbdf5 2355 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
6c41761f 2356 btrfs_set_super_num_devices(root->fs_info->super_copy,
3c1dbdf5 2357 tmp + 1);
0d39376a
AJ
2358
2359 /* add sysfs device entry */
e3bd6973 2360 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
0d39376a 2361
2196d6e8
MX
2362 /*
2363 * we've got more storage, clear any full flags on the space
2364 * infos
2365 */
2366 btrfs_clear_space_info_full(root->fs_info);
2367
2368 unlock_chunks(root);
e5e9a520 2369 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
788f20eb 2370
2b82032c 2371 if (seeding_dev) {
2196d6e8 2372 lock_chunks(root);
2b82032c 2373 ret = init_first_rw_device(trans, root, device);
2196d6e8 2374 unlock_chunks(root);
005d6427
DS
2375 if (ret) {
2376 btrfs_abort_transaction(trans, root, ret);
79787eaa 2377 goto error_trans;
005d6427 2378 }
2196d6e8
MX
2379 }
2380
2381 ret = btrfs_add_device(trans, root, device);
2382 if (ret) {
2383 btrfs_abort_transaction(trans, root, ret);
2384 goto error_trans;
2385 }
2386
2387 if (seeding_dev) {
2388 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2389
2b82032c 2390 ret = btrfs_finish_sprout(trans, root);
005d6427
DS
2391 if (ret) {
2392 btrfs_abort_transaction(trans, root, ret);
79787eaa 2393 goto error_trans;
005d6427 2394 }
b2373f25
AJ
2395
2396 /* Sprouting would change fsid of the mounted root,
2397 * so rename the fsid on the sysfs
2398 */
2399 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2400 root->fs_info->fsid);
c1b7e474 2401 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
2e7910d6 2402 fsid_buf))
f14d104d
DS
2403 btrfs_warn(root->fs_info,
2404 "sysfs: failed to create fsid for sprout");
2b82032c
YZ
2405 }
2406
5af3e8cc
SB
2407 root->fs_info->num_tolerated_disk_barrier_failures =
2408 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
79787eaa 2409 ret = btrfs_commit_transaction(trans, root);
a2135011 2410
2b82032c
YZ
2411 if (seeding_dev) {
2412 mutex_unlock(&uuid_mutex);
2413 up_write(&sb->s_umount);
788f20eb 2414
79787eaa
JM
2415 if (ret) /* transaction commit */
2416 return ret;
2417
2b82032c 2418 ret = btrfs_relocate_sys_chunks(root);
79787eaa 2419 if (ret < 0)
a4553fef 2420 btrfs_std_error(root->fs_info, ret,
79787eaa
JM
2421 "Failed to relocate sys chunks after "
2422 "device initialization. This can be fixed "
2423 "using the \"btrfs balance\" command.");
671415b7
MX
2424 trans = btrfs_attach_transaction(root);
2425 if (IS_ERR(trans)) {
2426 if (PTR_ERR(trans) == -ENOENT)
2427 return 0;
2428 return PTR_ERR(trans);
2429 }
2430 ret = btrfs_commit_transaction(trans, root);
2b82032c 2431 }
c9e9f97b 2432
5a1972bd
QW
2433 /* Update ctime/mtime for libblkid */
2434 update_dev_time(device_path);
2b82032c 2435 return ret;
79787eaa
JM
2436
2437error_trans:
79787eaa 2438 btrfs_end_transaction(trans, root);
606686ee 2439 rcu_string_free(device->name);
32576040 2440 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
79787eaa 2441 kfree(device);
2b82032c 2442error:
e525fd89 2443 blkdev_put(bdev, FMODE_EXCL);
2b82032c
YZ
2444 if (seeding_dev) {
2445 mutex_unlock(&uuid_mutex);
2446 up_write(&sb->s_umount);
2447 }
c9e9f97b 2448 return ret;
788f20eb
CM
2449}
2450
e93c89c1 2451int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
1c43366d 2452 struct btrfs_device *srcdev,
e93c89c1
SB
2453 struct btrfs_device **device_out)
2454{
2455 struct request_queue *q;
2456 struct btrfs_device *device;
2457 struct block_device *bdev;
2458 struct btrfs_fs_info *fs_info = root->fs_info;
2459 struct list_head *devices;
2460 struct rcu_string *name;
12bd2fc0 2461 u64 devid = BTRFS_DEV_REPLACE_DEVID;
e93c89c1
SB
2462 int ret = 0;
2463
2464 *device_out = NULL;
1c43366d
MX
2465 if (fs_info->fs_devices->seeding) {
2466 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
e93c89c1 2467 return -EINVAL;
1c43366d 2468 }
e93c89c1
SB
2469
2470 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2471 fs_info->bdev_holder);
1c43366d
MX
2472 if (IS_ERR(bdev)) {
2473 btrfs_err(fs_info, "target device %s is invalid!", device_path);
e93c89c1 2474 return PTR_ERR(bdev);
1c43366d 2475 }
e93c89c1
SB
2476
2477 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2478
2479 devices = &fs_info->fs_devices->devices;
2480 list_for_each_entry(device, devices, dev_list) {
2481 if (device->bdev == bdev) {
1c43366d 2482 btrfs_err(fs_info, "target device is in the filesystem!");
e93c89c1
SB
2483 ret = -EEXIST;
2484 goto error;
2485 }
2486 }
2487
1c43366d 2488
7cc8e58d
MX
2489 if (i_size_read(bdev->bd_inode) <
2490 btrfs_device_get_total_bytes(srcdev)) {
1c43366d
MX
2491 btrfs_err(fs_info, "target device is smaller than source device!");
2492 ret = -EINVAL;
2493 goto error;
2494 }
2495
2496
12bd2fc0
ID
2497 device = btrfs_alloc_device(NULL, &devid, NULL);
2498 if (IS_ERR(device)) {
2499 ret = PTR_ERR(device);
e93c89c1
SB
2500 goto error;
2501 }
2502
2503 name = rcu_string_strdup(device_path, GFP_NOFS);
2504 if (!name) {
2505 kfree(device);
2506 ret = -ENOMEM;
2507 goto error;
2508 }
2509 rcu_assign_pointer(device->name, name);
2510
2511 q = bdev_get_queue(bdev);
2512 if (blk_queue_discard(q))
2513 device->can_discard = 1;
2514 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2515 device->writeable = 1;
e93c89c1
SB
2516 device->generation = 0;
2517 device->io_width = root->sectorsize;
2518 device->io_align = root->sectorsize;
2519 device->sector_size = root->sectorsize;
7cc8e58d
MX
2520 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2521 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2522 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
935e5cc9
MX
2523 ASSERT(list_empty(&srcdev->resized_list));
2524 device->commit_total_bytes = srcdev->commit_total_bytes;
ce7213c7 2525 device->commit_bytes_used = device->bytes_used;
e93c89c1
SB
2526 device->dev_root = fs_info->dev_root;
2527 device->bdev = bdev;
2528 device->in_fs_metadata = 1;
2529 device->is_tgtdev_for_dev_replace = 1;
2530 device->mode = FMODE_EXCL;
27087f37 2531 device->dev_stats_valid = 1;
e93c89c1
SB
2532 set_blocksize(device->bdev, 4096);
2533 device->fs_devices = fs_info->fs_devices;
2534 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2535 fs_info->fs_devices->num_devices++;
2536 fs_info->fs_devices->open_devices++;
e93c89c1
SB
2537 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2538
2539 *device_out = device;
2540 return ret;
2541
2542error:
2543 blkdev_put(bdev, FMODE_EXCL);
2544 return ret;
2545}
2546
2547void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2548 struct btrfs_device *tgtdev)
2549{
2550 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2551 tgtdev->io_width = fs_info->dev_root->sectorsize;
2552 tgtdev->io_align = fs_info->dev_root->sectorsize;
2553 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2554 tgtdev->dev_root = fs_info->dev_root;
2555 tgtdev->in_fs_metadata = 1;
2556}
2557
d397712b
CM
2558static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2559 struct btrfs_device *device)
0b86a832
CM
2560{
2561 int ret;
2562 struct btrfs_path *path;
2563 struct btrfs_root *root;
2564 struct btrfs_dev_item *dev_item;
2565 struct extent_buffer *leaf;
2566 struct btrfs_key key;
2567
2568 root = device->dev_root->fs_info->chunk_root;
2569
2570 path = btrfs_alloc_path();
2571 if (!path)
2572 return -ENOMEM;
2573
2574 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2575 key.type = BTRFS_DEV_ITEM_KEY;
2576 key.offset = device->devid;
2577
2578 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2579 if (ret < 0)
2580 goto out;
2581
2582 if (ret > 0) {
2583 ret = -ENOENT;
2584 goto out;
2585 }
2586
2587 leaf = path->nodes[0];
2588 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2589
2590 btrfs_set_device_id(leaf, dev_item, device->devid);
2591 btrfs_set_device_type(leaf, dev_item, device->type);
2592 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2593 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2594 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
7cc8e58d
MX
2595 btrfs_set_device_total_bytes(leaf, dev_item,
2596 btrfs_device_get_disk_total_bytes(device));
2597 btrfs_set_device_bytes_used(leaf, dev_item,
2598 btrfs_device_get_bytes_used(device));
0b86a832
CM
2599 btrfs_mark_buffer_dirty(leaf);
2600
2601out:
2602 btrfs_free_path(path);
2603 return ret;
2604}
2605
2196d6e8 2606int btrfs_grow_device(struct btrfs_trans_handle *trans,
8f18cf13
CM
2607 struct btrfs_device *device, u64 new_size)
2608{
2609 struct btrfs_super_block *super_copy =
6c41761f 2610 device->dev_root->fs_info->super_copy;
935e5cc9 2611 struct btrfs_fs_devices *fs_devices;
2196d6e8
MX
2612 u64 old_total;
2613 u64 diff;
8f18cf13 2614
2b82032c
YZ
2615 if (!device->writeable)
2616 return -EACCES;
2196d6e8
MX
2617
2618 lock_chunks(device->dev_root);
2619 old_total = btrfs_super_total_bytes(super_copy);
2620 diff = new_size - device->total_bytes;
2621
63a212ab 2622 if (new_size <= device->total_bytes ||
2196d6e8
MX
2623 device->is_tgtdev_for_dev_replace) {
2624 unlock_chunks(device->dev_root);
2b82032c 2625 return -EINVAL;
2196d6e8 2626 }
2b82032c 2627
935e5cc9 2628 fs_devices = device->dev_root->fs_info->fs_devices;
2b82032c 2629
8f18cf13 2630 btrfs_set_super_total_bytes(super_copy, old_total + diff);
2b82032c
YZ
2631 device->fs_devices->total_rw_bytes += diff;
2632
7cc8e58d
MX
2633 btrfs_device_set_total_bytes(device, new_size);
2634 btrfs_device_set_disk_total_bytes(device, new_size);
4184ea7f 2635 btrfs_clear_space_info_full(device->dev_root->fs_info);
935e5cc9
MX
2636 if (list_empty(&device->resized_list))
2637 list_add_tail(&device->resized_list,
2638 &fs_devices->resized_devices);
2196d6e8 2639 unlock_chunks(device->dev_root);
4184ea7f 2640
8f18cf13
CM
2641 return btrfs_update_device(trans, device);
2642}
2643
2644static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
a688a04a 2645 struct btrfs_root *root, u64 chunk_objectid,
8f18cf13
CM
2646 u64 chunk_offset)
2647{
2648 int ret;
2649 struct btrfs_path *path;
2650 struct btrfs_key key;
2651
2652 root = root->fs_info->chunk_root;
2653 path = btrfs_alloc_path();
2654 if (!path)
2655 return -ENOMEM;
2656
2657 key.objectid = chunk_objectid;
2658 key.offset = chunk_offset;
2659 key.type = BTRFS_CHUNK_ITEM_KEY;
2660
2661 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
79787eaa
JM
2662 if (ret < 0)
2663 goto out;
2664 else if (ret > 0) { /* Logic error or corruption */
a4553fef 2665 btrfs_std_error(root->fs_info, -ENOENT,
79787eaa
JM
2666 "Failed lookup while freeing chunk.");
2667 ret = -ENOENT;
2668 goto out;
2669 }
8f18cf13
CM
2670
2671 ret = btrfs_del_item(trans, root, path);
79787eaa 2672 if (ret < 0)
a4553fef 2673 btrfs_std_error(root->fs_info, ret,
79787eaa
JM
2674 "Failed to delete chunk item.");
2675out:
8f18cf13 2676 btrfs_free_path(path);
65a246c5 2677 return ret;
8f18cf13
CM
2678}
2679
b2950863 2680static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
8f18cf13
CM
2681 chunk_offset)
2682{
6c41761f 2683 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
8f18cf13
CM
2684 struct btrfs_disk_key *disk_key;
2685 struct btrfs_chunk *chunk;
2686 u8 *ptr;
2687 int ret = 0;
2688 u32 num_stripes;
2689 u32 array_size;
2690 u32 len = 0;
2691 u32 cur;
2692 struct btrfs_key key;
2693
2196d6e8 2694 lock_chunks(root);
8f18cf13
CM
2695 array_size = btrfs_super_sys_array_size(super_copy);
2696
2697 ptr = super_copy->sys_chunk_array;
2698 cur = 0;
2699
2700 while (cur < array_size) {
2701 disk_key = (struct btrfs_disk_key *)ptr;
2702 btrfs_disk_key_to_cpu(&key, disk_key);
2703
2704 len = sizeof(*disk_key);
2705
2706 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2707 chunk = (struct btrfs_chunk *)(ptr + len);
2708 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2709 len += btrfs_chunk_item_size(num_stripes);
2710 } else {
2711 ret = -EIO;
2712 break;
2713 }
2714 if (key.objectid == chunk_objectid &&
2715 key.offset == chunk_offset) {
2716 memmove(ptr, ptr + len, array_size - (cur + len));
2717 array_size -= len;
2718 btrfs_set_super_sys_array_size(super_copy, array_size);
2719 } else {
2720 ptr += len;
2721 cur += len;
2722 }
2723 }
2196d6e8 2724 unlock_chunks(root);
8f18cf13
CM
2725 return ret;
2726}
2727
47ab2a6c
JB
2728int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2729 struct btrfs_root *root, u64 chunk_offset)
8f18cf13
CM
2730{
2731 struct extent_map_tree *em_tree;
8f18cf13 2732 struct extent_map *em;
47ab2a6c 2733 struct btrfs_root *extent_root = root->fs_info->extent_root;
8f18cf13 2734 struct map_lookup *map;
2196d6e8 2735 u64 dev_extent_len = 0;
47ab2a6c 2736 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
47ab2a6c 2737 int i, ret = 0;
8f18cf13 2738
47ab2a6c 2739 /* Just in case */
8f18cf13 2740 root = root->fs_info->chunk_root;
8f18cf13
CM
2741 em_tree = &root->fs_info->mapping_tree.map_tree;
2742
890871be 2743 read_lock(&em_tree->lock);
8f18cf13 2744 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
890871be 2745 read_unlock(&em_tree->lock);
8f18cf13 2746
47ab2a6c
JB
2747 if (!em || em->start > chunk_offset ||
2748 em->start + em->len < chunk_offset) {
2749 /*
2750 * This is a logic error, but we don't want to just rely on the
2751 * user having built with ASSERT enabled, so if ASSERT doens't
2752 * do anything we still error out.
2753 */
2754 ASSERT(0);
2755 if (em)
2756 free_extent_map(em);
2757 return -EINVAL;
2758 }
95617d69 2759 map = em->map_lookup;
39c2d7fa 2760 lock_chunks(root->fs_info->chunk_root);
4617ea3a 2761 check_system_chunk(trans, extent_root, map->type);
39c2d7fa 2762 unlock_chunks(root->fs_info->chunk_root);
8f18cf13
CM
2763
2764 for (i = 0; i < map->num_stripes; i++) {
47ab2a6c 2765 struct btrfs_device *device = map->stripes[i].dev;
2196d6e8
MX
2766 ret = btrfs_free_dev_extent(trans, device,
2767 map->stripes[i].physical,
2768 &dev_extent_len);
47ab2a6c
JB
2769 if (ret) {
2770 btrfs_abort_transaction(trans, root, ret);
2771 goto out;
2772 }
a061fc8d 2773
2196d6e8
MX
2774 if (device->bytes_used > 0) {
2775 lock_chunks(root);
2776 btrfs_device_set_bytes_used(device,
2777 device->bytes_used - dev_extent_len);
2778 spin_lock(&root->fs_info->free_chunk_lock);
2779 root->fs_info->free_chunk_space += dev_extent_len;
2780 spin_unlock(&root->fs_info->free_chunk_lock);
2781 btrfs_clear_space_info_full(root->fs_info);
2782 unlock_chunks(root);
2783 }
a061fc8d 2784
dfe25020
CM
2785 if (map->stripes[i].dev) {
2786 ret = btrfs_update_device(trans, map->stripes[i].dev);
47ab2a6c
JB
2787 if (ret) {
2788 btrfs_abort_transaction(trans, root, ret);
2789 goto out;
2790 }
dfe25020 2791 }
8f18cf13 2792 }
a688a04a 2793 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
47ab2a6c
JB
2794 if (ret) {
2795 btrfs_abort_transaction(trans, root, ret);
2796 goto out;
2797 }
8f18cf13 2798
1abe9b8a 2799 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2800
8f18cf13
CM
2801 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2802 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
47ab2a6c
JB
2803 if (ret) {
2804 btrfs_abort_transaction(trans, root, ret);
2805 goto out;
2806 }
8f18cf13
CM
2807 }
2808
04216820 2809 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
47ab2a6c
JB
2810 if (ret) {
2811 btrfs_abort_transaction(trans, extent_root, ret);
2812 goto out;
2813 }
2b82032c 2814
47ab2a6c 2815out:
2b82032c
YZ
2816 /* once for us */
2817 free_extent_map(em);
47ab2a6c
JB
2818 return ret;
2819}
2b82032c 2820
dc2ee4e2 2821static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
47ab2a6c
JB
2822{
2823 struct btrfs_root *extent_root;
2824 struct btrfs_trans_handle *trans;
2825 int ret;
2b82032c 2826
47ab2a6c
JB
2827 root = root->fs_info->chunk_root;
2828 extent_root = root->fs_info->extent_root;
2829
67c5e7d4
FM
2830 /*
2831 * Prevent races with automatic removal of unused block groups.
2832 * After we relocate and before we remove the chunk with offset
2833 * chunk_offset, automatic removal of the block group can kick in,
2834 * resulting in a failure when calling btrfs_remove_chunk() below.
2835 *
2836 * Make sure to acquire this mutex before doing a tree search (dev
2837 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2838 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2839 * we release the path used to search the chunk/dev tree and before
2840 * the current task acquires this mutex and calls us.
2841 */
2842 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2843
47ab2a6c
JB
2844 ret = btrfs_can_relocate(extent_root, chunk_offset);
2845 if (ret)
2846 return -ENOSPC;
2847
2848 /* step one, relocate all the extents inside this chunk */
55e3a601 2849 btrfs_scrub_pause(root);
47ab2a6c 2850 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
55e3a601 2851 btrfs_scrub_continue(root);
47ab2a6c
JB
2852 if (ret)
2853 return ret;
2854
7fd01182
FM
2855 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2856 chunk_offset);
47ab2a6c
JB
2857 if (IS_ERR(trans)) {
2858 ret = PTR_ERR(trans);
a4553fef 2859 btrfs_std_error(root->fs_info, ret, NULL);
47ab2a6c
JB
2860 return ret;
2861 }
2862
2863 /*
2864 * step two, delete the device extents and the
2865 * chunk tree entries
2866 */
2867 ret = btrfs_remove_chunk(trans, root, chunk_offset);
2b82032c 2868 btrfs_end_transaction(trans, root);
47ab2a6c 2869 return ret;
2b82032c
YZ
2870}
2871
2872static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2873{
2874 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2875 struct btrfs_path *path;
2876 struct extent_buffer *leaf;
2877 struct btrfs_chunk *chunk;
2878 struct btrfs_key key;
2879 struct btrfs_key found_key;
2b82032c 2880 u64 chunk_type;
ba1bf481
JB
2881 bool retried = false;
2882 int failed = 0;
2b82032c
YZ
2883 int ret;
2884
2885 path = btrfs_alloc_path();
2886 if (!path)
2887 return -ENOMEM;
2888
ba1bf481 2889again:
2b82032c
YZ
2890 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2891 key.offset = (u64)-1;
2892 key.type = BTRFS_CHUNK_ITEM_KEY;
2893
2894 while (1) {
67c5e7d4 2895 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
2b82032c 2896 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
67c5e7d4
FM
2897 if (ret < 0) {
2898 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
2b82032c 2899 goto error;
67c5e7d4 2900 }
79787eaa 2901 BUG_ON(ret == 0); /* Corruption */
2b82032c
YZ
2902
2903 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2904 key.type);
67c5e7d4
FM
2905 if (ret)
2906 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
2b82032c
YZ
2907 if (ret < 0)
2908 goto error;
2909 if (ret > 0)
2910 break;
1a40e23b 2911
2b82032c
YZ
2912 leaf = path->nodes[0];
2913 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1a40e23b 2914
2b82032c
YZ
2915 chunk = btrfs_item_ptr(leaf, path->slots[0],
2916 struct btrfs_chunk);
2917 chunk_type = btrfs_chunk_type(leaf, chunk);
b3b4aa74 2918 btrfs_release_path(path);
8f18cf13 2919
2b82032c 2920 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
a688a04a 2921 ret = btrfs_relocate_chunk(chunk_root,
2b82032c 2922 found_key.offset);
ba1bf481
JB
2923 if (ret == -ENOSPC)
2924 failed++;
14586651
HS
2925 else
2926 BUG_ON(ret);
2b82032c 2927 }
67c5e7d4 2928 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
8f18cf13 2929
2b82032c
YZ
2930 if (found_key.offset == 0)
2931 break;
2932 key.offset = found_key.offset - 1;
2933 }
2934 ret = 0;
ba1bf481
JB
2935 if (failed && !retried) {
2936 failed = 0;
2937 retried = true;
2938 goto again;
fae7f21c 2939 } else if (WARN_ON(failed && retried)) {
ba1bf481
JB
2940 ret = -ENOSPC;
2941 }
2b82032c
YZ
2942error:
2943 btrfs_free_path(path);
2944 return ret;
8f18cf13
CM
2945}
2946
0940ebf6
ID
2947static int insert_balance_item(struct btrfs_root *root,
2948 struct btrfs_balance_control *bctl)
2949{
2950 struct btrfs_trans_handle *trans;
2951 struct btrfs_balance_item *item;
2952 struct btrfs_disk_balance_args disk_bargs;
2953 struct btrfs_path *path;
2954 struct extent_buffer *leaf;
2955 struct btrfs_key key;
2956 int ret, err;
2957
2958 path = btrfs_alloc_path();
2959 if (!path)
2960 return -ENOMEM;
2961
2962 trans = btrfs_start_transaction(root, 0);
2963 if (IS_ERR(trans)) {
2964 btrfs_free_path(path);
2965 return PTR_ERR(trans);
2966 }
2967
2968 key.objectid = BTRFS_BALANCE_OBJECTID;
2969 key.type = BTRFS_BALANCE_ITEM_KEY;
2970 key.offset = 0;
2971
2972 ret = btrfs_insert_empty_item(trans, root, path, &key,
2973 sizeof(*item));
2974 if (ret)
2975 goto out;
2976
2977 leaf = path->nodes[0];
2978 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2979
2980 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2981
2982 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2983 btrfs_set_balance_data(leaf, item, &disk_bargs);
2984 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2985 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2986 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2987 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2988
2989 btrfs_set_balance_flags(leaf, item, bctl->flags);
2990
2991 btrfs_mark_buffer_dirty(leaf);
2992out:
2993 btrfs_free_path(path);
2994 err = btrfs_commit_transaction(trans, root);
2995 if (err && !ret)
2996 ret = err;
2997 return ret;
2998}
2999
3000static int del_balance_item(struct btrfs_root *root)
3001{
3002 struct btrfs_trans_handle *trans;
3003 struct btrfs_path *path;
3004 struct btrfs_key key;
3005 int ret, err;
3006
3007 path = btrfs_alloc_path();
3008 if (!path)
3009 return -ENOMEM;
3010
3011 trans = btrfs_start_transaction(root, 0);
3012 if (IS_ERR(trans)) {
3013 btrfs_free_path(path);
3014 return PTR_ERR(trans);
3015 }
3016
3017 key.objectid = BTRFS_BALANCE_OBJECTID;
3018 key.type = BTRFS_BALANCE_ITEM_KEY;
3019 key.offset = 0;
3020
3021 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3022 if (ret < 0)
3023 goto out;
3024 if (ret > 0) {
3025 ret = -ENOENT;
3026 goto out;
3027 }
3028
3029 ret = btrfs_del_item(trans, root, path);
3030out:
3031 btrfs_free_path(path);
3032 err = btrfs_commit_transaction(trans, root);
3033 if (err && !ret)
3034 ret = err;
3035 return ret;
3036}
3037
59641015
ID
3038/*
3039 * This is a heuristic used to reduce the number of chunks balanced on
3040 * resume after balance was interrupted.
3041 */
3042static void update_balance_args(struct btrfs_balance_control *bctl)
3043{
3044 /*
3045 * Turn on soft mode for chunk types that were being converted.
3046 */
3047 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3048 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3049 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3050 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3051 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3052 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3053
3054 /*
3055 * Turn on usage filter if is not already used. The idea is
3056 * that chunks that we have already balanced should be
3057 * reasonably full. Don't do it for chunks that are being
3058 * converted - that will keep us from relocating unconverted
3059 * (albeit full) chunks.
3060 */
3061 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
bc309467 3062 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
59641015
ID
3063 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3064 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3065 bctl->data.usage = 90;
3066 }
3067 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
bc309467 3068 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
59641015
ID
3069 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3070 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3071 bctl->sys.usage = 90;
3072 }
3073 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
bc309467 3074 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
59641015
ID
3075 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3076 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3077 bctl->meta.usage = 90;
3078 }
3079}
3080
c9e9f97b
ID
3081/*
3082 * Should be called with both balance and volume mutexes held to
3083 * serialize other volume operations (add_dev/rm_dev/resize) with
3084 * restriper. Same goes for unset_balance_control.
3085 */
3086static void set_balance_control(struct btrfs_balance_control *bctl)
3087{
3088 struct btrfs_fs_info *fs_info = bctl->fs_info;
3089
3090 BUG_ON(fs_info->balance_ctl);
3091
3092 spin_lock(&fs_info->balance_lock);
3093 fs_info->balance_ctl = bctl;
3094 spin_unlock(&fs_info->balance_lock);
3095}
3096
3097static void unset_balance_control(struct btrfs_fs_info *fs_info)
3098{
3099 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3100
3101 BUG_ON(!fs_info->balance_ctl);
3102
3103 spin_lock(&fs_info->balance_lock);
3104 fs_info->balance_ctl = NULL;
3105 spin_unlock(&fs_info->balance_lock);
3106
3107 kfree(bctl);
3108}
3109
ed25e9b2
ID
3110/*
3111 * Balance filters. Return 1 if chunk should be filtered out
3112 * (should not be balanced).
3113 */
899c81ea 3114static int chunk_profiles_filter(u64 chunk_type,
ed25e9b2
ID
3115 struct btrfs_balance_args *bargs)
3116{
899c81ea
ID
3117 chunk_type = chunk_to_extended(chunk_type) &
3118 BTRFS_EXTENDED_PROFILE_MASK;
ed25e9b2 3119
899c81ea 3120 if (bargs->profiles & chunk_type)
ed25e9b2
ID
3121 return 0;
3122
3123 return 1;
3124}
3125
dba72cb3 3126static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
5ce5b3c0 3127 struct btrfs_balance_args *bargs)
bc309467
DS
3128{
3129 struct btrfs_block_group_cache *cache;
3130 u64 chunk_used;
3131 u64 user_thresh_min;
3132 u64 user_thresh_max;
3133 int ret = 1;
3134
3135 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3136 chunk_used = btrfs_block_group_used(&cache->item);
3137
3138 if (bargs->usage_min == 0)
3139 user_thresh_min = 0;
3140 else
3141 user_thresh_min = div_factor_fine(cache->key.offset,
3142 bargs->usage_min);
3143
3144 if (bargs->usage_max == 0)
3145 user_thresh_max = 1;
3146 else if (bargs->usage_max > 100)
3147 user_thresh_max = cache->key.offset;
3148 else
3149 user_thresh_max = div_factor_fine(cache->key.offset,
3150 bargs->usage_max);
3151
3152 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3153 ret = 0;
3154
3155 btrfs_put_block_group(cache);
3156 return ret;
3157}
3158
dba72cb3 3159static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
bc309467 3160 u64 chunk_offset, struct btrfs_balance_args *bargs)
5ce5b3c0
ID
3161{
3162 struct btrfs_block_group_cache *cache;
3163 u64 chunk_used, user_thresh;
3164 int ret = 1;
3165
3166 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3167 chunk_used = btrfs_block_group_used(&cache->item);
3168
bc309467 3169 if (bargs->usage_min == 0)
3e39cea6 3170 user_thresh = 1;
a105bb88
ID
3171 else if (bargs->usage > 100)
3172 user_thresh = cache->key.offset;
3173 else
3174 user_thresh = div_factor_fine(cache->key.offset,
3175 bargs->usage);
3176
5ce5b3c0
ID
3177 if (chunk_used < user_thresh)
3178 ret = 0;
3179
3180 btrfs_put_block_group(cache);
3181 return ret;
3182}
3183
409d404b
ID
3184static int chunk_devid_filter(struct extent_buffer *leaf,
3185 struct btrfs_chunk *chunk,
3186 struct btrfs_balance_args *bargs)
3187{
3188 struct btrfs_stripe *stripe;
3189 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3190 int i;
3191
3192 for (i = 0; i < num_stripes; i++) {
3193 stripe = btrfs_stripe_nr(chunk, i);
3194 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3195 return 0;
3196 }
3197
3198 return 1;
3199}
3200
94e60d5a
ID
3201/* [pstart, pend) */
3202static int chunk_drange_filter(struct extent_buffer *leaf,
3203 struct btrfs_chunk *chunk,
3204 u64 chunk_offset,
3205 struct btrfs_balance_args *bargs)
3206{
3207 struct btrfs_stripe *stripe;
3208 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3209 u64 stripe_offset;
3210 u64 stripe_length;
3211 int factor;
3212 int i;
3213
3214 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3215 return 0;
3216
3217 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
53b381b3
DW
3218 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3219 factor = num_stripes / 2;
3220 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3221 factor = num_stripes - 1;
3222 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3223 factor = num_stripes - 2;
3224 } else {
3225 factor = num_stripes;
3226 }
94e60d5a
ID
3227
3228 for (i = 0; i < num_stripes; i++) {
3229 stripe = btrfs_stripe_nr(chunk, i);
3230 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3231 continue;
3232
3233 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3234 stripe_length = btrfs_chunk_length(leaf, chunk);
b8b93add 3235 stripe_length = div_u64(stripe_length, factor);
94e60d5a
ID
3236
3237 if (stripe_offset < bargs->pend &&
3238 stripe_offset + stripe_length > bargs->pstart)
3239 return 0;
3240 }
3241
3242 return 1;
3243}
3244
ea67176a
ID
3245/* [vstart, vend) */
3246static int chunk_vrange_filter(struct extent_buffer *leaf,
3247 struct btrfs_chunk *chunk,
3248 u64 chunk_offset,
3249 struct btrfs_balance_args *bargs)
3250{
3251 if (chunk_offset < bargs->vend &&
3252 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3253 /* at least part of the chunk is inside this vrange */
3254 return 0;
3255
3256 return 1;
3257}
3258
dee32d0a
GAP
3259static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3260 struct btrfs_chunk *chunk,
3261 struct btrfs_balance_args *bargs)
3262{
3263 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3264
3265 if (bargs->stripes_min <= num_stripes
3266 && num_stripes <= bargs->stripes_max)
3267 return 0;
3268
3269 return 1;
3270}
3271
899c81ea 3272static int chunk_soft_convert_filter(u64 chunk_type,
cfa4c961
ID
3273 struct btrfs_balance_args *bargs)
3274{
3275 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3276 return 0;
3277
899c81ea
ID
3278 chunk_type = chunk_to_extended(chunk_type) &
3279 BTRFS_EXTENDED_PROFILE_MASK;
cfa4c961 3280
899c81ea 3281 if (bargs->target == chunk_type)
cfa4c961
ID
3282 return 1;
3283
3284 return 0;
3285}
3286
f43ffb60
ID
3287static int should_balance_chunk(struct btrfs_root *root,
3288 struct extent_buffer *leaf,
3289 struct btrfs_chunk *chunk, u64 chunk_offset)
3290{
3291 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3292 struct btrfs_balance_args *bargs = NULL;
3293 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3294
3295 /* type filter */
3296 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3297 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3298 return 0;
3299 }
3300
3301 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3302 bargs = &bctl->data;
3303 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3304 bargs = &bctl->sys;
3305 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3306 bargs = &bctl->meta;
3307
ed25e9b2
ID
3308 /* profiles filter */
3309 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3310 chunk_profiles_filter(chunk_type, bargs)) {
3311 return 0;
5ce5b3c0
ID
3312 }
3313
3314 /* usage filter */
3315 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3316 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3317 return 0;
bc309467
DS
3318 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
3319 chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) {
3320 return 0;
409d404b
ID
3321 }
3322
3323 /* devid filter */
3324 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3325 chunk_devid_filter(leaf, chunk, bargs)) {
3326 return 0;
94e60d5a
ID
3327 }
3328
3329 /* drange filter, makes sense only with devid filter */
3330 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3331 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3332 return 0;
ea67176a
ID
3333 }
3334
3335 /* vrange filter */
3336 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3337 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3338 return 0;
ed25e9b2
ID
3339 }
3340
dee32d0a
GAP
3341 /* stripes filter */
3342 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3343 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3344 return 0;
3345 }
3346
cfa4c961
ID
3347 /* soft profile changing mode */
3348 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3349 chunk_soft_convert_filter(chunk_type, bargs)) {
3350 return 0;
3351 }
3352
7d824b6f
DS
3353 /*
3354 * limited by count, must be the last filter
3355 */
3356 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3357 if (bargs->limit == 0)
3358 return 0;
3359 else
3360 bargs->limit--;
12907fc7
DS
3361 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3362 /*
3363 * Same logic as the 'limit' filter; the minimum cannot be
3364 * determined here because we do not have the global informatoin
3365 * about the count of all chunks that satisfy the filters.
3366 */
3367 if (bargs->limit_max == 0)
3368 return 0;
3369 else
3370 bargs->limit_max--;
7d824b6f
DS
3371 }
3372
f43ffb60
ID
3373 return 1;
3374}
3375
c9e9f97b 3376static int __btrfs_balance(struct btrfs_fs_info *fs_info)
ec44a35c 3377{
19a39dce 3378 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
c9e9f97b
ID
3379 struct btrfs_root *chunk_root = fs_info->chunk_root;
3380 struct btrfs_root *dev_root = fs_info->dev_root;
3381 struct list_head *devices;
ec44a35c
CM
3382 struct btrfs_device *device;
3383 u64 old_size;
3384 u64 size_to_free;
12907fc7 3385 u64 chunk_type;
f43ffb60 3386 struct btrfs_chunk *chunk;
ec44a35c
CM
3387 struct btrfs_path *path;
3388 struct btrfs_key key;
ec44a35c 3389 struct btrfs_key found_key;
c9e9f97b 3390 struct btrfs_trans_handle *trans;
f43ffb60
ID
3391 struct extent_buffer *leaf;
3392 int slot;
c9e9f97b
ID
3393 int ret;
3394 int enospc_errors = 0;
19a39dce 3395 bool counting = true;
12907fc7 3396 /* The single value limit and min/max limits use the same bytes in the */
7d824b6f
DS
3397 u64 limit_data = bctl->data.limit;
3398 u64 limit_meta = bctl->meta.limit;
3399 u64 limit_sys = bctl->sys.limit;
12907fc7
DS
3400 u32 count_data = 0;
3401 u32 count_meta = 0;
3402 u32 count_sys = 0;
2c9fe835 3403 int chunk_reserved = 0;
ec44a35c 3404
ec44a35c 3405 /* step one make some room on all the devices */
c9e9f97b 3406 devices = &fs_info->fs_devices->devices;
c6e30871 3407 list_for_each_entry(device, devices, dev_list) {
7cc8e58d 3408 old_size = btrfs_device_get_total_bytes(device);
ec44a35c 3409 size_to_free = div_factor(old_size, 1);
ee22184b 3410 size_to_free = min_t(u64, size_to_free, SZ_1M);
2b82032c 3411 if (!device->writeable ||
7cc8e58d
MX
3412 btrfs_device_get_total_bytes(device) -
3413 btrfs_device_get_bytes_used(device) > size_to_free ||
63a212ab 3414 device->is_tgtdev_for_dev_replace)
ec44a35c
CM
3415 continue;
3416
3417 ret = btrfs_shrink_device(device, old_size - size_to_free);
ba1bf481
JB
3418 if (ret == -ENOSPC)
3419 break;
ec44a35c
CM
3420 BUG_ON(ret);
3421
a22285a6 3422 trans = btrfs_start_transaction(dev_root, 0);
98d5dc13 3423 BUG_ON(IS_ERR(trans));
ec44a35c
CM
3424
3425 ret = btrfs_grow_device(trans, device, old_size);
3426 BUG_ON(ret);
3427
3428 btrfs_end_transaction(trans, dev_root);
3429 }
3430
3431 /* step two, relocate all the chunks */
3432 path = btrfs_alloc_path();
17e9f796
MF
3433 if (!path) {
3434 ret = -ENOMEM;
3435 goto error;
3436 }
19a39dce
ID
3437
3438 /* zero out stat counters */
3439 spin_lock(&fs_info->balance_lock);
3440 memset(&bctl->stat, 0, sizeof(bctl->stat));
3441 spin_unlock(&fs_info->balance_lock);
3442again:
7d824b6f 3443 if (!counting) {
12907fc7
DS
3444 /*
3445 * The single value limit and min/max limits use the same bytes
3446 * in the
3447 */
7d824b6f
DS
3448 bctl->data.limit = limit_data;
3449 bctl->meta.limit = limit_meta;
3450 bctl->sys.limit = limit_sys;
3451 }
ec44a35c
CM
3452 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3453 key.offset = (u64)-1;
3454 key.type = BTRFS_CHUNK_ITEM_KEY;
3455
d397712b 3456 while (1) {
19a39dce 3457 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
a7e99c69 3458 atomic_read(&fs_info->balance_cancel_req)) {
837d5b6e
ID
3459 ret = -ECANCELED;
3460 goto error;
3461 }
3462
67c5e7d4 3463 mutex_lock(&fs_info->delete_unused_bgs_mutex);
ec44a35c 3464 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
67c5e7d4
FM
3465 if (ret < 0) {
3466 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
ec44a35c 3467 goto error;
67c5e7d4 3468 }
ec44a35c
CM
3469
3470 /*
3471 * this shouldn't happen, it means the last relocate
3472 * failed
3473 */
3474 if (ret == 0)
c9e9f97b 3475 BUG(); /* FIXME break ? */
ec44a35c
CM
3476
3477 ret = btrfs_previous_item(chunk_root, path, 0,
3478 BTRFS_CHUNK_ITEM_KEY);
c9e9f97b 3479 if (ret) {
67c5e7d4 3480 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
c9e9f97b 3481 ret = 0;
ec44a35c 3482 break;
c9e9f97b 3483 }
7d9eb12c 3484
f43ffb60
ID
3485 leaf = path->nodes[0];
3486 slot = path->slots[0];
3487 btrfs_item_key_to_cpu(leaf, &found_key, slot);
7d9eb12c 3488
67c5e7d4
FM
3489 if (found_key.objectid != key.objectid) {
3490 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
ec44a35c 3491 break;
67c5e7d4 3492 }
7d9eb12c 3493
f43ffb60 3494 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
12907fc7 3495 chunk_type = btrfs_chunk_type(leaf, chunk);
f43ffb60 3496
19a39dce
ID
3497 if (!counting) {
3498 spin_lock(&fs_info->balance_lock);
3499 bctl->stat.considered++;
3500 spin_unlock(&fs_info->balance_lock);
3501 }
3502
f43ffb60
ID
3503 ret = should_balance_chunk(chunk_root, leaf, chunk,
3504 found_key.offset);
2c9fe835 3505
b3b4aa74 3506 btrfs_release_path(path);
67c5e7d4
FM
3507 if (!ret) {
3508 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
f43ffb60 3509 goto loop;
67c5e7d4 3510 }
f43ffb60 3511
19a39dce 3512 if (counting) {
67c5e7d4 3513 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
19a39dce
ID
3514 spin_lock(&fs_info->balance_lock);
3515 bctl->stat.expected++;
3516 spin_unlock(&fs_info->balance_lock);
12907fc7
DS
3517
3518 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3519 count_data++;
3520 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3521 count_sys++;
3522 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3523 count_meta++;
3524
3525 goto loop;
3526 }
3527
3528 /*
3529 * Apply limit_min filter, no need to check if the LIMITS
3530 * filter is used, limit_min is 0 by default
3531 */
3532 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3533 count_data < bctl->data.limit_min)
3534 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3535 count_meta < bctl->meta.limit_min)
3536 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3537 count_sys < bctl->sys.limit_min)) {
3538 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
19a39dce
ID
3539 goto loop;
3540 }
3541
2c9fe835
ZL
3542 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && !chunk_reserved) {
3543 trans = btrfs_start_transaction(chunk_root, 0);
3544 if (IS_ERR(trans)) {
3545 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3546 ret = PTR_ERR(trans);
3547 goto error;
3548 }
3549
3550 ret = btrfs_force_chunk_alloc(trans, chunk_root,
3551 BTRFS_BLOCK_GROUP_DATA);
8a7d656f 3552 btrfs_end_transaction(trans, chunk_root);
2c9fe835
ZL
3553 if (ret < 0) {
3554 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3555 goto error;
3556 }
2c9fe835
ZL
3557 chunk_reserved = 1;
3558 }
3559
ec44a35c 3560 ret = btrfs_relocate_chunk(chunk_root,
ec44a35c 3561 found_key.offset);
67c5e7d4 3562 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
508794eb
JB
3563 if (ret && ret != -ENOSPC)
3564 goto error;
19a39dce 3565 if (ret == -ENOSPC) {
c9e9f97b 3566 enospc_errors++;
19a39dce
ID
3567 } else {
3568 spin_lock(&fs_info->balance_lock);
3569 bctl->stat.completed++;
3570 spin_unlock(&fs_info->balance_lock);
3571 }
f43ffb60 3572loop:
795a3321
ID
3573 if (found_key.offset == 0)
3574 break;
ba1bf481 3575 key.offset = found_key.offset - 1;
ec44a35c 3576 }
c9e9f97b 3577
19a39dce
ID
3578 if (counting) {
3579 btrfs_release_path(path);
3580 counting = false;
3581 goto again;
3582 }
ec44a35c
CM
3583error:
3584 btrfs_free_path(path);
c9e9f97b 3585 if (enospc_errors) {
efe120a0 3586 btrfs_info(fs_info, "%d enospc errors during balance",
c9e9f97b
ID
3587 enospc_errors);
3588 if (!ret)
3589 ret = -ENOSPC;
3590 }
3591
ec44a35c
CM
3592 return ret;
3593}
3594
0c460c0d
ID
3595/**
3596 * alloc_profile_is_valid - see if a given profile is valid and reduced
3597 * @flags: profile to validate
3598 * @extended: if true @flags is treated as an extended profile
3599 */
3600static int alloc_profile_is_valid(u64 flags, int extended)
3601{
3602 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3603 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3604
3605 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3606
3607 /* 1) check that all other bits are zeroed */
3608 if (flags & ~mask)
3609 return 0;
3610
3611 /* 2) see if profile is reduced */
3612 if (flags == 0)
3613 return !extended; /* "0" is valid for usual profiles */
3614
3615 /* true if exactly one bit set */
3616 return (flags & (flags - 1)) == 0;
3617}
3618
837d5b6e
ID
3619static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3620{
a7e99c69
ID
3621 /* cancel requested || normal exit path */
3622 return atomic_read(&fs_info->balance_cancel_req) ||
3623 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3624 atomic_read(&fs_info->balance_cancel_req) == 0);
837d5b6e
ID
3625}
3626
c9e9f97b
ID
3627static void __cancel_balance(struct btrfs_fs_info *fs_info)
3628{
0940ebf6
ID
3629 int ret;
3630
c9e9f97b 3631 unset_balance_control(fs_info);
0940ebf6 3632 ret = del_balance_item(fs_info->tree_root);
0f788c58 3633 if (ret)
a4553fef 3634 btrfs_std_error(fs_info, ret, NULL);
ed0fb78f
ID
3635
3636 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
c9e9f97b
ID
3637}
3638
bdcd3c97
AM
3639/* Non-zero return value signifies invalidity */
3640static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3641 u64 allowed)
3642{
3643 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3644 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3645 (bctl_arg->target & ~allowed)));
3646}
3647
c9e9f97b
ID
3648/*
3649 * Should be called with both balance and volume mutexes held
3650 */
3651int btrfs_balance(struct btrfs_balance_control *bctl,
3652 struct btrfs_ioctl_balance_args *bargs)
3653{
3654 struct btrfs_fs_info *fs_info = bctl->fs_info;
f43ffb60 3655 u64 allowed;
e4837f8f 3656 int mixed = 0;
c9e9f97b 3657 int ret;
8dabb742 3658 u64 num_devices;
de98ced9 3659 unsigned seq;
c9e9f97b 3660
837d5b6e 3661 if (btrfs_fs_closing(fs_info) ||
a7e99c69
ID
3662 atomic_read(&fs_info->balance_pause_req) ||
3663 atomic_read(&fs_info->balance_cancel_req)) {
c9e9f97b
ID
3664 ret = -EINVAL;
3665 goto out;
3666 }
3667
e4837f8f
ID
3668 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3669 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3670 mixed = 1;
3671
f43ffb60
ID
3672 /*
3673 * In case of mixed groups both data and meta should be picked,
3674 * and identical options should be given for both of them.
3675 */
e4837f8f
ID
3676 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3677 if (mixed && (bctl->flags & allowed)) {
f43ffb60
ID
3678 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3679 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3680 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
efe120a0
FH
3681 btrfs_err(fs_info, "with mixed groups data and "
3682 "metadata balance options must be the same");
f43ffb60
ID
3683 ret = -EINVAL;
3684 goto out;
3685 }
3686 }
3687
8dabb742
SB
3688 num_devices = fs_info->fs_devices->num_devices;
3689 btrfs_dev_replace_lock(&fs_info->dev_replace);
3690 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3691 BUG_ON(num_devices < 1);
3692 num_devices--;
3693 }
3694 btrfs_dev_replace_unlock(&fs_info->dev_replace);
e4d8ec0f 3695 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
8dabb742 3696 if (num_devices == 1)
e4d8ec0f 3697 allowed |= BTRFS_BLOCK_GROUP_DUP;
8250dabe 3698 else if (num_devices > 1)
e4d8ec0f 3699 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
8250dabe
AP
3700 if (num_devices > 2)
3701 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3702 if (num_devices > 3)
3703 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3704 BTRFS_BLOCK_GROUP_RAID6);
bdcd3c97 3705 if (validate_convert_profile(&bctl->data, allowed)) {
efe120a0
FH
3706 btrfs_err(fs_info, "unable to start balance with target "
3707 "data profile %llu",
c1c9ff7c 3708 bctl->data.target);
e4d8ec0f
ID
3709 ret = -EINVAL;
3710 goto out;
3711 }
bdcd3c97 3712 if (validate_convert_profile(&bctl->meta, allowed)) {
efe120a0
FH
3713 btrfs_err(fs_info,
3714 "unable to start balance with target metadata profile %llu",
c1c9ff7c 3715 bctl->meta.target);
e4d8ec0f
ID
3716 ret = -EINVAL;
3717 goto out;
3718 }
bdcd3c97 3719 if (validate_convert_profile(&bctl->sys, allowed)) {
efe120a0
FH
3720 btrfs_err(fs_info,
3721 "unable to start balance with target system profile %llu",
c1c9ff7c 3722 bctl->sys.target);
e4d8ec0f
ID
3723 ret = -EINVAL;
3724 goto out;
3725 }
3726
e4d8ec0f
ID
3727 /* allow to reduce meta or sys integrity only if force set */
3728 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
53b381b3
DW
3729 BTRFS_BLOCK_GROUP_RAID10 |
3730 BTRFS_BLOCK_GROUP_RAID5 |
3731 BTRFS_BLOCK_GROUP_RAID6;
de98ced9
MX
3732 do {
3733 seq = read_seqbegin(&fs_info->profiles_lock);
3734
3735 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3736 (fs_info->avail_system_alloc_bits & allowed) &&
3737 !(bctl->sys.target & allowed)) ||
3738 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3739 (fs_info->avail_metadata_alloc_bits & allowed) &&
3740 !(bctl->meta.target & allowed))) {
3741 if (bctl->flags & BTRFS_BALANCE_FORCE) {
efe120a0 3742 btrfs_info(fs_info, "force reducing metadata integrity");
de98ced9 3743 } else {
efe120a0
FH
3744 btrfs_err(fs_info, "balance will reduce metadata "
3745 "integrity, use force if you want this");
de98ced9
MX
3746 ret = -EINVAL;
3747 goto out;
3748 }
e4d8ec0f 3749 }
de98ced9 3750 } while (read_seqretry(&fs_info->profiles_lock, seq));
e4d8ec0f 3751
ee592d07
ST
3752 if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
3753 btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
3754 btrfs_warn(fs_info,
fedc0045 3755 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
ee592d07
ST
3756 bctl->meta.target, bctl->data.target);
3757 }
3758
5af3e8cc 3759 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
943c6e99
ZL
3760 fs_info->num_tolerated_disk_barrier_failures = min(
3761 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3762 btrfs_get_num_tolerated_disk_barrier_failures(
3763 bctl->sys.target));
5af3e8cc
SB
3764 }
3765
0940ebf6 3766 ret = insert_balance_item(fs_info->tree_root, bctl);
59641015 3767 if (ret && ret != -EEXIST)
0940ebf6
ID
3768 goto out;
3769
59641015
ID
3770 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3771 BUG_ON(ret == -EEXIST);
3772 set_balance_control(bctl);
3773 } else {
3774 BUG_ON(ret != -EEXIST);
3775 spin_lock(&fs_info->balance_lock);
3776 update_balance_args(bctl);
3777 spin_unlock(&fs_info->balance_lock);
3778 }
c9e9f97b 3779
837d5b6e 3780 atomic_inc(&fs_info->balance_running);
c9e9f97b
ID
3781 mutex_unlock(&fs_info->balance_mutex);
3782
3783 ret = __btrfs_balance(fs_info);
3784
3785 mutex_lock(&fs_info->balance_mutex);
837d5b6e 3786 atomic_dec(&fs_info->balance_running);
c9e9f97b 3787
bf023ecf
ID
3788 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3789 fs_info->num_tolerated_disk_barrier_failures =
3790 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3791 }
3792
c9e9f97b
ID
3793 if (bargs) {
3794 memset(bargs, 0, sizeof(*bargs));
19a39dce 3795 update_ioctl_balance_args(fs_info, 0, bargs);
c9e9f97b
ID
3796 }
3797
3a01aa7a
ID
3798 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3799 balance_need_close(fs_info)) {
3800 __cancel_balance(fs_info);
3801 }
3802
837d5b6e 3803 wake_up(&fs_info->balance_wait_q);
c9e9f97b
ID
3804
3805 return ret;
3806out:
59641015
ID
3807 if (bctl->flags & BTRFS_BALANCE_RESUME)
3808 __cancel_balance(fs_info);
ed0fb78f 3809 else {
59641015 3810 kfree(bctl);
ed0fb78f
ID
3811 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3812 }
59641015
ID
3813 return ret;
3814}
3815
3816static int balance_kthread(void *data)
3817{
2b6ba629 3818 struct btrfs_fs_info *fs_info = data;
9555c6c1 3819 int ret = 0;
59641015
ID
3820
3821 mutex_lock(&fs_info->volume_mutex);
3822 mutex_lock(&fs_info->balance_mutex);
3823
2b6ba629 3824 if (fs_info->balance_ctl) {
efe120a0 3825 btrfs_info(fs_info, "continuing balance");
2b6ba629 3826 ret = btrfs_balance(fs_info->balance_ctl, NULL);
9555c6c1 3827 }
59641015
ID
3828
3829 mutex_unlock(&fs_info->balance_mutex);
3830 mutex_unlock(&fs_info->volume_mutex);
2b6ba629 3831
59641015
ID
3832 return ret;
3833}
3834
2b6ba629
ID
3835int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3836{
3837 struct task_struct *tsk;
3838
3839 spin_lock(&fs_info->balance_lock);
3840 if (!fs_info->balance_ctl) {
3841 spin_unlock(&fs_info->balance_lock);
3842 return 0;
3843 }
3844 spin_unlock(&fs_info->balance_lock);
3845
3846 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
efe120a0 3847 btrfs_info(fs_info, "force skipping balance");
2b6ba629
ID
3848 return 0;
3849 }
3850
3851 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
cd633972 3852 return PTR_ERR_OR_ZERO(tsk);
2b6ba629
ID
3853}
3854
68310a5e 3855int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
59641015 3856{
59641015
ID
3857 struct btrfs_balance_control *bctl;
3858 struct btrfs_balance_item *item;
3859 struct btrfs_disk_balance_args disk_bargs;
3860 struct btrfs_path *path;
3861 struct extent_buffer *leaf;
3862 struct btrfs_key key;
3863 int ret;
3864
3865 path = btrfs_alloc_path();
3866 if (!path)
3867 return -ENOMEM;
3868
59641015
ID
3869 key.objectid = BTRFS_BALANCE_OBJECTID;
3870 key.type = BTRFS_BALANCE_ITEM_KEY;
3871 key.offset = 0;
3872
68310a5e 3873 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
59641015 3874 if (ret < 0)
68310a5e 3875 goto out;
59641015
ID
3876 if (ret > 0) { /* ret = -ENOENT; */
3877 ret = 0;
68310a5e
ID
3878 goto out;
3879 }
3880
3881 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3882 if (!bctl) {
3883 ret = -ENOMEM;
3884 goto out;
59641015
ID
3885 }
3886
3887 leaf = path->nodes[0];
3888 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3889
68310a5e
ID
3890 bctl->fs_info = fs_info;
3891 bctl->flags = btrfs_balance_flags(leaf, item);
3892 bctl->flags |= BTRFS_BALANCE_RESUME;
59641015
ID
3893
3894 btrfs_balance_data(leaf, item, &disk_bargs);
3895 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3896 btrfs_balance_meta(leaf, item, &disk_bargs);
3897 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3898 btrfs_balance_sys(leaf, item, &disk_bargs);
3899 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3900
ed0fb78f
ID
3901 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3902
68310a5e
ID
3903 mutex_lock(&fs_info->volume_mutex);
3904 mutex_lock(&fs_info->balance_mutex);
59641015 3905
68310a5e
ID
3906 set_balance_control(bctl);
3907
3908 mutex_unlock(&fs_info->balance_mutex);
3909 mutex_unlock(&fs_info->volume_mutex);
59641015
ID
3910out:
3911 btrfs_free_path(path);
ec44a35c
CM
3912 return ret;
3913}
3914
837d5b6e
ID
3915int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3916{
3917 int ret = 0;
3918
3919 mutex_lock(&fs_info->balance_mutex);
3920 if (!fs_info->balance_ctl) {
3921 mutex_unlock(&fs_info->balance_mutex);
3922 return -ENOTCONN;
3923 }
3924
3925 if (atomic_read(&fs_info->balance_running)) {
3926 atomic_inc(&fs_info->balance_pause_req);
3927 mutex_unlock(&fs_info->balance_mutex);
3928
3929 wait_event(fs_info->balance_wait_q,
3930 atomic_read(&fs_info->balance_running) == 0);
3931
3932 mutex_lock(&fs_info->balance_mutex);
3933 /* we are good with balance_ctl ripped off from under us */
3934 BUG_ON(atomic_read(&fs_info->balance_running));
3935 atomic_dec(&fs_info->balance_pause_req);
3936 } else {
3937 ret = -ENOTCONN;
3938 }
3939
3940 mutex_unlock(&fs_info->balance_mutex);
3941 return ret;
3942}
3943
a7e99c69
ID
3944int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3945{
e649e587
ID
3946 if (fs_info->sb->s_flags & MS_RDONLY)
3947 return -EROFS;
3948
a7e99c69
ID
3949 mutex_lock(&fs_info->balance_mutex);
3950 if (!fs_info->balance_ctl) {
3951 mutex_unlock(&fs_info->balance_mutex);
3952 return -ENOTCONN;
3953 }
3954
3955 atomic_inc(&fs_info->balance_cancel_req);
3956 /*
3957 * if we are running just wait and return, balance item is
3958 * deleted in btrfs_balance in this case
3959 */
3960 if (atomic_read(&fs_info->balance_running)) {
3961 mutex_unlock(&fs_info->balance_mutex);
3962 wait_event(fs_info->balance_wait_q,
3963 atomic_read(&fs_info->balance_running) == 0);
3964 mutex_lock(&fs_info->balance_mutex);
3965 } else {
3966 /* __cancel_balance needs volume_mutex */
3967 mutex_unlock(&fs_info->balance_mutex);
3968 mutex_lock(&fs_info->volume_mutex);
3969 mutex_lock(&fs_info->balance_mutex);
3970
3971 if (fs_info->balance_ctl)
3972 __cancel_balance(fs_info);
3973
3974 mutex_unlock(&fs_info->volume_mutex);
3975 }
3976
3977 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3978 atomic_dec(&fs_info->balance_cancel_req);
3979 mutex_unlock(&fs_info->balance_mutex);
3980 return 0;
3981}
3982
803b2f54
SB
3983static int btrfs_uuid_scan_kthread(void *data)
3984{
3985 struct btrfs_fs_info *fs_info = data;
3986 struct btrfs_root *root = fs_info->tree_root;
3987 struct btrfs_key key;
3988 struct btrfs_key max_key;
3989 struct btrfs_path *path = NULL;
3990 int ret = 0;
3991 struct extent_buffer *eb;
3992 int slot;
3993 struct btrfs_root_item root_item;
3994 u32 item_size;
f45388f3 3995 struct btrfs_trans_handle *trans = NULL;
803b2f54
SB
3996
3997 path = btrfs_alloc_path();
3998 if (!path) {
3999 ret = -ENOMEM;
4000 goto out;
4001 }
4002
4003 key.objectid = 0;
4004 key.type = BTRFS_ROOT_ITEM_KEY;
4005 key.offset = 0;
4006
4007 max_key.objectid = (u64)-1;
4008 max_key.type = BTRFS_ROOT_ITEM_KEY;
4009 max_key.offset = (u64)-1;
4010
803b2f54 4011 while (1) {
6174d3cb 4012 ret = btrfs_search_forward(root, &key, path, 0);
803b2f54
SB
4013 if (ret) {
4014 if (ret > 0)
4015 ret = 0;
4016 break;
4017 }
4018
4019 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4020 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4021 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4022 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4023 goto skip;
4024
4025 eb = path->nodes[0];
4026 slot = path->slots[0];
4027 item_size = btrfs_item_size_nr(eb, slot);
4028 if (item_size < sizeof(root_item))
4029 goto skip;
4030
803b2f54
SB
4031 read_extent_buffer(eb, &root_item,
4032 btrfs_item_ptr_offset(eb, slot),
4033 (int)sizeof(root_item));
4034 if (btrfs_root_refs(&root_item) == 0)
4035 goto skip;
f45388f3
FDBM
4036
4037 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4038 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4039 if (trans)
4040 goto update_tree;
4041
4042 btrfs_release_path(path);
803b2f54
SB
4043 /*
4044 * 1 - subvol uuid item
4045 * 1 - received_subvol uuid item
4046 */
4047 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4048 if (IS_ERR(trans)) {
4049 ret = PTR_ERR(trans);
4050 break;
4051 }
f45388f3
FDBM
4052 continue;
4053 } else {
4054 goto skip;
4055 }
4056update_tree:
4057 if (!btrfs_is_empty_uuid(root_item.uuid)) {
803b2f54
SB
4058 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4059 root_item.uuid,
4060 BTRFS_UUID_KEY_SUBVOL,
4061 key.objectid);
4062 if (ret < 0) {
efe120a0 4063 btrfs_warn(fs_info, "uuid_tree_add failed %d",
803b2f54 4064 ret);
803b2f54
SB
4065 break;
4066 }
4067 }
4068
4069 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
803b2f54
SB
4070 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4071 root_item.received_uuid,
4072 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4073 key.objectid);
4074 if (ret < 0) {
efe120a0 4075 btrfs_warn(fs_info, "uuid_tree_add failed %d",
803b2f54 4076 ret);
803b2f54
SB
4077 break;
4078 }
4079 }
4080
f45388f3 4081skip:
803b2f54
SB
4082 if (trans) {
4083 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
f45388f3 4084 trans = NULL;
803b2f54
SB
4085 if (ret)
4086 break;
4087 }
4088
803b2f54
SB
4089 btrfs_release_path(path);
4090 if (key.offset < (u64)-1) {
4091 key.offset++;
4092 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4093 key.offset = 0;
4094 key.type = BTRFS_ROOT_ITEM_KEY;
4095 } else if (key.objectid < (u64)-1) {
4096 key.offset = 0;
4097 key.type = BTRFS_ROOT_ITEM_KEY;
4098 key.objectid++;
4099 } else {
4100 break;
4101 }
4102 cond_resched();
4103 }
4104
4105out:
4106 btrfs_free_path(path);
f45388f3
FDBM
4107 if (trans && !IS_ERR(trans))
4108 btrfs_end_transaction(trans, fs_info->uuid_root);
803b2f54 4109 if (ret)
efe120a0 4110 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
70f80175
SB
4111 else
4112 fs_info->update_uuid_tree_gen = 1;
803b2f54
SB
4113 up(&fs_info->uuid_tree_rescan_sem);
4114 return 0;
4115}
4116
70f80175
SB
4117/*
4118 * Callback for btrfs_uuid_tree_iterate().
4119 * returns:
4120 * 0 check succeeded, the entry is not outdated.
4121 * < 0 if an error occured.
4122 * > 0 if the check failed, which means the caller shall remove the entry.
4123 */
4124static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4125 u8 *uuid, u8 type, u64 subid)
4126{
4127 struct btrfs_key key;
4128 int ret = 0;
4129 struct btrfs_root *subvol_root;
4130
4131 if (type != BTRFS_UUID_KEY_SUBVOL &&
4132 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4133 goto out;
4134
4135 key.objectid = subid;
4136 key.type = BTRFS_ROOT_ITEM_KEY;
4137 key.offset = (u64)-1;
4138 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4139 if (IS_ERR(subvol_root)) {
4140 ret = PTR_ERR(subvol_root);
4141 if (ret == -ENOENT)
4142 ret = 1;
4143 goto out;
4144 }
4145
4146 switch (type) {
4147 case BTRFS_UUID_KEY_SUBVOL:
4148 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4149 ret = 1;
4150 break;
4151 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4152 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4153 BTRFS_UUID_SIZE))
4154 ret = 1;
4155 break;
4156 }
4157
4158out:
4159 return ret;
4160}
4161
4162static int btrfs_uuid_rescan_kthread(void *data)
4163{
4164 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4165 int ret;
4166
4167 /*
4168 * 1st step is to iterate through the existing UUID tree and
4169 * to delete all entries that contain outdated data.
4170 * 2nd step is to add all missing entries to the UUID tree.
4171 */
4172 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4173 if (ret < 0) {
efe120a0 4174 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
70f80175
SB
4175 up(&fs_info->uuid_tree_rescan_sem);
4176 return ret;
4177 }
4178 return btrfs_uuid_scan_kthread(data);
4179}
4180
f7a81ea4
SB
4181int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4182{
4183 struct btrfs_trans_handle *trans;
4184 struct btrfs_root *tree_root = fs_info->tree_root;
4185 struct btrfs_root *uuid_root;
803b2f54
SB
4186 struct task_struct *task;
4187 int ret;
f7a81ea4
SB
4188
4189 /*
4190 * 1 - root node
4191 * 1 - root item
4192 */
4193 trans = btrfs_start_transaction(tree_root, 2);
4194 if (IS_ERR(trans))
4195 return PTR_ERR(trans);
4196
4197 uuid_root = btrfs_create_tree(trans, fs_info,
4198 BTRFS_UUID_TREE_OBJECTID);
4199 if (IS_ERR(uuid_root)) {
6d13f549
DS
4200 ret = PTR_ERR(uuid_root);
4201 btrfs_abort_transaction(trans, tree_root, ret);
4202 return ret;
f7a81ea4
SB
4203 }
4204
4205 fs_info->uuid_root = uuid_root;
4206
803b2f54
SB
4207 ret = btrfs_commit_transaction(trans, tree_root);
4208 if (ret)
4209 return ret;
4210
4211 down(&fs_info->uuid_tree_rescan_sem);
4212 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4213 if (IS_ERR(task)) {
70f80175 4214 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
efe120a0 4215 btrfs_warn(fs_info, "failed to start uuid_scan task");
803b2f54
SB
4216 up(&fs_info->uuid_tree_rescan_sem);
4217 return PTR_ERR(task);
4218 }
4219
4220 return 0;
f7a81ea4 4221}
803b2f54 4222
70f80175
SB
4223int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4224{
4225 struct task_struct *task;
4226
4227 down(&fs_info->uuid_tree_rescan_sem);
4228 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4229 if (IS_ERR(task)) {
4230 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
efe120a0 4231 btrfs_warn(fs_info, "failed to start uuid_rescan task");
70f80175
SB
4232 up(&fs_info->uuid_tree_rescan_sem);
4233 return PTR_ERR(task);
4234 }
4235
4236 return 0;
4237}
4238
8f18cf13
CM
4239/*
4240 * shrinking a device means finding all of the device extents past
4241 * the new size, and then following the back refs to the chunks.
4242 * The chunk relocation code actually frees the device extent
4243 */
4244int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4245{
4246 struct btrfs_trans_handle *trans;
4247 struct btrfs_root *root = device->dev_root;
4248 struct btrfs_dev_extent *dev_extent = NULL;
4249 struct btrfs_path *path;
4250 u64 length;
8f18cf13
CM
4251 u64 chunk_offset;
4252 int ret;
4253 int slot;
ba1bf481
JB
4254 int failed = 0;
4255 bool retried = false;
53e489bc 4256 bool checked_pending_chunks = false;
8f18cf13
CM
4257 struct extent_buffer *l;
4258 struct btrfs_key key;
6c41761f 4259 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
8f18cf13 4260 u64 old_total = btrfs_super_total_bytes(super_copy);
7cc8e58d
MX
4261 u64 old_size = btrfs_device_get_total_bytes(device);
4262 u64 diff = old_size - new_size;
8f18cf13 4263
63a212ab
SB
4264 if (device->is_tgtdev_for_dev_replace)
4265 return -EINVAL;
4266
8f18cf13
CM
4267 path = btrfs_alloc_path();
4268 if (!path)
4269 return -ENOMEM;
4270
e4058b54 4271 path->reada = READA_FORWARD;
8f18cf13 4272
7d9eb12c
CM
4273 lock_chunks(root);
4274
7cc8e58d 4275 btrfs_device_set_total_bytes(device, new_size);
2bf64758 4276 if (device->writeable) {
2b82032c 4277 device->fs_devices->total_rw_bytes -= diff;
2bf64758
JB
4278 spin_lock(&root->fs_info->free_chunk_lock);
4279 root->fs_info->free_chunk_space -= diff;
4280 spin_unlock(&root->fs_info->free_chunk_lock);
4281 }
7d9eb12c 4282 unlock_chunks(root);
8f18cf13 4283
ba1bf481 4284again:
8f18cf13
CM
4285 key.objectid = device->devid;
4286 key.offset = (u64)-1;
4287 key.type = BTRFS_DEV_EXTENT_KEY;
4288
213e64da 4289 do {
67c5e7d4 4290 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
8f18cf13 4291 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
67c5e7d4
FM
4292 if (ret < 0) {
4293 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
8f18cf13 4294 goto done;
67c5e7d4 4295 }
8f18cf13
CM
4296
4297 ret = btrfs_previous_item(root, path, 0, key.type);
67c5e7d4
FM
4298 if (ret)
4299 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
8f18cf13
CM
4300 if (ret < 0)
4301 goto done;
4302 if (ret) {
4303 ret = 0;
b3b4aa74 4304 btrfs_release_path(path);
bf1fb512 4305 break;
8f18cf13
CM
4306 }
4307
4308 l = path->nodes[0];
4309 slot = path->slots[0];
4310 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4311
ba1bf481 4312 if (key.objectid != device->devid) {
67c5e7d4 4313 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
b3b4aa74 4314 btrfs_release_path(path);
bf1fb512 4315 break;
ba1bf481 4316 }
8f18cf13
CM
4317
4318 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4319 length = btrfs_dev_extent_length(l, dev_extent);
4320
ba1bf481 4321 if (key.offset + length <= new_size) {
67c5e7d4 4322 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
b3b4aa74 4323 btrfs_release_path(path);
d6397bae 4324 break;
ba1bf481 4325 }
8f18cf13 4326
8f18cf13 4327 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
b3b4aa74 4328 btrfs_release_path(path);
8f18cf13 4329
dc2ee4e2 4330 ret = btrfs_relocate_chunk(root, chunk_offset);
67c5e7d4 4331 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
ba1bf481 4332 if (ret && ret != -ENOSPC)
8f18cf13 4333 goto done;
ba1bf481
JB
4334 if (ret == -ENOSPC)
4335 failed++;
213e64da 4336 } while (key.offset-- > 0);
ba1bf481
JB
4337
4338 if (failed && !retried) {
4339 failed = 0;
4340 retried = true;
4341 goto again;
4342 } else if (failed && retried) {
4343 ret = -ENOSPC;
ba1bf481 4344 goto done;
8f18cf13
CM
4345 }
4346
d6397bae 4347 /* Shrinking succeeded, else we would be at "done". */
a22285a6 4348 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
4349 if (IS_ERR(trans)) {
4350 ret = PTR_ERR(trans);
4351 goto done;
4352 }
4353
d6397bae 4354 lock_chunks(root);
53e489bc
FM
4355
4356 /*
4357 * We checked in the above loop all device extents that were already in
4358 * the device tree. However before we have updated the device's
4359 * total_bytes to the new size, we might have had chunk allocations that
4360 * have not complete yet (new block groups attached to transaction
4361 * handles), and therefore their device extents were not yet in the
4362 * device tree and we missed them in the loop above. So if we have any
4363 * pending chunk using a device extent that overlaps the device range
4364 * that we can not use anymore, commit the current transaction and
4365 * repeat the search on the device tree - this way we guarantee we will
4366 * not have chunks using device extents that end beyond 'new_size'.
4367 */
4368 if (!checked_pending_chunks) {
4369 u64 start = new_size;
4370 u64 len = old_size - new_size;
4371
499f377f
JM
4372 if (contains_pending_extent(trans->transaction, device,
4373 &start, len)) {
53e489bc
FM
4374 unlock_chunks(root);
4375 checked_pending_chunks = true;
4376 failed = 0;
4377 retried = false;
4378 ret = btrfs_commit_transaction(trans, root);
4379 if (ret)
4380 goto done;
4381 goto again;
4382 }
4383 }
4384
7cc8e58d 4385 btrfs_device_set_disk_total_bytes(device, new_size);
935e5cc9
MX
4386 if (list_empty(&device->resized_list))
4387 list_add_tail(&device->resized_list,
4388 &root->fs_info->fs_devices->resized_devices);
d6397bae 4389
d6397bae
CB
4390 WARN_ON(diff > old_total);
4391 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4392 unlock_chunks(root);
2196d6e8
MX
4393
4394 /* Now btrfs_update_device() will change the on-disk size. */
4395 ret = btrfs_update_device(trans, device);
d6397bae 4396 btrfs_end_transaction(trans, root);
8f18cf13
CM
4397done:
4398 btrfs_free_path(path);
53e489bc
FM
4399 if (ret) {
4400 lock_chunks(root);
4401 btrfs_device_set_total_bytes(device, old_size);
4402 if (device->writeable)
4403 device->fs_devices->total_rw_bytes += diff;
4404 spin_lock(&root->fs_info->free_chunk_lock);
4405 root->fs_info->free_chunk_space += diff;
4406 spin_unlock(&root->fs_info->free_chunk_lock);
4407 unlock_chunks(root);
4408 }
8f18cf13
CM
4409 return ret;
4410}
4411
125ccb0a 4412static int btrfs_add_system_chunk(struct btrfs_root *root,
0b86a832
CM
4413 struct btrfs_key *key,
4414 struct btrfs_chunk *chunk, int item_size)
4415{
6c41761f 4416 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
0b86a832
CM
4417 struct btrfs_disk_key disk_key;
4418 u32 array_size;
4419 u8 *ptr;
4420
fe48a5c0 4421 lock_chunks(root);
0b86a832 4422 array_size = btrfs_super_sys_array_size(super_copy);
5f43f86e 4423 if (array_size + item_size + sizeof(disk_key)
fe48a5c0
MX
4424 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4425 unlock_chunks(root);
0b86a832 4426 return -EFBIG;
fe48a5c0 4427 }
0b86a832
CM
4428
4429 ptr = super_copy->sys_chunk_array + array_size;
4430 btrfs_cpu_key_to_disk(&disk_key, key);
4431 memcpy(ptr, &disk_key, sizeof(disk_key));
4432 ptr += sizeof(disk_key);
4433 memcpy(ptr, chunk, item_size);
4434 item_size += sizeof(disk_key);
4435 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
fe48a5c0
MX
4436 unlock_chunks(root);
4437
0b86a832
CM
4438 return 0;
4439}
4440
73c5de00
AJ
4441/*
4442 * sort the devices in descending order by max_avail, total_avail
4443 */
4444static int btrfs_cmp_device_info(const void *a, const void *b)
9b3f68b9 4445{
73c5de00
AJ
4446 const struct btrfs_device_info *di_a = a;
4447 const struct btrfs_device_info *di_b = b;
9b3f68b9 4448
73c5de00 4449 if (di_a->max_avail > di_b->max_avail)
b2117a39 4450 return -1;
73c5de00 4451 if (di_a->max_avail < di_b->max_avail)
b2117a39 4452 return 1;
73c5de00
AJ
4453 if (di_a->total_avail > di_b->total_avail)
4454 return -1;
4455 if (di_a->total_avail < di_b->total_avail)
4456 return 1;
4457 return 0;
b2117a39 4458}
0b86a832 4459
53b381b3
DW
4460static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4461{
4462 /* TODO allow them to set a preferred stripe size */
ee22184b 4463 return SZ_64K;
53b381b3
DW
4464}
4465
4466static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4467{
ffe2d203 4468 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
53b381b3
DW
4469 return;
4470
ceda0864 4471 btrfs_set_fs_incompat(info, RAID56);
14e46e04
DS
4472 btrfs_sysfs_feature_update(info, BTRFS_FEATURE_INCOMPAT_RAID56,
4473 FEAT_INCOMPAT);
53b381b3
DW
4474}
4475
23f8f9b7
GH
4476#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4477 - sizeof(struct btrfs_item) \
4478 - sizeof(struct btrfs_chunk)) \
4479 / sizeof(struct btrfs_stripe) + 1)
4480
4481#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4482 - 2 * sizeof(struct btrfs_disk_key) \
4483 - 2 * sizeof(struct btrfs_chunk)) \
4484 / sizeof(struct btrfs_stripe) + 1)
4485
73c5de00 4486static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
6df9a95e
JB
4487 struct btrfs_root *extent_root, u64 start,
4488 u64 type)
b2117a39 4489{
73c5de00
AJ
4490 struct btrfs_fs_info *info = extent_root->fs_info;
4491 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4492 struct list_head *cur;
4493 struct map_lookup *map = NULL;
4494 struct extent_map_tree *em_tree;
4495 struct extent_map *em;
4496 struct btrfs_device_info *devices_info = NULL;
4497 u64 total_avail;
4498 int num_stripes; /* total number of stripes to allocate */
53b381b3
DW
4499 int data_stripes; /* number of stripes that count for
4500 block group size */
73c5de00
AJ
4501 int sub_stripes; /* sub_stripes info for map */
4502 int dev_stripes; /* stripes per dev */
4503 int devs_max; /* max devs to use */
4504 int devs_min; /* min devs needed */
4505 int devs_increment; /* ndevs has to be a multiple of this */
4506 int ncopies; /* how many copies to data has */
4507 int ret;
4508 u64 max_stripe_size;
4509 u64 max_chunk_size;
4510 u64 stripe_size;
4511 u64 num_bytes;
53b381b3 4512 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
73c5de00
AJ
4513 int ndevs;
4514 int i;
4515 int j;
31e50229 4516 int index;
593060d7 4517
0c460c0d 4518 BUG_ON(!alloc_profile_is_valid(type, 0));
9b3f68b9 4519
73c5de00
AJ
4520 if (list_empty(&fs_devices->alloc_list))
4521 return -ENOSPC;
b2117a39 4522
31e50229 4523 index = __get_raid_index(type);
73c5de00 4524
31e50229
LB
4525 sub_stripes = btrfs_raid_array[index].sub_stripes;
4526 dev_stripes = btrfs_raid_array[index].dev_stripes;
4527 devs_max = btrfs_raid_array[index].devs_max;
4528 devs_min = btrfs_raid_array[index].devs_min;
4529 devs_increment = btrfs_raid_array[index].devs_increment;
4530 ncopies = btrfs_raid_array[index].ncopies;
b2117a39 4531
9b3f68b9 4532 if (type & BTRFS_BLOCK_GROUP_DATA) {
ee22184b 4533 max_stripe_size = SZ_1G;
73c5de00 4534 max_chunk_size = 10 * max_stripe_size;
23f8f9b7
GH
4535 if (!devs_max)
4536 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
9b3f68b9 4537 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
1100373f 4538 /* for larger filesystems, use larger metadata chunks */
ee22184b
BL
4539 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4540 max_stripe_size = SZ_1G;
1100373f 4541 else
ee22184b 4542 max_stripe_size = SZ_256M;
73c5de00 4543 max_chunk_size = max_stripe_size;
23f8f9b7
GH
4544 if (!devs_max)
4545 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
a40a90a0 4546 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
ee22184b 4547 max_stripe_size = SZ_32M;
73c5de00 4548 max_chunk_size = 2 * max_stripe_size;
23f8f9b7
GH
4549 if (!devs_max)
4550 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
73c5de00 4551 } else {
351fd353 4552 btrfs_err(info, "invalid chunk type 0x%llx requested",
73c5de00
AJ
4553 type);
4554 BUG_ON(1);
9b3f68b9
CM
4555 }
4556
2b82032c
YZ
4557 /* we don't want a chunk larger than 10% of writeable space */
4558 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4559 max_chunk_size);
9b3f68b9 4560
31e818fe 4561 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
73c5de00
AJ
4562 GFP_NOFS);
4563 if (!devices_info)
4564 return -ENOMEM;
0cad8a11 4565
73c5de00 4566 cur = fs_devices->alloc_list.next;
9b3f68b9 4567
9f680ce0 4568 /*
73c5de00
AJ
4569 * in the first pass through the devices list, we gather information
4570 * about the available holes on each device.
9f680ce0 4571 */
73c5de00
AJ
4572 ndevs = 0;
4573 while (cur != &fs_devices->alloc_list) {
4574 struct btrfs_device *device;
4575 u64 max_avail;
4576 u64 dev_offset;
b2117a39 4577
73c5de00 4578 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
9f680ce0 4579
73c5de00 4580 cur = cur->next;
b2117a39 4581
73c5de00 4582 if (!device->writeable) {
31b1a2bd 4583 WARN(1, KERN_ERR
efe120a0 4584 "BTRFS: read-only device in alloc_list\n");
73c5de00
AJ
4585 continue;
4586 }
b2117a39 4587
63a212ab
SB
4588 if (!device->in_fs_metadata ||
4589 device->is_tgtdev_for_dev_replace)
73c5de00 4590 continue;
b2117a39 4591
73c5de00
AJ
4592 if (device->total_bytes > device->bytes_used)
4593 total_avail = device->total_bytes - device->bytes_used;
4594 else
4595 total_avail = 0;
38c01b96 4596
4597 /* If there is no space on this device, skip it. */
4598 if (total_avail == 0)
4599 continue;
b2117a39 4600
6df9a95e 4601 ret = find_free_dev_extent(trans, device,
73c5de00
AJ
4602 max_stripe_size * dev_stripes,
4603 &dev_offset, &max_avail);
4604 if (ret && ret != -ENOSPC)
4605 goto error;
b2117a39 4606
73c5de00
AJ
4607 if (ret == 0)
4608 max_avail = max_stripe_size * dev_stripes;
b2117a39 4609
73c5de00
AJ
4610 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4611 continue;
b2117a39 4612
063d006f
ES
4613 if (ndevs == fs_devices->rw_devices) {
4614 WARN(1, "%s: found more than %llu devices\n",
4615 __func__, fs_devices->rw_devices);
4616 break;
4617 }
73c5de00
AJ
4618 devices_info[ndevs].dev_offset = dev_offset;
4619 devices_info[ndevs].max_avail = max_avail;
4620 devices_info[ndevs].total_avail = total_avail;
4621 devices_info[ndevs].dev = device;
4622 ++ndevs;
4623 }
b2117a39 4624
73c5de00
AJ
4625 /*
4626 * now sort the devices by hole size / available space
4627 */
4628 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4629 btrfs_cmp_device_info, NULL);
b2117a39 4630
73c5de00
AJ
4631 /* round down to number of usable stripes */
4632 ndevs -= ndevs % devs_increment;
b2117a39 4633
73c5de00
AJ
4634 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4635 ret = -ENOSPC;
4636 goto error;
b2117a39 4637 }
9f680ce0 4638
73c5de00
AJ
4639 if (devs_max && ndevs > devs_max)
4640 ndevs = devs_max;
4641 /*
4642 * the primary goal is to maximize the number of stripes, so use as many
4643 * devices as possible, even if the stripes are not maximum sized.
4644 */
4645 stripe_size = devices_info[ndevs-1].max_avail;
4646 num_stripes = ndevs * dev_stripes;
b2117a39 4647
53b381b3
DW
4648 /*
4649 * this will have to be fixed for RAID1 and RAID10 over
4650 * more drives
4651 */
4652 data_stripes = num_stripes / ncopies;
4653
53b381b3
DW
4654 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4655 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4656 btrfs_super_stripesize(info->super_copy));
4657 data_stripes = num_stripes - 1;
4658 }
4659 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4660 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4661 btrfs_super_stripesize(info->super_copy));
4662 data_stripes = num_stripes - 2;
4663 }
86db2578
CM
4664
4665 /*
4666 * Use the number of data stripes to figure out how big this chunk
4667 * is really going to be in terms of logical address space,
4668 * and compare that answer with the max chunk size
4669 */
4670 if (stripe_size * data_stripes > max_chunk_size) {
4671 u64 mask = (1ULL << 24) - 1;
b8b93add
DS
4672
4673 stripe_size = div_u64(max_chunk_size, data_stripes);
86db2578
CM
4674
4675 /* bump the answer up to a 16MB boundary */
4676 stripe_size = (stripe_size + mask) & ~mask;
4677
4678 /* but don't go higher than the limits we found
4679 * while searching for free extents
4680 */
4681 if (stripe_size > devices_info[ndevs-1].max_avail)
4682 stripe_size = devices_info[ndevs-1].max_avail;
4683 }
4684
b8b93add 4685 stripe_size = div_u64(stripe_size, dev_stripes);
37db63a4
ID
4686
4687 /* align to BTRFS_STRIPE_LEN */
b8b93add 4688 stripe_size = div_u64(stripe_size, raid_stripe_len);
53b381b3 4689 stripe_size *= raid_stripe_len;
b2117a39
MX
4690
4691 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4692 if (!map) {
4693 ret = -ENOMEM;
4694 goto error;
4695 }
4696 map->num_stripes = num_stripes;
9b3f68b9 4697
73c5de00
AJ
4698 for (i = 0; i < ndevs; ++i) {
4699 for (j = 0; j < dev_stripes; ++j) {
4700 int s = i * dev_stripes + j;
4701 map->stripes[s].dev = devices_info[i].dev;
4702 map->stripes[s].physical = devices_info[i].dev_offset +
4703 j * stripe_size;
6324fbf3 4704 }
6324fbf3 4705 }
2b82032c 4706 map->sector_size = extent_root->sectorsize;
53b381b3
DW
4707 map->stripe_len = raid_stripe_len;
4708 map->io_align = raid_stripe_len;
4709 map->io_width = raid_stripe_len;
2b82032c 4710 map->type = type;
2b82032c 4711 map->sub_stripes = sub_stripes;
0b86a832 4712
53b381b3 4713 num_bytes = stripe_size * data_stripes;
0b86a832 4714
73c5de00 4715 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
1abe9b8a 4716
172ddd60 4717 em = alloc_extent_map();
2b82032c 4718 if (!em) {
298a8f9c 4719 kfree(map);
b2117a39
MX
4720 ret = -ENOMEM;
4721 goto error;
593060d7 4722 }
298a8f9c 4723 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
95617d69 4724 em->map_lookup = map;
2b82032c 4725 em->start = start;
73c5de00 4726 em->len = num_bytes;
2b82032c
YZ
4727 em->block_start = 0;
4728 em->block_len = em->len;
6df9a95e 4729 em->orig_block_len = stripe_size;
593060d7 4730
2b82032c 4731 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
890871be 4732 write_lock(&em_tree->lock);
09a2a8f9 4733 ret = add_extent_mapping(em_tree, em, 0);
6df9a95e
JB
4734 if (!ret) {
4735 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4736 atomic_inc(&em->refs);
4737 }
890871be 4738 write_unlock(&em_tree->lock);
0f5d42b2
JB
4739 if (ret) {
4740 free_extent_map(em);
1dd4602f 4741 goto error;
0f5d42b2 4742 }
0b86a832 4743
04487488
JB
4744 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4745 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4746 start, num_bytes);
6df9a95e
JB
4747 if (ret)
4748 goto error_del_extent;
2b82032c 4749
7cc8e58d
MX
4750 for (i = 0; i < map->num_stripes; i++) {
4751 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4752 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4753 }
43530c46 4754
1c116187
MX
4755 spin_lock(&extent_root->fs_info->free_chunk_lock);
4756 extent_root->fs_info->free_chunk_space -= (stripe_size *
4757 map->num_stripes);
4758 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4759
0f5d42b2 4760 free_extent_map(em);
53b381b3
DW
4761 check_raid56_incompat_flag(extent_root->fs_info, type);
4762
b2117a39 4763 kfree(devices_info);
2b82032c 4764 return 0;
b2117a39 4765
6df9a95e 4766error_del_extent:
0f5d42b2
JB
4767 write_lock(&em_tree->lock);
4768 remove_extent_mapping(em_tree, em);
4769 write_unlock(&em_tree->lock);
4770
4771 /* One for our allocation */
4772 free_extent_map(em);
4773 /* One for the tree reference */
4774 free_extent_map(em);
495e64f4
FM
4775 /* One for the pending_chunks list reference */
4776 free_extent_map(em);
b2117a39 4777error:
b2117a39
MX
4778 kfree(devices_info);
4779 return ret;
2b82032c
YZ
4780}
4781
6df9a95e 4782int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
2b82032c 4783 struct btrfs_root *extent_root,
6df9a95e 4784 u64 chunk_offset, u64 chunk_size)
2b82032c 4785{
2b82032c
YZ
4786 struct btrfs_key key;
4787 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4788 struct btrfs_device *device;
4789 struct btrfs_chunk *chunk;
4790 struct btrfs_stripe *stripe;
6df9a95e
JB
4791 struct extent_map_tree *em_tree;
4792 struct extent_map *em;
4793 struct map_lookup *map;
4794 size_t item_size;
4795 u64 dev_offset;
4796 u64 stripe_size;
4797 int i = 0;
140e639f 4798 int ret = 0;
2b82032c 4799
6df9a95e
JB
4800 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4801 read_lock(&em_tree->lock);
4802 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4803 read_unlock(&em_tree->lock);
4804
4805 if (!em) {
4806 btrfs_crit(extent_root->fs_info, "unable to find logical "
4807 "%Lu len %Lu", chunk_offset, chunk_size);
4808 return -EINVAL;
4809 }
4810
4811 if (em->start != chunk_offset || em->len != chunk_size) {
4812 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
351fd353 4813 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
6df9a95e
JB
4814 chunk_size, em->start, em->len);
4815 free_extent_map(em);
4816 return -EINVAL;
4817 }
4818
95617d69 4819 map = em->map_lookup;
6df9a95e
JB
4820 item_size = btrfs_chunk_item_size(map->num_stripes);
4821 stripe_size = em->orig_block_len;
4822
2b82032c 4823 chunk = kzalloc(item_size, GFP_NOFS);
6df9a95e
JB
4824 if (!chunk) {
4825 ret = -ENOMEM;
4826 goto out;
4827 }
4828
50460e37
FM
4829 /*
4830 * Take the device list mutex to prevent races with the final phase of
4831 * a device replace operation that replaces the device object associated
4832 * with the map's stripes, because the device object's id can change
4833 * at any time during that final phase of the device replace operation
4834 * (dev-replace.c:btrfs_dev_replace_finishing()).
4835 */
4836 mutex_lock(&chunk_root->fs_info->fs_devices->device_list_mutex);
6df9a95e
JB
4837 for (i = 0; i < map->num_stripes; i++) {
4838 device = map->stripes[i].dev;
4839 dev_offset = map->stripes[i].physical;
2b82032c 4840
0b86a832 4841 ret = btrfs_update_device(trans, device);
3acd3953 4842 if (ret)
50460e37 4843 break;
6df9a95e
JB
4844 ret = btrfs_alloc_dev_extent(trans, device,
4845 chunk_root->root_key.objectid,
4846 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4847 chunk_offset, dev_offset,
4848 stripe_size);
4849 if (ret)
50460e37
FM
4850 break;
4851 }
4852 if (ret) {
4853 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
4854 goto out;
2b82032c
YZ
4855 }
4856
2b82032c 4857 stripe = &chunk->stripe;
6df9a95e
JB
4858 for (i = 0; i < map->num_stripes; i++) {
4859 device = map->stripes[i].dev;
4860 dev_offset = map->stripes[i].physical;
0b86a832 4861
e17cade2
CM
4862 btrfs_set_stack_stripe_devid(stripe, device->devid);
4863 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4864 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
2b82032c 4865 stripe++;
0b86a832 4866 }
50460e37 4867 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
0b86a832 4868
2b82032c 4869 btrfs_set_stack_chunk_length(chunk, chunk_size);
0b86a832 4870 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
2b82032c
YZ
4871 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4872 btrfs_set_stack_chunk_type(chunk, map->type);
4873 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4874 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4875 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
0b86a832 4876 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
2b82032c 4877 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
0b86a832 4878
2b82032c
YZ
4879 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4880 key.type = BTRFS_CHUNK_ITEM_KEY;
4881 key.offset = chunk_offset;
0b86a832 4882
2b82032c 4883 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
4ed1d16e
MF
4884 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4885 /*
4886 * TODO: Cleanup of inserted chunk root in case of
4887 * failure.
4888 */
125ccb0a 4889 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
2b82032c 4890 item_size);
8f18cf13 4891 }
1abe9b8a 4892
6df9a95e 4893out:
0b86a832 4894 kfree(chunk);
6df9a95e 4895 free_extent_map(em);
4ed1d16e 4896 return ret;
2b82032c 4897}
0b86a832 4898
2b82032c
YZ
4899/*
4900 * Chunk allocation falls into two parts. The first part does works
4901 * that make the new allocated chunk useable, but not do any operation
4902 * that modifies the chunk tree. The second part does the works that
4903 * require modifying the chunk tree. This division is important for the
4904 * bootstrap process of adding storage to a seed btrfs.
4905 */
4906int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4907 struct btrfs_root *extent_root, u64 type)
4908{
4909 u64 chunk_offset;
2b82032c 4910
a9629596 4911 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
6df9a95e
JB
4912 chunk_offset = find_next_chunk(extent_root->fs_info);
4913 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
2b82032c
YZ
4914}
4915
d397712b 4916static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
2b82032c
YZ
4917 struct btrfs_root *root,
4918 struct btrfs_device *device)
4919{
4920 u64 chunk_offset;
4921 u64 sys_chunk_offset;
2b82032c 4922 u64 alloc_profile;
2b82032c
YZ
4923 struct btrfs_fs_info *fs_info = root->fs_info;
4924 struct btrfs_root *extent_root = fs_info->extent_root;
4925 int ret;
4926
6df9a95e 4927 chunk_offset = find_next_chunk(fs_info);
de98ced9 4928 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
6df9a95e
JB
4929 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4930 alloc_profile);
79787eaa
JM
4931 if (ret)
4932 return ret;
2b82032c 4933
6df9a95e 4934 sys_chunk_offset = find_next_chunk(root->fs_info);
de98ced9 4935 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
6df9a95e
JB
4936 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4937 alloc_profile);
79787eaa 4938 return ret;
2b82032c
YZ
4939}
4940
d20983b4
MX
4941static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4942{
4943 int max_errors;
4944
4945 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4946 BTRFS_BLOCK_GROUP_RAID10 |
4947 BTRFS_BLOCK_GROUP_RAID5 |
4948 BTRFS_BLOCK_GROUP_DUP)) {
4949 max_errors = 1;
4950 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4951 max_errors = 2;
4952 } else {
4953 max_errors = 0;
005d6427 4954 }
2b82032c 4955
d20983b4 4956 return max_errors;
2b82032c
YZ
4957}
4958
4959int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4960{
4961 struct extent_map *em;
4962 struct map_lookup *map;
4963 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4964 int readonly = 0;
d20983b4 4965 int miss_ndevs = 0;
2b82032c
YZ
4966 int i;
4967
890871be 4968 read_lock(&map_tree->map_tree.lock);
2b82032c 4969 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
890871be 4970 read_unlock(&map_tree->map_tree.lock);
2b82032c
YZ
4971 if (!em)
4972 return 1;
4973
95617d69 4974 map = em->map_lookup;
2b82032c 4975 for (i = 0; i < map->num_stripes; i++) {
d20983b4
MX
4976 if (map->stripes[i].dev->missing) {
4977 miss_ndevs++;
4978 continue;
4979 }
4980
2b82032c
YZ
4981 if (!map->stripes[i].dev->writeable) {
4982 readonly = 1;
d20983b4 4983 goto end;
2b82032c
YZ
4984 }
4985 }
d20983b4
MX
4986
4987 /*
4988 * If the number of missing devices is larger than max errors,
4989 * we can not write the data into that chunk successfully, so
4990 * set it readonly.
4991 */
4992 if (miss_ndevs > btrfs_chunk_max_errors(map))
4993 readonly = 1;
4994end:
0b86a832 4995 free_extent_map(em);
2b82032c 4996 return readonly;
0b86a832
CM
4997}
4998
4999void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5000{
a8067e02 5001 extent_map_tree_init(&tree->map_tree);
0b86a832
CM
5002}
5003
5004void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5005{
5006 struct extent_map *em;
5007
d397712b 5008 while (1) {
890871be 5009 write_lock(&tree->map_tree.lock);
0b86a832
CM
5010 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5011 if (em)
5012 remove_extent_mapping(&tree->map_tree, em);
890871be 5013 write_unlock(&tree->map_tree.lock);
0b86a832
CM
5014 if (!em)
5015 break;
0b86a832
CM
5016 /* once for us */
5017 free_extent_map(em);
5018 /* once for the tree */
5019 free_extent_map(em);
5020 }
5021}
5022
5d964051 5023int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
f188591e 5024{
5d964051 5025 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
f188591e
CM
5026 struct extent_map *em;
5027 struct map_lookup *map;
5028 struct extent_map_tree *em_tree = &map_tree->map_tree;
5029 int ret;
5030
890871be 5031 read_lock(&em_tree->lock);
f188591e 5032 em = lookup_extent_mapping(em_tree, logical, len);
890871be 5033 read_unlock(&em_tree->lock);
f188591e 5034
fb7669b5
JB
5035 /*
5036 * We could return errors for these cases, but that could get ugly and
5037 * we'd probably do the same thing which is just not do anything else
5038 * and exit, so return 1 so the callers don't try to use other copies.
5039 */
5040 if (!em) {
351fd353 5041 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
fb7669b5
JB
5042 logical+len);
5043 return 1;
5044 }
5045
5046 if (em->start > logical || em->start + em->len < logical) {
ccf39f92 5047 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
351fd353 5048 "%Lu-%Lu", logical, logical+len, em->start,
fb7669b5 5049 em->start + em->len);
7d3d1744 5050 free_extent_map(em);
fb7669b5
JB
5051 return 1;
5052 }
5053
95617d69 5054 map = em->map_lookup;
f188591e
CM
5055 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5056 ret = map->num_stripes;
321aecc6
CM
5057 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5058 ret = map->sub_stripes;
53b381b3
DW
5059 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5060 ret = 2;
5061 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5062 ret = 3;
f188591e
CM
5063 else
5064 ret = 1;
5065 free_extent_map(em);
ad6d620e
SB
5066
5067 btrfs_dev_replace_lock(&fs_info->dev_replace);
5068 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5069 ret++;
5070 btrfs_dev_replace_unlock(&fs_info->dev_replace);
5071
f188591e
CM
5072 return ret;
5073}
5074
53b381b3
DW
5075unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5076 struct btrfs_mapping_tree *map_tree,
5077 u64 logical)
5078{
5079 struct extent_map *em;
5080 struct map_lookup *map;
5081 struct extent_map_tree *em_tree = &map_tree->map_tree;
5082 unsigned long len = root->sectorsize;
5083
5084 read_lock(&em_tree->lock);
5085 em = lookup_extent_mapping(em_tree, logical, len);
5086 read_unlock(&em_tree->lock);
5087 BUG_ON(!em);
5088
5089 BUG_ON(em->start > logical || em->start + em->len < logical);
95617d69 5090 map = em->map_lookup;
ffe2d203 5091 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
53b381b3 5092 len = map->stripe_len * nr_data_stripes(map);
53b381b3
DW
5093 free_extent_map(em);
5094 return len;
5095}
5096
5097int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5098 u64 logical, u64 len, int mirror_num)
5099{
5100 struct extent_map *em;
5101 struct map_lookup *map;
5102 struct extent_map_tree *em_tree = &map_tree->map_tree;
5103 int ret = 0;
5104
5105 read_lock(&em_tree->lock);
5106 em = lookup_extent_mapping(em_tree, logical, len);
5107 read_unlock(&em_tree->lock);
5108 BUG_ON(!em);
5109
5110 BUG_ON(em->start > logical || em->start + em->len < logical);
95617d69 5111 map = em->map_lookup;
ffe2d203 5112 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
53b381b3
DW
5113 ret = 1;
5114 free_extent_map(em);
5115 return ret;
5116}
5117
30d9861f
SB
5118static int find_live_mirror(struct btrfs_fs_info *fs_info,
5119 struct map_lookup *map, int first, int num,
5120 int optimal, int dev_replace_is_ongoing)
dfe25020
CM
5121{
5122 int i;
30d9861f
SB
5123 int tolerance;
5124 struct btrfs_device *srcdev;
5125
5126 if (dev_replace_is_ongoing &&
5127 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5128 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5129 srcdev = fs_info->dev_replace.srcdev;
5130 else
5131 srcdev = NULL;
5132
5133 /*
5134 * try to avoid the drive that is the source drive for a
5135 * dev-replace procedure, only choose it if no other non-missing
5136 * mirror is available
5137 */
5138 for (tolerance = 0; tolerance < 2; tolerance++) {
5139 if (map->stripes[optimal].dev->bdev &&
5140 (tolerance || map->stripes[optimal].dev != srcdev))
5141 return optimal;
5142 for (i = first; i < first + num; i++) {
5143 if (map->stripes[i].dev->bdev &&
5144 (tolerance || map->stripes[i].dev != srcdev))
5145 return i;
5146 }
dfe25020 5147 }
30d9861f 5148
dfe25020
CM
5149 /* we couldn't find one that doesn't fail. Just return something
5150 * and the io error handling code will clean up eventually
5151 */
5152 return optimal;
5153}
5154
53b381b3
DW
5155static inline int parity_smaller(u64 a, u64 b)
5156{
5157 return a > b;
5158}
5159
5160/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
8e5cfb55 5161static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
53b381b3
DW
5162{
5163 struct btrfs_bio_stripe s;
5164 int i;
5165 u64 l;
5166 int again = 1;
5167
5168 while (again) {
5169 again = 0;
cc7539ed 5170 for (i = 0; i < num_stripes - 1; i++) {
8e5cfb55
ZL
5171 if (parity_smaller(bbio->raid_map[i],
5172 bbio->raid_map[i+1])) {
53b381b3 5173 s = bbio->stripes[i];
8e5cfb55 5174 l = bbio->raid_map[i];
53b381b3 5175 bbio->stripes[i] = bbio->stripes[i+1];
8e5cfb55 5176 bbio->raid_map[i] = bbio->raid_map[i+1];
53b381b3 5177 bbio->stripes[i+1] = s;
8e5cfb55 5178 bbio->raid_map[i+1] = l;
2c8cdd6e 5179
53b381b3
DW
5180 again = 1;
5181 }
5182 }
5183 }
5184}
5185
6e9606d2
ZL
5186static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5187{
5188 struct btrfs_bio *bbio = kzalloc(
e57cf21e 5189 /* the size of the btrfs_bio */
6e9606d2 5190 sizeof(struct btrfs_bio) +
e57cf21e 5191 /* plus the variable array for the stripes */
6e9606d2 5192 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
e57cf21e 5193 /* plus the variable array for the tgt dev */
6e9606d2 5194 sizeof(int) * (real_stripes) +
e57cf21e
CM
5195 /*
5196 * plus the raid_map, which includes both the tgt dev
5197 * and the stripes
5198 */
5199 sizeof(u64) * (total_stripes),
277fb5fc 5200 GFP_NOFS|__GFP_NOFAIL);
6e9606d2
ZL
5201
5202 atomic_set(&bbio->error, 0);
5203 atomic_set(&bbio->refs, 1);
5204
5205 return bbio;
5206}
5207
5208void btrfs_get_bbio(struct btrfs_bio *bbio)
5209{
5210 WARN_ON(!atomic_read(&bbio->refs));
5211 atomic_inc(&bbio->refs);
5212}
5213
5214void btrfs_put_bbio(struct btrfs_bio *bbio)
5215{
5216 if (!bbio)
5217 return;
5218 if (atomic_dec_and_test(&bbio->refs))
5219 kfree(bbio);
5220}
5221
3ec706c8 5222static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
f2d8d74d 5223 u64 logical, u64 *length,
a1d3c478 5224 struct btrfs_bio **bbio_ret,
8e5cfb55 5225 int mirror_num, int need_raid_map)
0b86a832
CM
5226{
5227 struct extent_map *em;
5228 struct map_lookup *map;
3ec706c8 5229 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
0b86a832
CM
5230 struct extent_map_tree *em_tree = &map_tree->map_tree;
5231 u64 offset;
593060d7 5232 u64 stripe_offset;
fce3bb9a 5233 u64 stripe_end_offset;
593060d7 5234 u64 stripe_nr;
fce3bb9a
LD
5235 u64 stripe_nr_orig;
5236 u64 stripe_nr_end;
53b381b3 5237 u64 stripe_len;
9d644a62 5238 u32 stripe_index;
cea9e445 5239 int i;
de11cc12 5240 int ret = 0;
f2d8d74d 5241 int num_stripes;
a236aed1 5242 int max_errors = 0;
2c8cdd6e 5243 int tgtdev_indexes = 0;
a1d3c478 5244 struct btrfs_bio *bbio = NULL;
472262f3
SB
5245 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5246 int dev_replace_is_ongoing = 0;
5247 int num_alloc_stripes;
ad6d620e
SB
5248 int patch_the_first_stripe_for_dev_replace = 0;
5249 u64 physical_to_patch_in_first_stripe = 0;
53b381b3 5250 u64 raid56_full_stripe_start = (u64)-1;
0b86a832 5251
890871be 5252 read_lock(&em_tree->lock);
0b86a832 5253 em = lookup_extent_mapping(em_tree, logical, *length);
890871be 5254 read_unlock(&em_tree->lock);
f2d8d74d 5255
3b951516 5256 if (!em) {
c2cf52eb 5257 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
c1c9ff7c 5258 logical, *length);
9bb91873
JB
5259 return -EINVAL;
5260 }
5261
5262 if (em->start > logical || em->start + em->len < logical) {
5263 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
351fd353 5264 "found %Lu-%Lu", logical, em->start,
9bb91873 5265 em->start + em->len);
7d3d1744 5266 free_extent_map(em);
9bb91873 5267 return -EINVAL;
3b951516 5268 }
0b86a832 5269
95617d69 5270 map = em->map_lookup;
0b86a832 5271 offset = logical - em->start;
593060d7 5272
53b381b3 5273 stripe_len = map->stripe_len;
593060d7
CM
5274 stripe_nr = offset;
5275 /*
5276 * stripe_nr counts the total number of stripes we have to stride
5277 * to get to this block
5278 */
47c5713f 5279 stripe_nr = div64_u64(stripe_nr, stripe_len);
593060d7 5280
53b381b3 5281 stripe_offset = stripe_nr * stripe_len;
593060d7
CM
5282 BUG_ON(offset < stripe_offset);
5283
5284 /* stripe_offset is the offset of this block in its stripe*/
5285 stripe_offset = offset - stripe_offset;
5286
53b381b3 5287 /* if we're here for raid56, we need to know the stripe aligned start */
ffe2d203 5288 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
53b381b3
DW
5289 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5290 raid56_full_stripe_start = offset;
5291
5292 /* allow a write of a full stripe, but make sure we don't
5293 * allow straddling of stripes
5294 */
47c5713f
DS
5295 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5296 full_stripe_len);
53b381b3
DW
5297 raid56_full_stripe_start *= full_stripe_len;
5298 }
5299
5300 if (rw & REQ_DISCARD) {
5301 /* we don't discard raid56 yet */
ffe2d203 5302 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
53b381b3
DW
5303 ret = -EOPNOTSUPP;
5304 goto out;
5305 }
fce3bb9a 5306 *length = min_t(u64, em->len - offset, *length);
53b381b3
DW
5307 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5308 u64 max_len;
5309 /* For writes to RAID[56], allow a full stripeset across all disks.
5310 For other RAID types and for RAID[56] reads, just allow a single
5311 stripe (on a single disk). */
ffe2d203 5312 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
53b381b3
DW
5313 (rw & REQ_WRITE)) {
5314 max_len = stripe_len * nr_data_stripes(map) -
5315 (offset - raid56_full_stripe_start);
5316 } else {
5317 /* we limit the length of each bio to what fits in a stripe */
5318 max_len = stripe_len - stripe_offset;
5319 }
5320 *length = min_t(u64, em->len - offset, max_len);
cea9e445
CM
5321 } else {
5322 *length = em->len - offset;
5323 }
f2d8d74d 5324
53b381b3
DW
5325 /* This is for when we're called from btrfs_merge_bio_hook() and all
5326 it cares about is the length */
a1d3c478 5327 if (!bbio_ret)
cea9e445
CM
5328 goto out;
5329
472262f3
SB
5330 btrfs_dev_replace_lock(dev_replace);
5331 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5332 if (!dev_replace_is_ongoing)
5333 btrfs_dev_replace_unlock(dev_replace);
5334
ad6d620e
SB
5335 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5336 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5337 dev_replace->tgtdev != NULL) {
5338 /*
5339 * in dev-replace case, for repair case (that's the only
5340 * case where the mirror is selected explicitly when
5341 * calling btrfs_map_block), blocks left of the left cursor
5342 * can also be read from the target drive.
5343 * For REQ_GET_READ_MIRRORS, the target drive is added as
5344 * the last one to the array of stripes. For READ, it also
5345 * needs to be supported using the same mirror number.
5346 * If the requested block is not left of the left cursor,
5347 * EIO is returned. This can happen because btrfs_num_copies()
5348 * returns one more in the dev-replace case.
5349 */
5350 u64 tmp_length = *length;
5351 struct btrfs_bio *tmp_bbio = NULL;
5352 int tmp_num_stripes;
5353 u64 srcdev_devid = dev_replace->srcdev->devid;
5354 int index_srcdev = 0;
5355 int found = 0;
5356 u64 physical_of_found = 0;
5357
5358 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
8e5cfb55 5359 logical, &tmp_length, &tmp_bbio, 0, 0);
ad6d620e
SB
5360 if (ret) {
5361 WARN_ON(tmp_bbio != NULL);
5362 goto out;
5363 }
5364
5365 tmp_num_stripes = tmp_bbio->num_stripes;
5366 if (mirror_num > tmp_num_stripes) {
5367 /*
5368 * REQ_GET_READ_MIRRORS does not contain this
5369 * mirror, that means that the requested area
5370 * is not left of the left cursor
5371 */
5372 ret = -EIO;
6e9606d2 5373 btrfs_put_bbio(tmp_bbio);
ad6d620e
SB
5374 goto out;
5375 }
5376
5377 /*
5378 * process the rest of the function using the mirror_num
5379 * of the source drive. Therefore look it up first.
5380 * At the end, patch the device pointer to the one of the
5381 * target drive.
5382 */
5383 for (i = 0; i < tmp_num_stripes; i++) {
94a97dfe
ZL
5384 if (tmp_bbio->stripes[i].dev->devid != srcdev_devid)
5385 continue;
5386
5387 /*
5388 * In case of DUP, in order to keep it simple, only add
5389 * the mirror with the lowest physical address
5390 */
5391 if (found &&
5392 physical_of_found <= tmp_bbio->stripes[i].physical)
5393 continue;
5394
5395 index_srcdev = i;
5396 found = 1;
5397 physical_of_found = tmp_bbio->stripes[i].physical;
ad6d620e
SB
5398 }
5399
94a97dfe
ZL
5400 btrfs_put_bbio(tmp_bbio);
5401
5402 if (!found) {
ad6d620e
SB
5403 WARN_ON(1);
5404 ret = -EIO;
ad6d620e
SB
5405 goto out;
5406 }
5407
94a97dfe
ZL
5408 mirror_num = index_srcdev + 1;
5409 patch_the_first_stripe_for_dev_replace = 1;
5410 physical_to_patch_in_first_stripe = physical_of_found;
ad6d620e
SB
5411 } else if (mirror_num > map->num_stripes) {
5412 mirror_num = 0;
5413 }
5414
f2d8d74d 5415 num_stripes = 1;
cea9e445 5416 stripe_index = 0;
fce3bb9a 5417 stripe_nr_orig = stripe_nr;
fda2832f 5418 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
b8b93add 5419 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
fce3bb9a
LD
5420 stripe_end_offset = stripe_nr_end * map->stripe_len -
5421 (offset + *length);
53b381b3 5422
fce3bb9a
LD
5423 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5424 if (rw & REQ_DISCARD)
5425 num_stripes = min_t(u64, map->num_stripes,
5426 stripe_nr_end - stripe_nr_orig);
47c5713f
DS
5427 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5428 &stripe_index);
28e1cc7d
MX
5429 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5430 mirror_num = 1;
fce3bb9a 5431 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
29a8d9a0 5432 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
f2d8d74d 5433 num_stripes = map->num_stripes;
2fff734f 5434 else if (mirror_num)
f188591e 5435 stripe_index = mirror_num - 1;
dfe25020 5436 else {
30d9861f 5437 stripe_index = find_live_mirror(fs_info, map, 0,
dfe25020 5438 map->num_stripes,
30d9861f
SB
5439 current->pid % map->num_stripes,
5440 dev_replace_is_ongoing);
a1d3c478 5441 mirror_num = stripe_index + 1;
dfe25020 5442 }
2fff734f 5443
611f0e00 5444 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
29a8d9a0 5445 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
f2d8d74d 5446 num_stripes = map->num_stripes;
a1d3c478 5447 } else if (mirror_num) {
f188591e 5448 stripe_index = mirror_num - 1;
a1d3c478
JS
5449 } else {
5450 mirror_num = 1;
5451 }
2fff734f 5452
321aecc6 5453 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
9d644a62 5454 u32 factor = map->num_stripes / map->sub_stripes;
321aecc6 5455
47c5713f 5456 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
321aecc6
CM
5457 stripe_index *= map->sub_stripes;
5458
29a8d9a0 5459 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
f2d8d74d 5460 num_stripes = map->sub_stripes;
fce3bb9a
LD
5461 else if (rw & REQ_DISCARD)
5462 num_stripes = min_t(u64, map->sub_stripes *
5463 (stripe_nr_end - stripe_nr_orig),
5464 map->num_stripes);
321aecc6
CM
5465 else if (mirror_num)
5466 stripe_index += mirror_num - 1;
dfe25020 5467 else {
3e74317a 5468 int old_stripe_index = stripe_index;
30d9861f
SB
5469 stripe_index = find_live_mirror(fs_info, map,
5470 stripe_index,
dfe25020 5471 map->sub_stripes, stripe_index +
30d9861f
SB
5472 current->pid % map->sub_stripes,
5473 dev_replace_is_ongoing);
3e74317a 5474 mirror_num = stripe_index - old_stripe_index + 1;
dfe25020 5475 }
53b381b3 5476
ffe2d203 5477 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
8e5cfb55 5478 if (need_raid_map &&
af8e2d1d
MX
5479 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5480 mirror_num > 1)) {
53b381b3 5481 /* push stripe_nr back to the start of the full stripe */
b8b93add
DS
5482 stripe_nr = div_u64(raid56_full_stripe_start,
5483 stripe_len * nr_data_stripes(map));
53b381b3
DW
5484
5485 /* RAID[56] write or recovery. Return all stripes */
5486 num_stripes = map->num_stripes;
5487 max_errors = nr_parity_stripes(map);
5488
53b381b3
DW
5489 *length = map->stripe_len;
5490 stripe_index = 0;
5491 stripe_offset = 0;
5492 } else {
5493 /*
5494 * Mirror #0 or #1 means the original data block.
5495 * Mirror #2 is RAID5 parity block.
5496 * Mirror #3 is RAID6 Q block.
5497 */
47c5713f
DS
5498 stripe_nr = div_u64_rem(stripe_nr,
5499 nr_data_stripes(map), &stripe_index);
53b381b3
DW
5500 if (mirror_num > 1)
5501 stripe_index = nr_data_stripes(map) +
5502 mirror_num - 2;
5503
5504 /* We distribute the parity blocks across stripes */
47c5713f
DS
5505 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5506 &stripe_index);
28e1cc7d
MX
5507 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5508 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5509 mirror_num = 1;
53b381b3 5510 }
8790d502
CM
5511 } else {
5512 /*
47c5713f
DS
5513 * after this, stripe_nr is the number of stripes on this
5514 * device we have to walk to find the data, and stripe_index is
5515 * the number of our device in the stripe array
8790d502 5516 */
47c5713f
DS
5517 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5518 &stripe_index);
a1d3c478 5519 mirror_num = stripe_index + 1;
8790d502 5520 }
593060d7 5521 BUG_ON(stripe_index >= map->num_stripes);
cea9e445 5522
472262f3 5523 num_alloc_stripes = num_stripes;
ad6d620e
SB
5524 if (dev_replace_is_ongoing) {
5525 if (rw & (REQ_WRITE | REQ_DISCARD))
5526 num_alloc_stripes <<= 1;
5527 if (rw & REQ_GET_READ_MIRRORS)
5528 num_alloc_stripes++;
2c8cdd6e 5529 tgtdev_indexes = num_stripes;
ad6d620e 5530 }
2c8cdd6e 5531
6e9606d2 5532 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
de11cc12
LZ
5533 if (!bbio) {
5534 ret = -ENOMEM;
5535 goto out;
5536 }
2c8cdd6e
MX
5537 if (dev_replace_is_ongoing)
5538 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
de11cc12 5539
8e5cfb55 5540 /* build raid_map */
ffe2d203 5541 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
8e5cfb55
ZL
5542 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5543 mirror_num > 1)) {
5544 u64 tmp;
9d644a62 5545 unsigned rot;
8e5cfb55
ZL
5546
5547 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5548 sizeof(struct btrfs_bio_stripe) *
5549 num_alloc_stripes +
5550 sizeof(int) * tgtdev_indexes);
5551
5552 /* Work out the disk rotation on this stripe-set */
47c5713f 5553 div_u64_rem(stripe_nr, num_stripes, &rot);
8e5cfb55
ZL
5554
5555 /* Fill in the logical address of each stripe */
5556 tmp = stripe_nr * nr_data_stripes(map);
5557 for (i = 0; i < nr_data_stripes(map); i++)
5558 bbio->raid_map[(i+rot) % num_stripes] =
5559 em->start + (tmp + i) * map->stripe_len;
5560
5561 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5562 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5563 bbio->raid_map[(i+rot+1) % num_stripes] =
5564 RAID6_Q_STRIPE;
5565 }
5566
fce3bb9a 5567 if (rw & REQ_DISCARD) {
9d644a62
DS
5568 u32 factor = 0;
5569 u32 sub_stripes = 0;
ec9ef7a1
LZ
5570 u64 stripes_per_dev = 0;
5571 u32 remaining_stripes = 0;
b89203f7 5572 u32 last_stripe = 0;
ec9ef7a1
LZ
5573
5574 if (map->type &
5575 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5576 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5577 sub_stripes = 1;
5578 else
5579 sub_stripes = map->sub_stripes;
5580
5581 factor = map->num_stripes / sub_stripes;
5582 stripes_per_dev = div_u64_rem(stripe_nr_end -
5583 stripe_nr_orig,
5584 factor,
5585 &remaining_stripes);
b89203f7
LB
5586 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5587 last_stripe *= sub_stripes;
ec9ef7a1
LZ
5588 }
5589
fce3bb9a 5590 for (i = 0; i < num_stripes; i++) {
a1d3c478 5591 bbio->stripes[i].physical =
f2d8d74d
CM
5592 map->stripes[stripe_index].physical +
5593 stripe_offset + stripe_nr * map->stripe_len;
a1d3c478 5594 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
fce3bb9a 5595
ec9ef7a1
LZ
5596 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5597 BTRFS_BLOCK_GROUP_RAID10)) {
5598 bbio->stripes[i].length = stripes_per_dev *
5599 map->stripe_len;
b89203f7 5600
ec9ef7a1
LZ
5601 if (i / sub_stripes < remaining_stripes)
5602 bbio->stripes[i].length +=
5603 map->stripe_len;
b89203f7
LB
5604
5605 /*
5606 * Special for the first stripe and
5607 * the last stripe:
5608 *
5609 * |-------|...|-------|
5610 * |----------|
5611 * off end_off
5612 */
ec9ef7a1 5613 if (i < sub_stripes)
a1d3c478 5614 bbio->stripes[i].length -=
fce3bb9a 5615 stripe_offset;
b89203f7
LB
5616
5617 if (stripe_index >= last_stripe &&
5618 stripe_index <= (last_stripe +
5619 sub_stripes - 1))
a1d3c478 5620 bbio->stripes[i].length -=
fce3bb9a 5621 stripe_end_offset;
b89203f7 5622
ec9ef7a1
LZ
5623 if (i == sub_stripes - 1)
5624 stripe_offset = 0;
fce3bb9a 5625 } else
a1d3c478 5626 bbio->stripes[i].length = *length;
fce3bb9a
LD
5627
5628 stripe_index++;
5629 if (stripe_index == map->num_stripes) {
5630 /* This could only happen for RAID0/10 */
5631 stripe_index = 0;
5632 stripe_nr++;
5633 }
5634 }
5635 } else {
5636 for (i = 0; i < num_stripes; i++) {
a1d3c478 5637 bbio->stripes[i].physical =
212a17ab
LT
5638 map->stripes[stripe_index].physical +
5639 stripe_offset +
5640 stripe_nr * map->stripe_len;
a1d3c478 5641 bbio->stripes[i].dev =
212a17ab 5642 map->stripes[stripe_index].dev;
fce3bb9a 5643 stripe_index++;
f2d8d74d 5644 }
593060d7 5645 }
de11cc12 5646
d20983b4
MX
5647 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5648 max_errors = btrfs_chunk_max_errors(map);
de11cc12 5649
8e5cfb55
ZL
5650 if (bbio->raid_map)
5651 sort_parity_stripes(bbio, num_stripes);
cc7539ed 5652
2c8cdd6e 5653 tgtdev_indexes = 0;
472262f3
SB
5654 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5655 dev_replace->tgtdev != NULL) {
5656 int index_where_to_add;
5657 u64 srcdev_devid = dev_replace->srcdev->devid;
5658
5659 /*
5660 * duplicate the write operations while the dev replace
5661 * procedure is running. Since the copying of the old disk
5662 * to the new disk takes place at run time while the
5663 * filesystem is mounted writable, the regular write
5664 * operations to the old disk have to be duplicated to go
5665 * to the new disk as well.
5666 * Note that device->missing is handled by the caller, and
5667 * that the write to the old disk is already set up in the
5668 * stripes array.
5669 */
5670 index_where_to_add = num_stripes;
5671 for (i = 0; i < num_stripes; i++) {
5672 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5673 /* write to new disk, too */
5674 struct btrfs_bio_stripe *new =
5675 bbio->stripes + index_where_to_add;
5676 struct btrfs_bio_stripe *old =
5677 bbio->stripes + i;
5678
5679 new->physical = old->physical;
5680 new->length = old->length;
5681 new->dev = dev_replace->tgtdev;
2c8cdd6e 5682 bbio->tgtdev_map[i] = index_where_to_add;
472262f3
SB
5683 index_where_to_add++;
5684 max_errors++;
2c8cdd6e 5685 tgtdev_indexes++;
472262f3
SB
5686 }
5687 }
5688 num_stripes = index_where_to_add;
ad6d620e
SB
5689 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5690 dev_replace->tgtdev != NULL) {
5691 u64 srcdev_devid = dev_replace->srcdev->devid;
5692 int index_srcdev = 0;
5693 int found = 0;
5694 u64 physical_of_found = 0;
5695
5696 /*
5697 * During the dev-replace procedure, the target drive can
5698 * also be used to read data in case it is needed to repair
5699 * a corrupt block elsewhere. This is possible if the
5700 * requested area is left of the left cursor. In this area,
5701 * the target drive is a full copy of the source drive.
5702 */
5703 for (i = 0; i < num_stripes; i++) {
5704 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5705 /*
5706 * In case of DUP, in order to keep it
5707 * simple, only add the mirror with the
5708 * lowest physical address
5709 */
5710 if (found &&
5711 physical_of_found <=
5712 bbio->stripes[i].physical)
5713 continue;
5714 index_srcdev = i;
5715 found = 1;
5716 physical_of_found = bbio->stripes[i].physical;
5717 }
5718 }
5719 if (found) {
258ece02 5720 if (physical_of_found + map->stripe_len <=
ad6d620e
SB
5721 dev_replace->cursor_left) {
5722 struct btrfs_bio_stripe *tgtdev_stripe =
5723 bbio->stripes + num_stripes;
5724
5725 tgtdev_stripe->physical = physical_of_found;
5726 tgtdev_stripe->length =
5727 bbio->stripes[index_srcdev].length;
5728 tgtdev_stripe->dev = dev_replace->tgtdev;
2c8cdd6e 5729 bbio->tgtdev_map[index_srcdev] = num_stripes;
ad6d620e 5730
2c8cdd6e 5731 tgtdev_indexes++;
ad6d620e
SB
5732 num_stripes++;
5733 }
5734 }
472262f3
SB
5735 }
5736
de11cc12 5737 *bbio_ret = bbio;
10f11900 5738 bbio->map_type = map->type;
de11cc12
LZ
5739 bbio->num_stripes = num_stripes;
5740 bbio->max_errors = max_errors;
5741 bbio->mirror_num = mirror_num;
2c8cdd6e 5742 bbio->num_tgtdevs = tgtdev_indexes;
ad6d620e
SB
5743
5744 /*
5745 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5746 * mirror_num == num_stripes + 1 && dev_replace target drive is
5747 * available as a mirror
5748 */
5749 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5750 WARN_ON(num_stripes > 1);
5751 bbio->stripes[0].dev = dev_replace->tgtdev;
5752 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5753 bbio->mirror_num = map->num_stripes + 1;
5754 }
cea9e445 5755out:
472262f3
SB
5756 if (dev_replace_is_ongoing)
5757 btrfs_dev_replace_unlock(dev_replace);
0b86a832 5758 free_extent_map(em);
de11cc12 5759 return ret;
0b86a832
CM
5760}
5761
3ec706c8 5762int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
f2d8d74d 5763 u64 logical, u64 *length,
a1d3c478 5764 struct btrfs_bio **bbio_ret, int mirror_num)
f2d8d74d 5765{
3ec706c8 5766 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
8e5cfb55 5767 mirror_num, 0);
f2d8d74d
CM
5768}
5769
af8e2d1d
MX
5770/* For Scrub/replace */
5771int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5772 u64 logical, u64 *length,
5773 struct btrfs_bio **bbio_ret, int mirror_num,
8e5cfb55 5774 int need_raid_map)
af8e2d1d
MX
5775{
5776 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
8e5cfb55 5777 mirror_num, need_raid_map);
af8e2d1d
MX
5778}
5779
a512bbf8
YZ
5780int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5781 u64 chunk_start, u64 physical, u64 devid,
5782 u64 **logical, int *naddrs, int *stripe_len)
5783{
5784 struct extent_map_tree *em_tree = &map_tree->map_tree;
5785 struct extent_map *em;
5786 struct map_lookup *map;
5787 u64 *buf;
5788 u64 bytenr;
5789 u64 length;
5790 u64 stripe_nr;
53b381b3 5791 u64 rmap_len;
a512bbf8
YZ
5792 int i, j, nr = 0;
5793
890871be 5794 read_lock(&em_tree->lock);
a512bbf8 5795 em = lookup_extent_mapping(em_tree, chunk_start, 1);
890871be 5796 read_unlock(&em_tree->lock);
a512bbf8 5797
835d974f 5798 if (!em) {
efe120a0 5799 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
835d974f
JB
5800 chunk_start);
5801 return -EIO;
5802 }
5803
5804 if (em->start != chunk_start) {
efe120a0 5805 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
835d974f
JB
5806 em->start, chunk_start);
5807 free_extent_map(em);
5808 return -EIO;
5809 }
95617d69 5810 map = em->map_lookup;
a512bbf8
YZ
5811
5812 length = em->len;
53b381b3
DW
5813 rmap_len = map->stripe_len;
5814
a512bbf8 5815 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
b8b93add 5816 length = div_u64(length, map->num_stripes / map->sub_stripes);
a512bbf8 5817 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
b8b93add 5818 length = div_u64(length, map->num_stripes);
ffe2d203 5819 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
b8b93add 5820 length = div_u64(length, nr_data_stripes(map));
53b381b3
DW
5821 rmap_len = map->stripe_len * nr_data_stripes(map);
5822 }
a512bbf8 5823
31e818fe 5824 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
79787eaa 5825 BUG_ON(!buf); /* -ENOMEM */
a512bbf8
YZ
5826
5827 for (i = 0; i < map->num_stripes; i++) {
5828 if (devid && map->stripes[i].dev->devid != devid)
5829 continue;
5830 if (map->stripes[i].physical > physical ||
5831 map->stripes[i].physical + length <= physical)
5832 continue;
5833
5834 stripe_nr = physical - map->stripes[i].physical;
b8b93add 5835 stripe_nr = div_u64(stripe_nr, map->stripe_len);
a512bbf8
YZ
5836
5837 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5838 stripe_nr = stripe_nr * map->num_stripes + i;
b8b93add 5839 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
a512bbf8
YZ
5840 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5841 stripe_nr = stripe_nr * map->num_stripes + i;
53b381b3
DW
5842 } /* else if RAID[56], multiply by nr_data_stripes().
5843 * Alternatively, just use rmap_len below instead of
5844 * map->stripe_len */
5845
5846 bytenr = chunk_start + stripe_nr * rmap_len;
934d375b 5847 WARN_ON(nr >= map->num_stripes);
a512bbf8
YZ
5848 for (j = 0; j < nr; j++) {
5849 if (buf[j] == bytenr)
5850 break;
5851 }
934d375b
CM
5852 if (j == nr) {
5853 WARN_ON(nr >= map->num_stripes);
a512bbf8 5854 buf[nr++] = bytenr;
934d375b 5855 }
a512bbf8
YZ
5856 }
5857
a512bbf8
YZ
5858 *logical = buf;
5859 *naddrs = nr;
53b381b3 5860 *stripe_len = rmap_len;
a512bbf8
YZ
5861
5862 free_extent_map(em);
5863 return 0;
f2d8d74d
CM
5864}
5865
4246a0b6 5866static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
8408c716 5867{
326e1dbb
MS
5868 bio->bi_private = bbio->private;
5869 bio->bi_end_io = bbio->end_io;
4246a0b6 5870 bio_endio(bio);
326e1dbb 5871
6e9606d2 5872 btrfs_put_bbio(bbio);
8408c716
MX
5873}
5874
4246a0b6 5875static void btrfs_end_bio(struct bio *bio)
8790d502 5876{
9be3395b 5877 struct btrfs_bio *bbio = bio->bi_private;
7d2b4daa 5878 int is_orig_bio = 0;
8790d502 5879
4246a0b6 5880 if (bio->bi_error) {
a1d3c478 5881 atomic_inc(&bbio->error);
4246a0b6 5882 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
442a4f63 5883 unsigned int stripe_index =
9be3395b 5884 btrfs_io_bio(bio)->stripe_index;
65f53338 5885 struct btrfs_device *dev;
442a4f63
SB
5886
5887 BUG_ON(stripe_index >= bbio->num_stripes);
5888 dev = bbio->stripes[stripe_index].dev;
597a60fa
SB
5889 if (dev->bdev) {
5890 if (bio->bi_rw & WRITE)
5891 btrfs_dev_stat_inc(dev,
5892 BTRFS_DEV_STAT_WRITE_ERRS);
5893 else
5894 btrfs_dev_stat_inc(dev,
5895 BTRFS_DEV_STAT_READ_ERRS);
5896 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5897 btrfs_dev_stat_inc(dev,
5898 BTRFS_DEV_STAT_FLUSH_ERRS);
5899 btrfs_dev_stat_print_on_error(dev);
5900 }
442a4f63
SB
5901 }
5902 }
8790d502 5903
a1d3c478 5904 if (bio == bbio->orig_bio)
7d2b4daa
CM
5905 is_orig_bio = 1;
5906
c404e0dc
MX
5907 btrfs_bio_counter_dec(bbio->fs_info);
5908
a1d3c478 5909 if (atomic_dec_and_test(&bbio->stripes_pending)) {
7d2b4daa
CM
5910 if (!is_orig_bio) {
5911 bio_put(bio);
a1d3c478 5912 bio = bbio->orig_bio;
7d2b4daa 5913 }
c7b22bb1 5914
9be3395b 5915 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
a236aed1 5916 /* only send an error to the higher layers if it is
53b381b3 5917 * beyond the tolerance of the btrfs bio
a236aed1 5918 */
a1d3c478 5919 if (atomic_read(&bbio->error) > bbio->max_errors) {
4246a0b6 5920 bio->bi_error = -EIO;
5dbc8fca 5921 } else {
1259ab75
CM
5922 /*
5923 * this bio is actually up to date, we didn't
5924 * go over the max number of errors
5925 */
4246a0b6 5926 bio->bi_error = 0;
1259ab75 5927 }
c55f1396 5928
4246a0b6 5929 btrfs_end_bbio(bbio, bio);
7d2b4daa 5930 } else if (!is_orig_bio) {
8790d502
CM
5931 bio_put(bio);
5932 }
8790d502
CM
5933}
5934
8b712842
CM
5935/*
5936 * see run_scheduled_bios for a description of why bios are collected for
5937 * async submit.
5938 *
5939 * This will add one bio to the pending list for a device and make sure
5940 * the work struct is scheduled.
5941 */
48a3b636
ES
5942static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5943 struct btrfs_device *device,
5944 int rw, struct bio *bio)
8b712842
CM
5945{
5946 int should_queue = 1;
ffbd517d 5947 struct btrfs_pending_bios *pending_bios;
8b712842 5948
53b381b3 5949 if (device->missing || !device->bdev) {
4246a0b6 5950 bio_io_error(bio);
53b381b3
DW
5951 return;
5952 }
5953
8b712842 5954 /* don't bother with additional async steps for reads, right now */
7b6d91da 5955 if (!(rw & REQ_WRITE)) {
492bb6de 5956 bio_get(bio);
21adbd5c 5957 btrfsic_submit_bio(rw, bio);
492bb6de 5958 bio_put(bio);
143bede5 5959 return;
8b712842
CM
5960 }
5961
5962 /*
0986fe9e 5963 * nr_async_bios allows us to reliably return congestion to the
8b712842
CM
5964 * higher layers. Otherwise, the async bio makes it appear we have
5965 * made progress against dirty pages when we've really just put it
5966 * on a queue for later
5967 */
0986fe9e 5968 atomic_inc(&root->fs_info->nr_async_bios);
492bb6de 5969 WARN_ON(bio->bi_next);
8b712842
CM
5970 bio->bi_next = NULL;
5971 bio->bi_rw |= rw;
5972
5973 spin_lock(&device->io_lock);
7b6d91da 5974 if (bio->bi_rw & REQ_SYNC)
ffbd517d
CM
5975 pending_bios = &device->pending_sync_bios;
5976 else
5977 pending_bios = &device->pending_bios;
8b712842 5978
ffbd517d
CM
5979 if (pending_bios->tail)
5980 pending_bios->tail->bi_next = bio;
8b712842 5981
ffbd517d
CM
5982 pending_bios->tail = bio;
5983 if (!pending_bios->head)
5984 pending_bios->head = bio;
8b712842
CM
5985 if (device->running_pending)
5986 should_queue = 0;
5987
5988 spin_unlock(&device->io_lock);
5989
5990 if (should_queue)
a8c93d4e
QW
5991 btrfs_queue_work(root->fs_info->submit_workers,
5992 &device->work);
8b712842
CM
5993}
5994
de1ee92a
JB
5995static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5996 struct bio *bio, u64 physical, int dev_nr,
5997 int rw, int async)
5998{
5999 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
6000
6001 bio->bi_private = bbio;
9be3395b 6002 btrfs_io_bio(bio)->stripe_index = dev_nr;
de1ee92a 6003 bio->bi_end_io = btrfs_end_bio;
4f024f37 6004 bio->bi_iter.bi_sector = physical >> 9;
de1ee92a
JB
6005#ifdef DEBUG
6006 {
6007 struct rcu_string *name;
6008
6009 rcu_read_lock();
6010 name = rcu_dereference(dev->name);
d1423248 6011 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
de1ee92a 6012 "(%s id %llu), size=%u\n", rw,
1b6e4469
FF
6013 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
6014 name->str, dev->devid, bio->bi_iter.bi_size);
de1ee92a
JB
6015 rcu_read_unlock();
6016 }
6017#endif
6018 bio->bi_bdev = dev->bdev;
c404e0dc
MX
6019
6020 btrfs_bio_counter_inc_noblocked(root->fs_info);
6021
de1ee92a 6022 if (async)
53b381b3 6023 btrfs_schedule_bio(root, dev, rw, bio);
de1ee92a
JB
6024 else
6025 btrfsic_submit_bio(rw, bio);
6026}
6027
de1ee92a
JB
6028static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6029{
6030 atomic_inc(&bbio->error);
6031 if (atomic_dec_and_test(&bbio->stripes_pending)) {
8408c716
MX
6032 /* Shoud be the original bio. */
6033 WARN_ON(bio != bbio->orig_bio);
6034
9be3395b 6035 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
4f024f37 6036 bio->bi_iter.bi_sector = logical >> 9;
4246a0b6
CH
6037 bio->bi_error = -EIO;
6038 btrfs_end_bbio(bbio, bio);
de1ee92a
JB
6039 }
6040}
6041
f188591e 6042int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
8b712842 6043 int mirror_num, int async_submit)
0b86a832 6044{
0b86a832 6045 struct btrfs_device *dev;
8790d502 6046 struct bio *first_bio = bio;
4f024f37 6047 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
0b86a832
CM
6048 u64 length = 0;
6049 u64 map_length;
0b86a832 6050 int ret;
08da757d
ZL
6051 int dev_nr;
6052 int total_devs;
a1d3c478 6053 struct btrfs_bio *bbio = NULL;
0b86a832 6054
4f024f37 6055 length = bio->bi_iter.bi_size;
0b86a832 6056 map_length = length;
cea9e445 6057
c404e0dc 6058 btrfs_bio_counter_inc_blocked(root->fs_info);
53b381b3 6059 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
8e5cfb55 6060 mirror_num, 1);
c404e0dc
MX
6061 if (ret) {
6062 btrfs_bio_counter_dec(root->fs_info);
79787eaa 6063 return ret;
c404e0dc 6064 }
cea9e445 6065
a1d3c478 6066 total_devs = bbio->num_stripes;
53b381b3
DW
6067 bbio->orig_bio = first_bio;
6068 bbio->private = first_bio->bi_private;
6069 bbio->end_io = first_bio->bi_end_io;
c404e0dc 6070 bbio->fs_info = root->fs_info;
53b381b3
DW
6071 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6072
ad1ba2a0
ZL
6073 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
6074 ((rw & WRITE) || (mirror_num > 1))) {
53b381b3
DW
6075 /* In this case, map_length has been set to the length of
6076 a single stripe; not the whole write */
6077 if (rw & WRITE) {
8e5cfb55 6078 ret = raid56_parity_write(root, bio, bbio, map_length);
53b381b3 6079 } else {
8e5cfb55 6080 ret = raid56_parity_recover(root, bio, bbio, map_length,
4245215d 6081 mirror_num, 1);
53b381b3 6082 }
4245215d 6083
c404e0dc
MX
6084 btrfs_bio_counter_dec(root->fs_info);
6085 return ret;
53b381b3
DW
6086 }
6087
cea9e445 6088 if (map_length < length) {
c2cf52eb 6089 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
c1c9ff7c 6090 logical, length, map_length);
cea9e445
CM
6091 BUG();
6092 }
a1d3c478 6093
08da757d 6094 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
de1ee92a
JB
6095 dev = bbio->stripes[dev_nr].dev;
6096 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6097 bbio_error(bbio, first_bio, logical);
de1ee92a
JB
6098 continue;
6099 }
6100
a1d3c478 6101 if (dev_nr < total_devs - 1) {
9be3395b 6102 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
79787eaa 6103 BUG_ON(!bio); /* -ENOMEM */
326e1dbb 6104 } else
a1d3c478 6105 bio = first_bio;
de1ee92a
JB
6106
6107 submit_stripe_bio(root, bbio, bio,
6108 bbio->stripes[dev_nr].physical, dev_nr, rw,
6109 async_submit);
8790d502 6110 }
c404e0dc 6111 btrfs_bio_counter_dec(root->fs_info);
0b86a832
CM
6112 return 0;
6113}
6114
aa1b8cd4 6115struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
2b82032c 6116 u8 *uuid, u8 *fsid)
0b86a832 6117{
2b82032c
YZ
6118 struct btrfs_device *device;
6119 struct btrfs_fs_devices *cur_devices;
6120
aa1b8cd4 6121 cur_devices = fs_info->fs_devices;
2b82032c
YZ
6122 while (cur_devices) {
6123 if (!fsid ||
6124 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6125 device = __find_device(&cur_devices->devices,
6126 devid, uuid);
6127 if (device)
6128 return device;
6129 }
6130 cur_devices = cur_devices->seed;
6131 }
6132 return NULL;
0b86a832
CM
6133}
6134
dfe25020 6135static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
5f375835 6136 struct btrfs_fs_devices *fs_devices,
dfe25020
CM
6137 u64 devid, u8 *dev_uuid)
6138{
6139 struct btrfs_device *device;
dfe25020 6140
12bd2fc0
ID
6141 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6142 if (IS_ERR(device))
7cbd8a83 6143 return NULL;
12bd2fc0
ID
6144
6145 list_add(&device->dev_list, &fs_devices->devices);
e4404d6e 6146 device->fs_devices = fs_devices;
dfe25020 6147 fs_devices->num_devices++;
12bd2fc0
ID
6148
6149 device->missing = 1;
cd02dca5 6150 fs_devices->missing_devices++;
12bd2fc0 6151
dfe25020
CM
6152 return device;
6153}
6154
12bd2fc0
ID
6155/**
6156 * btrfs_alloc_device - allocate struct btrfs_device
6157 * @fs_info: used only for generating a new devid, can be NULL if
6158 * devid is provided (i.e. @devid != NULL).
6159 * @devid: a pointer to devid for this device. If NULL a new devid
6160 * is generated.
6161 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6162 * is generated.
6163 *
6164 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6165 * on error. Returned struct is not linked onto any lists and can be
6166 * destroyed with kfree() right away.
6167 */
6168struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6169 const u64 *devid,
6170 const u8 *uuid)
6171{
6172 struct btrfs_device *dev;
6173 u64 tmp;
6174
fae7f21c 6175 if (WARN_ON(!devid && !fs_info))
12bd2fc0 6176 return ERR_PTR(-EINVAL);
12bd2fc0
ID
6177
6178 dev = __alloc_device();
6179 if (IS_ERR(dev))
6180 return dev;
6181
6182 if (devid)
6183 tmp = *devid;
6184 else {
6185 int ret;
6186
6187 ret = find_next_devid(fs_info, &tmp);
6188 if (ret) {
6189 kfree(dev);
6190 return ERR_PTR(ret);
6191 }
6192 }
6193 dev->devid = tmp;
6194
6195 if (uuid)
6196 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6197 else
6198 generate_random_uuid(dev->uuid);
6199
9e0af237
LB
6200 btrfs_init_work(&dev->work, btrfs_submit_helper,
6201 pending_bios_fn, NULL, NULL);
12bd2fc0
ID
6202
6203 return dev;
6204}
6205
0b86a832
CM
6206static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6207 struct extent_buffer *leaf,
6208 struct btrfs_chunk *chunk)
6209{
6210 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6211 struct map_lookup *map;
6212 struct extent_map *em;
6213 u64 logical;
6214 u64 length;
f04b772b 6215 u64 stripe_len;
0b86a832 6216 u64 devid;
a443755f 6217 u8 uuid[BTRFS_UUID_SIZE];
593060d7 6218 int num_stripes;
0b86a832 6219 int ret;
593060d7 6220 int i;
0b86a832 6221
e17cade2
CM
6222 logical = key->offset;
6223 length = btrfs_chunk_length(leaf, chunk);
f04b772b
QW
6224 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6225 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6226 /* Validation check */
6227 if (!num_stripes) {
6228 btrfs_err(root->fs_info, "invalid chunk num_stripes: %u",
6229 num_stripes);
6230 return -EIO;
6231 }
6232 if (!IS_ALIGNED(logical, root->sectorsize)) {
6233 btrfs_err(root->fs_info,
6234 "invalid chunk logical %llu", logical);
6235 return -EIO;
6236 }
6237 if (!length || !IS_ALIGNED(length, root->sectorsize)) {
6238 btrfs_err(root->fs_info,
6239 "invalid chunk length %llu", length);
6240 return -EIO;
6241 }
6242 if (!is_power_of_2(stripe_len)) {
6243 btrfs_err(root->fs_info, "invalid chunk stripe length: %llu",
6244 stripe_len);
6245 return -EIO;
6246 }
6247 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6248 btrfs_chunk_type(leaf, chunk)) {
6249 btrfs_err(root->fs_info, "unrecognized chunk type: %llu",
6250 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6251 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6252 btrfs_chunk_type(leaf, chunk));
6253 return -EIO;
6254 }
a061fc8d 6255
890871be 6256 read_lock(&map_tree->map_tree.lock);
0b86a832 6257 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
890871be 6258 read_unlock(&map_tree->map_tree.lock);
0b86a832
CM
6259
6260 /* already mapped? */
6261 if (em && em->start <= logical && em->start + em->len > logical) {
6262 free_extent_map(em);
0b86a832
CM
6263 return 0;
6264 } else if (em) {
6265 free_extent_map(em);
6266 }
0b86a832 6267
172ddd60 6268 em = alloc_extent_map();
0b86a832
CM
6269 if (!em)
6270 return -ENOMEM;
593060d7 6271 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
0b86a832
CM
6272 if (!map) {
6273 free_extent_map(em);
6274 return -ENOMEM;
6275 }
6276
298a8f9c 6277 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
95617d69 6278 em->map_lookup = map;
0b86a832
CM
6279 em->start = logical;
6280 em->len = length;
70c8a91c 6281 em->orig_start = 0;
0b86a832 6282 em->block_start = 0;
c8b97818 6283 em->block_len = em->len;
0b86a832 6284
593060d7
CM
6285 map->num_stripes = num_stripes;
6286 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6287 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6288 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6289 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6290 map->type = btrfs_chunk_type(leaf, chunk);
321aecc6 6291 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
593060d7
CM
6292 for (i = 0; i < num_stripes; i++) {
6293 map->stripes[i].physical =
6294 btrfs_stripe_offset_nr(leaf, chunk, i);
6295 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
a443755f
CM
6296 read_extent_buffer(leaf, uuid, (unsigned long)
6297 btrfs_stripe_dev_uuid_nr(chunk, i),
6298 BTRFS_UUID_SIZE);
aa1b8cd4
SB
6299 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6300 uuid, NULL);
dfe25020 6301 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
593060d7
CM
6302 free_extent_map(em);
6303 return -EIO;
6304 }
dfe25020
CM
6305 if (!map->stripes[i].dev) {
6306 map->stripes[i].dev =
5f375835
MX
6307 add_missing_dev(root, root->fs_info->fs_devices,
6308 devid, uuid);
dfe25020 6309 if (!map->stripes[i].dev) {
dfe25020
CM
6310 free_extent_map(em);
6311 return -EIO;
6312 }
816fcebe
AJ
6313 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6314 devid, uuid);
dfe25020
CM
6315 }
6316 map->stripes[i].dev->in_fs_metadata = 1;
0b86a832
CM
6317 }
6318
890871be 6319 write_lock(&map_tree->map_tree.lock);
09a2a8f9 6320 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
890871be 6321 write_unlock(&map_tree->map_tree.lock);
79787eaa 6322 BUG_ON(ret); /* Tree corruption */
0b86a832
CM
6323 free_extent_map(em);
6324
6325 return 0;
6326}
6327
143bede5 6328static void fill_device_from_item(struct extent_buffer *leaf,
0b86a832
CM
6329 struct btrfs_dev_item *dev_item,
6330 struct btrfs_device *device)
6331{
6332 unsigned long ptr;
0b86a832
CM
6333
6334 device->devid = btrfs_device_id(leaf, dev_item);
d6397bae
CB
6335 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6336 device->total_bytes = device->disk_total_bytes;
935e5cc9 6337 device->commit_total_bytes = device->disk_total_bytes;
0b86a832 6338 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
ce7213c7 6339 device->commit_bytes_used = device->bytes_used;
0b86a832
CM
6340 device->type = btrfs_device_type(leaf, dev_item);
6341 device->io_align = btrfs_device_io_align(leaf, dev_item);
6342 device->io_width = btrfs_device_io_width(leaf, dev_item);
6343 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
8dabb742 6344 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
63a212ab 6345 device->is_tgtdev_for_dev_replace = 0;
0b86a832 6346
410ba3a2 6347 ptr = btrfs_device_uuid(dev_item);
e17cade2 6348 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
0b86a832
CM
6349}
6350
5f375835
MX
6351static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6352 u8 *fsid)
2b82032c
YZ
6353{
6354 struct btrfs_fs_devices *fs_devices;
6355 int ret;
6356
b367e47f 6357 BUG_ON(!mutex_is_locked(&uuid_mutex));
2b82032c
YZ
6358
6359 fs_devices = root->fs_info->fs_devices->seed;
6360 while (fs_devices) {
5f375835
MX
6361 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6362 return fs_devices;
6363
2b82032c
YZ
6364 fs_devices = fs_devices->seed;
6365 }
6366
6367 fs_devices = find_fsid(fsid);
6368 if (!fs_devices) {
5f375835
MX
6369 if (!btrfs_test_opt(root, DEGRADED))
6370 return ERR_PTR(-ENOENT);
6371
6372 fs_devices = alloc_fs_devices(fsid);
6373 if (IS_ERR(fs_devices))
6374 return fs_devices;
6375
6376 fs_devices->seeding = 1;
6377 fs_devices->opened = 1;
6378 return fs_devices;
2b82032c 6379 }
e4404d6e
YZ
6380
6381 fs_devices = clone_fs_devices(fs_devices);
5f375835
MX
6382 if (IS_ERR(fs_devices))
6383 return fs_devices;
2b82032c 6384
97288f2c 6385 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
15916de8 6386 root->fs_info->bdev_holder);
48d28232
JL
6387 if (ret) {
6388 free_fs_devices(fs_devices);
5f375835 6389 fs_devices = ERR_PTR(ret);
2b82032c 6390 goto out;
48d28232 6391 }
2b82032c
YZ
6392
6393 if (!fs_devices->seeding) {
6394 __btrfs_close_devices(fs_devices);
e4404d6e 6395 free_fs_devices(fs_devices);
5f375835 6396 fs_devices = ERR_PTR(-EINVAL);
2b82032c
YZ
6397 goto out;
6398 }
6399
6400 fs_devices->seed = root->fs_info->fs_devices->seed;
6401 root->fs_info->fs_devices->seed = fs_devices;
2b82032c 6402out:
5f375835 6403 return fs_devices;
2b82032c
YZ
6404}
6405
0d81ba5d 6406static int read_one_dev(struct btrfs_root *root,
0b86a832
CM
6407 struct extent_buffer *leaf,
6408 struct btrfs_dev_item *dev_item)
6409{
5f375835 6410 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
0b86a832
CM
6411 struct btrfs_device *device;
6412 u64 devid;
6413 int ret;
2b82032c 6414 u8 fs_uuid[BTRFS_UUID_SIZE];
a443755f
CM
6415 u8 dev_uuid[BTRFS_UUID_SIZE];
6416
0b86a832 6417 devid = btrfs_device_id(leaf, dev_item);
410ba3a2 6418 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
a443755f 6419 BTRFS_UUID_SIZE);
1473b24e 6420 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
2b82032c
YZ
6421 BTRFS_UUID_SIZE);
6422
6423 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
5f375835
MX
6424 fs_devices = open_seed_devices(root, fs_uuid);
6425 if (IS_ERR(fs_devices))
6426 return PTR_ERR(fs_devices);
2b82032c
YZ
6427 }
6428
aa1b8cd4 6429 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
5f375835 6430 if (!device) {
e4404d6e 6431 if (!btrfs_test_opt(root, DEGRADED))
2b82032c
YZ
6432 return -EIO;
6433
5f375835
MX
6434 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6435 if (!device)
6436 return -ENOMEM;
33b97e43
AJ
6437 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6438 devid, dev_uuid);
5f375835
MX
6439 } else {
6440 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6441 return -EIO;
6442
6443 if(!device->bdev && !device->missing) {
cd02dca5
CM
6444 /*
6445 * this happens when a device that was properly setup
6446 * in the device info lists suddenly goes bad.
6447 * device->bdev is NULL, and so we have to set
6448 * device->missing to one here
6449 */
5f375835 6450 device->fs_devices->missing_devices++;
cd02dca5 6451 device->missing = 1;
2b82032c 6452 }
5f375835
MX
6453
6454 /* Move the device to its own fs_devices */
6455 if (device->fs_devices != fs_devices) {
6456 ASSERT(device->missing);
6457
6458 list_move(&device->dev_list, &fs_devices->devices);
6459 device->fs_devices->num_devices--;
6460 fs_devices->num_devices++;
6461
6462 device->fs_devices->missing_devices--;
6463 fs_devices->missing_devices++;
6464
6465 device->fs_devices = fs_devices;
6466 }
2b82032c
YZ
6467 }
6468
6469 if (device->fs_devices != root->fs_info->fs_devices) {
6470 BUG_ON(device->writeable);
6471 if (device->generation !=
6472 btrfs_device_generation(leaf, dev_item))
6473 return -EINVAL;
6324fbf3 6474 }
0b86a832
CM
6475
6476 fill_device_from_item(leaf, dev_item, device);
dfe25020 6477 device->in_fs_metadata = 1;
63a212ab 6478 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
2b82032c 6479 device->fs_devices->total_rw_bytes += device->total_bytes;
2bf64758
JB
6480 spin_lock(&root->fs_info->free_chunk_lock);
6481 root->fs_info->free_chunk_space += device->total_bytes -
6482 device->bytes_used;
6483 spin_unlock(&root->fs_info->free_chunk_lock);
6484 }
0b86a832 6485 ret = 0;
0b86a832
CM
6486 return ret;
6487}
6488
e4404d6e 6489int btrfs_read_sys_array(struct btrfs_root *root)
0b86a832 6490{
6c41761f 6491 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
a061fc8d 6492 struct extent_buffer *sb;
0b86a832 6493 struct btrfs_disk_key *disk_key;
0b86a832 6494 struct btrfs_chunk *chunk;
1ffb22cf
DS
6495 u8 *array_ptr;
6496 unsigned long sb_array_offset;
84eed90f 6497 int ret = 0;
0b86a832
CM
6498 u32 num_stripes;
6499 u32 array_size;
6500 u32 len = 0;
1ffb22cf 6501 u32 cur_offset;
84eed90f 6502 struct btrfs_key key;
0b86a832 6503
a83fffb7
DS
6504 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6505 /*
6506 * This will create extent buffer of nodesize, superblock size is
6507 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6508 * overallocate but we can keep it as-is, only the first page is used.
6509 */
6510 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
a061fc8d
CM
6511 if (!sb)
6512 return -ENOMEM;
4db8c528 6513 set_extent_buffer_uptodate(sb);
85d4e461 6514 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
8a334426
DS
6515 /*
6516 * The sb extent buffer is artifical and just used to read the system array.
4db8c528 6517 * set_extent_buffer_uptodate() call does not properly mark all it's
8a334426
DS
6518 * pages up-to-date when the page is larger: extent does not cover the
6519 * whole page and consequently check_page_uptodate does not find all
6520 * the page's extents up-to-date (the hole beyond sb),
6521 * write_extent_buffer then triggers a WARN_ON.
6522 *
6523 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6524 * but sb spans only this function. Add an explicit SetPageUptodate call
6525 * to silence the warning eg. on PowerPC 64.
6526 */
6527 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
727011e0 6528 SetPageUptodate(sb->pages[0]);
4008c04a 6529
a061fc8d 6530 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
0b86a832
CM
6531 array_size = btrfs_super_sys_array_size(super_copy);
6532
1ffb22cf
DS
6533 array_ptr = super_copy->sys_chunk_array;
6534 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6535 cur_offset = 0;
0b86a832 6536
1ffb22cf
DS
6537 while (cur_offset < array_size) {
6538 disk_key = (struct btrfs_disk_key *)array_ptr;
e3540eab
DS
6539 len = sizeof(*disk_key);
6540 if (cur_offset + len > array_size)
6541 goto out_short_read;
6542
0b86a832
CM
6543 btrfs_disk_key_to_cpu(&key, disk_key);
6544
1ffb22cf
DS
6545 array_ptr += len;
6546 sb_array_offset += len;
6547 cur_offset += len;
0b86a832 6548
0d81ba5d 6549 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1ffb22cf 6550 chunk = (struct btrfs_chunk *)sb_array_offset;
e3540eab
DS
6551 /*
6552 * At least one btrfs_chunk with one stripe must be
6553 * present, exact stripe count check comes afterwards
6554 */
6555 len = btrfs_chunk_item_size(1);
6556 if (cur_offset + len > array_size)
6557 goto out_short_read;
6558
6559 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
f5cdedd7
DS
6560 if (!num_stripes) {
6561 printk(KERN_ERR
6562 "BTRFS: invalid number of stripes %u in sys_array at offset %u\n",
6563 num_stripes, cur_offset);
6564 ret = -EIO;
6565 break;
6566 }
6567
e3540eab
DS
6568 len = btrfs_chunk_item_size(num_stripes);
6569 if (cur_offset + len > array_size)
6570 goto out_short_read;
6571
0d81ba5d 6572 ret = read_one_chunk(root, &key, sb, chunk);
84eed90f
CM
6573 if (ret)
6574 break;
0b86a832 6575 } else {
93a3d467
DS
6576 printk(KERN_ERR
6577 "BTRFS: unexpected item type %u in sys_array at offset %u\n",
6578 (u32)key.type, cur_offset);
84eed90f
CM
6579 ret = -EIO;
6580 break;
0b86a832 6581 }
1ffb22cf
DS
6582 array_ptr += len;
6583 sb_array_offset += len;
6584 cur_offset += len;
0b86a832 6585 }
a061fc8d 6586 free_extent_buffer(sb);
84eed90f 6587 return ret;
e3540eab
DS
6588
6589out_short_read:
6590 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6591 len, cur_offset);
6592 free_extent_buffer(sb);
6593 return -EIO;
0b86a832
CM
6594}
6595
6596int btrfs_read_chunk_tree(struct btrfs_root *root)
6597{
6598 struct btrfs_path *path;
6599 struct extent_buffer *leaf;
6600 struct btrfs_key key;
6601 struct btrfs_key found_key;
6602 int ret;
6603 int slot;
6604
6605 root = root->fs_info->chunk_root;
6606
6607 path = btrfs_alloc_path();
6608 if (!path)
6609 return -ENOMEM;
6610
b367e47f
LZ
6611 mutex_lock(&uuid_mutex);
6612 lock_chunks(root);
6613
395927a9
FDBM
6614 /*
6615 * Read all device items, and then all the chunk items. All
6616 * device items are found before any chunk item (their object id
6617 * is smaller than the lowest possible object id for a chunk
6618 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
0b86a832
CM
6619 */
6620 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6621 key.offset = 0;
6622 key.type = 0;
0b86a832 6623 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
ab59381e
ZL
6624 if (ret < 0)
6625 goto error;
d397712b 6626 while (1) {
0b86a832
CM
6627 leaf = path->nodes[0];
6628 slot = path->slots[0];
6629 if (slot >= btrfs_header_nritems(leaf)) {
6630 ret = btrfs_next_leaf(root, path);
6631 if (ret == 0)
6632 continue;
6633 if (ret < 0)
6634 goto error;
6635 break;
6636 }
6637 btrfs_item_key_to_cpu(leaf, &found_key, slot);
395927a9
FDBM
6638 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6639 struct btrfs_dev_item *dev_item;
6640 dev_item = btrfs_item_ptr(leaf, slot,
0b86a832 6641 struct btrfs_dev_item);
395927a9
FDBM
6642 ret = read_one_dev(root, leaf, dev_item);
6643 if (ret)
6644 goto error;
0b86a832
CM
6645 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6646 struct btrfs_chunk *chunk;
6647 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6648 ret = read_one_chunk(root, &found_key, leaf, chunk);
2b82032c
YZ
6649 if (ret)
6650 goto error;
0b86a832
CM
6651 }
6652 path->slots[0]++;
6653 }
0b86a832
CM
6654 ret = 0;
6655error:
b367e47f
LZ
6656 unlock_chunks(root);
6657 mutex_unlock(&uuid_mutex);
6658
2b82032c 6659 btrfs_free_path(path);
0b86a832
CM
6660 return ret;
6661}
442a4f63 6662
cb517eab
MX
6663void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6664{
6665 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6666 struct btrfs_device *device;
6667
29cc83f6
LB
6668 while (fs_devices) {
6669 mutex_lock(&fs_devices->device_list_mutex);
6670 list_for_each_entry(device, &fs_devices->devices, dev_list)
6671 device->dev_root = fs_info->dev_root;
6672 mutex_unlock(&fs_devices->device_list_mutex);
6673
6674 fs_devices = fs_devices->seed;
6675 }
cb517eab
MX
6676}
6677
733f4fbb
SB
6678static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6679{
6680 int i;
6681
6682 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6683 btrfs_dev_stat_reset(dev, i);
6684}
6685
6686int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6687{
6688 struct btrfs_key key;
6689 struct btrfs_key found_key;
6690 struct btrfs_root *dev_root = fs_info->dev_root;
6691 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6692 struct extent_buffer *eb;
6693 int slot;
6694 int ret = 0;
6695 struct btrfs_device *device;
6696 struct btrfs_path *path = NULL;
6697 int i;
6698
6699 path = btrfs_alloc_path();
6700 if (!path) {
6701 ret = -ENOMEM;
6702 goto out;
6703 }
6704
6705 mutex_lock(&fs_devices->device_list_mutex);
6706 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6707 int item_size;
6708 struct btrfs_dev_stats_item *ptr;
6709
6710 key.objectid = 0;
6711 key.type = BTRFS_DEV_STATS_KEY;
6712 key.offset = device->devid;
6713 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6714 if (ret) {
733f4fbb
SB
6715 __btrfs_reset_dev_stats(device);
6716 device->dev_stats_valid = 1;
6717 btrfs_release_path(path);
6718 continue;
6719 }
6720 slot = path->slots[0];
6721 eb = path->nodes[0];
6722 btrfs_item_key_to_cpu(eb, &found_key, slot);
6723 item_size = btrfs_item_size_nr(eb, slot);
6724
6725 ptr = btrfs_item_ptr(eb, slot,
6726 struct btrfs_dev_stats_item);
6727
6728 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6729 if (item_size >= (1 + i) * sizeof(__le64))
6730 btrfs_dev_stat_set(device, i,
6731 btrfs_dev_stats_value(eb, ptr, i));
6732 else
6733 btrfs_dev_stat_reset(device, i);
6734 }
6735
6736 device->dev_stats_valid = 1;
6737 btrfs_dev_stat_print_on_load(device);
6738 btrfs_release_path(path);
6739 }
6740 mutex_unlock(&fs_devices->device_list_mutex);
6741
6742out:
6743 btrfs_free_path(path);
6744 return ret < 0 ? ret : 0;
6745}
6746
6747static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6748 struct btrfs_root *dev_root,
6749 struct btrfs_device *device)
6750{
6751 struct btrfs_path *path;
6752 struct btrfs_key key;
6753 struct extent_buffer *eb;
6754 struct btrfs_dev_stats_item *ptr;
6755 int ret;
6756 int i;
6757
6758 key.objectid = 0;
6759 key.type = BTRFS_DEV_STATS_KEY;
6760 key.offset = device->devid;
6761
6762 path = btrfs_alloc_path();
6763 BUG_ON(!path);
6764 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6765 if (ret < 0) {
ecaeb14b
DS
6766 btrfs_warn_in_rcu(dev_root->fs_info,
6767 "error %d while searching for dev_stats item for device %s",
606686ee 6768 ret, rcu_str_deref(device->name));
733f4fbb
SB
6769 goto out;
6770 }
6771
6772 if (ret == 0 &&
6773 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6774 /* need to delete old one and insert a new one */
6775 ret = btrfs_del_item(trans, dev_root, path);
6776 if (ret != 0) {
ecaeb14b
DS
6777 btrfs_warn_in_rcu(dev_root->fs_info,
6778 "delete too small dev_stats item for device %s failed %d",
606686ee 6779 rcu_str_deref(device->name), ret);
733f4fbb
SB
6780 goto out;
6781 }
6782 ret = 1;
6783 }
6784
6785 if (ret == 1) {
6786 /* need to insert a new item */
6787 btrfs_release_path(path);
6788 ret = btrfs_insert_empty_item(trans, dev_root, path,
6789 &key, sizeof(*ptr));
6790 if (ret < 0) {
ecaeb14b
DS
6791 btrfs_warn_in_rcu(dev_root->fs_info,
6792 "insert dev_stats item for device %s failed %d",
6793 rcu_str_deref(device->name), ret);
733f4fbb
SB
6794 goto out;
6795 }
6796 }
6797
6798 eb = path->nodes[0];
6799 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6800 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6801 btrfs_set_dev_stats_value(eb, ptr, i,
6802 btrfs_dev_stat_read(device, i));
6803 btrfs_mark_buffer_dirty(eb);
6804
6805out:
6806 btrfs_free_path(path);
6807 return ret;
6808}
6809
6810/*
6811 * called from commit_transaction. Writes all changed device stats to disk.
6812 */
6813int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6814 struct btrfs_fs_info *fs_info)
6815{
6816 struct btrfs_root *dev_root = fs_info->dev_root;
6817 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6818 struct btrfs_device *device;
addc3fa7 6819 int stats_cnt;
733f4fbb
SB
6820 int ret = 0;
6821
6822 mutex_lock(&fs_devices->device_list_mutex);
6823 list_for_each_entry(device, &fs_devices->devices, dev_list) {
addc3fa7 6824 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
733f4fbb
SB
6825 continue;
6826
addc3fa7 6827 stats_cnt = atomic_read(&device->dev_stats_ccnt);
733f4fbb
SB
6828 ret = update_dev_stat_item(trans, dev_root, device);
6829 if (!ret)
addc3fa7 6830 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
733f4fbb
SB
6831 }
6832 mutex_unlock(&fs_devices->device_list_mutex);
6833
6834 return ret;
6835}
6836
442a4f63
SB
6837void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6838{
6839 btrfs_dev_stat_inc(dev, index);
6840 btrfs_dev_stat_print_on_error(dev);
6841}
6842
48a3b636 6843static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
442a4f63 6844{
733f4fbb
SB
6845 if (!dev->dev_stats_valid)
6846 return;
b14af3b4
DS
6847 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6848 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
606686ee 6849 rcu_str_deref(dev->name),
442a4f63
SB
6850 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6851 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6852 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
efe120a0
FH
6853 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6854 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
442a4f63 6855}
c11d2c23 6856
733f4fbb
SB
6857static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6858{
a98cdb85
SB
6859 int i;
6860
6861 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6862 if (btrfs_dev_stat_read(dev, i) != 0)
6863 break;
6864 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6865 return; /* all values == 0, suppress message */
6866
ecaeb14b
DS
6867 btrfs_info_in_rcu(dev->dev_root->fs_info,
6868 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
606686ee 6869 rcu_str_deref(dev->name),
733f4fbb
SB
6870 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6871 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6872 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6873 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6874 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6875}
6876
c11d2c23 6877int btrfs_get_dev_stats(struct btrfs_root *root,
b27f7c0c 6878 struct btrfs_ioctl_get_dev_stats *stats)
c11d2c23
SB
6879{
6880 struct btrfs_device *dev;
6881 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6882 int i;
6883
6884 mutex_lock(&fs_devices->device_list_mutex);
aa1b8cd4 6885 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
c11d2c23
SB
6886 mutex_unlock(&fs_devices->device_list_mutex);
6887
6888 if (!dev) {
efe120a0 6889 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
c11d2c23 6890 return -ENODEV;
733f4fbb 6891 } else if (!dev->dev_stats_valid) {
efe120a0 6892 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
733f4fbb 6893 return -ENODEV;
b27f7c0c 6894 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
c11d2c23
SB
6895 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6896 if (stats->nr_items > i)
6897 stats->values[i] =
6898 btrfs_dev_stat_read_and_reset(dev, i);
6899 else
6900 btrfs_dev_stat_reset(dev, i);
6901 }
6902 } else {
6903 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6904 if (stats->nr_items > i)
6905 stats->values[i] = btrfs_dev_stat_read(dev, i);
6906 }
6907 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6908 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6909 return 0;
6910}
a8a6dab7 6911
12b1c263 6912void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
a8a6dab7
SB
6913{
6914 struct buffer_head *bh;
6915 struct btrfs_super_block *disk_super;
12b1c263 6916 int copy_num;
a8a6dab7 6917
12b1c263
AJ
6918 if (!bdev)
6919 return;
a8a6dab7 6920
12b1c263
AJ
6921 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6922 copy_num++) {
a8a6dab7 6923
12b1c263
AJ
6924 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6925 continue;
6926
6927 disk_super = (struct btrfs_super_block *)bh->b_data;
6928
6929 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6930 set_buffer_dirty(bh);
6931 sync_dirty_buffer(bh);
6932 brelse(bh);
6933 }
6934
6935 /* Notify udev that device has changed */
6936 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6937
6938 /* Update ctime/mtime for device path for libblkid */
6939 update_dev_time(device_path);
a8a6dab7 6940}
935e5cc9
MX
6941
6942/*
6943 * Update the size of all devices, which is used for writing out the
6944 * super blocks.
6945 */
6946void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6947{
6948 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6949 struct btrfs_device *curr, *next;
6950
6951 if (list_empty(&fs_devices->resized_devices))
6952 return;
6953
6954 mutex_lock(&fs_devices->device_list_mutex);
6955 lock_chunks(fs_info->dev_root);
6956 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6957 resized_list) {
6958 list_del_init(&curr->resized_list);
6959 curr->commit_total_bytes = curr->disk_total_bytes;
6960 }
6961 unlock_chunks(fs_info->dev_root);
6962 mutex_unlock(&fs_devices->device_list_mutex);
6963}
ce7213c7
MX
6964
6965/* Must be invoked during the transaction commit */
6966void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6967 struct btrfs_transaction *transaction)
6968{
6969 struct extent_map *em;
6970 struct map_lookup *map;
6971 struct btrfs_device *dev;
6972 int i;
6973
6974 if (list_empty(&transaction->pending_chunks))
6975 return;
6976
6977 /* In order to kick the device replace finish process */
6978 lock_chunks(root);
6979 list_for_each_entry(em, &transaction->pending_chunks, list) {
95617d69 6980 map = em->map_lookup;
ce7213c7
MX
6981
6982 for (i = 0; i < map->num_stripes; i++) {
6983 dev = map->stripes[i].dev;
6984 dev->commit_bytes_used = dev->bytes_used;
6985 }
6986 }
6987 unlock_chunks(root);
6988}
5a13f430
AJ
6989
6990void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
6991{
6992 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6993 while (fs_devices) {
6994 fs_devices->fs_info = fs_info;
6995 fs_devices = fs_devices->seed;
6996 }
6997}
6998
6999void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7000{
7001 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7002 while (fs_devices) {
7003 fs_devices->fs_info = NULL;
7004 fs_devices = fs_devices->seed;
7005 }
7006}
f190aa47 7007
87ad58c5 7008static void btrfs_close_one_device(struct btrfs_device *device)
f190aa47
AJ
7009{
7010 struct btrfs_fs_devices *fs_devices = device->fs_devices;
7011 struct btrfs_device *new_device;
7012 struct rcu_string *name;
7013
7014 if (device->bdev)
7015 fs_devices->open_devices--;
7016
7017 if (device->writeable &&
7018 device->devid != BTRFS_DEV_REPLACE_DEVID) {
7019 list_del_init(&device->dev_alloc_list);
7020 fs_devices->rw_devices--;
7021 }
7022
7023 if (device->missing)
7024 fs_devices->missing_devices--;
7025
7026 new_device = btrfs_alloc_device(NULL, &device->devid,
7027 device->uuid);
7028 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
7029
7030 /* Safe because we are under uuid_mutex */
7031 if (device->name) {
7032 name = rcu_string_strdup(device->name->str, GFP_NOFS);
7033 BUG_ON(!name); /* -ENOMEM */
7034 rcu_assign_pointer(new_device->name, name);
7035 }
7036
7037 list_replace_rcu(&device->dev_list, &new_device->dev_list);
7038 new_device->fs_devices = device->fs_devices;
7039
7040 call_rcu(&device->rcu, free_device);
7041}