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