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