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