David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 Oracle. All rights reserved. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4 | */ |
David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 5 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6 | #include <linux/sched.h> |
Josef Bacik | fccc000 | 2020-08-31 10:52:42 -0400 | [diff] [blame] | 7 | #include <linux/sched/mm.h> |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8 | #include <linux/bio.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 9 | #include <linux/slab.h> |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 10 | #include <linux/blkdev.h> |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 11 | #include <linux/ratelimit.h> |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 12 | #include <linux/kthread.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 13 | #include <linux/raid/pq.h> |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 14 | #include <linux/semaphore.h> |
Andy Shevchenko | 8da4b8c | 2016-05-20 17:01:00 -0700 | [diff] [blame] | 15 | #include <linux/uuid.h> |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 16 | #include <linux/list_sort.h> |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 17 | #include <linux/namei.h> |
David Sterba | 784352f | 2019-08-21 18:54:28 +0200 | [diff] [blame] | 18 | #include "misc.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 19 | #include "ctree.h" |
| 20 | #include "extent_map.h" |
| 21 | #include "disk-io.h" |
| 22 | #include "transaction.h" |
| 23 | #include "print-tree.h" |
| 24 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 25 | #include "raid56.h" |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 26 | #include "async-thread.h" |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 27 | #include "check-integrity.h" |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 28 | #include "rcu-string.h" |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 29 | #include "dev-replace.h" |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 30 | #include "sysfs.h" |
Qu Wenruo | 82fc28f | 2019-03-20 13:16:42 +0800 | [diff] [blame] | 31 | #include "tree-checker.h" |
Josef Bacik | 8719aaa | 2019-06-18 16:09:16 -0400 | [diff] [blame] | 32 | #include "space-info.h" |
Josef Bacik | aac0023 | 2019-06-20 15:37:44 -0400 | [diff] [blame] | 33 | #include "block-group.h" |
Dennis Zhou | b0643e5 | 2019-12-13 16:22:14 -0800 | [diff] [blame] | 34 | #include "discard.h" |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 35 | #include "zoned.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 36 | |
Qu Wenruo | bf08387 | 2021-11-19 14:19:33 +0800 | [diff] [blame^] | 37 | #define BTRFS_BLOCK_GROUP_STRIPE_MASK (BTRFS_BLOCK_GROUP_RAID0 | \ |
| 38 | BTRFS_BLOCK_GROUP_RAID10 | \ |
| 39 | BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 40 | |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 41 | const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { |
| 42 | [BTRFS_RAID_RAID10] = { |
| 43 | .sub_stripes = 2, |
| 44 | .dev_stripes = 1, |
| 45 | .devs_max = 0, /* 0 == as many as possible */ |
David Sterba | b2f78e8 | 2021-07-22 20:54:37 +0200 | [diff] [blame] | 46 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 47 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 48 | .devs_increment = 2, |
| 49 | .ncopies = 2, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 50 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 51 | .raid_name = "raid10", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 52 | .bg_flag = BTRFS_BLOCK_GROUP_RAID10, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 53 | .mindev_error = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 54 | }, |
| 55 | [BTRFS_RAID_RAID1] = { |
| 56 | .sub_stripes = 1, |
| 57 | .dev_stripes = 1, |
| 58 | .devs_max = 2, |
| 59 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 60 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 61 | .devs_increment = 2, |
| 62 | .ncopies = 2, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 63 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 64 | .raid_name = "raid1", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 65 | .bg_flag = BTRFS_BLOCK_GROUP_RAID1, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 66 | .mindev_error = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 67 | }, |
David Sterba | 47e6f74 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 68 | [BTRFS_RAID_RAID1C3] = { |
| 69 | .sub_stripes = 1, |
| 70 | .dev_stripes = 1, |
David Sterba | cf93e15 | 2019-11-27 16:10:54 +0100 | [diff] [blame] | 71 | .devs_max = 3, |
David Sterba | 47e6f74 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 72 | .devs_min = 3, |
| 73 | .tolerated_failures = 2, |
| 74 | .devs_increment = 3, |
| 75 | .ncopies = 3, |
David Sterba | db26a02 | 2019-11-25 15:34:48 +0100 | [diff] [blame] | 76 | .nparity = 0, |
David Sterba | 47e6f74 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 77 | .raid_name = "raid1c3", |
| 78 | .bg_flag = BTRFS_BLOCK_GROUP_RAID1C3, |
| 79 | .mindev_error = BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET, |
| 80 | }, |
David Sterba | 8d6fac0 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 81 | [BTRFS_RAID_RAID1C4] = { |
| 82 | .sub_stripes = 1, |
| 83 | .dev_stripes = 1, |
David Sterba | cf93e15 | 2019-11-27 16:10:54 +0100 | [diff] [blame] | 84 | .devs_max = 4, |
David Sterba | 8d6fac0 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 85 | .devs_min = 4, |
| 86 | .tolerated_failures = 3, |
| 87 | .devs_increment = 4, |
| 88 | .ncopies = 4, |
David Sterba | db26a02 | 2019-11-25 15:34:48 +0100 | [diff] [blame] | 89 | .nparity = 0, |
David Sterba | 8d6fac0 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 90 | .raid_name = "raid1c4", |
| 91 | .bg_flag = BTRFS_BLOCK_GROUP_RAID1C4, |
| 92 | .mindev_error = BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET, |
| 93 | }, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 94 | [BTRFS_RAID_DUP] = { |
| 95 | .sub_stripes = 1, |
| 96 | .dev_stripes = 2, |
| 97 | .devs_max = 1, |
| 98 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 99 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 100 | .devs_increment = 1, |
| 101 | .ncopies = 2, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 102 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 103 | .raid_name = "dup", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 104 | .bg_flag = BTRFS_BLOCK_GROUP_DUP, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 105 | .mindev_error = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 106 | }, |
| 107 | [BTRFS_RAID_RAID0] = { |
| 108 | .sub_stripes = 1, |
| 109 | .dev_stripes = 1, |
| 110 | .devs_max = 0, |
David Sterba | b2f78e8 | 2021-07-22 20:54:37 +0200 | [diff] [blame] | 111 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 112 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 113 | .devs_increment = 1, |
| 114 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 115 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 116 | .raid_name = "raid0", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 117 | .bg_flag = BTRFS_BLOCK_GROUP_RAID0, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 118 | .mindev_error = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 119 | }, |
| 120 | [BTRFS_RAID_SINGLE] = { |
| 121 | .sub_stripes = 1, |
| 122 | .dev_stripes = 1, |
| 123 | .devs_max = 1, |
| 124 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 125 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 126 | .devs_increment = 1, |
| 127 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 128 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 129 | .raid_name = "single", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 130 | .bg_flag = 0, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 131 | .mindev_error = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 132 | }, |
| 133 | [BTRFS_RAID_RAID5] = { |
| 134 | .sub_stripes = 1, |
| 135 | .dev_stripes = 1, |
| 136 | .devs_max = 0, |
| 137 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 138 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 139 | .devs_increment = 1, |
Hans van Kranenburg | da612e3 | 2018-10-04 23:24:41 +0200 | [diff] [blame] | 140 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 141 | .nparity = 1, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 142 | .raid_name = "raid5", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 143 | .bg_flag = BTRFS_BLOCK_GROUP_RAID5, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 144 | .mindev_error = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 145 | }, |
| 146 | [BTRFS_RAID_RAID6] = { |
| 147 | .sub_stripes = 1, |
| 148 | .dev_stripes = 1, |
| 149 | .devs_max = 0, |
| 150 | .devs_min = 3, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 151 | .tolerated_failures = 2, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 152 | .devs_increment = 1, |
Hans van Kranenburg | da612e3 | 2018-10-04 23:24:41 +0200 | [diff] [blame] | 153 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 154 | .nparity = 2, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 155 | .raid_name = "raid6", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 156 | .bg_flag = BTRFS_BLOCK_GROUP_RAID6, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 157 | .mindev_error = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 158 | }, |
| 159 | }; |
| 160 | |
David Sterba | 500a44c | 2021-07-26 14:15:19 +0200 | [diff] [blame] | 161 | /* |
| 162 | * Convert block group flags (BTRFS_BLOCK_GROUP_*) to btrfs_raid_types, which |
| 163 | * can be used as index to access btrfs_raid_array[]. |
| 164 | */ |
| 165 | enum btrfs_raid_types __attribute_const__ btrfs_bg_flags_to_raid_index(u64 flags) |
| 166 | { |
| 167 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
| 168 | return BTRFS_RAID_RAID10; |
| 169 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
| 170 | return BTRFS_RAID_RAID1; |
| 171 | else if (flags & BTRFS_BLOCK_GROUP_RAID1C3) |
| 172 | return BTRFS_RAID_RAID1C3; |
| 173 | else if (flags & BTRFS_BLOCK_GROUP_RAID1C4) |
| 174 | return BTRFS_RAID_RAID1C4; |
| 175 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 176 | return BTRFS_RAID_DUP; |
| 177 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 178 | return BTRFS_RAID_RAID0; |
| 179 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
| 180 | return BTRFS_RAID_RAID5; |
| 181 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
| 182 | return BTRFS_RAID_RAID6; |
| 183 | |
| 184 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
| 185 | } |
| 186 | |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 187 | const char *btrfs_bg_type_to_raid_name(u64 flags) |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 188 | { |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 189 | const int index = btrfs_bg_flags_to_raid_index(flags); |
| 190 | |
| 191 | if (index >= BTRFS_NR_RAID_TYPES) |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 192 | return NULL; |
| 193 | |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 194 | return btrfs_raid_array[index].raid_name; |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 195 | } |
| 196 | |
Anand Jain | f89e09c | 2018-11-20 16:12:55 +0800 | [diff] [blame] | 197 | /* |
| 198 | * Fill @buf with textual description of @bg_flags, no more than @size_buf |
| 199 | * bytes including terminating null byte. |
| 200 | */ |
| 201 | void btrfs_describe_block_groups(u64 bg_flags, char *buf, u32 size_buf) |
| 202 | { |
| 203 | int i; |
| 204 | int ret; |
| 205 | char *bp = buf; |
| 206 | u64 flags = bg_flags; |
| 207 | u32 size_bp = size_buf; |
| 208 | |
| 209 | if (!flags) { |
| 210 | strcpy(bp, "NONE"); |
| 211 | return; |
| 212 | } |
| 213 | |
| 214 | #define DESCRIBE_FLAG(flag, desc) \ |
| 215 | do { \ |
| 216 | if (flags & (flag)) { \ |
| 217 | ret = snprintf(bp, size_bp, "%s|", (desc)); \ |
| 218 | if (ret < 0 || ret >= size_bp) \ |
| 219 | goto out_overflow; \ |
| 220 | size_bp -= ret; \ |
| 221 | bp += ret; \ |
| 222 | flags &= ~(flag); \ |
| 223 | } \ |
| 224 | } while (0) |
| 225 | |
| 226 | DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_DATA, "data"); |
| 227 | DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_SYSTEM, "system"); |
| 228 | DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_METADATA, "metadata"); |
| 229 | |
| 230 | DESCRIBE_FLAG(BTRFS_AVAIL_ALLOC_BIT_SINGLE, "single"); |
| 231 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
| 232 | DESCRIBE_FLAG(btrfs_raid_array[i].bg_flag, |
| 233 | btrfs_raid_array[i].raid_name); |
| 234 | #undef DESCRIBE_FLAG |
| 235 | |
| 236 | if (flags) { |
| 237 | ret = snprintf(bp, size_bp, "0x%llx|", flags); |
| 238 | size_bp -= ret; |
| 239 | } |
| 240 | |
| 241 | if (size_bp < size_buf) |
| 242 | buf[size_buf - size_bp - 1] = '\0'; /* remove last | */ |
| 243 | |
| 244 | /* |
| 245 | * The text is trimmed, it's up to the caller to provide sufficiently |
| 246 | * large buffer |
| 247 | */ |
| 248 | out_overflow:; |
| 249 | } |
| 250 | |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 251 | static int init_first_rw_device(struct btrfs_trans_handle *trans); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 252 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 253 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 254 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *device); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 255 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 256 | enum btrfs_map_op op, |
| 257 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 258 | struct btrfs_io_context **bioc_ret, |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 259 | int mirror_num, int need_raid_map); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 260 | |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 261 | /* |
| 262 | * Device locking |
| 263 | * ============== |
| 264 | * |
| 265 | * There are several mutexes that protect manipulation of devices and low-level |
| 266 | * structures like chunks but not block groups, extents or files |
| 267 | * |
| 268 | * uuid_mutex (global lock) |
| 269 | * ------------------------ |
| 270 | * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from |
| 271 | * the SCAN_DEV ioctl registration or from mount either implicitly (the first |
| 272 | * device) or requested by the device= mount option |
| 273 | * |
| 274 | * the mutex can be very coarse and can cover long-running operations |
| 275 | * |
| 276 | * protects: updates to fs_devices counters like missing devices, rw devices, |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 277 | * seeding, structure cloning, opening/closing devices at mount/umount time |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 278 | * |
| 279 | * global::fs_devs - add, remove, updates to the global list |
| 280 | * |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 281 | * does not protect: manipulation of the fs_devices::devices list in general |
| 282 | * but in mount context it could be used to exclude list modifications by eg. |
| 283 | * scan ioctl |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 284 | * |
| 285 | * btrfs_device::name - renames (write side), read is RCU |
| 286 | * |
| 287 | * fs_devices::device_list_mutex (per-fs, with RCU) |
| 288 | * ------------------------------------------------ |
| 289 | * protects updates to fs_devices::devices, ie. adding and deleting |
| 290 | * |
| 291 | * simple list traversal with read-only actions can be done with RCU protection |
| 292 | * |
| 293 | * may be used to exclude some operations from running concurrently without any |
| 294 | * modifications to the list (see write_all_supers) |
| 295 | * |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 296 | * Is not required at mount and close times, because our device list is |
| 297 | * protected by the uuid_mutex at that point. |
| 298 | * |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 299 | * balance_mutex |
| 300 | * ------------- |
| 301 | * protects balance structures (status, state) and context accessed from |
| 302 | * several places (internally, ioctl) |
| 303 | * |
| 304 | * chunk_mutex |
| 305 | * ----------- |
| 306 | * protects chunks, adding or removing during allocation, trim or when a new |
Nikolay Borisov | 0b6f5d4 | 2019-05-09 18:11:11 +0300 | [diff] [blame] | 307 | * device is added/removed. Additionally it also protects post_commit_list of |
| 308 | * individual devices, since they can be added to the transaction's |
| 309 | * post_commit_list only with chunk_mutex held. |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 310 | * |
| 311 | * cleaner_mutex |
| 312 | * ------------- |
| 313 | * a big lock that is held by the cleaner thread and prevents running subvolume |
| 314 | * cleaning together with relocation or delayed iputs |
| 315 | * |
| 316 | * |
| 317 | * Lock nesting |
| 318 | * ============ |
| 319 | * |
| 320 | * uuid_mutex |
Anand Jain | ae3e715 | 2020-05-14 01:42:45 +0800 | [diff] [blame] | 321 | * device_list_mutex |
| 322 | * chunk_mutex |
| 323 | * balance_mutex |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 324 | * |
| 325 | * |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 326 | * Exclusive operations |
| 327 | * ==================== |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 328 | * |
| 329 | * Maintains the exclusivity of the following operations that apply to the |
| 330 | * whole filesystem and cannot run in parallel. |
| 331 | * |
| 332 | * - Balance (*) |
| 333 | * - Device add |
| 334 | * - Device remove |
| 335 | * - Device replace (*) |
| 336 | * - Resize |
| 337 | * |
| 338 | * The device operations (as above) can be in one of the following states: |
| 339 | * |
| 340 | * - Running state |
| 341 | * - Paused state |
| 342 | * - Completed state |
| 343 | * |
| 344 | * Only device operations marked with (*) can go into the Paused state for the |
| 345 | * following reasons: |
| 346 | * |
| 347 | * - ioctl (only Balance can be Paused through ioctl) |
| 348 | * - filesystem remounted as read-only |
| 349 | * - filesystem unmounted and mounted as read-only |
| 350 | * - system power-cycle and filesystem mounted as read-only |
| 351 | * - filesystem or device errors leading to forced read-only |
| 352 | * |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 353 | * The status of exclusive operation is set and cleared atomically. |
| 354 | * During the course of Paused state, fs_info::exclusive_operation remains set. |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 355 | * A device operation in Paused or Running state can be canceled or resumed |
| 356 | * either by ioctl (Balance only) or when remounted as read-write. |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 357 | * The exclusive status is cleared when the device operation is canceled or |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 358 | * completed. |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 359 | */ |
| 360 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 361 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 362 | static LIST_HEAD(fs_uuids); |
David Sterba | 4143cb8 | 2019-10-01 19:57:37 +0200 | [diff] [blame] | 363 | struct list_head * __attribute_const__ btrfs_get_fs_uuids(void) |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 364 | { |
| 365 | return &fs_uuids; |
| 366 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 367 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 368 | /* |
| 369 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 370 | * @fsid: if not NULL, copy the UUID to fs_devices::fsid |
| 371 | * @metadata_fsid: if not NULL, copy the UUID to fs_devices::metadata_fsid |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 372 | * |
| 373 | * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR(). |
| 374 | * The returned struct is not linked onto any lists and can be destroyed with |
| 375 | * kfree() right away. |
| 376 | */ |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 377 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid, |
| 378 | const u8 *metadata_fsid) |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 379 | { |
| 380 | struct btrfs_fs_devices *fs_devs; |
| 381 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 382 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 383 | if (!fs_devs) |
| 384 | return ERR_PTR(-ENOMEM); |
| 385 | |
| 386 | mutex_init(&fs_devs->device_list_mutex); |
| 387 | |
| 388 | INIT_LIST_HEAD(&fs_devs->devices); |
| 389 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 390 | INIT_LIST_HEAD(&fs_devs->fs_list); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 391 | INIT_LIST_HEAD(&fs_devs->seed_list); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 392 | if (fsid) |
| 393 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 394 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 395 | if (metadata_fsid) |
| 396 | memcpy(fs_devs->metadata_uuid, metadata_fsid, BTRFS_FSID_SIZE); |
| 397 | else if (fsid) |
| 398 | memcpy(fs_devs->metadata_uuid, fsid, BTRFS_FSID_SIZE); |
| 399 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 400 | return fs_devs; |
| 401 | } |
| 402 | |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 403 | void btrfs_free_device(struct btrfs_device *device) |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 404 | { |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 405 | WARN_ON(!list_empty(&device->post_commit_list)); |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 406 | rcu_string_free(device->name); |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 407 | extent_io_tree_release(&device->alloc_state); |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 408 | bio_put(device->flush_bio); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 409 | btrfs_destroy_dev_zone_info(device); |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 410 | kfree(device); |
| 411 | } |
| 412 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 413 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 414 | { |
| 415 | struct btrfs_device *device; |
| 416 | WARN_ON(fs_devices->opened); |
| 417 | while (!list_empty(&fs_devices->devices)) { |
| 418 | device = list_entry(fs_devices->devices.next, |
| 419 | struct btrfs_device, dev_list); |
| 420 | list_del(&device->dev_list); |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 421 | btrfs_free_device(device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 422 | } |
| 423 | kfree(fs_devices); |
| 424 | } |
| 425 | |
David Sterba | ffc5a37 | 2018-02-19 17:24:15 +0100 | [diff] [blame] | 426 | void __exit btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 427 | { |
| 428 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 429 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 430 | while (!list_empty(&fs_uuids)) { |
| 431 | fs_devices = list_entry(fs_uuids.next, |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 432 | struct btrfs_fs_devices, fs_list); |
| 433 | list_del(&fs_devices->fs_list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 434 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 435 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 436 | } |
| 437 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 438 | static noinline struct btrfs_fs_devices *find_fsid( |
| 439 | const u8 *fsid, const u8 *metadata_fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 440 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 441 | struct btrfs_fs_devices *fs_devices; |
| 442 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 443 | ASSERT(fsid); |
| 444 | |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 445 | /* Handle non-split brain cases */ |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 446 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 447 | if (metadata_fsid) { |
| 448 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0 |
| 449 | && memcmp(metadata_fsid, fs_devices->metadata_uuid, |
| 450 | BTRFS_FSID_SIZE) == 0) |
| 451 | return fs_devices; |
| 452 | } else { |
| 453 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 454 | return fs_devices; |
| 455 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 456 | } |
| 457 | return NULL; |
| 458 | } |
| 459 | |
Su Yue | c6730a0 | 2020-01-10 14:11:33 +0200 | [diff] [blame] | 460 | static struct btrfs_fs_devices *find_fsid_with_metadata_uuid( |
| 461 | struct btrfs_super_block *disk_super) |
| 462 | { |
| 463 | |
| 464 | struct btrfs_fs_devices *fs_devices; |
| 465 | |
| 466 | /* |
| 467 | * Handle scanned device having completed its fsid change but |
| 468 | * belonging to a fs_devices that was created by first scanning |
| 469 | * a device which didn't have its fsid/metadata_uuid changed |
| 470 | * at all and the CHANGING_FSID_V2 flag set. |
| 471 | */ |
| 472 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 473 | if (fs_devices->fsid_change && |
| 474 | memcmp(disk_super->metadata_uuid, fs_devices->fsid, |
| 475 | BTRFS_FSID_SIZE) == 0 && |
| 476 | memcmp(fs_devices->fsid, fs_devices->metadata_uuid, |
| 477 | BTRFS_FSID_SIZE) == 0) { |
| 478 | return fs_devices; |
| 479 | } |
| 480 | } |
| 481 | /* |
| 482 | * Handle scanned device having completed its fsid change but |
| 483 | * belonging to a fs_devices that was created by a device that |
| 484 | * has an outdated pair of fsid/metadata_uuid and |
| 485 | * CHANGING_FSID_V2 flag set. |
| 486 | */ |
| 487 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 488 | if (fs_devices->fsid_change && |
| 489 | memcmp(fs_devices->metadata_uuid, |
| 490 | fs_devices->fsid, BTRFS_FSID_SIZE) != 0 && |
| 491 | memcmp(disk_super->metadata_uuid, fs_devices->metadata_uuid, |
| 492 | BTRFS_FSID_SIZE) == 0) { |
| 493 | return fs_devices; |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | return find_fsid(disk_super->fsid, disk_super->metadata_uuid); |
| 498 | } |
| 499 | |
| 500 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 501 | static int |
| 502 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 503 | int flush, struct block_device **bdev, |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 504 | struct btrfs_super_block **disk_super) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 505 | { |
| 506 | int ret; |
| 507 | |
| 508 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 509 | |
| 510 | if (IS_ERR(*bdev)) { |
| 511 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 512 | goto error; |
| 513 | } |
| 514 | |
| 515 | if (flush) |
Christoph Hellwig | 1226dff | 2021-10-19 08:25:27 +0200 | [diff] [blame] | 516 | sync_blockdev(*bdev); |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 517 | ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 518 | if (ret) { |
| 519 | blkdev_put(*bdev, flags); |
| 520 | goto error; |
| 521 | } |
| 522 | invalidate_bdev(*bdev); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 523 | *disk_super = btrfs_read_dev_super(*bdev); |
| 524 | if (IS_ERR(*disk_super)) { |
| 525 | ret = PTR_ERR(*disk_super); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 526 | blkdev_put(*bdev, flags); |
| 527 | goto error; |
| 528 | } |
| 529 | |
| 530 | return 0; |
| 531 | |
| 532 | error: |
| 533 | *bdev = NULL; |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 534 | return ret; |
| 535 | } |
| 536 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 537 | static bool device_path_matched(const char *path, struct btrfs_device *device) |
| 538 | { |
| 539 | int found; |
| 540 | |
| 541 | rcu_read_lock(); |
| 542 | found = strcmp(rcu_str_deref(device->name), path); |
| 543 | rcu_read_unlock(); |
| 544 | |
| 545 | return found == 0; |
| 546 | } |
| 547 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 548 | /* |
| 549 | * Search and remove all stale (devices which are not mounted) devices. |
| 550 | * When both inputs are NULL, it will search and release all stale devices. |
| 551 | * path: Optional. When provided will it release all unmounted devices |
| 552 | * matching this path only. |
| 553 | * skip_dev: Optional. Will skip this device when searching for the stale |
| 554 | * devices. |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 555 | * Return: 0 for success or if @path is NULL. |
| 556 | * -EBUSY if @path is a mounted device. |
| 557 | * -ENOENT if @path does not match any device in the list. |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 558 | */ |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 559 | static int btrfs_free_stale_devices(const char *path, |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 560 | struct btrfs_device *skip_device) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 561 | { |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 562 | struct btrfs_fs_devices *fs_devices, *tmp_fs_devices; |
| 563 | struct btrfs_device *device, *tmp_device; |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 564 | int ret = 0; |
| 565 | |
Anand Jain | c124706 | 2021-08-31 09:21:28 +0800 | [diff] [blame] | 566 | lockdep_assert_held(&uuid_mutex); |
| 567 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 568 | if (path) |
| 569 | ret = -ENOENT; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 570 | |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 571 | list_for_each_entry_safe(fs_devices, tmp_fs_devices, &fs_uuids, fs_list) { |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 572 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 573 | mutex_lock(&fs_devices->device_list_mutex); |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 574 | list_for_each_entry_safe(device, tmp_device, |
| 575 | &fs_devices->devices, dev_list) { |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 576 | if (skip_device && skip_device == device) |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 577 | continue; |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 578 | if (path && !device->name) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 579 | continue; |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 580 | if (path && !device_path_matched(path, device)) |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 581 | continue; |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 582 | if (fs_devices->opened) { |
| 583 | /* for an already deleted device return 0 */ |
| 584 | if (path && ret != 0) |
| 585 | ret = -EBUSY; |
| 586 | break; |
| 587 | } |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 588 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 589 | /* delete the stale device */ |
Anand Jain | 7bcb816 | 2018-05-29 17:23:20 +0800 | [diff] [blame] | 590 | fs_devices->num_devices--; |
| 591 | list_del(&device->dev_list); |
| 592 | btrfs_free_device(device); |
| 593 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 594 | ret = 0; |
Anand Jain | 7bcb816 | 2018-05-29 17:23:20 +0800 | [diff] [blame] | 595 | } |
| 596 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 597 | |
Anand Jain | 7bcb816 | 2018-05-29 17:23:20 +0800 | [diff] [blame] | 598 | if (fs_devices->num_devices == 0) { |
| 599 | btrfs_sysfs_remove_fsid(fs_devices); |
| 600 | list_del(&fs_devices->fs_list); |
| 601 | free_fs_devices(fs_devices); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 602 | } |
| 603 | } |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 604 | |
| 605 | return ret; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 606 | } |
| 607 | |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 608 | /* |
| 609 | * This is only used on mount, and we are protected from competing things |
| 610 | * messing with our fs_devices by the uuid_mutex, thus we do not need the |
| 611 | * fs_devices->device_list_mutex here. |
| 612 | */ |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 613 | static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices, |
| 614 | struct btrfs_device *device, fmode_t flags, |
| 615 | void *holder) |
| 616 | { |
| 617 | struct request_queue *q; |
| 618 | struct block_device *bdev; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 619 | struct btrfs_super_block *disk_super; |
| 620 | u64 devid; |
| 621 | int ret; |
| 622 | |
| 623 | if (device->bdev) |
| 624 | return -EINVAL; |
| 625 | if (!device->name) |
| 626 | return -EINVAL; |
| 627 | |
| 628 | ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 629 | &bdev, &disk_super); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 630 | if (ret) |
| 631 | return ret; |
| 632 | |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 633 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 634 | if (devid != device->devid) |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 635 | goto error_free_page; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 636 | |
| 637 | if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE)) |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 638 | goto error_free_page; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 639 | |
| 640 | device->generation = btrfs_super_generation(disk_super); |
| 641 | |
| 642 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 643 | if (btrfs_super_incompat_flags(disk_super) & |
| 644 | BTRFS_FEATURE_INCOMPAT_METADATA_UUID) { |
| 645 | pr_err( |
| 646 | "BTRFS: Invalid seeding and uuid-changed device detected\n"); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 647 | goto error_free_page; |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 648 | } |
| 649 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 650 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 651 | fs_devices->seeding = true; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 652 | } else { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 653 | if (bdev_read_only(bdev)) |
| 654 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
| 655 | else |
| 656 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | q = bdev_get_queue(bdev); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 660 | if (!blk_queue_nonrot(q)) |
Johannes Thumshirn | 7f0432d | 2019-11-13 11:27:28 +0100 | [diff] [blame] | 661 | fs_devices->rotating = true; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 662 | |
| 663 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 664 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 665 | device->mode = flags; |
| 666 | |
| 667 | fs_devices->open_devices++; |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 668 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 669 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 670 | fs_devices->rw_devices++; |
Anand Jain | b1b8e38 | 2018-01-22 14:49:37 -0800 | [diff] [blame] | 671 | list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 672 | } |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 673 | btrfs_release_disk_super(disk_super); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 674 | |
| 675 | return 0; |
| 676 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 677 | error_free_page: |
| 678 | btrfs_release_disk_super(disk_super); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 679 | blkdev_put(bdev, flags); |
| 680 | |
| 681 | return -EINVAL; |
| 682 | } |
| 683 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 684 | /* |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 685 | * Handle scanned device having its CHANGING_FSID_V2 flag set and the fs_devices |
Su Yue | c0d81c7 | 2020-01-10 14:11:32 +0200 | [diff] [blame] | 686 | * being created with a disk that has already completed its fsid change. Such |
| 687 | * disk can belong to an fs which has its FSID changed or to one which doesn't. |
| 688 | * Handle both cases here. |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 689 | */ |
| 690 | static struct btrfs_fs_devices *find_fsid_inprogress( |
| 691 | struct btrfs_super_block *disk_super) |
| 692 | { |
| 693 | struct btrfs_fs_devices *fs_devices; |
| 694 | |
| 695 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 696 | if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid, |
| 697 | BTRFS_FSID_SIZE) != 0 && |
| 698 | memcmp(fs_devices->metadata_uuid, disk_super->fsid, |
| 699 | BTRFS_FSID_SIZE) == 0 && !fs_devices->fsid_change) { |
| 700 | return fs_devices; |
| 701 | } |
| 702 | } |
| 703 | |
Su Yue | c0d81c7 | 2020-01-10 14:11:32 +0200 | [diff] [blame] | 704 | return find_fsid(disk_super->fsid, NULL); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 705 | } |
| 706 | |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 707 | |
| 708 | static struct btrfs_fs_devices *find_fsid_changed( |
| 709 | struct btrfs_super_block *disk_super) |
| 710 | { |
| 711 | struct btrfs_fs_devices *fs_devices; |
| 712 | |
| 713 | /* |
| 714 | * Handles the case where scanned device is part of an fs that had |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 715 | * multiple successful changes of FSID but currently device didn't |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 716 | * observe it. Meaning our fsid will be different than theirs. We need |
| 717 | * to handle two subcases : |
| 718 | * 1 - The fs still continues to have different METADATA/FSID uuids. |
| 719 | * 2 - The fs is switched back to its original FSID (METADATA/FSID |
| 720 | * are equal). |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 721 | */ |
| 722 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 723 | /* Changed UUIDs */ |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 724 | if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid, |
| 725 | BTRFS_FSID_SIZE) != 0 && |
| 726 | memcmp(fs_devices->metadata_uuid, disk_super->metadata_uuid, |
| 727 | BTRFS_FSID_SIZE) == 0 && |
| 728 | memcmp(fs_devices->fsid, disk_super->fsid, |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 729 | BTRFS_FSID_SIZE) != 0) |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 730 | return fs_devices; |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 731 | |
| 732 | /* Unchanged UUIDs */ |
| 733 | if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid, |
| 734 | BTRFS_FSID_SIZE) == 0 && |
| 735 | memcmp(fs_devices->fsid, disk_super->metadata_uuid, |
| 736 | BTRFS_FSID_SIZE) == 0) |
| 737 | return fs_devices; |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | return NULL; |
| 741 | } |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 742 | |
| 743 | static struct btrfs_fs_devices *find_fsid_reverted_metadata( |
| 744 | struct btrfs_super_block *disk_super) |
| 745 | { |
| 746 | struct btrfs_fs_devices *fs_devices; |
| 747 | |
| 748 | /* |
| 749 | * Handle the case where the scanned device is part of an fs whose last |
| 750 | * metadata UUID change reverted it to the original FSID. At the same |
| 751 | * time * fs_devices was first created by another constitutent device |
| 752 | * which didn't fully observe the operation. This results in an |
| 753 | * btrfs_fs_devices created with metadata/fsid different AND |
| 754 | * btrfs_fs_devices::fsid_change set AND the metadata_uuid of the |
| 755 | * fs_devices equal to the FSID of the disk. |
| 756 | */ |
| 757 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 758 | if (memcmp(fs_devices->fsid, fs_devices->metadata_uuid, |
| 759 | BTRFS_FSID_SIZE) != 0 && |
| 760 | memcmp(fs_devices->metadata_uuid, disk_super->fsid, |
| 761 | BTRFS_FSID_SIZE) == 0 && |
| 762 | fs_devices->fsid_change) |
| 763 | return fs_devices; |
| 764 | } |
| 765 | |
| 766 | return NULL; |
| 767 | } |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 768 | /* |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 769 | * Add new device to list of registered devices |
| 770 | * |
| 771 | * Returns: |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 772 | * device pointer which was just added or updated when successful |
| 773 | * error pointer when failed |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 774 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 775 | static noinline struct btrfs_device *device_list_add(const char *path, |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 776 | struct btrfs_super_block *disk_super, |
| 777 | bool *new_device_added) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 778 | { |
| 779 | struct btrfs_device *device; |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 780 | struct btrfs_fs_devices *fs_devices = NULL; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 781 | struct rcu_string *name; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 782 | u64 found_transid = btrfs_super_generation(disk_super); |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 783 | u64 devid = btrfs_stack_device_id(&disk_super->dev_item); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 784 | bool has_metadata_uuid = (btrfs_super_incompat_flags(disk_super) & |
| 785 | BTRFS_FEATURE_INCOMPAT_METADATA_UUID); |
Nikolay Borisov | d1a6300 | 2018-10-30 16:43:26 +0200 | [diff] [blame] | 786 | bool fsid_change_in_progress = (btrfs_super_flags(disk_super) & |
| 787 | BTRFS_SUPER_FLAG_CHANGING_FSID_V2); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 788 | |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 789 | if (fsid_change_in_progress) { |
Su Yue | c0d81c7 | 2020-01-10 14:11:32 +0200 | [diff] [blame] | 790 | if (!has_metadata_uuid) |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 791 | fs_devices = find_fsid_inprogress(disk_super); |
Su Yue | c0d81c7 | 2020-01-10 14:11:32 +0200 | [diff] [blame] | 792 | else |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 793 | fs_devices = find_fsid_changed(disk_super); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 794 | } else if (has_metadata_uuid) { |
Su Yue | c6730a0 | 2020-01-10 14:11:33 +0200 | [diff] [blame] | 795 | fs_devices = find_fsid_with_metadata_uuid(disk_super); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 796 | } else { |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 797 | fs_devices = find_fsid_reverted_metadata(disk_super); |
| 798 | if (!fs_devices) |
| 799 | fs_devices = find_fsid(disk_super->fsid, NULL); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 800 | } |
| 801 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 802 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 803 | if (!fs_devices) { |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 804 | if (has_metadata_uuid) |
| 805 | fs_devices = alloc_fs_devices(disk_super->fsid, |
| 806 | disk_super->metadata_uuid); |
| 807 | else |
| 808 | fs_devices = alloc_fs_devices(disk_super->fsid, NULL); |
| 809 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 810 | if (IS_ERR(fs_devices)) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 811 | return ERR_CAST(fs_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 812 | |
Al Viro | 92900e5 | 2019-01-27 04:58:00 +0000 | [diff] [blame] | 813 | fs_devices->fsid_change = fsid_change_in_progress; |
| 814 | |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 815 | mutex_lock(&fs_devices->device_list_mutex); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 816 | list_add(&fs_devices->fs_list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 817 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 818 | device = NULL; |
| 819 | } else { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 820 | struct btrfs_dev_lookup_args args = { |
| 821 | .devid = devid, |
| 822 | .uuid = disk_super->dev_item.uuid, |
| 823 | }; |
| 824 | |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 825 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 826 | device = btrfs_find_device(fs_devices, &args); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 827 | |
| 828 | /* |
| 829 | * If this disk has been pulled into an fs devices created by |
| 830 | * a device which had the CHANGING_FSID_V2 flag then replace the |
| 831 | * metadata_uuid/fsid values of the fs_devices. |
| 832 | */ |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 833 | if (fs_devices->fsid_change && |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 834 | found_transid > fs_devices->latest_generation) { |
| 835 | memcpy(fs_devices->fsid, disk_super->fsid, |
| 836 | BTRFS_FSID_SIZE); |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 837 | |
| 838 | if (has_metadata_uuid) |
| 839 | memcpy(fs_devices->metadata_uuid, |
| 840 | disk_super->metadata_uuid, |
| 841 | BTRFS_FSID_SIZE); |
| 842 | else |
| 843 | memcpy(fs_devices->metadata_uuid, |
| 844 | disk_super->fsid, BTRFS_FSID_SIZE); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 845 | |
| 846 | fs_devices->fsid_change = false; |
| 847 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 848 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 849 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 850 | if (!device) { |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 851 | if (fs_devices->opened) { |
| 852 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 853 | return ERR_PTR(-EBUSY); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 854 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 855 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 856 | device = btrfs_alloc_device(NULL, &devid, |
| 857 | disk_super->dev_item.uuid); |
| 858 | if (IS_ERR(device)) { |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 859 | mutex_unlock(&fs_devices->device_list_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 860 | /* we can safely leave the fs_devices entry around */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 861 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 862 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 863 | |
| 864 | name = rcu_string_strdup(path, GFP_NOFS); |
| 865 | if (!name) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 866 | btrfs_free_device(device); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 867 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 868 | return ERR_PTR(-ENOMEM); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 869 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 870 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 871 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 872 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 873 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 874 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 875 | device->fs_devices = fs_devices; |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 876 | *new_device_added = true; |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 877 | |
| 878 | if (disk_super->label[0]) |
Anand Jain | aa6c0df | 2019-10-02 18:30:48 +0800 | [diff] [blame] | 879 | pr_info( |
| 880 | "BTRFS: device label %s devid %llu transid %llu %s scanned by %s (%d)\n", |
| 881 | disk_super->label, devid, found_transid, path, |
| 882 | current->comm, task_pid_nr(current)); |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 883 | else |
Anand Jain | aa6c0df | 2019-10-02 18:30:48 +0800 | [diff] [blame] | 884 | pr_info( |
| 885 | "BTRFS: device fsid %pU devid %llu transid %llu %s scanned by %s (%d)\n", |
| 886 | disk_super->fsid, devid, found_transid, path, |
| 887 | current->comm, task_pid_nr(current)); |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 888 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 889 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 890 | /* |
| 891 | * When FS is already mounted. |
| 892 | * 1. If you are here and if the device->name is NULL that |
| 893 | * means this device was missing at time of FS mount. |
| 894 | * 2. If you are here and if the device->name is different |
| 895 | * from 'path' that means either |
| 896 | * a. The same device disappeared and reappeared with |
| 897 | * different name. or |
| 898 | * b. The missing-disk-which-was-replaced, has |
| 899 | * reappeared now. |
| 900 | * |
| 901 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 902 | * and unintentional. |
| 903 | * |
| 904 | * Further in case of 1 and 2a above, the disk at 'path' |
| 905 | * would have missed some transaction when it was away and |
| 906 | * in case of 2a the stale bdev has to be updated as well. |
| 907 | * 2b must not be allowed at all time. |
| 908 | */ |
| 909 | |
| 910 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 911 | * For now, we do allow update to btrfs_fs_device through the |
| 912 | * btrfs dev scan cli after FS has been mounted. We're still |
| 913 | * tracking a problem where systems fail mount by subvolume id |
| 914 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 915 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 916 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 917 | /* |
| 918 | * That is if the FS is _not_ mounted and if you |
| 919 | * are here, that means there is more than one |
| 920 | * disk with same uuid and devid.We keep the one |
| 921 | * with larger generation number or the last-in if |
| 922 | * generation are equal. |
| 923 | */ |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 924 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 925 | return ERR_PTR(-EEXIST); |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 926 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 927 | |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 928 | /* |
| 929 | * We are going to replace the device path for a given devid, |
| 930 | * make sure it's the same device if the device is mounted |
| 931 | */ |
| 932 | if (device->bdev) { |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 933 | int error; |
| 934 | dev_t path_dev; |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 935 | |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 936 | error = lookup_bdev(path, &path_dev); |
| 937 | if (error) { |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 938 | mutex_unlock(&fs_devices->device_list_mutex); |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 939 | return ERR_PTR(error); |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 940 | } |
| 941 | |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 942 | if (device->bdev->bd_dev != path_dev) { |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 943 | mutex_unlock(&fs_devices->device_list_mutex); |
Johannes Thumshirn | 0697d9a | 2020-11-18 18:03:26 +0900 | [diff] [blame] | 944 | /* |
| 945 | * device->fs_info may not be reliable here, so |
| 946 | * pass in a NULL instead. This avoids a |
| 947 | * possible use-after-free when the fs_info and |
| 948 | * fs_info->sb are already torn down. |
| 949 | */ |
| 950 | btrfs_warn_in_rcu(NULL, |
Anand Jain | 79dae17 | 2020-09-03 21:30:12 +0800 | [diff] [blame] | 951 | "duplicate device %s devid %llu generation %llu scanned by %s (%d)", |
| 952 | path, devid, found_transid, |
| 953 | current->comm, |
| 954 | task_pid_nr(current)); |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 955 | return ERR_PTR(-EEXIST); |
| 956 | } |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 957 | btrfs_info_in_rcu(device->fs_info, |
Anand Jain | 79dae17 | 2020-09-03 21:30:12 +0800 | [diff] [blame] | 958 | "devid %llu device path %s changed to %s scanned by %s (%d)", |
| 959 | devid, rcu_str_deref(device->name), |
| 960 | path, current->comm, |
| 961 | task_pid_nr(current)); |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 962 | } |
| 963 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 964 | name = rcu_string_strdup(path, GFP_NOFS); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 965 | if (!name) { |
| 966 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 967 | return ERR_PTR(-ENOMEM); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 968 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 969 | rcu_string_free(device->name); |
| 970 | rcu_assign_pointer(device->name, name); |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 971 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 972 | fs_devices->missing_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 973 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 974 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 975 | } |
| 976 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 977 | /* |
| 978 | * Unmount does not free the btrfs_device struct but would zero |
| 979 | * generation along with most of the other members. So just update |
| 980 | * it back. We need it to pick the disk with largest generation |
| 981 | * (as above). |
| 982 | */ |
Nikolay Borisov | d1a6300 | 2018-10-30 16:43:26 +0200 | [diff] [blame] | 983 | if (!fs_devices->opened) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 984 | device->generation = found_transid; |
Nikolay Borisov | d1a6300 | 2018-10-30 16:43:26 +0200 | [diff] [blame] | 985 | fs_devices->latest_generation = max_t(u64, found_transid, |
| 986 | fs_devices->latest_generation); |
| 987 | } |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 988 | |
Anand Jain | f2788d2 | 2018-01-18 22:02:34 +0800 | [diff] [blame] | 989 | fs_devices->total_devices = btrfs_super_num_devices(disk_super); |
| 990 | |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 991 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 992 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 993 | } |
| 994 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 995 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 996 | { |
| 997 | struct btrfs_fs_devices *fs_devices; |
| 998 | struct btrfs_device *device; |
| 999 | struct btrfs_device *orig_dev; |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1000 | int ret = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1001 | |
Anand Jain | c124706 | 2021-08-31 09:21:28 +0800 | [diff] [blame] | 1002 | lockdep_assert_held(&uuid_mutex); |
| 1003 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 1004 | fs_devices = alloc_fs_devices(orig->fsid, NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 1005 | if (IS_ERR(fs_devices)) |
| 1006 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1007 | |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1008 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1009 | |
| 1010 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 1011 | struct rcu_string *name; |
| 1012 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 1013 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 1014 | orig_dev->uuid); |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1015 | if (IS_ERR(device)) { |
| 1016 | ret = PTR_ERR(device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1017 | goto error; |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1018 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1019 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 1020 | /* |
| 1021 | * This is ok to do without rcu read locked because we hold the |
| 1022 | * uuid mutex so nothing we touch in here is going to disappear. |
| 1023 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 1024 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 1025 | name = rcu_string_strdup(orig_dev->name->str, |
| 1026 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 1027 | if (!name) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 1028 | btrfs_free_device(device); |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1029 | ret = -ENOMEM; |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 1030 | goto error; |
| 1031 | } |
| 1032 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 1033 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1034 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1035 | list_add(&device->dev_list, &fs_devices->devices); |
| 1036 | device->fs_devices = fs_devices; |
| 1037 | fs_devices->num_devices++; |
| 1038 | } |
| 1039 | return fs_devices; |
| 1040 | error: |
| 1041 | free_fs_devices(fs_devices); |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1042 | return ERR_PTR(ret); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1043 | } |
| 1044 | |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1045 | static void __btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices, |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1046 | struct btrfs_device **latest_dev) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1047 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1048 | struct btrfs_device *device, *next; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1049 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 1050 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1051 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1052 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state)) { |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1053 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1054 | &device->dev_state) && |
Anand Jain | 998a067 | 2020-05-05 02:58:25 +0800 | [diff] [blame] | 1055 | !test_bit(BTRFS_DEV_STATE_MISSING, |
| 1056 | &device->dev_state) && |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1057 | (!*latest_dev || |
| 1058 | device->generation > (*latest_dev)->generation)) { |
| 1059 | *latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1060 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1061 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1062 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1063 | |
Anand Jain | cf89af1 | 2020-10-30 06:53:56 +0800 | [diff] [blame] | 1064 | /* |
| 1065 | * We have already validated the presence of BTRFS_DEV_REPLACE_DEVID, |
| 1066 | * in btrfs_init_dev_replace() so just continue. |
| 1067 | */ |
| 1068 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) |
| 1069 | continue; |
| 1070 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1071 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1072 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1073 | device->bdev = NULL; |
| 1074 | fs_devices->open_devices--; |
| 1075 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1076 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1077 | list_del_init(&device->dev_alloc_list); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1078 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Desmond Cheong Zhi Xi | b2a6166 | 2021-07-27 15:13:03 +0800 | [diff] [blame] | 1079 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1080 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1081 | list_del_init(&device->dev_list); |
| 1082 | fs_devices->num_devices--; |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 1083 | btrfs_free_device(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1084 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1085 | |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1086 | } |
| 1087 | |
| 1088 | /* |
| 1089 | * After we have read the system tree and know devids belonging to this |
| 1090 | * filesystem, remove the device which does not belong there. |
| 1091 | */ |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1092 | void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices) |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1093 | { |
| 1094 | struct btrfs_device *latest_dev = NULL; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1095 | struct btrfs_fs_devices *seed_dev; |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1096 | |
| 1097 | mutex_lock(&uuid_mutex); |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1098 | __btrfs_free_extra_devids(fs_devices, &latest_dev); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1099 | |
| 1100 | list_for_each_entry(seed_dev, &fs_devices->seed_list, seed_list) |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1101 | __btrfs_free_extra_devids(seed_dev, &latest_dev); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1102 | |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 1103 | fs_devices->latest_dev = latest_dev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1104 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1105 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1106 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1107 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1108 | static void btrfs_close_bdev(struct btrfs_device *device) |
| 1109 | { |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 1110 | if (!device->bdev) |
| 1111 | return; |
| 1112 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1113 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1114 | sync_blockdev(device->bdev); |
| 1115 | invalidate_bdev(device->bdev); |
| 1116 | } |
| 1117 | |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 1118 | blkdev_put(device->bdev, device->mode); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1119 | } |
| 1120 | |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1121 | static void btrfs_close_one_device(struct btrfs_device *device) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1122 | { |
| 1123 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1124 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1125 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1126 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 1127 | list_del_init(&device->dev_alloc_list); |
| 1128 | fs_devices->rw_devices--; |
| 1129 | } |
| 1130 | |
Desmond Cheong Zhi Xi | 0d977e0 | 2021-08-21 01:50:40 +0800 | [diff] [blame] | 1131 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) |
| 1132 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
| 1133 | |
Li Zhang | 5d03dbe | 2021-10-05 01:15:33 +0800 | [diff] [blame] | 1134 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
| 1135 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1136 | fs_devices->missing_devices--; |
Li Zhang | 5d03dbe | 2021-10-05 01:15:33 +0800 | [diff] [blame] | 1137 | } |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1138 | |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1139 | btrfs_close_bdev(device); |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1140 | if (device->bdev) { |
Johannes Thumshirn | 3fff397 | 2019-11-26 09:40:05 +0100 | [diff] [blame] | 1141 | fs_devices->open_devices--; |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1142 | device->bdev = NULL; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1143 | } |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1144 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 1145 | btrfs_destroy_dev_zone_info(device); |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1146 | |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1147 | device->fs_info = NULL; |
| 1148 | atomic_set(&device->dev_stats_ccnt, 0); |
| 1149 | extent_io_tree_release(&device->alloc_state); |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1150 | |
Filipe Manana | 6b225ba | 2021-09-08 19:05:44 +0100 | [diff] [blame] | 1151 | /* |
| 1152 | * Reset the flush error record. We might have a transient flush error |
| 1153 | * in this mount, and if so we aborted the current transaction and set |
| 1154 | * the fs to an error state, guaranteeing no super blocks can be further |
| 1155 | * committed. However that error might be transient and if we unmount the |
| 1156 | * filesystem and mount it again, we should allow the mount to succeed |
| 1157 | * (btrfs_check_rw_degradable() should not fail) - if after mounting the |
| 1158 | * filesystem again we still get flush errors, then we will again abort |
| 1159 | * any transaction and set the error state, guaranteeing no commits of |
| 1160 | * unsafe super blocks. |
| 1161 | */ |
| 1162 | device->last_flush_error = 0; |
| 1163 | |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1164 | /* Verify the device is back in a pristine state */ |
| 1165 | ASSERT(!test_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state)); |
| 1166 | ASSERT(!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)); |
| 1167 | ASSERT(list_empty(&device->dev_alloc_list)); |
| 1168 | ASSERT(list_empty(&device->post_commit_list)); |
| 1169 | ASSERT(atomic_read(&device->reada_in_flight) == 0); |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1170 | } |
| 1171 | |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1172 | static void close_fs_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1173 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1174 | struct btrfs_device *device, *tmp; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1175 | |
Josef Bacik | 425c6ed | 2020-08-10 11:42:28 -0400 | [diff] [blame] | 1176 | lockdep_assert_held(&uuid_mutex); |
| 1177 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1178 | if (--fs_devices->opened > 0) |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1179 | return; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1180 | |
Josef Bacik | 425c6ed | 2020-08-10 11:42:28 -0400 | [diff] [blame] | 1181 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1182 | btrfs_close_one_device(device); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1183 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1184 | WARN_ON(fs_devices->open_devices); |
| 1185 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1186 | fs_devices->opened = 0; |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 1187 | fs_devices->seeding = false; |
Nikolay Borisov | c4989c2f | 2020-07-15 13:48:49 +0300 | [diff] [blame] | 1188 | fs_devices->fs_info = NULL; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1189 | } |
| 1190 | |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1191 | void btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1192 | { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1193 | LIST_HEAD(list); |
| 1194 | struct btrfs_fs_devices *tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1195 | |
| 1196 | mutex_lock(&uuid_mutex); |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1197 | close_fs_devices(fs_devices); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1198 | if (!fs_devices->opened) |
| 1199 | list_splice_init(&fs_devices->seed_list, &list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1200 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1201 | list_for_each_entry_safe(fs_devices, tmp, &list, seed_list) { |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1202 | close_fs_devices(fs_devices); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1203 | list_del(&fs_devices->seed_list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1204 | free_fs_devices(fs_devices); |
| 1205 | } |
Josef Bacik | 425c6ed | 2020-08-10 11:42:28 -0400 | [diff] [blame] | 1206 | mutex_unlock(&uuid_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1207 | } |
| 1208 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1209 | static int open_fs_devices(struct btrfs_fs_devices *fs_devices, |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1210 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1211 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1212 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1213 | struct btrfs_device *latest_dev = NULL; |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1214 | struct btrfs_device *tmp_device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1215 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1216 | flags |= FMODE_EXCL; |
| 1217 | |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1218 | list_for_each_entry_safe(device, tmp_device, &fs_devices->devices, |
| 1219 | dev_list) { |
| 1220 | int ret; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1221 | |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1222 | ret = btrfs_open_one_device(fs_devices, device, flags, holder); |
| 1223 | if (ret == 0 && |
| 1224 | (!latest_dev || device->generation > latest_dev->generation)) { |
Anand Jain | 9f050db | 2017-11-09 23:45:25 +0800 | [diff] [blame] | 1225 | latest_dev = device; |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1226 | } else if (ret == -ENODATA) { |
| 1227 | fs_devices->num_devices--; |
| 1228 | list_del(&device->dev_list); |
| 1229 | btrfs_free_device(device); |
| 1230 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1231 | } |
Anand Jain | 1ed802c | 2020-04-28 23:22:25 +0800 | [diff] [blame] | 1232 | if (fs_devices->open_devices == 0) |
| 1233 | return -EINVAL; |
| 1234 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1235 | fs_devices->opened = 1; |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 1236 | fs_devices->latest_dev = latest_dev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1237 | fs_devices->total_rw_bytes = 0; |
Naohiro Aota | c4a816c | 2020-02-25 12:56:08 +0900 | [diff] [blame] | 1238 | fs_devices->chunk_alloc_policy = BTRFS_CHUNK_ALLOC_REGULAR; |
Anand Jain | 33fd2f7 | 2020-10-28 21:14:46 +0800 | [diff] [blame] | 1239 | fs_devices->read_policy = BTRFS_READ_POLICY_PID; |
Anand Jain | 1ed802c | 2020-04-28 23:22:25 +0800 | [diff] [blame] | 1240 | |
| 1241 | return 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1242 | } |
| 1243 | |
Sami Tolvanen | 4f0f586 | 2021-04-08 11:28:34 -0700 | [diff] [blame] | 1244 | static int devid_cmp(void *priv, const struct list_head *a, |
| 1245 | const struct list_head *b) |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1246 | { |
David Sterba | 214cc18 | 2021-07-26 14:15:26 +0200 | [diff] [blame] | 1247 | const struct btrfs_device *dev1, *dev2; |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1248 | |
| 1249 | dev1 = list_entry(a, struct btrfs_device, dev_list); |
| 1250 | dev2 = list_entry(b, struct btrfs_device, dev_list); |
| 1251 | |
| 1252 | if (dev1->devid < dev2->devid) |
| 1253 | return -1; |
| 1254 | else if (dev1->devid > dev2->devid) |
| 1255 | return 1; |
| 1256 | return 0; |
| 1257 | } |
| 1258 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1259 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1260 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1261 | { |
| 1262 | int ret; |
| 1263 | |
David Sterba | f5194e3 | 2018-06-19 17:09:47 +0200 | [diff] [blame] | 1264 | lockdep_assert_held(&uuid_mutex); |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 1265 | /* |
| 1266 | * The device_list_mutex cannot be taken here in case opening the |
Christoph Hellwig | a869870 | 2021-05-25 08:12:56 +0200 | [diff] [blame] | 1267 | * underlying device takes further locks like open_mutex. |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 1268 | * |
| 1269 | * We also don't need the lock here as this is called during mount and |
| 1270 | * exclusion is provided by uuid_mutex |
| 1271 | */ |
David Sterba | f5194e3 | 2018-06-19 17:09:47 +0200 | [diff] [blame] | 1272 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1273 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1274 | fs_devices->opened++; |
| 1275 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1276 | } else { |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1277 | list_sort(NULL, &fs_devices->devices, devid_cmp); |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1278 | ret = open_fs_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1279 | } |
Anand Jain | 542c590 | 2018-04-12 10:29:34 +0800 | [diff] [blame] | 1280 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1281 | return ret; |
| 1282 | } |
| 1283 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1284 | void btrfs_release_disk_super(struct btrfs_super_block *super) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1285 | { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1286 | struct page *page = virt_to_page(super); |
| 1287 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1288 | put_page(page); |
| 1289 | } |
| 1290 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1291 | static struct btrfs_super_block *btrfs_read_disk_super(struct block_device *bdev, |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1292 | u64 bytenr, u64 bytenr_orig) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1293 | { |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1294 | struct btrfs_super_block *disk_super; |
| 1295 | struct page *page; |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1296 | void *p; |
| 1297 | pgoff_t index; |
| 1298 | |
| 1299 | /* make sure our super fits in the device */ |
Christoph Hellwig | cda00eb | 2021-10-18 12:11:12 +0200 | [diff] [blame] | 1300 | if (bytenr + PAGE_SIZE >= bdev_nr_bytes(bdev)) |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1301 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1302 | |
| 1303 | /* make sure our super fits in the page */ |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1304 | if (sizeof(*disk_super) > PAGE_SIZE) |
| 1305 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1306 | |
| 1307 | /* make sure our super doesn't straddle pages on disk */ |
| 1308 | index = bytenr >> PAGE_SHIFT; |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1309 | if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_SHIFT != index) |
| 1310 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1311 | |
| 1312 | /* pull in the page with our super */ |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1313 | page = read_cache_page_gfp(bdev->bd_inode->i_mapping, index, GFP_KERNEL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1314 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1315 | if (IS_ERR(page)) |
| 1316 | return ERR_CAST(page); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1317 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1318 | p = page_address(page); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1319 | |
| 1320 | /* align our pointer to the offset of the super block */ |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1321 | disk_super = p + offset_in_page(bytenr); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1322 | |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1323 | if (btrfs_super_bytenr(disk_super) != bytenr_orig || |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1324 | btrfs_super_magic(disk_super) != BTRFS_MAGIC) { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1325 | btrfs_release_disk_super(p); |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1326 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1327 | } |
| 1328 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1329 | if (disk_super->label[0] && disk_super->label[BTRFS_LABEL_SIZE - 1]) |
| 1330 | disk_super->label[BTRFS_LABEL_SIZE - 1] = 0; |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1331 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1332 | return disk_super; |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1333 | } |
| 1334 | |
Anand Jain | 228a73a | 2019-01-04 13:31:54 +0800 | [diff] [blame] | 1335 | int btrfs_forget_devices(const char *path) |
| 1336 | { |
| 1337 | int ret; |
| 1338 | |
| 1339 | mutex_lock(&uuid_mutex); |
| 1340 | ret = btrfs_free_stale_devices(strlen(path) ? path : NULL, NULL); |
| 1341 | mutex_unlock(&uuid_mutex); |
| 1342 | |
| 1343 | return ret; |
| 1344 | } |
| 1345 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1346 | /* |
| 1347 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1348 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1349 | * is read via pagecache |
| 1350 | */ |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1351 | struct btrfs_device *btrfs_scan_one_device(const char *path, fmode_t flags, |
| 1352 | void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1353 | { |
| 1354 | struct btrfs_super_block *disk_super; |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 1355 | bool new_device_added = false; |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1356 | struct btrfs_device *device = NULL; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1357 | struct block_device *bdev; |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1358 | u64 bytenr, bytenr_orig; |
| 1359 | int ret; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1360 | |
David Sterba | 899f930 | 2018-06-19 16:37:36 +0200 | [diff] [blame] | 1361 | lockdep_assert_held(&uuid_mutex); |
| 1362 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1363 | /* |
| 1364 | * we would like to check all the supers, but that would make |
| 1365 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1366 | * So, we need to add a special mount option to scan for |
| 1367 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1368 | */ |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1369 | flags |= FMODE_EXCL; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1370 | |
| 1371 | bdev = blkdev_get_by_path(path, flags, holder); |
Anand Jain | b6ed73b | 2018-04-12 10:29:24 +0800 | [diff] [blame] | 1372 | if (IS_ERR(bdev)) |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1373 | return ERR_CAST(bdev); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1374 | |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1375 | bytenr_orig = btrfs_sb_offset(0); |
| 1376 | ret = btrfs_sb_log_location_bdev(bdev, 0, READ, &bytenr); |
Shin'ichiro Kawasaki | 4989d4a | 2021-12-15 19:38:43 +0900 | [diff] [blame] | 1377 | if (ret) { |
| 1378 | device = ERR_PTR(ret); |
| 1379 | goto error_bdev_put; |
| 1380 | } |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1381 | |
| 1382 | disk_super = btrfs_read_disk_super(bdev, bytenr, bytenr_orig); |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1383 | if (IS_ERR(disk_super)) { |
| 1384 | device = ERR_CAST(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1385 | goto error_bdev_put; |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1386 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1387 | |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 1388 | device = device_list_add(path, disk_super, &new_device_added); |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1389 | if (!IS_ERR(device)) { |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 1390 | if (new_device_added) |
| 1391 | btrfs_free_stale_devices(path, device); |
| 1392 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1393 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1394 | btrfs_release_disk_super(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1395 | |
| 1396 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1397 | blkdev_put(bdev, flags); |
Anand Jain | b6ed73b | 2018-04-12 10:29:24 +0800 | [diff] [blame] | 1398 | |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1399 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1400 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1401 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1402 | /* |
| 1403 | * Try to find a chunk that intersects [start, start + len] range and when one |
| 1404 | * such is found, record the end of it in *start |
| 1405 | */ |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1406 | static bool contains_pending_extent(struct btrfs_device *device, u64 *start, |
| 1407 | u64 len) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1408 | { |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1409 | u64 physical_start, physical_end; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1410 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1411 | lockdep_assert_held(&device->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1412 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1413 | if (!find_first_extent_bit(&device->alloc_state, *start, |
| 1414 | &physical_start, &physical_end, |
| 1415 | CHUNK_ALLOCATED, NULL)) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1416 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1417 | if (in_range(physical_start, *start, len) || |
| 1418 | in_range(*start, physical_start, |
| 1419 | physical_end - physical_start)) { |
| 1420 | *start = physical_end + 1; |
| 1421 | return true; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1422 | } |
| 1423 | } |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1424 | return false; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1425 | } |
| 1426 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1427 | static u64 dev_extent_search_start(struct btrfs_device *device, u64 start) |
| 1428 | { |
| 1429 | switch (device->fs_devices->chunk_alloc_policy) { |
| 1430 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 1431 | /* |
| 1432 | * We don't want to overwrite the superblock on the drive nor |
| 1433 | * any area used by the boot loader (grub for example), so we |
| 1434 | * make sure to start at an offset of at least 1MB. |
| 1435 | */ |
| 1436 | return max_t(u64, start, SZ_1M); |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1437 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 1438 | /* |
| 1439 | * We don't care about the starting region like regular |
| 1440 | * allocator, because we anyway use/reserve the first two zones |
| 1441 | * for superblock logging. |
| 1442 | */ |
| 1443 | return ALIGN(start, device->zone_info->zone_size); |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1444 | default: |
| 1445 | BUG(); |
| 1446 | } |
| 1447 | } |
| 1448 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1449 | static bool dev_extent_hole_check_zoned(struct btrfs_device *device, |
| 1450 | u64 *hole_start, u64 *hole_size, |
| 1451 | u64 num_bytes) |
| 1452 | { |
| 1453 | u64 zone_size = device->zone_info->zone_size; |
| 1454 | u64 pos; |
| 1455 | int ret; |
| 1456 | bool changed = false; |
| 1457 | |
| 1458 | ASSERT(IS_ALIGNED(*hole_start, zone_size)); |
| 1459 | |
| 1460 | while (*hole_size > 0) { |
| 1461 | pos = btrfs_find_allocatable_zones(device, *hole_start, |
| 1462 | *hole_start + *hole_size, |
| 1463 | num_bytes); |
| 1464 | if (pos != *hole_start) { |
| 1465 | *hole_size = *hole_start + *hole_size - pos; |
| 1466 | *hole_start = pos; |
| 1467 | changed = true; |
| 1468 | if (*hole_size < num_bytes) |
| 1469 | break; |
| 1470 | } |
| 1471 | |
| 1472 | ret = btrfs_ensure_empty_zones(device, pos, num_bytes); |
| 1473 | |
| 1474 | /* Range is ensured to be empty */ |
| 1475 | if (!ret) |
| 1476 | return changed; |
| 1477 | |
| 1478 | /* Given hole range was invalid (outside of device) */ |
| 1479 | if (ret == -ERANGE) { |
| 1480 | *hole_start += *hole_size; |
Johannes Thumshirn | d6f67af | 2021-05-10 22:39:38 +0900 | [diff] [blame] | 1481 | *hole_size = 0; |
Jiapeng Chong | 7000bab | 2021-03-03 17:45:28 +0800 | [diff] [blame] | 1482 | return true; |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1483 | } |
| 1484 | |
| 1485 | *hole_start += zone_size; |
| 1486 | *hole_size -= zone_size; |
| 1487 | changed = true; |
| 1488 | } |
| 1489 | |
| 1490 | return changed; |
| 1491 | } |
| 1492 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1493 | /** |
| 1494 | * dev_extent_hole_check - check if specified hole is suitable for allocation |
| 1495 | * @device: the device which we have the hole |
| 1496 | * @hole_start: starting position of the hole |
| 1497 | * @hole_size: the size of the hole |
| 1498 | * @num_bytes: the size of the free space that we need |
| 1499 | * |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1500 | * This function may modify @hole_start and @hole_size to reflect the suitable |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1501 | * position for allocation. Returns 1 if hole position is updated, 0 otherwise. |
| 1502 | */ |
| 1503 | static bool dev_extent_hole_check(struct btrfs_device *device, u64 *hole_start, |
| 1504 | u64 *hole_size, u64 num_bytes) |
| 1505 | { |
| 1506 | bool changed = false; |
| 1507 | u64 hole_end = *hole_start + *hole_size; |
| 1508 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1509 | for (;;) { |
| 1510 | /* |
| 1511 | * Check before we set max_hole_start, otherwise we could end up |
| 1512 | * sending back this offset anyway. |
| 1513 | */ |
| 1514 | if (contains_pending_extent(device, hole_start, *hole_size)) { |
| 1515 | if (hole_end >= *hole_start) |
| 1516 | *hole_size = hole_end - *hole_start; |
| 1517 | else |
| 1518 | *hole_size = 0; |
| 1519 | changed = true; |
| 1520 | } |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1521 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1522 | switch (device->fs_devices->chunk_alloc_policy) { |
| 1523 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 1524 | /* No extra check */ |
| 1525 | break; |
| 1526 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 1527 | if (dev_extent_hole_check_zoned(device, hole_start, |
| 1528 | hole_size, num_bytes)) { |
| 1529 | changed = true; |
| 1530 | /* |
| 1531 | * The changed hole can contain pending extent. |
| 1532 | * Loop again to check that. |
| 1533 | */ |
| 1534 | continue; |
| 1535 | } |
| 1536 | break; |
| 1537 | default: |
| 1538 | BUG(); |
| 1539 | } |
| 1540 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1541 | break; |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | return changed; |
| 1545 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1546 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1547 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1548 | * find_free_dev_extent_start - find free space in the specified device |
| 1549 | * @device: the device which we search the free space in |
| 1550 | * @num_bytes: the size of the free space that we need |
| 1551 | * @search_start: the position from which to begin the search |
| 1552 | * @start: store the start of the free space. |
| 1553 | * @len: the size of the free space. that we find, or the size |
| 1554 | * of the max free space if we don't find suitable free space |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1555 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1556 | * this uses a pretty simple search, the expectation is that it is |
| 1557 | * called very infrequently and that a given device has a small number |
| 1558 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1559 | * |
| 1560 | * @start is used to store the start of the free space if we find. But if we |
| 1561 | * don't find suitable free space, it will be used to store the start position |
| 1562 | * of the max free space. |
| 1563 | * |
| 1564 | * @len is used to store the size of the free space that we find. |
| 1565 | * But if we don't find suitable free space, it is used to store the size of |
| 1566 | * the max free space. |
Qu Wenruo | 135da97 | 2019-07-19 14:51:42 +0800 | [diff] [blame] | 1567 | * |
| 1568 | * NOTE: This function will search *commit* root of device tree, and does extra |
| 1569 | * check to ensure dev extents are not double allocated. |
| 1570 | * This makes the function safe to allocate dev extents but may not report |
| 1571 | * correct usable device space, as device extent freed in current transaction |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 1572 | * is not reported as available. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1573 | */ |
Qu Wenruo | 9e3246a | 2019-07-19 14:51:41 +0800 | [diff] [blame] | 1574 | static int find_free_dev_extent_start(struct btrfs_device *device, |
| 1575 | u64 num_bytes, u64 search_start, u64 *start, |
| 1576 | u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1577 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1578 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1579 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1580 | struct btrfs_key key; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1581 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1582 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1583 | u64 hole_size; |
| 1584 | u64 max_hole_start; |
| 1585 | u64 max_hole_size; |
| 1586 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1587 | u64 search_end = device->total_bytes; |
| 1588 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1589 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1590 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1591 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1592 | search_start = dev_extent_search_start(device, search_start); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1593 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1594 | WARN_ON(device->zone_info && |
| 1595 | !IS_ALIGNED(num_bytes, device->zone_info->zone_size)); |
| 1596 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1597 | path = btrfs_alloc_path(); |
| 1598 | if (!path) |
| 1599 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1600 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1601 | max_hole_start = search_start; |
| 1602 | max_hole_size = 0; |
| 1603 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1604 | again: |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1605 | if (search_start >= search_end || |
| 1606 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1607 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1608 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1609 | } |
| 1610 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1611 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1612 | path->search_commit_root = 1; |
| 1613 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1614 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1615 | key.objectid = device->devid; |
| 1616 | key.offset = search_start; |
| 1617 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1618 | |
Marcos Paulo de Souza | 0ff40a9 | 2021-07-29 05:22:16 -0300 | [diff] [blame] | 1619 | ret = btrfs_search_backwards(root, &key, path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1620 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1621 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1622 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1623 | while (1) { |
| 1624 | l = path->nodes[0]; |
| 1625 | slot = path->slots[0]; |
| 1626 | if (slot >= btrfs_header_nritems(l)) { |
| 1627 | ret = btrfs_next_leaf(root, path); |
| 1628 | if (ret == 0) |
| 1629 | continue; |
| 1630 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1631 | goto out; |
| 1632 | |
| 1633 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1634 | } |
| 1635 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1636 | |
| 1637 | if (key.objectid < device->devid) |
| 1638 | goto next; |
| 1639 | |
| 1640 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1641 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1642 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1643 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1644 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1645 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1646 | if (key.offset > search_start) { |
| 1647 | hole_size = key.offset - search_start; |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1648 | dev_extent_hole_check(device, &search_start, &hole_size, |
| 1649 | num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1650 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1651 | if (hole_size > max_hole_size) { |
| 1652 | max_hole_start = search_start; |
| 1653 | max_hole_size = hole_size; |
| 1654 | } |
| 1655 | |
| 1656 | /* |
| 1657 | * If this free space is greater than which we need, |
| 1658 | * it must be the max free space that we have found |
| 1659 | * until now, so max_hole_start must point to the start |
| 1660 | * of this free space and the length of this free space |
| 1661 | * is stored in max_hole_size. Thus, we return |
| 1662 | * max_hole_start and max_hole_size and go back to the |
| 1663 | * caller. |
| 1664 | */ |
| 1665 | if (hole_size >= num_bytes) { |
| 1666 | ret = 0; |
| 1667 | goto out; |
| 1668 | } |
| 1669 | } |
| 1670 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1671 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1672 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1673 | dev_extent); |
| 1674 | if (extent_end > search_start) |
| 1675 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1676 | next: |
| 1677 | path->slots[0]++; |
| 1678 | cond_resched(); |
| 1679 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1680 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1681 | /* |
| 1682 | * At this point, search_start should be the end of |
| 1683 | * allocated dev extents, and when shrinking the device, |
| 1684 | * search_end may be smaller than search_start. |
| 1685 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1686 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1687 | hole_size = search_end - search_start; |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1688 | if (dev_extent_hole_check(device, &search_start, &hole_size, |
| 1689 | num_bytes)) { |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1690 | btrfs_release_path(path); |
| 1691 | goto again; |
| 1692 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1693 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1694 | if (hole_size > max_hole_size) { |
| 1695 | max_hole_start = search_start; |
| 1696 | max_hole_size = hole_size; |
| 1697 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1698 | } |
| 1699 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1700 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1701 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1702 | ret = -ENOSPC; |
| 1703 | else |
| 1704 | ret = 0; |
| 1705 | |
| 1706 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1707 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1708 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1709 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1710 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1711 | return ret; |
| 1712 | } |
| 1713 | |
Nikolay Borisov | 60dfdf2 | 2019-03-27 14:24:14 +0200 | [diff] [blame] | 1714 | int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes, |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1715 | u64 *start, u64 *len) |
| 1716 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1717 | /* FIXME use last free of some kind */ |
Nikolay Borisov | 60dfdf2 | 2019-03-27 14:24:14 +0200 | [diff] [blame] | 1718 | return find_free_dev_extent_start(device, num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1719 | } |
| 1720 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1721 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1722 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1723 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1724 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1725 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1726 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1727 | int ret; |
| 1728 | struct btrfs_path *path; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1729 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1730 | struct btrfs_key found_key; |
| 1731 | struct extent_buffer *leaf = NULL; |
| 1732 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1733 | |
| 1734 | path = btrfs_alloc_path(); |
| 1735 | if (!path) |
| 1736 | return -ENOMEM; |
| 1737 | |
| 1738 | key.objectid = device->devid; |
| 1739 | key.offset = start; |
| 1740 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1741 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1742 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1743 | if (ret > 0) { |
| 1744 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1745 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1746 | if (ret) |
| 1747 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1748 | leaf = path->nodes[0]; |
| 1749 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1750 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1751 | struct btrfs_dev_extent); |
| 1752 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1753 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1754 | key = found_key; |
| 1755 | btrfs_release_path(path); |
| 1756 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1757 | } else if (ret == 0) { |
| 1758 | leaf = path->nodes[0]; |
| 1759 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1760 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1761 | } else { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1762 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1763 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1764 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1765 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1766 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1767 | ret = btrfs_del_item(trans, root, path); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 1768 | if (ret == 0) |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1769 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1770 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1771 | btrfs_free_path(path); |
| 1772 | return ret; |
| 1773 | } |
| 1774 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1775 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1776 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1777 | struct extent_map_tree *em_tree; |
| 1778 | struct extent_map *em; |
| 1779 | struct rb_node *n; |
| 1780 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1781 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 1782 | em_tree = &fs_info->mapping_tree; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1783 | read_lock(&em_tree->lock); |
Liu Bo | 07e1ce0 | 2018-08-23 03:51:52 +0800 | [diff] [blame] | 1784 | n = rb_last(&em_tree->map.rb_root); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1785 | if (n) { |
| 1786 | em = rb_entry(n, struct extent_map, rb_node); |
| 1787 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1788 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1789 | read_unlock(&em_tree->lock); |
| 1790 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1791 | return ret; |
| 1792 | } |
| 1793 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1794 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1795 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1796 | { |
| 1797 | int ret; |
| 1798 | struct btrfs_key key; |
| 1799 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1800 | struct btrfs_path *path; |
| 1801 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1802 | path = btrfs_alloc_path(); |
| 1803 | if (!path) |
| 1804 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1805 | |
| 1806 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1807 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1808 | key.offset = (u64)-1; |
| 1809 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1810 | ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1811 | if (ret < 0) |
| 1812 | goto error; |
| 1813 | |
Anand Jain | a06dee4d | 2019-08-27 15:40:44 +0800 | [diff] [blame] | 1814 | if (ret == 0) { |
| 1815 | /* Corruption */ |
| 1816 | btrfs_err(fs_info, "corrupted chunk tree devid -1 matched"); |
| 1817 | ret = -EUCLEAN; |
| 1818 | goto error; |
| 1819 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1820 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1821 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1822 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1823 | BTRFS_DEV_ITEM_KEY); |
| 1824 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1825 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1826 | } else { |
| 1827 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1828 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1829 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1830 | } |
| 1831 | ret = 0; |
| 1832 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1833 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1834 | return ret; |
| 1835 | } |
| 1836 | |
| 1837 | /* |
| 1838 | * the device information is stored in the chunk root |
| 1839 | * the btrfs_device struct should be fully filled in |
| 1840 | */ |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 1841 | static int btrfs_add_dev_item(struct btrfs_trans_handle *trans, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1842 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1843 | { |
| 1844 | int ret; |
| 1845 | struct btrfs_path *path; |
| 1846 | struct btrfs_dev_item *dev_item; |
| 1847 | struct extent_buffer *leaf; |
| 1848 | struct btrfs_key key; |
| 1849 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1850 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1851 | path = btrfs_alloc_path(); |
| 1852 | if (!path) |
| 1853 | return -ENOMEM; |
| 1854 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1855 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1856 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1857 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1858 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1859 | btrfs_reserve_chunk_metadata(trans, true); |
Nikolay Borisov | 8e87e85 | 2018-07-20 19:37:47 +0300 | [diff] [blame] | 1860 | ret = btrfs_insert_empty_item(trans, trans->fs_info->chunk_root, path, |
| 1861 | &key, sizeof(*dev_item)); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1862 | btrfs_trans_release_chunk_metadata(trans); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1863 | if (ret) |
| 1864 | goto out; |
| 1865 | |
| 1866 | leaf = path->nodes[0]; |
| 1867 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1868 | |
| 1869 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1870 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1871 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1872 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1873 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1874 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1875 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1876 | btrfs_device_get_disk_total_bytes(device)); |
| 1877 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1878 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1879 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1880 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1881 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1882 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1883 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1884 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1885 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1886 | ptr = btrfs_device_fsid(dev_item); |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 1887 | write_extent_buffer(leaf, trans->fs_info->fs_devices->metadata_uuid, |
| 1888 | ptr, BTRFS_FSID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1889 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1890 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1891 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1892 | out: |
| 1893 | btrfs_free_path(path); |
| 1894 | return ret; |
| 1895 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1896 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1897 | /* |
| 1898 | * Function to update ctime/mtime for a given device path. |
| 1899 | * Mainly used for ctime/mtime based probe like libblkid. |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1900 | * |
| 1901 | * We don't care about errors here, this is just to be kind to userspace. |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1902 | */ |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1903 | static void update_dev_time(const char *device_path) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1904 | { |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1905 | struct path path; |
Josef Bacik | 8f96a5b | 2021-07-27 17:01:16 -0400 | [diff] [blame] | 1906 | struct timespec64 now; |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1907 | int ret; |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1908 | |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1909 | ret = kern_path(device_path, LOOKUP_FOLLOW, &path); |
| 1910 | if (ret) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1911 | return; |
Josef Bacik | 8f96a5b | 2021-07-27 17:01:16 -0400 | [diff] [blame] | 1912 | |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1913 | now = current_time(d_inode(path.dentry)); |
| 1914 | inode_update_time(d_inode(path.dentry), &now, S_MTIME | S_CTIME); |
| 1915 | path_put(&path); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1916 | } |
| 1917 | |
David Sterba | f331a95 | 2019-03-20 16:31:53 +0100 | [diff] [blame] | 1918 | static int btrfs_rm_dev_item(struct btrfs_device *device) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1919 | { |
David Sterba | f331a95 | 2019-03-20 16:31:53 +0100 | [diff] [blame] | 1920 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1921 | int ret; |
| 1922 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1923 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1924 | struct btrfs_trans_handle *trans; |
| 1925 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1926 | path = btrfs_alloc_path(); |
| 1927 | if (!path) |
| 1928 | return -ENOMEM; |
| 1929 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1930 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1931 | if (IS_ERR(trans)) { |
| 1932 | btrfs_free_path(path); |
| 1933 | return PTR_ERR(trans); |
| 1934 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1935 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1936 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1937 | key.offset = device->devid; |
| 1938 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1939 | btrfs_reserve_chunk_metadata(trans, false); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1940 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1941 | btrfs_trans_release_chunk_metadata(trans); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1942 | if (ret) { |
| 1943 | if (ret > 0) |
| 1944 | ret = -ENOENT; |
| 1945 | btrfs_abort_transaction(trans, ret); |
| 1946 | btrfs_end_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1947 | goto out; |
| 1948 | } |
| 1949 | |
| 1950 | ret = btrfs_del_item(trans, root, path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1951 | if (ret) { |
| 1952 | btrfs_abort_transaction(trans, ret); |
| 1953 | btrfs_end_transaction(trans); |
| 1954 | } |
| 1955 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1956 | out: |
| 1957 | btrfs_free_path(path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1958 | if (!ret) |
| 1959 | ret = btrfs_commit_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1960 | return ret; |
| 1961 | } |
| 1962 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1963 | /* |
| 1964 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1965 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1966 | * replace. |
| 1967 | */ |
| 1968 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1969 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1970 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1971 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1972 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1973 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1974 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1975 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1976 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1977 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1978 | all_avail = fs_info->avail_data_alloc_bits | |
| 1979 | fs_info->avail_system_alloc_bits | |
| 1980 | fs_info->avail_metadata_alloc_bits; |
| 1981 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1982 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1983 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 1984 | if (!(all_avail & btrfs_raid_array[i].bg_flag)) |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1985 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1986 | |
Anand Jain | efc222f | 2021-07-28 07:03:05 +0800 | [diff] [blame] | 1987 | if (num_devices < btrfs_raid_array[i].devs_min) |
| 1988 | return btrfs_raid_array[i].mindev_error; |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1989 | } |
| 1990 | |
| 1991 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1992 | } |
| 1993 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1994 | static struct btrfs_device * btrfs_find_next_active_device( |
| 1995 | struct btrfs_fs_devices *fs_devs, struct btrfs_device *device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1996 | { |
| 1997 | struct btrfs_device *next_device; |
| 1998 | |
| 1999 | list_for_each_entry(next_device, &fs_devs->devices, dev_list) { |
| 2000 | if (next_device != device && |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2001 | !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state) |
| 2002 | && next_device->bdev) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2003 | return next_device; |
| 2004 | } |
| 2005 | |
| 2006 | return NULL; |
| 2007 | } |
| 2008 | |
| 2009 | /* |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 2010 | * Helper function to check if the given device is part of s_bdev / latest_dev |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2011 | * and replace it with the provided or the next active device, in the context |
| 2012 | * where this function called, there should be always be another device (or |
| 2013 | * this_dev) which is active. |
| 2014 | */ |
David Sterba | b105e92 | 2019-10-01 19:57:35 +0200 | [diff] [blame] | 2015 | void __cold btrfs_assign_next_active_device(struct btrfs_device *device, |
Anand Jain | e493e8f | 2020-09-05 01:34:34 +0800 | [diff] [blame] | 2016 | struct btrfs_device *next_device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2017 | { |
Nikolay Borisov | d6507cf | 2018-07-20 19:37:50 +0300 | [diff] [blame] | 2018 | struct btrfs_fs_info *fs_info = device->fs_info; |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2019 | |
Anand Jain | e493e8f | 2020-09-05 01:34:34 +0800 | [diff] [blame] | 2020 | if (!next_device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2021 | next_device = btrfs_find_next_active_device(fs_info->fs_devices, |
Anand Jain | e493e8f | 2020-09-05 01:34:34 +0800 | [diff] [blame] | 2022 | device); |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2023 | ASSERT(next_device); |
| 2024 | |
| 2025 | if (fs_info->sb->s_bdev && |
| 2026 | (fs_info->sb->s_bdev == device->bdev)) |
| 2027 | fs_info->sb->s_bdev = next_device->bdev; |
| 2028 | |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 2029 | if (fs_info->fs_devices->latest_dev->bdev == device->bdev) |
| 2030 | fs_info->fs_devices->latest_dev = next_device; |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2031 | } |
| 2032 | |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2033 | /* |
| 2034 | * Return btrfs_fs_devices::num_devices excluding the device that's being |
| 2035 | * currently replaced. |
| 2036 | */ |
| 2037 | static u64 btrfs_num_devices(struct btrfs_fs_info *fs_info) |
| 2038 | { |
| 2039 | u64 num_devices = fs_info->fs_devices->num_devices; |
| 2040 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 2041 | down_read(&fs_info->dev_replace.rwsem); |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2042 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 2043 | ASSERT(num_devices > 1); |
| 2044 | num_devices--; |
| 2045 | } |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 2046 | up_read(&fs_info->dev_replace.rwsem); |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2047 | |
| 2048 | return num_devices; |
| 2049 | } |
| 2050 | |
Josef Bacik | 313b085 | 2020-08-20 11:18:26 -0400 | [diff] [blame] | 2051 | void btrfs_scratch_superblocks(struct btrfs_fs_info *fs_info, |
| 2052 | struct block_device *bdev, |
| 2053 | const char *device_path) |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2054 | { |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2055 | struct btrfs_super_block *disk_super; |
| 2056 | int copy_num; |
| 2057 | |
| 2058 | if (!bdev) |
| 2059 | return; |
| 2060 | |
| 2061 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; copy_num++) { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2062 | struct page *page; |
| 2063 | int ret; |
| 2064 | |
| 2065 | disk_super = btrfs_read_dev_one_super(bdev, copy_num); |
| 2066 | if (IS_ERR(disk_super)) |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2067 | continue; |
| 2068 | |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 2069 | if (bdev_is_zoned(bdev)) { |
| 2070 | btrfs_reset_sb_log_zones(bdev, copy_num); |
| 2071 | continue; |
| 2072 | } |
| 2073 | |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2074 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2075 | |
| 2076 | page = virt_to_page(disk_super); |
| 2077 | set_page_dirty(page); |
| 2078 | lock_page(page); |
| 2079 | /* write_on_page() unlocks the page */ |
| 2080 | ret = write_one_page(page); |
| 2081 | if (ret) |
| 2082 | btrfs_warn(fs_info, |
| 2083 | "error clearing superblock number %d (%d)", |
| 2084 | copy_num, ret); |
| 2085 | btrfs_release_disk_super(disk_super); |
| 2086 | |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2087 | } |
| 2088 | |
| 2089 | /* Notify udev that device has changed */ |
| 2090 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 2091 | |
| 2092 | /* Update ctime/mtime for device path for libblkid */ |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 2093 | update_dev_time(device_path); |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2094 | } |
| 2095 | |
Josef Bacik | 1a15eb7 | 2021-10-05 16:12:44 -0400 | [diff] [blame] | 2096 | int btrfs_rm_device(struct btrfs_fs_info *fs_info, |
| 2097 | struct btrfs_dev_lookup_args *args, |
| 2098 | struct block_device **bdev, fmode_t *mode) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2099 | { |
| 2100 | struct btrfs_device *device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2101 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2102 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2103 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2104 | int ret = 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2105 | |
Josef Bacik | 8ef9dc0 | 2021-07-27 17:01:14 -0400 | [diff] [blame] | 2106 | /* |
| 2107 | * The device list in fs_devices is accessed without locks (neither |
| 2108 | * uuid_mutex nor device_list_mutex) as it won't change on a mounted |
| 2109 | * filesystem and another device rm cannot run. |
| 2110 | */ |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2111 | num_devices = btrfs_num_devices(fs_info); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2112 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2113 | ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2114 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2115 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2116 | |
Josef Bacik | 1a15eb7 | 2021-10-05 16:12:44 -0400 | [diff] [blame] | 2117 | device = btrfs_find_device(fs_info->fs_devices, args); |
| 2118 | if (!device) { |
| 2119 | if (args->missing) |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2120 | ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
| 2121 | else |
Josef Bacik | 1a15eb7 | 2021-10-05 16:12:44 -0400 | [diff] [blame] | 2122 | ret = -ENOENT; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2123 | goto out; |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2124 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2125 | |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 2126 | if (btrfs_pinned_by_swapfile(fs_info, device)) { |
| 2127 | btrfs_warn_in_rcu(fs_info, |
| 2128 | "cannot remove device %s (devid %llu) due to active swapfile", |
| 2129 | rcu_str_deref(device->name), device->devid); |
| 2130 | ret = -ETXTBSY; |
| 2131 | goto out; |
| 2132 | } |
| 2133 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2134 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 2135 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2136 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2137 | } |
| 2138 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2139 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 2140 | fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 2141 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2142 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2143 | } |
| 2144 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2145 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2146 | mutex_lock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2147 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2148 | device->fs_devices->rw_devices--; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2149 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2150 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2151 | |
| 2152 | ret = btrfs_shrink_device(device, 0); |
Filipe Manana | 66d204a | 2020-10-12 11:55:24 +0100 | [diff] [blame] | 2153 | if (!ret) |
| 2154 | btrfs_reada_remove_dev(device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2155 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2156 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2157 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2158 | /* |
| 2159 | * TODO: the superblock still includes this device in its num_devices |
| 2160 | * counter although write_all_supers() is not locked out. This |
| 2161 | * could give a filesystem state which requires a degraded mount. |
| 2162 | */ |
David Sterba | f331a95 | 2019-03-20 16:31:53 +0100 | [diff] [blame] | 2163 | ret = btrfs_rm_dev_item(device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2164 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2165 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2166 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2167 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
David Sterba | 163e97e | 2019-03-20 16:32:55 +0100 | [diff] [blame] | 2168 | btrfs_scrub_cancel_dev(device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2169 | |
| 2170 | /* |
| 2171 | * the device list mutex makes sure that we don't change |
| 2172 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 2173 | * the device supers. Whoever is writing all supers, should |
| 2174 | * lock the device list mutex before getting the number of |
| 2175 | * devices in the super block (super_copy). Conversely, |
| 2176 | * whoever updates the number of devices in the super block |
| 2177 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2178 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2179 | |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2180 | /* |
| 2181 | * In normal cases the cur_devices == fs_devices. But in case |
| 2182 | * of deleting a seed device, the cur_devices should point to |
Su Yue | 9675ea8 | 2021-08-18 12:15:48 +0800 | [diff] [blame] | 2183 | * its own fs_devices listed under the fs_devices->seed_list. |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2184 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2185 | cur_devices = device->fs_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2186 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2187 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2188 | |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2189 | cur_devices->num_devices--; |
| 2190 | cur_devices->total_devices--; |
Anand Jain | b4993e6 | 2018-07-03 17:07:23 +0800 | [diff] [blame] | 2191 | /* Update total_devices of the parent fs_devices if it's seed */ |
| 2192 | if (cur_devices != fs_devices) |
| 2193 | fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2194 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2195 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2196 | cur_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 2197 | |
Nikolay Borisov | d6507cf | 2018-07-20 19:37:50 +0300 | [diff] [blame] | 2198 | btrfs_assign_next_active_device(device, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2199 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2200 | if (device->bdev) { |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2201 | cur_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2202 | /* remove sysfs entry */ |
Anand Jain | 53f8a74 | 2020-09-05 01:34:27 +0800 | [diff] [blame] | 2203 | btrfs_sysfs_remove_device(device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2204 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 2205 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2206 | num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1; |
| 2207 | btrfs_set_super_num_devices(fs_info->super_copy, num_devices); |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2208 | mutex_unlock(&fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2209 | |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2210 | /* |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2211 | * At this point, the device is zero sized and detached from the |
| 2212 | * devices list. All that's left is to zero out the old supers and |
| 2213 | * free the device. |
| 2214 | * |
| 2215 | * We cannot call btrfs_close_bdev() here because we're holding the sb |
| 2216 | * write lock, and blkdev_put() will pull in the ->open_mutex on the |
| 2217 | * block device and it's dependencies. Instead just flush the device |
| 2218 | * and let the caller do the final blkdev_put. |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2219 | */ |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2220 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2221 | btrfs_scratch_superblocks(fs_info, device->bdev, |
| 2222 | device->name->str); |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2223 | if (device->bdev) { |
| 2224 | sync_blockdev(device->bdev); |
| 2225 | invalidate_bdev(device->bdev); |
| 2226 | } |
| 2227 | } |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2228 | |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2229 | *bdev = device->bdev; |
| 2230 | *mode = device->mode; |
Nikolay Borisov | 8e75fd8 | 2019-03-27 14:24:11 +0200 | [diff] [blame] | 2231 | synchronize_rcu(); |
| 2232 | btrfs_free_device(device); |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2233 | |
Josef Bacik | 8b41393 | 2021-10-05 16:12:41 -0400 | [diff] [blame] | 2234 | /* |
| 2235 | * This can happen if cur_devices is the private seed devices list. We |
| 2236 | * cannot call close_fs_devices() here because it expects the uuid_mutex |
| 2237 | * to be held, but in fact we don't need that for the private |
| 2238 | * seed_devices, we can simply decrement cur_devices->opened and then |
| 2239 | * remove it from our list and free the fs_devices. |
| 2240 | */ |
Anand Jain | 8e90694 | 2021-10-05 16:12:39 -0400 | [diff] [blame] | 2241 | if (cur_devices->num_devices == 0) { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 2242 | list_del_init(&cur_devices->seed_list); |
Josef Bacik | 8b41393 | 2021-10-05 16:12:41 -0400 | [diff] [blame] | 2243 | ASSERT(cur_devices->opened == 1); |
| 2244 | cur_devices->opened--; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2245 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2246 | } |
| 2247 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2248 | out: |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2249 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2250 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2251 | error_undo: |
Filipe Manana | 66d204a | 2020-10-12 11:55:24 +0100 | [diff] [blame] | 2252 | btrfs_reada_undo_remove_dev(device); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2253 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2254 | mutex_lock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2255 | list_add(&device->dev_alloc_list, |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2256 | &fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2257 | device->fs_devices->rw_devices++; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2258 | mutex_unlock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2259 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2260 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2261 | } |
| 2262 | |
Nikolay Borisov | 68a9db5 | 2018-07-20 19:37:48 +0300 | [diff] [blame] | 2263 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2264 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2265 | struct btrfs_fs_devices *fs_devices; |
| 2266 | |
Nikolay Borisov | 68a9db5 | 2018-07-20 19:37:48 +0300 | [diff] [blame] | 2267 | lockdep_assert_held(&srcdev->fs_info->fs_devices->device_list_mutex); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2268 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 2269 | /* |
| 2270 | * in case of fs with no seed, srcdev->fs_devices will point |
| 2271 | * to fs_devices of fs_info. However when the dev being replaced is |
| 2272 | * a seed dev it will point to the seed's local fs_devices. In short |
| 2273 | * srcdev will have its correct fs_devices in both the cases. |
| 2274 | */ |
| 2275 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2276 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2277 | list_del_rcu(&srcdev->dev_list); |
David Sterba | 619c47f | 2017-06-19 14:14:22 +0200 | [diff] [blame] | 2278 | list_del(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2279 | fs_devices->num_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2280 | if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state)) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2281 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2282 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2283 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2284 | fs_devices->rw_devices--; |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2285 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2286 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2287 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2288 | } |
| 2289 | |
David Sterba | 65237ee | 2019-03-20 16:34:54 +0100 | [diff] [blame] | 2290 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_device *srcdev) |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2291 | { |
| 2292 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2293 | |
Josef Bacik | a466c85 | 2020-08-20 11:18:27 -0400 | [diff] [blame] | 2294 | mutex_lock(&uuid_mutex); |
| 2295 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2296 | btrfs_close_bdev(srcdev); |
Nikolay Borisov | 8e75fd8 | 2019-03-27 14:24:11 +0200 | [diff] [blame] | 2297 | synchronize_rcu(); |
| 2298 | btrfs_free_device(srcdev); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2299 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2300 | /* if this is no devs we rather delete the fs_devices */ |
| 2301 | if (!fs_devices->num_devices) { |
Anand Jain | 6dd38f8 | 2017-10-17 06:53:50 +0800 | [diff] [blame] | 2302 | /* |
| 2303 | * On a mounted FS, num_devices can't be zero unless it's a |
| 2304 | * seed. In case of a seed device being replaced, the replace |
| 2305 | * target added to the sprout FS, so there will be no more |
| 2306 | * device left under the seed FS. |
| 2307 | */ |
| 2308 | ASSERT(fs_devices->seeding); |
| 2309 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 2310 | list_del_init(&fs_devices->seed_list); |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 2311 | close_fs_devices(fs_devices); |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2312 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2313 | } |
Josef Bacik | a466c85 | 2020-08-20 11:18:27 -0400 | [diff] [blame] | 2314 | mutex_unlock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2315 | } |
| 2316 | |
Nikolay Borisov | 4f5ad7b | 2018-07-20 19:37:51 +0300 | [diff] [blame] | 2317 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_device *tgtdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2318 | { |
Nikolay Borisov | 4f5ad7b | 2018-07-20 19:37:51 +0300 | [diff] [blame] | 2319 | struct btrfs_fs_devices *fs_devices = tgtdev->fs_info->fs_devices; |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2320 | |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2321 | mutex_lock(&fs_devices->device_list_mutex); |
| 2322 | |
Anand Jain | 53f8a74 | 2020-09-05 01:34:27 +0800 | [diff] [blame] | 2323 | btrfs_sysfs_remove_device(tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2324 | |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2325 | if (tgtdev->bdev) |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2326 | fs_devices->open_devices--; |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2327 | |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2328 | fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2329 | |
Nikolay Borisov | d6507cf | 2018-07-20 19:37:50 +0300 | [diff] [blame] | 2330 | btrfs_assign_next_active_device(tgtdev, NULL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2331 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2332 | list_del_rcu(&tgtdev->dev_list); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2333 | |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2334 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2335 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2336 | btrfs_scratch_superblocks(tgtdev->fs_info, tgtdev->bdev, |
| 2337 | tgtdev->name->str); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2338 | |
| 2339 | btrfs_close_bdev(tgtdev); |
Nikolay Borisov | 8e75fd8 | 2019-03-27 14:24:11 +0200 | [diff] [blame] | 2340 | synchronize_rcu(); |
| 2341 | btrfs_free_device(tgtdev); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2342 | } |
| 2343 | |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2344 | /** |
| 2345 | * Populate args from device at path |
| 2346 | * |
| 2347 | * @fs_info: the filesystem |
| 2348 | * @args: the args to populate |
| 2349 | * @path: the path to the device |
| 2350 | * |
| 2351 | * This will read the super block of the device at @path and populate @args with |
| 2352 | * the devid, fsid, and uuid. This is meant to be used for ioctls that need to |
| 2353 | * lookup a device to operate on, but need to do it before we take any locks. |
| 2354 | * This properly handles the special case of "missing" that a user may pass in, |
| 2355 | * and does some basic sanity checks. The caller must make sure that @path is |
| 2356 | * properly NUL terminated before calling in, and must call |
| 2357 | * btrfs_put_dev_args_from_path() in order to free up the temporary fsid and |
| 2358 | * uuid buffers. |
| 2359 | * |
| 2360 | * Return: 0 for success, -errno for failure |
| 2361 | */ |
| 2362 | int btrfs_get_dev_args_from_path(struct btrfs_fs_info *fs_info, |
| 2363 | struct btrfs_dev_lookup_args *args, |
| 2364 | const char *path) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2365 | { |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2366 | struct btrfs_super_block *disk_super; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2367 | struct block_device *bdev; |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2368 | int ret; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2369 | |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2370 | if (!path || !path[0]) |
| 2371 | return -EINVAL; |
| 2372 | if (!strcmp(path, "missing")) { |
| 2373 | args->missing = true; |
| 2374 | return 0; |
| 2375 | } |
| 2376 | |
| 2377 | args->uuid = kzalloc(BTRFS_UUID_SIZE, GFP_KERNEL); |
| 2378 | args->fsid = kzalloc(BTRFS_FSID_SIZE, GFP_KERNEL); |
| 2379 | if (!args->uuid || !args->fsid) { |
| 2380 | btrfs_put_dev_args_from_path(args); |
| 2381 | return -ENOMEM; |
| 2382 | } |
| 2383 | |
| 2384 | ret = btrfs_get_bdev_and_sb(path, FMODE_READ, fs_info->bdev_holder, 0, |
| 2385 | &bdev, &disk_super); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2386 | if (ret) |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2387 | return ret; |
| 2388 | args->devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2389 | memcpy(args->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2390 | if (btrfs_fs_incompat(fs_info, METADATA_UUID)) |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2391 | memcpy(args->fsid, disk_super->metadata_uuid, BTRFS_FSID_SIZE); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2392 | else |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2393 | memcpy(args->fsid, disk_super->fsid, BTRFS_FSID_SIZE); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2394 | btrfs_release_disk_super(disk_super); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2395 | blkdev_put(bdev, FMODE_READ); |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2396 | return 0; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2397 | } |
| 2398 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2399 | /* |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2400 | * Only use this jointly with btrfs_get_dev_args_from_path() because we will |
| 2401 | * allocate our ->uuid and ->fsid pointers, everybody else uses local variables |
| 2402 | * that don't need to be freed. |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2403 | */ |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2404 | void btrfs_put_dev_args_from_path(struct btrfs_dev_lookup_args *args) |
| 2405 | { |
| 2406 | kfree(args->uuid); |
| 2407 | kfree(args->fsid); |
| 2408 | args->uuid = NULL; |
| 2409 | args->fsid = NULL; |
| 2410 | } |
| 2411 | |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2412 | struct btrfs_device *btrfs_find_device_by_devspec( |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2413 | struct btrfs_fs_info *fs_info, u64 devid, |
| 2414 | const char *device_path) |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2415 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2416 | BTRFS_DEV_LOOKUP_ARGS(args); |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2417 | struct btrfs_device *device; |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2418 | int ret; |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2419 | |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2420 | if (devid) { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2421 | args.devid = devid; |
| 2422 | device = btrfs_find_device(fs_info->fs_devices, &args); |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2423 | if (!device) |
| 2424 | return ERR_PTR(-ENOENT); |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2425 | return device; |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2426 | } |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2427 | |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2428 | ret = btrfs_get_dev_args_from_path(fs_info, &args, device_path); |
| 2429 | if (ret) |
| 2430 | return ERR_PTR(ret); |
| 2431 | device = btrfs_find_device(fs_info->fs_devices, &args); |
| 2432 | btrfs_put_dev_args_from_path(&args); |
| 2433 | if (!device) |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2434 | return ERR_PTR(-ENOENT); |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2435 | return device; |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2436 | } |
| 2437 | |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2438 | static struct btrfs_fs_devices *btrfs_init_sprout(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2439 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2440 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2441 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2442 | struct btrfs_fs_devices *seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2443 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 2444 | lockdep_assert_held(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2445 | if (!fs_devices->seeding) |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2446 | return ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2447 | |
Nikolay Borisov | 427c8fd | 2020-08-12 17:04:36 +0300 | [diff] [blame] | 2448 | /* |
| 2449 | * Private copy of the seed devices, anchored at |
| 2450 | * fs_info->fs_devices->seed_list |
| 2451 | */ |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2452 | seed_devices = alloc_fs_devices(NULL, NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2453 | if (IS_ERR(seed_devices)) |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2454 | return seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2455 | |
Nikolay Borisov | 427c8fd | 2020-08-12 17:04:36 +0300 | [diff] [blame] | 2456 | /* |
| 2457 | * It's necessary to retain a copy of the original seed fs_devices in |
| 2458 | * fs_uuids so that filesystems which have been seeded can successfully |
| 2459 | * reference the seed device from open_seed_devices. This also supports |
| 2460 | * multiple fs seed. |
| 2461 | */ |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2462 | old_devices = clone_fs_devices(fs_devices); |
| 2463 | if (IS_ERR(old_devices)) { |
| 2464 | kfree(seed_devices); |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2465 | return old_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2466 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2467 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 2468 | list_add(&old_devices->fs_list, &fs_uuids); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2469 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2470 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2471 | seed_devices->opened = 1; |
| 2472 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2473 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2474 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2475 | |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2476 | return seed_devices; |
| 2477 | } |
| 2478 | |
| 2479 | /* |
| 2480 | * Splice seed devices into the sprout fs_devices. |
| 2481 | * Generate a new fsid for the sprouted read-write filesystem. |
| 2482 | */ |
| 2483 | static void btrfs_setup_sprout(struct btrfs_fs_info *fs_info, |
| 2484 | struct btrfs_fs_devices *seed_devices) |
| 2485 | { |
| 2486 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 2487 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
| 2488 | struct btrfs_device *device; |
| 2489 | u64 super_flags; |
| 2490 | |
| 2491 | /* |
| 2492 | * We are updating the fsid, the thread leading to device_list_add() |
| 2493 | * could race, so uuid_mutex is needed. |
| 2494 | */ |
| 2495 | lockdep_assert_held(&uuid_mutex); |
| 2496 | |
| 2497 | /* |
| 2498 | * The threads listed below may traverse dev_list but can do that without |
| 2499 | * device_list_mutex: |
| 2500 | * - All device ops and balance - as we are in btrfs_exclop_start. |
| 2501 | * - Various dev_list readers - are using RCU. |
| 2502 | * - btrfs_ioctl_fitrim() - is using RCU. |
| 2503 | * |
| 2504 | * For-read threads as below are using device_list_mutex: |
| 2505 | * - Readonly scrub btrfs_scrub_dev() |
| 2506 | * - Readonly scrub btrfs_scrub_progress() |
| 2507 | * - btrfs_get_dev_stats() |
| 2508 | */ |
| 2509 | lockdep_assert_held(&fs_devices->device_list_mutex); |
| 2510 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2511 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2512 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2513 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2514 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2515 | |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 2516 | fs_devices->seeding = false; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2517 | fs_devices->num_devices = 0; |
| 2518 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2519 | fs_devices->missing_devices = 0; |
Johannes Thumshirn | 7f0432d | 2019-11-13 11:27:28 +0100 | [diff] [blame] | 2520 | fs_devices->rotating = false; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 2521 | list_add(&seed_devices->seed_list, &fs_devices->seed_list); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2522 | |
| 2523 | generate_random_uuid(fs_devices->fsid); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2524 | memcpy(fs_devices->metadata_uuid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2525 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2526 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2527 | super_flags = btrfs_super_flags(disk_super) & |
| 2528 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2529 | btrfs_set_super_flags(disk_super, super_flags); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2530 | } |
| 2531 | |
| 2532 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2533 | * Store the expected generation for seed devices in device items. |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2534 | */ |
David Sterba | 5c466629 | 2019-03-20 16:36:39 +0100 | [diff] [blame] | 2535 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2536 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2537 | BTRFS_DEV_LOOKUP_ARGS(args); |
David Sterba | 5c466629 | 2019-03-20 16:36:39 +0100 | [diff] [blame] | 2538 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2539 | struct btrfs_root *root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2540 | struct btrfs_path *path; |
| 2541 | struct extent_buffer *leaf; |
| 2542 | struct btrfs_dev_item *dev_item; |
| 2543 | struct btrfs_device *device; |
| 2544 | struct btrfs_key key; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2545 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2546 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2547 | int ret; |
| 2548 | |
| 2549 | path = btrfs_alloc_path(); |
| 2550 | if (!path) |
| 2551 | return -ENOMEM; |
| 2552 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2553 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2554 | key.offset = 0; |
| 2555 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2556 | |
| 2557 | while (1) { |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2558 | btrfs_reserve_chunk_metadata(trans, false); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2559 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2560 | btrfs_trans_release_chunk_metadata(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2561 | if (ret < 0) |
| 2562 | goto error; |
| 2563 | |
| 2564 | leaf = path->nodes[0]; |
| 2565 | next_slot: |
| 2566 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2567 | ret = btrfs_next_leaf(root, path); |
| 2568 | if (ret > 0) |
| 2569 | break; |
| 2570 | if (ret < 0) |
| 2571 | goto error; |
| 2572 | leaf = path->nodes[0]; |
| 2573 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2574 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2575 | continue; |
| 2576 | } |
| 2577 | |
| 2578 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2579 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2580 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2581 | break; |
| 2582 | |
| 2583 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2584 | struct btrfs_dev_item); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2585 | args.devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2586 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2587 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2588 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2589 | BTRFS_FSID_SIZE); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2590 | args.uuid = dev_uuid; |
| 2591 | args.fsid = fs_uuid; |
| 2592 | device = btrfs_find_device(fs_info->fs_devices, &args); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2593 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2594 | |
| 2595 | if (device->fs_devices->seeding) { |
| 2596 | btrfs_set_device_generation(leaf, dev_item, |
| 2597 | device->generation); |
| 2598 | btrfs_mark_buffer_dirty(leaf); |
| 2599 | } |
| 2600 | |
| 2601 | path->slots[0]++; |
| 2602 | goto next_slot; |
| 2603 | } |
| 2604 | ret = 0; |
| 2605 | error: |
| 2606 | btrfs_free_path(path); |
| 2607 | return ret; |
| 2608 | } |
| 2609 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2610 | int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path) |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2611 | { |
Jeff Mahoney | 5112feb | 2016-06-21 20:16:08 -0400 | [diff] [blame] | 2612 | struct btrfs_root *root = fs_info->dev_root; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2613 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2614 | struct btrfs_trans_handle *trans; |
| 2615 | struct btrfs_device *device; |
| 2616 | struct block_device *bdev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2617 | struct super_block *sb = fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2618 | struct rcu_string *name; |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2619 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2620 | struct btrfs_fs_devices *seed_devices; |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2621 | u64 orig_super_total_bytes; |
| 2622 | u64 orig_super_num_devices; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2623 | int ret = 0; |
Anand Jain | fd88080 | 2021-09-21 12:33:23 +0800 | [diff] [blame] | 2624 | bool seeding_dev = false; |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2625 | bool locked = false; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2626 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2627 | if (sb_rdonly(sb) && !fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2628 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2629 | |
Li Zefan | a5d16333 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2630 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2631 | fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2632 | if (IS_ERR(bdev)) |
| 2633 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2634 | |
Naohiro Aota | b70f509 | 2020-11-10 20:26:08 +0900 | [diff] [blame] | 2635 | if (!btrfs_check_device_zone_type(fs_info, bdev)) { |
| 2636 | ret = -EINVAL; |
| 2637 | goto error; |
| 2638 | } |
| 2639 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2640 | if (fs_devices->seeding) { |
Anand Jain | fd88080 | 2021-09-21 12:33:23 +0800 | [diff] [blame] | 2641 | seeding_dev = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2642 | down_write(&sb->s_umount); |
| 2643 | mutex_lock(&uuid_mutex); |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2644 | locked = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2645 | } |
| 2646 | |
Nikolay Borisov | b9ba017 | 2020-07-22 11:09:25 +0300 | [diff] [blame] | 2647 | sync_blockdev(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2648 | |
Nikolay Borisov | f4cfa9b | 2020-07-22 11:09:22 +0300 | [diff] [blame] | 2649 | rcu_read_lock(); |
| 2650 | list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2651 | if (device->bdev == bdev) { |
| 2652 | ret = -EEXIST; |
Nikolay Borisov | f4cfa9b | 2020-07-22 11:09:22 +0300 | [diff] [blame] | 2653 | rcu_read_unlock(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2654 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2655 | } |
| 2656 | } |
Nikolay Borisov | f4cfa9b | 2020-07-22 11:09:22 +0300 | [diff] [blame] | 2657 | rcu_read_unlock(); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2658 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2659 | device = btrfs_alloc_device(fs_info, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2660 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2661 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2662 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2663 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2664 | } |
| 2665 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2666 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2667 | if (!name) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2668 | ret = -ENOMEM; |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2669 | goto error_free_device; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2670 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2671 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2672 | |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 2673 | device->fs_info = fs_info; |
| 2674 | device->bdev = bdev; |
| 2675 | |
Naohiro Aota | 16beac8 | 2021-11-11 14:14:38 +0900 | [diff] [blame] | 2676 | ret = btrfs_get_dev_zone_info(device, false); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 2677 | if (ret) |
| 2678 | goto error_free_device; |
| 2679 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2680 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2681 | if (IS_ERR(trans)) { |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2682 | ret = PTR_ERR(trans); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 2683 | goto error_free_zone; |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2684 | } |
| 2685 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2686 | q = bdev_get_queue(bdev); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2687 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2688 | device->generation = trans->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2689 | device->io_width = fs_info->sectorsize; |
| 2690 | device->io_align = fs_info->sectorsize; |
| 2691 | device->sector_size = fs_info->sectorsize; |
Christoph Hellwig | cda00eb | 2021-10-18 12:11:12 +0200 | [diff] [blame] | 2692 | device->total_bytes = |
| 2693 | round_down(bdev_nr_bytes(bdev), fs_info->sectorsize); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2694 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2695 | device->commit_total_bytes = device->total_bytes; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2696 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2697 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2698 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2699 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2700 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2701 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2702 | if (seeding_dev) { |
Filipe Manana | a0a1db7 | 2020-12-14 10:10:47 +0000 | [diff] [blame] | 2703 | btrfs_clear_sb_rdonly(sb); |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2704 | |
| 2705 | /* GFP_KERNEL allocation must not be under device_list_mutex */ |
| 2706 | seed_devices = btrfs_init_sprout(fs_info); |
| 2707 | if (IS_ERR(seed_devices)) { |
| 2708 | ret = PTR_ERR(seed_devices); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2709 | btrfs_abort_transaction(trans, ret); |
| 2710 | goto error_trans; |
| 2711 | } |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2712 | } |
| 2713 | |
| 2714 | mutex_lock(&fs_devices->device_list_mutex); |
| 2715 | if (seeding_dev) { |
| 2716 | btrfs_setup_sprout(fs_info, seed_devices); |
Anand Jain | b7cb29e | 2021-08-24 13:05:21 +0800 | [diff] [blame] | 2717 | btrfs_assign_next_active_device(fs_info->fs_devices->latest_dev, |
| 2718 | device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2719 | } |
| 2720 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2721 | device->fs_devices = fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2722 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2723 | mutex_lock(&fs_info->chunk_mutex); |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2724 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
| 2725 | list_add(&device->dev_alloc_list, &fs_devices->alloc_list); |
| 2726 | fs_devices->num_devices++; |
| 2727 | fs_devices->open_devices++; |
| 2728 | fs_devices->rw_devices++; |
| 2729 | fs_devices->total_devices++; |
| 2730 | fs_devices->total_rw_bytes += device->total_bytes; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2731 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2732 | atomic64_add(device->total_bytes, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2733 | |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 2734 | if (!blk_queue_nonrot(q)) |
Johannes Thumshirn | 7f0432d | 2019-11-13 11:27:28 +0100 | [diff] [blame] | 2735 | fs_devices->rotating = true; |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2736 | |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2737 | orig_super_total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2738 | btrfs_set_super_total_bytes(fs_info->super_copy, |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2739 | round_down(orig_super_total_bytes + device->total_bytes, |
| 2740 | fs_info->sectorsize)); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2741 | |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2742 | orig_super_num_devices = btrfs_super_num_devices(fs_info->super_copy); |
| 2743 | btrfs_set_super_num_devices(fs_info->super_copy, |
| 2744 | orig_super_num_devices + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2745 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2746 | /* |
| 2747 | * we've got more storage, clear any full flags on the space |
| 2748 | * infos |
| 2749 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2750 | btrfs_clear_space_info_full(fs_info); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2751 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2752 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | ca10845 | 2020-09-01 08:09:01 -0400 | [diff] [blame] | 2753 | |
| 2754 | /* Add sysfs device entry */ |
Anand Jain | cd36da2 | 2020-09-05 01:34:26 +0800 | [diff] [blame] | 2755 | btrfs_sysfs_add_device(device); |
Josef Bacik | ca10845 | 2020-09-01 08:09:01 -0400 | [diff] [blame] | 2756 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2757 | mutex_unlock(&fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2758 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2759 | if (seeding_dev) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2760 | mutex_lock(&fs_info->chunk_mutex); |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 2761 | ret = init_first_rw_device(trans); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2762 | mutex_unlock(&fs_info->chunk_mutex); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2763 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2764 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2765 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2766 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2767 | } |
| 2768 | |
Nikolay Borisov | 8e87e85 | 2018-07-20 19:37:47 +0300 | [diff] [blame] | 2769 | ret = btrfs_add_dev_item(trans, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2770 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2771 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2772 | goto error_sysfs; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2773 | } |
| 2774 | |
| 2775 | if (seeding_dev) { |
David Sterba | 5c466629 | 2019-03-20 16:36:39 +0100 | [diff] [blame] | 2776 | ret = btrfs_finish_sprout(trans); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2777 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2778 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2779 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2780 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2781 | |
Nikolay Borisov | 8e56008 | 2020-08-12 16:18:51 +0300 | [diff] [blame] | 2782 | /* |
| 2783 | * fs_devices now represents the newly sprouted filesystem and |
Anand Jain | 849eae5 | 2021-11-09 17:51:58 +0800 | [diff] [blame] | 2784 | * its fsid has been changed by btrfs_sprout_splice(). |
Nikolay Borisov | 8e56008 | 2020-08-12 16:18:51 +0300 | [diff] [blame] | 2785 | */ |
| 2786 | btrfs_sysfs_update_sprout_fsid(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2787 | } |
| 2788 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2789 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2790 | |
| 2791 | if (seeding_dev) { |
| 2792 | mutex_unlock(&uuid_mutex); |
| 2793 | up_write(&sb->s_umount); |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2794 | locked = false; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2795 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2796 | if (ret) /* transaction commit */ |
| 2797 | return ret; |
| 2798 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2799 | ret = btrfs_relocate_sys_chunks(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2800 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2801 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2802 | "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command."); |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2803 | trans = btrfs_attach_transaction(root); |
| 2804 | if (IS_ERR(trans)) { |
| 2805 | if (PTR_ERR(trans) == -ENOENT) |
| 2806 | return 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2807 | ret = PTR_ERR(trans); |
| 2808 | trans = NULL; |
| 2809 | goto error_sysfs; |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2810 | } |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2811 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2812 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2813 | |
Anand Jain | 7f551d9 | 2020-05-05 02:58:26 +0800 | [diff] [blame] | 2814 | /* |
| 2815 | * Now that we have written a new super block to this device, check all |
| 2816 | * other fs_devices list if device_path alienates any other scanned |
| 2817 | * device. |
| 2818 | * We can ignore the return value as it typically returns -EINVAL and |
| 2819 | * only succeeds if the device was an alien. |
| 2820 | */ |
| 2821 | btrfs_forget_devices(device_path); |
| 2822 | |
| 2823 | /* Update ctime/mtime for blkid or udev */ |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 2824 | update_dev_time(device_path); |
Anand Jain | 7f551d9 | 2020-05-05 02:58:26 +0800 | [diff] [blame] | 2825 | |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2826 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2827 | |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2828 | error_sysfs: |
Anand Jain | 53f8a74 | 2020-09-05 01:34:27 +0800 | [diff] [blame] | 2829 | btrfs_sysfs_remove_device(device); |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2830 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
| 2831 | mutex_lock(&fs_info->chunk_mutex); |
| 2832 | list_del_rcu(&device->dev_list); |
| 2833 | list_del(&device->dev_alloc_list); |
| 2834 | fs_info->fs_devices->num_devices--; |
| 2835 | fs_info->fs_devices->open_devices--; |
| 2836 | fs_info->fs_devices->rw_devices--; |
| 2837 | fs_info->fs_devices->total_devices--; |
| 2838 | fs_info->fs_devices->total_rw_bytes -= device->total_bytes; |
| 2839 | atomic64_sub(device->total_bytes, &fs_info->free_chunk_space); |
| 2840 | btrfs_set_super_total_bytes(fs_info->super_copy, |
| 2841 | orig_super_total_bytes); |
| 2842 | btrfs_set_super_num_devices(fs_info->super_copy, |
| 2843 | orig_super_num_devices); |
| 2844 | mutex_unlock(&fs_info->chunk_mutex); |
| 2845 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2846 | error_trans: |
Anand Jain | 0af2c4b | 2017-09-28 14:51:09 +0800 | [diff] [blame] | 2847 | if (seeding_dev) |
Filipe Manana | a0a1db7 | 2020-12-14 10:10:47 +0000 | [diff] [blame] | 2848 | btrfs_set_sb_rdonly(sb); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2849 | if (trans) |
| 2850 | btrfs_end_transaction(trans); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 2851 | error_free_zone: |
| 2852 | btrfs_destroy_dev_zone_info(device); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2853 | error_free_device: |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 2854 | btrfs_free_device(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2855 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2856 | blkdev_put(bdev, FMODE_EXCL); |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2857 | if (locked) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2858 | mutex_unlock(&uuid_mutex); |
| 2859 | up_write(&sb->s_umount); |
| 2860 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2861 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2862 | } |
| 2863 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2864 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2865 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2866 | { |
| 2867 | int ret; |
| 2868 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2869 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2870 | struct btrfs_dev_item *dev_item; |
| 2871 | struct extent_buffer *leaf; |
| 2872 | struct btrfs_key key; |
| 2873 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2874 | path = btrfs_alloc_path(); |
| 2875 | if (!path) |
| 2876 | return -ENOMEM; |
| 2877 | |
| 2878 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2879 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2880 | key.offset = device->devid; |
| 2881 | |
| 2882 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2883 | if (ret < 0) |
| 2884 | goto out; |
| 2885 | |
| 2886 | if (ret > 0) { |
| 2887 | ret = -ENOENT; |
| 2888 | goto out; |
| 2889 | } |
| 2890 | |
| 2891 | leaf = path->nodes[0]; |
| 2892 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2893 | |
| 2894 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2895 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2896 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2897 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2898 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2899 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2900 | btrfs_device_get_disk_total_bytes(device)); |
| 2901 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2902 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2903 | btrfs_mark_buffer_dirty(leaf); |
| 2904 | |
| 2905 | out: |
| 2906 | btrfs_free_path(path); |
| 2907 | return ret; |
| 2908 | } |
| 2909 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2910 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2911 | struct btrfs_device *device, u64 new_size) |
| 2912 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2913 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 2914 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2915 | u64 old_total; |
| 2916 | u64 diff; |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2917 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2918 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2919 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2920 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2921 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2922 | new_size = round_down(new_size, fs_info->sectorsize); |
| 2923 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2924 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2925 | old_total = btrfs_super_total_bytes(super_copy); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 2926 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2927 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2928 | if (new_size <= device->total_bytes || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2929 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2930 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2931 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2932 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2933 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2934 | btrfs_set_super_total_bytes(super_copy, |
| 2935 | round_down(old_total + diff, fs_info->sectorsize)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2936 | device->fs_devices->total_rw_bytes += diff; |
| 2937 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2938 | btrfs_device_set_total_bytes(device, new_size); |
| 2939 | btrfs_device_set_disk_total_bytes(device, new_size); |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2940 | btrfs_clear_space_info_full(device->fs_info); |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 2941 | if (list_empty(&device->post_commit_list)) |
| 2942 | list_add_tail(&device->post_commit_list, |
| 2943 | &trans->transaction->dev_update_list); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2944 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2945 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2946 | btrfs_reserve_chunk_metadata(trans, false); |
| 2947 | ret = btrfs_update_device(trans, device); |
| 2948 | btrfs_trans_release_chunk_metadata(trans); |
| 2949 | |
| 2950 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2951 | } |
| 2952 | |
Nikolay Borisov | f420879 | 2018-07-20 19:37:52 +0300 | [diff] [blame] | 2953 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2954 | { |
Nikolay Borisov | f420879 | 2018-07-20 19:37:52 +0300 | [diff] [blame] | 2955 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2956 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2957 | int ret; |
| 2958 | struct btrfs_path *path; |
| 2959 | struct btrfs_key key; |
| 2960 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2961 | path = btrfs_alloc_path(); |
| 2962 | if (!path) |
| 2963 | return -ENOMEM; |
| 2964 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2965 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2966 | key.offset = chunk_offset; |
| 2967 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2968 | |
| 2969 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2970 | if (ret < 0) |
| 2971 | goto out; |
| 2972 | else if (ret > 0) { /* Logic error or corruption */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2973 | btrfs_handle_fs_error(fs_info, -ENOENT, |
| 2974 | "Failed lookup while freeing chunk."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2975 | ret = -ENOENT; |
| 2976 | goto out; |
| 2977 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2978 | |
| 2979 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2980 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2981 | btrfs_handle_fs_error(fs_info, ret, |
| 2982 | "Failed to delete chunk item."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2983 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2984 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2985 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2986 | } |
| 2987 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2988 | static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2989 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2990 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2991 | struct btrfs_disk_key *disk_key; |
| 2992 | struct btrfs_chunk *chunk; |
| 2993 | u8 *ptr; |
| 2994 | int ret = 0; |
| 2995 | u32 num_stripes; |
| 2996 | u32 array_size; |
| 2997 | u32 len = 0; |
| 2998 | u32 cur; |
| 2999 | struct btrfs_key key; |
| 3000 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3001 | lockdep_assert_held(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3002 | array_size = btrfs_super_sys_array_size(super_copy); |
| 3003 | |
| 3004 | ptr = super_copy->sys_chunk_array; |
| 3005 | cur = 0; |
| 3006 | |
| 3007 | while (cur < array_size) { |
| 3008 | disk_key = (struct btrfs_disk_key *)ptr; |
| 3009 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 3010 | |
| 3011 | len = sizeof(*disk_key); |
| 3012 | |
| 3013 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 3014 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 3015 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 3016 | len += btrfs_chunk_item_size(num_stripes); |
| 3017 | } else { |
| 3018 | ret = -EIO; |
| 3019 | break; |
| 3020 | } |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 3021 | if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3022 | key.offset == chunk_offset) { |
| 3023 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 3024 | array_size -= len; |
| 3025 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 3026 | } else { |
| 3027 | ptr += len; |
| 3028 | cur += len; |
| 3029 | } |
| 3030 | } |
| 3031 | return ret; |
| 3032 | } |
| 3033 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 3034 | /* |
| 3035 | * btrfs_get_chunk_map() - Find the mapping containing the given logical extent. |
| 3036 | * @logical: Logical block offset in bytes. |
| 3037 | * @length: Length of extent in bytes. |
| 3038 | * |
| 3039 | * Return: Chunk mapping or ERR_PTR. |
| 3040 | */ |
| 3041 | struct extent_map *btrfs_get_chunk_map(struct btrfs_fs_info *fs_info, |
| 3042 | u64 logical, u64 length) |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3043 | { |
| 3044 | struct extent_map_tree *em_tree; |
| 3045 | struct extent_map *em; |
| 3046 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 3047 | em_tree = &fs_info->mapping_tree; |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3048 | read_lock(&em_tree->lock); |
| 3049 | em = lookup_extent_mapping(em_tree, logical, length); |
| 3050 | read_unlock(&em_tree->lock); |
| 3051 | |
| 3052 | if (!em) { |
| 3053 | btrfs_crit(fs_info, "unable to find logical %llu length %llu", |
| 3054 | logical, length); |
| 3055 | return ERR_PTR(-EINVAL); |
| 3056 | } |
| 3057 | |
| 3058 | if (em->start > logical || em->start + em->len < logical) { |
| 3059 | btrfs_crit(fs_info, |
| 3060 | "found a bad mapping, wanted %llu-%llu, found %llu-%llu", |
| 3061 | logical, length, em->start, em->start + em->len); |
| 3062 | free_extent_map(em); |
| 3063 | return ERR_PTR(-EINVAL); |
| 3064 | } |
| 3065 | |
| 3066 | /* callers are responsible for dropping em's ref. */ |
| 3067 | return em; |
| 3068 | } |
| 3069 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3070 | static int remove_chunk_item(struct btrfs_trans_handle *trans, |
| 3071 | struct map_lookup *map, u64 chunk_offset) |
| 3072 | { |
| 3073 | int i; |
| 3074 | |
| 3075 | /* |
| 3076 | * Removing chunk items and updating the device items in the chunks btree |
| 3077 | * requires holding the chunk_mutex. |
| 3078 | * See the comment at btrfs_chunk_alloc() for the details. |
| 3079 | */ |
| 3080 | lockdep_assert_held(&trans->fs_info->chunk_mutex); |
| 3081 | |
| 3082 | for (i = 0; i < map->num_stripes; i++) { |
| 3083 | int ret; |
| 3084 | |
| 3085 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 3086 | if (ret) |
| 3087 | return ret; |
| 3088 | } |
| 3089 | |
| 3090 | return btrfs_free_chunk(trans, chunk_offset); |
| 3091 | } |
| 3092 | |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 3093 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3094 | { |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 3095 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3096 | struct extent_map *em; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3097 | struct map_lookup *map; |
| 3098 | u64 dev_extent_len = 0; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3099 | int i, ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3100 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3101 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 3102 | em = btrfs_get_chunk_map(fs_info, chunk_offset, 1); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3103 | if (IS_ERR(em)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3104 | /* |
| 3105 | * This is a logic error, but we don't want to just rely on the |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 3106 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3107 | * do anything we still error out. |
| 3108 | */ |
| 3109 | ASSERT(0); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3110 | return PTR_ERR(em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3111 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 3112 | map = em->map_lookup; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3113 | |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3114 | /* |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3115 | * First delete the device extent items from the devices btree. |
| 3116 | * We take the device_list_mutex to avoid racing with the finishing phase |
| 3117 | * of a device replace operation. See the comment below before acquiring |
| 3118 | * fs_info->chunk_mutex. Note that here we do not acquire the chunk_mutex |
| 3119 | * because that can result in a deadlock when deleting the device extent |
| 3120 | * items from the devices btree - COWing an extent buffer from the btree |
| 3121 | * may result in allocating a new metadata chunk, which would attempt to |
| 3122 | * lock again fs_info->chunk_mutex. |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3123 | */ |
| 3124 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3125 | for (i = 0; i < map->num_stripes; i++) { |
| 3126 | struct btrfs_device *device = map->stripes[i].dev; |
| 3127 | ret = btrfs_free_dev_extent(trans, device, |
| 3128 | map->stripes[i].physical, |
| 3129 | &dev_extent_len); |
| 3130 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3131 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3132 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3133 | goto out; |
| 3134 | } |
| 3135 | |
| 3136 | if (device->bytes_used > 0) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 3137 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3138 | btrfs_device_set_bytes_used(device, |
| 3139 | device->bytes_used - dev_extent_len); |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 3140 | atomic64_add(dev_extent_len, &fs_info->free_chunk_space); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3141 | btrfs_clear_space_info_full(fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 3142 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3143 | } |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3144 | } |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3145 | mutex_unlock(&fs_devices->device_list_mutex); |
| 3146 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3147 | /* |
| 3148 | * We acquire fs_info->chunk_mutex for 2 reasons: |
| 3149 | * |
| 3150 | * 1) Just like with the first phase of the chunk allocation, we must |
| 3151 | * reserve system space, do all chunk btree updates and deletions, and |
| 3152 | * update the system chunk array in the superblock while holding this |
| 3153 | * mutex. This is for similar reasons as explained on the comment at |
| 3154 | * the top of btrfs_chunk_alloc(); |
| 3155 | * |
| 3156 | * 2) Prevent races with the final phase of a device replace operation |
| 3157 | * that replaces the device object associated with the map's stripes, |
| 3158 | * because the device object's id can change at any time during that |
| 3159 | * final phase of the device replace operation |
| 3160 | * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the |
| 3161 | * replaced device and then see it with an ID of |
| 3162 | * BTRFS_DEV_REPLACE_DEVID, which would cause a failure when updating |
| 3163 | * the device item, which does not exists on the chunk btree. |
| 3164 | * The finishing phase of device replace acquires both the |
| 3165 | * device_list_mutex and the chunk_mutex, in that order, so we are |
| 3166 | * safe by just acquiring the chunk_mutex. |
| 3167 | */ |
| 3168 | trans->removing_chunk = true; |
| 3169 | mutex_lock(&fs_info->chunk_mutex); |
| 3170 | |
| 3171 | check_system_chunk(trans, map->type); |
| 3172 | |
| 3173 | ret = remove_chunk_item(trans, map, chunk_offset); |
| 3174 | /* |
| 3175 | * Normally we should not get -ENOSPC since we reserved space before |
| 3176 | * through the call to check_system_chunk(). |
| 3177 | * |
| 3178 | * Despite our system space_info having enough free space, we may not |
| 3179 | * be able to allocate extents from its block groups, because all have |
| 3180 | * an incompatible profile, which will force us to allocate a new system |
| 3181 | * block group with the right profile, or right after we called |
| 3182 | * check_system_space() above, a scrub turned the only system block group |
| 3183 | * with enough free space into RO mode. |
| 3184 | * This is explained with more detail at do_chunk_alloc(). |
| 3185 | * |
| 3186 | * So if we get -ENOSPC, allocate a new system chunk and retry once. |
| 3187 | */ |
| 3188 | if (ret == -ENOSPC) { |
| 3189 | const u64 sys_flags = btrfs_system_alloc_profile(fs_info); |
| 3190 | struct btrfs_block_group *sys_bg; |
| 3191 | |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 3192 | sys_bg = btrfs_create_chunk(trans, sys_flags); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3193 | if (IS_ERR(sys_bg)) { |
| 3194 | ret = PTR_ERR(sys_bg); |
| 3195 | btrfs_abort_transaction(trans, ret); |
| 3196 | goto out; |
| 3197 | } |
| 3198 | |
| 3199 | ret = btrfs_chunk_alloc_add_chunk_item(trans, sys_bg); |
| 3200 | if (ret) { |
| 3201 | btrfs_abort_transaction(trans, ret); |
| 3202 | goto out; |
| 3203 | } |
| 3204 | |
| 3205 | ret = remove_chunk_item(trans, map, chunk_offset); |
| 3206 | if (ret) { |
| 3207 | btrfs_abort_transaction(trans, ret); |
| 3208 | goto out; |
| 3209 | } |
| 3210 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3211 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3212 | goto out; |
| 3213 | } |
| 3214 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3215 | trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3216 | |
| 3217 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 3218 | ret = btrfs_del_sys_chunk(fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3219 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3220 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3221 | goto out; |
| 3222 | } |
| 3223 | } |
| 3224 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3225 | mutex_unlock(&fs_info->chunk_mutex); |
| 3226 | trans->removing_chunk = false; |
| 3227 | |
| 3228 | /* |
| 3229 | * We are done with chunk btree updates and deletions, so release the |
| 3230 | * system space we previously reserved (with check_system_chunk()). |
| 3231 | */ |
| 3232 | btrfs_trans_release_chunk_metadata(trans); |
| 3233 | |
Nikolay Borisov | 5a98ec0 | 2018-06-20 15:48:56 +0300 | [diff] [blame] | 3234 | ret = btrfs_remove_block_group(trans, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3235 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3236 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3237 | goto out; |
| 3238 | } |
| 3239 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3240 | out: |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3241 | if (trans->removing_chunk) { |
| 3242 | mutex_unlock(&fs_info->chunk_mutex); |
| 3243 | trans->removing_chunk = false; |
| 3244 | } |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3245 | /* once for us */ |
| 3246 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3247 | return ret; |
| 3248 | } |
| 3249 | |
Johannes Thumshirn | 18bb8bb | 2021-04-19 16:41:02 +0900 | [diff] [blame] | 3250 | int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3251 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3252 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3253 | struct btrfs_trans_handle *trans; |
Dennis Zhou | b0643e5 | 2019-12-13 16:22:14 -0800 | [diff] [blame] | 3254 | struct btrfs_block_group *block_group; |
Johannes Thumshirn | 01e8600 | 2021-04-19 16:41:00 +0900 | [diff] [blame] | 3255 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3256 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3257 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3258 | /* |
| 3259 | * Prevent races with automatic removal of unused block groups. |
| 3260 | * After we relocate and before we remove the chunk with offset |
| 3261 | * chunk_offset, automatic removal of the block group can kick in, |
| 3262 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 3263 | * |
| 3264 | * Make sure to acquire this mutex before doing a tree search (dev |
| 3265 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 3266 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 3267 | * we release the path used to search the chunk/dev tree and before |
| 3268 | * the current task acquires this mutex and calls us. |
| 3269 | */ |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3270 | lockdep_assert_held(&fs_info->reclaim_bgs_lock); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3271 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3272 | /* step one, relocate all the extents inside this chunk */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3273 | btrfs_scrub_pause(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3274 | ret = btrfs_relocate_block_group(fs_info, chunk_offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3275 | btrfs_scrub_continue(fs_info); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3276 | if (ret) |
| 3277 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3278 | |
Dennis Zhou | b0643e5 | 2019-12-13 16:22:14 -0800 | [diff] [blame] | 3279 | block_group = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3280 | if (!block_group) |
| 3281 | return -ENOENT; |
| 3282 | btrfs_discard_cancel_work(&fs_info->discard_ctl, block_group); |
Johannes Thumshirn | 01e8600 | 2021-04-19 16:41:00 +0900 | [diff] [blame] | 3283 | length = block_group->length; |
Dennis Zhou | b0643e5 | 2019-12-13 16:22:14 -0800 | [diff] [blame] | 3284 | btrfs_put_block_group(block_group); |
| 3285 | |
Johannes Thumshirn | 01e8600 | 2021-04-19 16:41:00 +0900 | [diff] [blame] | 3286 | /* |
| 3287 | * On a zoned file system, discard the whole block group, this will |
| 3288 | * trigger a REQ_OP_ZONE_RESET operation on the device zone. If |
| 3289 | * resetting the zone fails, don't treat it as a fatal problem from the |
| 3290 | * filesystem's point of view. |
| 3291 | */ |
| 3292 | if (btrfs_is_zoned(fs_info)) { |
| 3293 | ret = btrfs_discard_extent(fs_info, chunk_offset, length, NULL); |
| 3294 | if (ret) |
| 3295 | btrfs_info(fs_info, |
| 3296 | "failed to reset zone %llu after relocation", |
| 3297 | chunk_offset); |
| 3298 | } |
| 3299 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3300 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 3301 | chunk_offset); |
| 3302 | if (IS_ERR(trans)) { |
| 3303 | ret = PTR_ERR(trans); |
| 3304 | btrfs_handle_fs_error(root->fs_info, ret, NULL); |
| 3305 | return ret; |
| 3306 | } |
Naohiro Aota | 5d8eb6f | 2016-09-02 16:46:32 +0900 | [diff] [blame] | 3307 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3308 | /* |
| 3309 | * step two, delete the device extents and the |
| 3310 | * chunk tree entries |
| 3311 | */ |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 3312 | ret = btrfs_remove_chunk(trans, chunk_offset); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3313 | btrfs_end_transaction(trans); |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3314 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3315 | } |
| 3316 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3317 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3318 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3319 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3320 | struct btrfs_path *path; |
| 3321 | struct extent_buffer *leaf; |
| 3322 | struct btrfs_chunk *chunk; |
| 3323 | struct btrfs_key key; |
| 3324 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3325 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3326 | bool retried = false; |
| 3327 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3328 | int ret; |
| 3329 | |
| 3330 | path = btrfs_alloc_path(); |
| 3331 | if (!path) |
| 3332 | return -ENOMEM; |
| 3333 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3334 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3335 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3336 | key.offset = (u64)-1; |
| 3337 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3338 | |
| 3339 | while (1) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3340 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3341 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3342 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3343 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3344 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3345 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3346 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3347 | |
| 3348 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 3349 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3350 | if (ret) |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3351 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3352 | if (ret < 0) |
| 3353 | goto error; |
| 3354 | if (ret > 0) |
| 3355 | break; |
| 3356 | |
| 3357 | leaf = path->nodes[0]; |
| 3358 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3359 | |
| 3360 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 3361 | struct btrfs_chunk); |
| 3362 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3363 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3364 | |
| 3365 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3366 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3367 | if (ret == -ENOSPC) |
| 3368 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 3369 | else |
| 3370 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3371 | } |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3372 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3373 | |
| 3374 | if (found_key.offset == 0) |
| 3375 | break; |
| 3376 | key.offset = found_key.offset - 1; |
| 3377 | } |
| 3378 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3379 | if (failed && !retried) { |
| 3380 | failed = 0; |
| 3381 | retried = true; |
| 3382 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3383 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3384 | ret = -ENOSPC; |
| 3385 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3386 | error: |
| 3387 | btrfs_free_path(path); |
| 3388 | return ret; |
| 3389 | } |
| 3390 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3391 | /* |
| 3392 | * return 1 : allocate a data chunk successfully, |
| 3393 | * return <0: errors during allocating a data chunk, |
| 3394 | * return 0 : no need to allocate a data chunk. |
| 3395 | */ |
| 3396 | static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info, |
| 3397 | u64 chunk_offset) |
| 3398 | { |
David Sterba | 32da5386 | 2019-10-29 19:20:18 +0100 | [diff] [blame] | 3399 | struct btrfs_block_group *cache; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3400 | u64 bytes_used; |
| 3401 | u64 chunk_type; |
| 3402 | |
| 3403 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3404 | ASSERT(cache); |
| 3405 | chunk_type = cache->flags; |
| 3406 | btrfs_put_block_group(cache); |
| 3407 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3408 | if (!(chunk_type & BTRFS_BLOCK_GROUP_DATA)) |
| 3409 | return 0; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3410 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3411 | spin_lock(&fs_info->data_sinfo->lock); |
| 3412 | bytes_used = fs_info->data_sinfo->bytes_used; |
| 3413 | spin_unlock(&fs_info->data_sinfo->lock); |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3414 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3415 | if (!bytes_used) { |
| 3416 | struct btrfs_trans_handle *trans; |
| 3417 | int ret; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3418 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3419 | trans = btrfs_join_transaction(fs_info->tree_root); |
| 3420 | if (IS_ERR(trans)) |
| 3421 | return PTR_ERR(trans); |
| 3422 | |
| 3423 | ret = btrfs_force_chunk_alloc(trans, BTRFS_BLOCK_GROUP_DATA); |
| 3424 | btrfs_end_transaction(trans); |
| 3425 | if (ret < 0) |
| 3426 | return ret; |
| 3427 | return 1; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3428 | } |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3429 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3430 | return 0; |
| 3431 | } |
| 3432 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3433 | static int insert_balance_item(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3434 | struct btrfs_balance_control *bctl) |
| 3435 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3436 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3437 | struct btrfs_trans_handle *trans; |
| 3438 | struct btrfs_balance_item *item; |
| 3439 | struct btrfs_disk_balance_args disk_bargs; |
| 3440 | struct btrfs_path *path; |
| 3441 | struct extent_buffer *leaf; |
| 3442 | struct btrfs_key key; |
| 3443 | int ret, err; |
| 3444 | |
| 3445 | path = btrfs_alloc_path(); |
| 3446 | if (!path) |
| 3447 | return -ENOMEM; |
| 3448 | |
| 3449 | trans = btrfs_start_transaction(root, 0); |
| 3450 | if (IS_ERR(trans)) { |
| 3451 | btrfs_free_path(path); |
| 3452 | return PTR_ERR(trans); |
| 3453 | } |
| 3454 | |
| 3455 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3456 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3457 | key.offset = 0; |
| 3458 | |
| 3459 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 3460 | sizeof(*item)); |
| 3461 | if (ret) |
| 3462 | goto out; |
| 3463 | |
| 3464 | leaf = path->nodes[0]; |
| 3465 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3466 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 3467 | memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item)); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3468 | |
| 3469 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 3470 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 3471 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 3472 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 3473 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 3474 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 3475 | |
| 3476 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 3477 | |
| 3478 | btrfs_mark_buffer_dirty(leaf); |
| 3479 | out: |
| 3480 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3481 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3482 | if (err && !ret) |
| 3483 | ret = err; |
| 3484 | return ret; |
| 3485 | } |
| 3486 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3487 | static int del_balance_item(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3488 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3489 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3490 | struct btrfs_trans_handle *trans; |
| 3491 | struct btrfs_path *path; |
| 3492 | struct btrfs_key key; |
| 3493 | int ret, err; |
| 3494 | |
| 3495 | path = btrfs_alloc_path(); |
| 3496 | if (!path) |
| 3497 | return -ENOMEM; |
| 3498 | |
David Sterba | 3502a8c | 2020-06-25 12:35:28 +0200 | [diff] [blame] | 3499 | trans = btrfs_start_transaction_fallback_global_rsv(root, 0); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3500 | if (IS_ERR(trans)) { |
| 3501 | btrfs_free_path(path); |
| 3502 | return PTR_ERR(trans); |
| 3503 | } |
| 3504 | |
| 3505 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3506 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3507 | key.offset = 0; |
| 3508 | |
| 3509 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3510 | if (ret < 0) |
| 3511 | goto out; |
| 3512 | if (ret > 0) { |
| 3513 | ret = -ENOENT; |
| 3514 | goto out; |
| 3515 | } |
| 3516 | |
| 3517 | ret = btrfs_del_item(trans, root, path); |
| 3518 | out: |
| 3519 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3520 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3521 | if (err && !ret) |
| 3522 | ret = err; |
| 3523 | return ret; |
| 3524 | } |
| 3525 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3526 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3527 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3528 | * resume after balance was interrupted. |
| 3529 | */ |
| 3530 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3531 | { |
| 3532 | /* |
| 3533 | * Turn on soft mode for chunk types that were being converted. |
| 3534 | */ |
| 3535 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3536 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3537 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3538 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3539 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3540 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3541 | |
| 3542 | /* |
| 3543 | * Turn on usage filter if is not already used. The idea is |
| 3544 | * that chunks that we have already balanced should be |
| 3545 | * reasonably full. Don't do it for chunks that are being |
| 3546 | * converted - that will keep us from relocating unconverted |
| 3547 | * (albeit full) chunks. |
| 3548 | */ |
| 3549 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3550 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3551 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3552 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3553 | bctl->data.usage = 90; |
| 3554 | } |
| 3555 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3556 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3557 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3558 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3559 | bctl->sys.usage = 90; |
| 3560 | } |
| 3561 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3562 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3563 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3564 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3565 | bctl->meta.usage = 90; |
| 3566 | } |
| 3567 | } |
| 3568 | |
| 3569 | /* |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3570 | * Clear the balance status in fs_info and delete the balance item from disk. |
| 3571 | */ |
| 3572 | static void reset_balance_state(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3573 | { |
| 3574 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3575 | int ret; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3576 | |
| 3577 | BUG_ON(!fs_info->balance_ctl); |
| 3578 | |
| 3579 | spin_lock(&fs_info->balance_lock); |
| 3580 | fs_info->balance_ctl = NULL; |
| 3581 | spin_unlock(&fs_info->balance_lock); |
| 3582 | |
| 3583 | kfree(bctl); |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3584 | ret = del_balance_item(fs_info); |
| 3585 | if (ret) |
| 3586 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3587 | } |
| 3588 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3589 | /* |
| 3590 | * Balance filters. Return 1 if chunk should be filtered out |
| 3591 | * (should not be balanced). |
| 3592 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3593 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3594 | struct btrfs_balance_args *bargs) |
| 3595 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3596 | chunk_type = chunk_to_extended(chunk_type) & |
| 3597 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3598 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3599 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3600 | return 0; |
| 3601 | |
| 3602 | return 1; |
| 3603 | } |
| 3604 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3605 | static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset, |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3606 | struct btrfs_balance_args *bargs) |
| 3607 | { |
David Sterba | 32da5386 | 2019-10-29 19:20:18 +0100 | [diff] [blame] | 3608 | struct btrfs_block_group *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3609 | u64 chunk_used; |
| 3610 | u64 user_thresh_min; |
| 3611 | u64 user_thresh_max; |
| 3612 | int ret = 1; |
| 3613 | |
| 3614 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
David Sterba | bf38be6 | 2019-10-23 18:48:11 +0200 | [diff] [blame] | 3615 | chunk_used = cache->used; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3616 | |
| 3617 | if (bargs->usage_min == 0) |
| 3618 | user_thresh_min = 0; |
| 3619 | else |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3620 | user_thresh_min = div_factor_fine(cache->length, |
| 3621 | bargs->usage_min); |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3622 | |
| 3623 | if (bargs->usage_max == 0) |
| 3624 | user_thresh_max = 1; |
| 3625 | else if (bargs->usage_max > 100) |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3626 | user_thresh_max = cache->length; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3627 | else |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3628 | user_thresh_max = div_factor_fine(cache->length, |
| 3629 | bargs->usage_max); |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3630 | |
| 3631 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3632 | ret = 0; |
| 3633 | |
| 3634 | btrfs_put_block_group(cache); |
| 3635 | return ret; |
| 3636 | } |
| 3637 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3638 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3639 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3640 | { |
David Sterba | 32da5386 | 2019-10-29 19:20:18 +0100 | [diff] [blame] | 3641 | struct btrfs_block_group *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3642 | u64 chunk_used, user_thresh; |
| 3643 | int ret = 1; |
| 3644 | |
| 3645 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
David Sterba | bf38be6 | 2019-10-23 18:48:11 +0200 | [diff] [blame] | 3646 | chunk_used = cache->used; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3647 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3648 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3649 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3650 | else if (bargs->usage > 100) |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3651 | user_thresh = cache->length; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3652 | else |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3653 | user_thresh = div_factor_fine(cache->length, bargs->usage); |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3654 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3655 | if (chunk_used < user_thresh) |
| 3656 | ret = 0; |
| 3657 | |
| 3658 | btrfs_put_block_group(cache); |
| 3659 | return ret; |
| 3660 | } |
| 3661 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3662 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3663 | struct btrfs_chunk *chunk, |
| 3664 | struct btrfs_balance_args *bargs) |
| 3665 | { |
| 3666 | struct btrfs_stripe *stripe; |
| 3667 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3668 | int i; |
| 3669 | |
| 3670 | for (i = 0; i < num_stripes; i++) { |
| 3671 | stripe = btrfs_stripe_nr(chunk, i); |
| 3672 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3673 | return 0; |
| 3674 | } |
| 3675 | |
| 3676 | return 1; |
| 3677 | } |
| 3678 | |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3679 | static u64 calc_data_stripes(u64 type, int num_stripes) |
| 3680 | { |
| 3681 | const int index = btrfs_bg_flags_to_raid_index(type); |
| 3682 | const int ncopies = btrfs_raid_array[index].ncopies; |
| 3683 | const int nparity = btrfs_raid_array[index].nparity; |
| 3684 | |
David Sterba | d58ede8 | 2021-07-26 14:15:24 +0200 | [diff] [blame] | 3685 | return (num_stripes - nparity) / ncopies; |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3686 | } |
| 3687 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3688 | /* [pstart, pend) */ |
| 3689 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3690 | struct btrfs_chunk *chunk, |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3691 | struct btrfs_balance_args *bargs) |
| 3692 | { |
| 3693 | struct btrfs_stripe *stripe; |
| 3694 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3695 | u64 stripe_offset; |
| 3696 | u64 stripe_length; |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3697 | u64 type; |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3698 | int factor; |
| 3699 | int i; |
| 3700 | |
| 3701 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3702 | return 0; |
| 3703 | |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3704 | type = btrfs_chunk_type(leaf, chunk); |
| 3705 | factor = calc_data_stripes(type, num_stripes); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3706 | |
| 3707 | for (i = 0; i < num_stripes; i++) { |
| 3708 | stripe = btrfs_stripe_nr(chunk, i); |
| 3709 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3710 | continue; |
| 3711 | |
| 3712 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3713 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3714 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3715 | |
| 3716 | if (stripe_offset < bargs->pend && |
| 3717 | stripe_offset + stripe_length > bargs->pstart) |
| 3718 | return 0; |
| 3719 | } |
| 3720 | |
| 3721 | return 1; |
| 3722 | } |
| 3723 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3724 | /* [vstart, vend) */ |
| 3725 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3726 | struct btrfs_chunk *chunk, |
| 3727 | u64 chunk_offset, |
| 3728 | struct btrfs_balance_args *bargs) |
| 3729 | { |
| 3730 | if (chunk_offset < bargs->vend && |
| 3731 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3732 | /* at least part of the chunk is inside this vrange */ |
| 3733 | return 0; |
| 3734 | |
| 3735 | return 1; |
| 3736 | } |
| 3737 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3738 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3739 | struct btrfs_chunk *chunk, |
| 3740 | struct btrfs_balance_args *bargs) |
| 3741 | { |
| 3742 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3743 | |
| 3744 | if (bargs->stripes_min <= num_stripes |
| 3745 | && num_stripes <= bargs->stripes_max) |
| 3746 | return 0; |
| 3747 | |
| 3748 | return 1; |
| 3749 | } |
| 3750 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3751 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3752 | struct btrfs_balance_args *bargs) |
| 3753 | { |
| 3754 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3755 | return 0; |
| 3756 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3757 | chunk_type = chunk_to_extended(chunk_type) & |
| 3758 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3759 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3760 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3761 | return 1; |
| 3762 | |
| 3763 | return 0; |
| 3764 | } |
| 3765 | |
David Sterba | 6ec0896 | 2019-03-20 16:38:52 +0100 | [diff] [blame] | 3766 | static int should_balance_chunk(struct extent_buffer *leaf, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3767 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3768 | { |
David Sterba | 6ec0896 | 2019-03-20 16:38:52 +0100 | [diff] [blame] | 3769 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3770 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3771 | struct btrfs_balance_args *bargs = NULL; |
| 3772 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3773 | |
| 3774 | /* type filter */ |
| 3775 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3776 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3777 | return 0; |
| 3778 | } |
| 3779 | |
| 3780 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3781 | bargs = &bctl->data; |
| 3782 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3783 | bargs = &bctl->sys; |
| 3784 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3785 | bargs = &bctl->meta; |
| 3786 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3787 | /* profiles filter */ |
| 3788 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3789 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3790 | return 0; |
| 3791 | } |
| 3792 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3793 | /* usage filter */ |
| 3794 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3795 | chunk_usage_filter(fs_info, chunk_offset, bargs)) { |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3796 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3797 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3798 | chunk_usage_range_filter(fs_info, chunk_offset, bargs)) { |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3799 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3800 | } |
| 3801 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3802 | /* devid filter */ |
| 3803 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3804 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3805 | return 0; |
| 3806 | } |
| 3807 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3808 | /* drange filter, makes sense only with devid filter */ |
| 3809 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 3810 | chunk_drange_filter(leaf, chunk, bargs)) { |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3811 | return 0; |
| 3812 | } |
| 3813 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3814 | /* vrange filter */ |
| 3815 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3816 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3817 | return 0; |
| 3818 | } |
| 3819 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3820 | /* stripes filter */ |
| 3821 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3822 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3823 | return 0; |
| 3824 | } |
| 3825 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3826 | /* soft profile changing mode */ |
| 3827 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3828 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3829 | return 0; |
| 3830 | } |
| 3831 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3832 | /* |
| 3833 | * limited by count, must be the last filter |
| 3834 | */ |
| 3835 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3836 | if (bargs->limit == 0) |
| 3837 | return 0; |
| 3838 | else |
| 3839 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3840 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3841 | /* |
| 3842 | * Same logic as the 'limit' filter; the minimum cannot be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3843 | * determined here because we do not have the global information |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3844 | * about the count of all chunks that satisfy the filters. |
| 3845 | */ |
| 3846 | if (bargs->limit_max == 0) |
| 3847 | return 0; |
| 3848 | else |
| 3849 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3850 | } |
| 3851 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3852 | return 1; |
| 3853 | } |
| 3854 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3855 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3856 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3857 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3858 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3859 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3860 | struct btrfs_chunk *chunk; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3861 | struct btrfs_path *path = NULL; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3862 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3863 | struct btrfs_key found_key; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3864 | struct extent_buffer *leaf; |
| 3865 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3866 | int ret; |
| 3867 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3868 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3869 | /* The single value limit and min/max limits use the same bytes in the */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3870 | u64 limit_data = bctl->data.limit; |
| 3871 | u64 limit_meta = bctl->meta.limit; |
| 3872 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3873 | u32 count_data = 0; |
| 3874 | u32 count_meta = 0; |
| 3875 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3876 | int chunk_reserved = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3877 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3878 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3879 | if (!path) { |
| 3880 | ret = -ENOMEM; |
| 3881 | goto error; |
| 3882 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3883 | |
| 3884 | /* zero out stat counters */ |
| 3885 | spin_lock(&fs_info->balance_lock); |
| 3886 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3887 | spin_unlock(&fs_info->balance_lock); |
| 3888 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3889 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3890 | /* |
| 3891 | * The single value limit and min/max limits use the same bytes |
| 3892 | * in the |
| 3893 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3894 | bctl->data.limit = limit_data; |
| 3895 | bctl->meta.limit = limit_meta; |
| 3896 | bctl->sys.limit = limit_sys; |
| 3897 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3898 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3899 | key.offset = (u64)-1; |
| 3900 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3901 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3902 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3903 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3904 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3905 | ret = -ECANCELED; |
| 3906 | goto error; |
| 3907 | } |
| 3908 | |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3909 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3910 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3911 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3912 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3913 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3914 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3915 | |
| 3916 | /* |
| 3917 | * this shouldn't happen, it means the last relocate |
| 3918 | * failed |
| 3919 | */ |
| 3920 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3921 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3922 | |
| 3923 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3924 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3925 | if (ret) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3926 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3927 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3928 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3929 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3930 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3931 | leaf = path->nodes[0]; |
| 3932 | slot = path->slots[0]; |
| 3933 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3934 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3935 | if (found_key.objectid != key.objectid) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3936 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3937 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3938 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3939 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3940 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3941 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3942 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3943 | if (!counting) { |
| 3944 | spin_lock(&fs_info->balance_lock); |
| 3945 | bctl->stat.considered++; |
| 3946 | spin_unlock(&fs_info->balance_lock); |
| 3947 | } |
| 3948 | |
David Sterba | 6ec0896 | 2019-03-20 16:38:52 +0100 | [diff] [blame] | 3949 | ret = should_balance_chunk(leaf, chunk, found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3950 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3951 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3952 | if (!ret) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3953 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3954 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3955 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3956 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3957 | if (counting) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3958 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3959 | spin_lock(&fs_info->balance_lock); |
| 3960 | bctl->stat.expected++; |
| 3961 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3962 | |
| 3963 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3964 | count_data++; |
| 3965 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3966 | count_sys++; |
| 3967 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3968 | count_meta++; |
| 3969 | |
| 3970 | goto loop; |
| 3971 | } |
| 3972 | |
| 3973 | /* |
| 3974 | * Apply limit_min filter, no need to check if the LIMITS |
| 3975 | * filter is used, limit_min is 0 by default |
| 3976 | */ |
| 3977 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3978 | count_data < bctl->data.limit_min) |
| 3979 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3980 | count_meta < bctl->meta.limit_min) |
| 3981 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3982 | count_sys < bctl->sys.limit_min)) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3983 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3984 | goto loop; |
| 3985 | } |
| 3986 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3987 | if (!chunk_reserved) { |
| 3988 | /* |
| 3989 | * We may be relocating the only data chunk we have, |
| 3990 | * which could potentially end up with losing data's |
| 3991 | * raid profile, so lets allocate an empty one in |
| 3992 | * advance. |
| 3993 | */ |
| 3994 | ret = btrfs_may_alloc_data_chunk(fs_info, |
| 3995 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3996 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3997 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3998 | goto error; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3999 | } else if (ret == 1) { |
| 4000 | chunk_reserved = 1; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 4001 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 4002 | } |
| 4003 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 4004 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4005 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4006 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4007 | enospc_errors++; |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 4008 | } else if (ret == -ETXTBSY) { |
| 4009 | btrfs_info(fs_info, |
| 4010 | "skipping relocation of block group %llu due to active swapfile", |
| 4011 | found_key.offset); |
| 4012 | ret = 0; |
| 4013 | } else if (ret) { |
| 4014 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4015 | } else { |
| 4016 | spin_lock(&fs_info->balance_lock); |
| 4017 | bctl->stat.completed++; |
| 4018 | spin_unlock(&fs_info->balance_lock); |
| 4019 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4020 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 4021 | if (found_key.offset == 0) |
| 4022 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4023 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4024 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4025 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4026 | if (counting) { |
| 4027 | btrfs_release_path(path); |
| 4028 | counting = false; |
| 4029 | goto again; |
| 4030 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4031 | error: |
| 4032 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4033 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4034 | btrfs_info(fs_info, "%d enospc errors during balance", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 4035 | enospc_errors); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4036 | if (!ret) |
| 4037 | ret = -ENOSPC; |
| 4038 | } |
| 4039 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4040 | return ret; |
| 4041 | } |
| 4042 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4043 | /** |
| 4044 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 4045 | * @flags: profile to validate |
| 4046 | * @extended: if true @flags is treated as an extended profile |
| 4047 | */ |
| 4048 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 4049 | { |
| 4050 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 4051 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 4052 | |
| 4053 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 4054 | |
| 4055 | /* 1) check that all other bits are zeroed */ |
| 4056 | if (flags & ~mask) |
| 4057 | return 0; |
| 4058 | |
| 4059 | /* 2) see if profile is reduced */ |
| 4060 | if (flags == 0) |
| 4061 | return !extended; /* "0" is valid for usual profiles */ |
| 4062 | |
David Sterba | c149916 | 2019-10-01 19:44:42 +0200 | [diff] [blame] | 4063 | return has_single_bit_set(flags); |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4064 | } |
| 4065 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4066 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 4067 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4068 | /* cancel requested || normal exit path */ |
| 4069 | return atomic_read(&fs_info->balance_cancel_req) || |
| 4070 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 4071 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4072 | } |
| 4073 | |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4074 | /* |
| 4075 | * Validate target profile against allowed profiles and return true if it's OK. |
| 4076 | * Otherwise print the error message and return false. |
| 4077 | */ |
| 4078 | static inline int validate_convert_profile(struct btrfs_fs_info *fs_info, |
| 4079 | const struct btrfs_balance_args *bargs, |
| 4080 | u64 allowed, const char *type) |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 4081 | { |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4082 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 4083 | return true; |
| 4084 | |
Qu Wenruo | c8050b3 | 2021-07-26 14:35:01 +0800 | [diff] [blame] | 4085 | if (fs_info->sectorsize < PAGE_SIZE && |
| 4086 | bargs->target & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 4087 | btrfs_err(fs_info, |
| 4088 | "RAID56 is not yet supported for sectorsize %u with page size %lu", |
| 4089 | fs_info->sectorsize, PAGE_SIZE); |
| 4090 | return false; |
| 4091 | } |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4092 | /* Profile is valid and does not have bits outside of the allowed set */ |
| 4093 | if (alloc_profile_is_valid(bargs->target, 1) && |
| 4094 | (bargs->target & ~allowed) == 0) |
| 4095 | return true; |
| 4096 | |
| 4097 | btrfs_err(fs_info, "balance: invalid convert %s profile %s", |
| 4098 | type, btrfs_bg_type_to_raid_name(bargs->target)); |
| 4099 | return false; |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 4100 | } |
| 4101 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4102 | /* |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4103 | * Fill @buf with textual description of balance filter flags @bargs, up to |
| 4104 | * @size_buf including the terminating null. The output may be trimmed if it |
| 4105 | * does not fit into the provided buffer. |
| 4106 | */ |
| 4107 | static void describe_balance_args(struct btrfs_balance_args *bargs, char *buf, |
| 4108 | u32 size_buf) |
| 4109 | { |
| 4110 | int ret; |
| 4111 | u32 size_bp = size_buf; |
| 4112 | char *bp = buf; |
| 4113 | u64 flags = bargs->flags; |
| 4114 | char tmp_buf[128] = {'\0'}; |
| 4115 | |
| 4116 | if (!flags) |
| 4117 | return; |
| 4118 | |
| 4119 | #define CHECK_APPEND_NOARG(a) \ |
| 4120 | do { \ |
| 4121 | ret = snprintf(bp, size_bp, (a)); \ |
| 4122 | if (ret < 0 || ret >= size_bp) \ |
| 4123 | goto out_overflow; \ |
| 4124 | size_bp -= ret; \ |
| 4125 | bp += ret; \ |
| 4126 | } while (0) |
| 4127 | |
| 4128 | #define CHECK_APPEND_1ARG(a, v1) \ |
| 4129 | do { \ |
| 4130 | ret = snprintf(bp, size_bp, (a), (v1)); \ |
| 4131 | if (ret < 0 || ret >= size_bp) \ |
| 4132 | goto out_overflow; \ |
| 4133 | size_bp -= ret; \ |
| 4134 | bp += ret; \ |
| 4135 | } while (0) |
| 4136 | |
| 4137 | #define CHECK_APPEND_2ARG(a, v1, v2) \ |
| 4138 | do { \ |
| 4139 | ret = snprintf(bp, size_bp, (a), (v1), (v2)); \ |
| 4140 | if (ret < 0 || ret >= size_bp) \ |
| 4141 | goto out_overflow; \ |
| 4142 | size_bp -= ret; \ |
| 4143 | bp += ret; \ |
| 4144 | } while (0) |
| 4145 | |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 4146 | if (flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 4147 | CHECK_APPEND_1ARG("convert=%s,", |
| 4148 | btrfs_bg_type_to_raid_name(bargs->target)); |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4149 | |
| 4150 | if (flags & BTRFS_BALANCE_ARGS_SOFT) |
| 4151 | CHECK_APPEND_NOARG("soft,"); |
| 4152 | |
| 4153 | if (flags & BTRFS_BALANCE_ARGS_PROFILES) { |
| 4154 | btrfs_describe_block_groups(bargs->profiles, tmp_buf, |
| 4155 | sizeof(tmp_buf)); |
| 4156 | CHECK_APPEND_1ARG("profiles=%s,", tmp_buf); |
| 4157 | } |
| 4158 | |
| 4159 | if (flags & BTRFS_BALANCE_ARGS_USAGE) |
| 4160 | CHECK_APPEND_1ARG("usage=%llu,", bargs->usage); |
| 4161 | |
| 4162 | if (flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) |
| 4163 | CHECK_APPEND_2ARG("usage=%u..%u,", |
| 4164 | bargs->usage_min, bargs->usage_max); |
| 4165 | |
| 4166 | if (flags & BTRFS_BALANCE_ARGS_DEVID) |
| 4167 | CHECK_APPEND_1ARG("devid=%llu,", bargs->devid); |
| 4168 | |
| 4169 | if (flags & BTRFS_BALANCE_ARGS_DRANGE) |
| 4170 | CHECK_APPEND_2ARG("drange=%llu..%llu,", |
| 4171 | bargs->pstart, bargs->pend); |
| 4172 | |
| 4173 | if (flags & BTRFS_BALANCE_ARGS_VRANGE) |
| 4174 | CHECK_APPEND_2ARG("vrange=%llu..%llu,", |
| 4175 | bargs->vstart, bargs->vend); |
| 4176 | |
| 4177 | if (flags & BTRFS_BALANCE_ARGS_LIMIT) |
| 4178 | CHECK_APPEND_1ARG("limit=%llu,", bargs->limit); |
| 4179 | |
| 4180 | if (flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE) |
| 4181 | CHECK_APPEND_2ARG("limit=%u..%u,", |
| 4182 | bargs->limit_min, bargs->limit_max); |
| 4183 | |
| 4184 | if (flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) |
| 4185 | CHECK_APPEND_2ARG("stripes=%u..%u,", |
| 4186 | bargs->stripes_min, bargs->stripes_max); |
| 4187 | |
| 4188 | #undef CHECK_APPEND_2ARG |
| 4189 | #undef CHECK_APPEND_1ARG |
| 4190 | #undef CHECK_APPEND_NOARG |
| 4191 | |
| 4192 | out_overflow: |
| 4193 | |
| 4194 | if (size_bp < size_buf) |
| 4195 | buf[size_buf - size_bp - 1] = '\0'; /* remove last , */ |
| 4196 | else |
| 4197 | buf[0] = '\0'; |
| 4198 | } |
| 4199 | |
| 4200 | static void describe_balance_start_or_resume(struct btrfs_fs_info *fs_info) |
| 4201 | { |
| 4202 | u32 size_buf = 1024; |
| 4203 | char tmp_buf[192] = {'\0'}; |
| 4204 | char *buf; |
| 4205 | char *bp; |
| 4206 | u32 size_bp = size_buf; |
| 4207 | int ret; |
| 4208 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 4209 | |
| 4210 | buf = kzalloc(size_buf, GFP_KERNEL); |
| 4211 | if (!buf) |
| 4212 | return; |
| 4213 | |
| 4214 | bp = buf; |
| 4215 | |
| 4216 | #define CHECK_APPEND_1ARG(a, v1) \ |
| 4217 | do { \ |
| 4218 | ret = snprintf(bp, size_bp, (a), (v1)); \ |
| 4219 | if (ret < 0 || ret >= size_bp) \ |
| 4220 | goto out_overflow; \ |
| 4221 | size_bp -= ret; \ |
| 4222 | bp += ret; \ |
| 4223 | } while (0) |
| 4224 | |
| 4225 | if (bctl->flags & BTRFS_BALANCE_FORCE) |
| 4226 | CHECK_APPEND_1ARG("%s", "-f "); |
| 4227 | |
| 4228 | if (bctl->flags & BTRFS_BALANCE_DATA) { |
| 4229 | describe_balance_args(&bctl->data, tmp_buf, sizeof(tmp_buf)); |
| 4230 | CHECK_APPEND_1ARG("-d%s ", tmp_buf); |
| 4231 | } |
| 4232 | |
| 4233 | if (bctl->flags & BTRFS_BALANCE_METADATA) { |
| 4234 | describe_balance_args(&bctl->meta, tmp_buf, sizeof(tmp_buf)); |
| 4235 | CHECK_APPEND_1ARG("-m%s ", tmp_buf); |
| 4236 | } |
| 4237 | |
| 4238 | if (bctl->flags & BTRFS_BALANCE_SYSTEM) { |
| 4239 | describe_balance_args(&bctl->sys, tmp_buf, sizeof(tmp_buf)); |
| 4240 | CHECK_APPEND_1ARG("-s%s ", tmp_buf); |
| 4241 | } |
| 4242 | |
| 4243 | #undef CHECK_APPEND_1ARG |
| 4244 | |
| 4245 | out_overflow: |
| 4246 | |
| 4247 | if (size_bp < size_buf) |
| 4248 | buf[size_buf - size_bp - 1] = '\0'; /* remove last " " */ |
| 4249 | btrfs_info(fs_info, "balance: %s %s", |
| 4250 | (bctl->flags & BTRFS_BALANCE_RESUME) ? |
| 4251 | "resume" : "start", buf); |
| 4252 | |
| 4253 | kfree(buf); |
| 4254 | } |
| 4255 | |
| 4256 | /* |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 4257 | * Should be called with balance mutexe held |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4258 | */ |
David Sterba | 6fcf6e2 | 2018-05-07 17:44:03 +0200 | [diff] [blame] | 4259 | int btrfs_balance(struct btrfs_fs_info *fs_info, |
| 4260 | struct btrfs_balance_control *bctl, |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4261 | struct btrfs_ioctl_balance_args *bargs) |
| 4262 | { |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 4263 | u64 meta_target, data_target; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4264 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4265 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4266 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 4267 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4268 | unsigned seq; |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4269 | bool reducing_redundancy; |
David Sterba | 081db89 | 2019-05-17 11:43:27 +0200 | [diff] [blame] | 4270 | int i; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4271 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4272 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4273 | atomic_read(&fs_info->balance_pause_req) || |
Qu Wenruo | 726a342 | 2020-02-17 14:16:52 +0800 | [diff] [blame] | 4274 | btrfs_should_cancel_balance(fs_info)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4275 | ret = -EINVAL; |
| 4276 | goto out; |
| 4277 | } |
| 4278 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4279 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 4280 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 4281 | mixed = 1; |
| 4282 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4283 | /* |
| 4284 | * In case of mixed groups both data and meta should be picked, |
| 4285 | * and identical options should be given for both of them. |
| 4286 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4287 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 4288 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4289 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 4290 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 4291 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 4292 | btrfs_err(fs_info, |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4293 | "balance: mixed groups data and metadata options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4294 | ret = -EINVAL; |
| 4295 | goto out; |
| 4296 | } |
| 4297 | } |
| 4298 | |
Josef Bacik | b35cf1f | 2020-01-10 11:11:24 -0500 | [diff] [blame] | 4299 | /* |
| 4300 | * rw_devices will not change at the moment, device add/delete/replace |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4301 | * are exclusive |
Josef Bacik | b35cf1f | 2020-01-10 11:11:24 -0500 | [diff] [blame] | 4302 | */ |
| 4303 | num_devices = fs_info->fs_devices->rw_devices; |
Qu Wenruo | fab2735 | 2019-09-25 10:13:27 +0800 | [diff] [blame] | 4304 | |
| 4305 | /* |
| 4306 | * SINGLE profile on-disk has no profile bit, but in-memory we have a |
| 4307 | * special bit for it, to make it easier to distinguish. Thus we need |
| 4308 | * to set it manually, or balance would refuse the profile. |
| 4309 | */ |
| 4310 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE; |
David Sterba | 081db89 | 2019-05-17 11:43:27 +0200 | [diff] [blame] | 4311 | for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++) |
| 4312 | if (num_devices >= btrfs_raid_array[i].devs_min) |
| 4313 | allowed |= btrfs_raid_array[i].bg_flag; |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 4314 | |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4315 | if (!validate_convert_profile(fs_info, &bctl->data, allowed, "data") || |
| 4316 | !validate_convert_profile(fs_info, &bctl->meta, allowed, "metadata") || |
| 4317 | !validate_convert_profile(fs_info, &bctl->sys, allowed, "system")) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4318 | ret = -EINVAL; |
| 4319 | goto out; |
| 4320 | } |
| 4321 | |
David Sterba | 6079e12 | 2019-05-17 11:43:29 +0200 | [diff] [blame] | 4322 | /* |
| 4323 | * Allow to reduce metadata or system integrity only if force set for |
| 4324 | * profiles with redundancy (copies, parity) |
| 4325 | */ |
| 4326 | allowed = 0; |
| 4327 | for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++) { |
| 4328 | if (btrfs_raid_array[i].ncopies >= 2 || |
| 4329 | btrfs_raid_array[i].tolerated_failures >= 1) |
| 4330 | allowed |= btrfs_raid_array[i].bg_flag; |
| 4331 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4332 | do { |
| 4333 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 4334 | |
| 4335 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 4336 | (fs_info->avail_system_alloc_bits & allowed) && |
| 4337 | !(bctl->sys.target & allowed)) || |
| 4338 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 4339 | (fs_info->avail_metadata_alloc_bits & allowed) && |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4340 | !(bctl->meta.target & allowed))) |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4341 | reducing_redundancy = true; |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4342 | else |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4343 | reducing_redundancy = false; |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4344 | |
| 4345 | /* if we're not converting, the target field is uninitialized */ |
| 4346 | meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 4347 | bctl->meta.target : fs_info->avail_metadata_alloc_bits; |
| 4348 | data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 4349 | bctl->data.target : fs_info->avail_data_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4350 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4351 | |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4352 | if (reducing_redundancy) { |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4353 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
| 4354 | btrfs_info(fs_info, |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4355 | "balance: force reducing metadata redundancy"); |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4356 | } else { |
| 4357 | btrfs_err(fs_info, |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4358 | "balance: reduces metadata redundancy, use --force if you want this"); |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4359 | ret = -EINVAL; |
| 4360 | goto out; |
| 4361 | } |
| 4362 | } |
| 4363 | |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 4364 | if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) < |
| 4365 | btrfs_get_num_tolerated_disk_barrier_failures(data_target)) { |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 4366 | btrfs_warn(fs_info, |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4367 | "balance: metadata profile %s has lower redundancy than data profile %s", |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 4368 | btrfs_bg_type_to_raid_name(meta_target), |
| 4369 | btrfs_bg_type_to_raid_name(data_target)); |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 4370 | } |
| 4371 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4372 | ret = insert_balance_item(fs_info, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4373 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4374 | goto out; |
| 4375 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4376 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 4377 | BUG_ON(ret == -EEXIST); |
David Sterba | 833aae1 | 2018-03-21 02:41:30 +0100 | [diff] [blame] | 4378 | BUG_ON(fs_info->balance_ctl); |
| 4379 | spin_lock(&fs_info->balance_lock); |
| 4380 | fs_info->balance_ctl = bctl; |
| 4381 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4382 | } else { |
| 4383 | BUG_ON(ret != -EEXIST); |
| 4384 | spin_lock(&fs_info->balance_lock); |
| 4385 | update_balance_args(bctl); |
| 4386 | spin_unlock(&fs_info->balance_lock); |
| 4387 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4388 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4389 | ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
| 4390 | set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags); |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4391 | describe_balance_start_or_resume(fs_info); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4392 | mutex_unlock(&fs_info->balance_mutex); |
| 4393 | |
| 4394 | ret = __btrfs_balance(fs_info); |
| 4395 | |
| 4396 | mutex_lock(&fs_info->balance_mutex); |
Anand Jain | 7333bd0 | 2018-11-20 16:12:57 +0800 | [diff] [blame] | 4397 | if (ret == -ECANCELED && atomic_read(&fs_info->balance_pause_req)) |
| 4398 | btrfs_info(fs_info, "balance: paused"); |
Qu Wenruo | 44d354a | 2020-07-13 09:03:21 +0800 | [diff] [blame] | 4399 | /* |
| 4400 | * Balance can be canceled by: |
| 4401 | * |
| 4402 | * - Regular cancel request |
| 4403 | * Then ret == -ECANCELED and balance_cancel_req > 0 |
| 4404 | * |
| 4405 | * - Fatal signal to "btrfs" process |
| 4406 | * Either the signal caught by wait_reserve_ticket() and callers |
| 4407 | * got -EINTR, or caught by btrfs_should_cancel_balance() and |
| 4408 | * got -ECANCELED. |
| 4409 | * Either way, in this case balance_cancel_req = 0, and |
| 4410 | * ret == -EINTR or ret == -ECANCELED. |
| 4411 | * |
| 4412 | * So here we only check the return value to catch canceled balance. |
| 4413 | */ |
| 4414 | else if (ret == -ECANCELED || ret == -EINTR) |
Anand Jain | 7333bd0 | 2018-11-20 16:12:57 +0800 | [diff] [blame] | 4415 | btrfs_info(fs_info, "balance: canceled"); |
| 4416 | else |
| 4417 | btrfs_info(fs_info, "balance: ended with status: %d", ret); |
| 4418 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4419 | clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4420 | |
| 4421 | if (bargs) { |
| 4422 | memset(bargs, 0, sizeof(*bargs)); |
David Sterba | 008ef09 | 2018-03-21 02:05:27 +0100 | [diff] [blame] | 4423 | btrfs_update_ioctl_balance_args(fs_info, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4424 | } |
| 4425 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 4426 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 4427 | balance_need_close(fs_info)) { |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 4428 | reset_balance_state(fs_info); |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4429 | btrfs_exclop_finish(fs_info); |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 4430 | } |
| 4431 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4432 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4433 | |
| 4434 | return ret; |
| 4435 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4436 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 4437 | reset_balance_state(fs_info); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4438 | else |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4439 | kfree(bctl); |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4440 | btrfs_exclop_finish(fs_info); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4441 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4442 | return ret; |
| 4443 | } |
| 4444 | |
| 4445 | static int balance_kthread(void *data) |
| 4446 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4447 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4448 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4449 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4450 | mutex_lock(&fs_info->balance_mutex); |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4451 | if (fs_info->balance_ctl) |
David Sterba | 6fcf6e2 | 2018-05-07 17:44:03 +0200 | [diff] [blame] | 4452 | ret = btrfs_balance(fs_info, fs_info->balance_ctl, NULL); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4453 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4454 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4455 | return ret; |
| 4456 | } |
| 4457 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4458 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 4459 | { |
| 4460 | struct task_struct *tsk; |
| 4461 | |
David Sterba | 1354e1a | 2018-03-21 02:29:13 +0100 | [diff] [blame] | 4462 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4463 | if (!fs_info->balance_ctl) { |
David Sterba | 1354e1a | 2018-03-21 02:29:13 +0100 | [diff] [blame] | 4464 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4465 | return 0; |
| 4466 | } |
David Sterba | 1354e1a | 2018-03-21 02:29:13 +0100 | [diff] [blame] | 4467 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4468 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 4469 | if (btrfs_test_opt(fs_info, SKIP_BALANCE)) { |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4470 | btrfs_info(fs_info, "balance: resume skipped"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4471 | return 0; |
| 4472 | } |
| 4473 | |
Anand Jain | 02ee654 | 2018-05-17 15:16:51 +0800 | [diff] [blame] | 4474 | /* |
| 4475 | * A ro->rw remount sequence should continue with the paused balance |
| 4476 | * regardless of who pauses it, system or the user as of now, so set |
| 4477 | * the resume flag. |
| 4478 | */ |
| 4479 | spin_lock(&fs_info->balance_lock); |
| 4480 | fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME; |
| 4481 | spin_unlock(&fs_info->balance_lock); |
| 4482 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4483 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 4484 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4485 | } |
| 4486 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4487 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4488 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4489 | struct btrfs_balance_control *bctl; |
| 4490 | struct btrfs_balance_item *item; |
| 4491 | struct btrfs_disk_balance_args disk_bargs; |
| 4492 | struct btrfs_path *path; |
| 4493 | struct extent_buffer *leaf; |
| 4494 | struct btrfs_key key; |
| 4495 | int ret; |
| 4496 | |
| 4497 | path = btrfs_alloc_path(); |
| 4498 | if (!path) |
| 4499 | return -ENOMEM; |
| 4500 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4501 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 4502 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4503 | key.offset = 0; |
| 4504 | |
| 4505 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 4506 | if (ret < 0) |
| 4507 | goto out; |
| 4508 | if (ret > 0) { /* ret = -ENOENT; */ |
| 4509 | ret = 0; |
| 4510 | goto out; |
| 4511 | } |
| 4512 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4513 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 4514 | if (!bctl) { |
| 4515 | ret = -ENOMEM; |
| 4516 | goto out; |
| 4517 | } |
| 4518 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4519 | leaf = path->nodes[0]; |
| 4520 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 4521 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4522 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 4523 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4524 | |
| 4525 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 4526 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 4527 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 4528 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 4529 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 4530 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 4531 | |
David Sterba | eee95e3 | 2018-03-20 20:07:58 +0100 | [diff] [blame] | 4532 | /* |
| 4533 | * This should never happen, as the paused balance state is recovered |
| 4534 | * during mount without any chance of other exclusive ops to collide. |
| 4535 | * |
| 4536 | * This gives the exclusive op status to balance and keeps in paused |
| 4537 | * state until user intervention (cancel or umount). If the ownership |
| 4538 | * cannot be assigned, show a message but do not fail. The balance |
| 4539 | * is in a paused state and must have fs_info::balance_ctl properly |
| 4540 | * set up. |
| 4541 | */ |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4542 | if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) |
David Sterba | eee95e3 | 2018-03-20 20:07:58 +0100 | [diff] [blame] | 4543 | btrfs_warn(fs_info, |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4544 | "balance: cannot set exclusive op status, resume manually"); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4545 | |
Josef Bacik | fb28610 | 2020-12-16 11:22:14 -0500 | [diff] [blame] | 4546 | btrfs_release_path(path); |
| 4547 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4548 | mutex_lock(&fs_info->balance_mutex); |
David Sterba | 833aae1 | 2018-03-21 02:41:30 +0100 | [diff] [blame] | 4549 | BUG_ON(fs_info->balance_ctl); |
| 4550 | spin_lock(&fs_info->balance_lock); |
| 4551 | fs_info->balance_ctl = bctl; |
| 4552 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4553 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4554 | out: |
| 4555 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4556 | return ret; |
| 4557 | } |
| 4558 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4559 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 4560 | { |
| 4561 | int ret = 0; |
| 4562 | |
| 4563 | mutex_lock(&fs_info->balance_mutex); |
| 4564 | if (!fs_info->balance_ctl) { |
| 4565 | mutex_unlock(&fs_info->balance_mutex); |
| 4566 | return -ENOTCONN; |
| 4567 | } |
| 4568 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4569 | if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4570 | atomic_inc(&fs_info->balance_pause_req); |
| 4571 | mutex_unlock(&fs_info->balance_mutex); |
| 4572 | |
| 4573 | wait_event(fs_info->balance_wait_q, |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4574 | !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4575 | |
| 4576 | mutex_lock(&fs_info->balance_mutex); |
| 4577 | /* we are good with balance_ctl ripped off from under us */ |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4578 | BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4579 | atomic_dec(&fs_info->balance_pause_req); |
| 4580 | } else { |
| 4581 | ret = -ENOTCONN; |
| 4582 | } |
| 4583 | |
| 4584 | mutex_unlock(&fs_info->balance_mutex); |
| 4585 | return ret; |
| 4586 | } |
| 4587 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4588 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 4589 | { |
| 4590 | mutex_lock(&fs_info->balance_mutex); |
| 4591 | if (!fs_info->balance_ctl) { |
| 4592 | mutex_unlock(&fs_info->balance_mutex); |
| 4593 | return -ENOTCONN; |
| 4594 | } |
| 4595 | |
David Sterba | cf7d20f | 2018-03-21 01:45:32 +0100 | [diff] [blame] | 4596 | /* |
| 4597 | * A paused balance with the item stored on disk can be resumed at |
| 4598 | * mount time if the mount is read-write. Otherwise it's still paused |
| 4599 | * and we must not allow cancelling as it deletes the item. |
| 4600 | */ |
| 4601 | if (sb_rdonly(fs_info->sb)) { |
| 4602 | mutex_unlock(&fs_info->balance_mutex); |
| 4603 | return -EROFS; |
| 4604 | } |
| 4605 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4606 | atomic_inc(&fs_info->balance_cancel_req); |
| 4607 | /* |
| 4608 | * if we are running just wait and return, balance item is |
| 4609 | * deleted in btrfs_balance in this case |
| 4610 | */ |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4611 | if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4612 | mutex_unlock(&fs_info->balance_mutex); |
| 4613 | wait_event(fs_info->balance_wait_q, |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4614 | !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4615 | mutex_lock(&fs_info->balance_mutex); |
| 4616 | } else { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4617 | mutex_unlock(&fs_info->balance_mutex); |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 4618 | /* |
| 4619 | * Lock released to allow other waiters to continue, we'll |
| 4620 | * reexamine the status again. |
| 4621 | */ |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4622 | mutex_lock(&fs_info->balance_mutex); |
| 4623 | |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4624 | if (fs_info->balance_ctl) { |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 4625 | reset_balance_state(fs_info); |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4626 | btrfs_exclop_finish(fs_info); |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4627 | btrfs_info(fs_info, "balance: canceled"); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4628 | } |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4629 | } |
| 4630 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4631 | BUG_ON(fs_info->balance_ctl || |
| 4632 | test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4633 | atomic_dec(&fs_info->balance_cancel_req); |
| 4634 | mutex_unlock(&fs_info->balance_mutex); |
| 4635 | return 0; |
| 4636 | } |
| 4637 | |
Nikolay Borisov | 97f4dd0 | 2020-02-18 16:56:08 +0200 | [diff] [blame] | 4638 | int btrfs_uuid_scan_kthread(void *data) |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4639 | { |
| 4640 | struct btrfs_fs_info *fs_info = data; |
| 4641 | struct btrfs_root *root = fs_info->tree_root; |
| 4642 | struct btrfs_key key; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4643 | struct btrfs_path *path = NULL; |
| 4644 | int ret = 0; |
| 4645 | struct extent_buffer *eb; |
| 4646 | int slot; |
| 4647 | struct btrfs_root_item root_item; |
| 4648 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4649 | struct btrfs_trans_handle *trans = NULL; |
Josef Bacik | c94bec2 | 2020-02-14 15:05:01 -0500 | [diff] [blame] | 4650 | bool closing = false; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4651 | |
| 4652 | path = btrfs_alloc_path(); |
| 4653 | if (!path) { |
| 4654 | ret = -ENOMEM; |
| 4655 | goto out; |
| 4656 | } |
| 4657 | |
| 4658 | key.objectid = 0; |
| 4659 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4660 | key.offset = 0; |
| 4661 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4662 | while (1) { |
Josef Bacik | c94bec2 | 2020-02-14 15:05:01 -0500 | [diff] [blame] | 4663 | if (btrfs_fs_closing(fs_info)) { |
| 4664 | closing = true; |
| 4665 | break; |
| 4666 | } |
Anand Jain | 7c829b7 | 2018-03-07 17:29:18 +0800 | [diff] [blame] | 4667 | ret = btrfs_search_forward(root, &key, path, |
| 4668 | BTRFS_OLDEST_GENERATION); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4669 | if (ret) { |
| 4670 | if (ret > 0) |
| 4671 | ret = 0; |
| 4672 | break; |
| 4673 | } |
| 4674 | |
| 4675 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4676 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4677 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4678 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4679 | goto skip; |
| 4680 | |
| 4681 | eb = path->nodes[0]; |
| 4682 | slot = path->slots[0]; |
Josef Bacik | 3212fa1 | 2021-10-21 14:58:35 -0400 | [diff] [blame] | 4683 | item_size = btrfs_item_size(eb, slot); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4684 | if (item_size < sizeof(root_item)) |
| 4685 | goto skip; |
| 4686 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4687 | read_extent_buffer(eb, &root_item, |
| 4688 | btrfs_item_ptr_offset(eb, slot), |
| 4689 | (int)sizeof(root_item)); |
| 4690 | if (btrfs_root_refs(&root_item) == 0) |
| 4691 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4692 | |
| 4693 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4694 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4695 | if (trans) |
| 4696 | goto update_tree; |
| 4697 | |
| 4698 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4699 | /* |
| 4700 | * 1 - subvol uuid item |
| 4701 | * 1 - received_subvol uuid item |
| 4702 | */ |
| 4703 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4704 | if (IS_ERR(trans)) { |
| 4705 | ret = PTR_ERR(trans); |
| 4706 | break; |
| 4707 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4708 | continue; |
| 4709 | } else { |
| 4710 | goto skip; |
| 4711 | } |
| 4712 | update_tree: |
Josef Bacik | 9771a5cf | 2020-08-10 11:42:26 -0400 | [diff] [blame] | 4713 | btrfs_release_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4714 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Lu Fengqi | cdb345a | 2018-05-29 15:01:53 +0800 | [diff] [blame] | 4715 | ret = btrfs_uuid_tree_add(trans, root_item.uuid, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4716 | BTRFS_UUID_KEY_SUBVOL, |
| 4717 | key.objectid); |
| 4718 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4719 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4720 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4721 | break; |
| 4722 | } |
| 4723 | } |
| 4724 | |
| 4725 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Lu Fengqi | cdb345a | 2018-05-29 15:01:53 +0800 | [diff] [blame] | 4726 | ret = btrfs_uuid_tree_add(trans, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4727 | root_item.received_uuid, |
| 4728 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4729 | key.objectid); |
| 4730 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4731 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4732 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4733 | break; |
| 4734 | } |
| 4735 | } |
| 4736 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4737 | skip: |
Josef Bacik | 9771a5cf | 2020-08-10 11:42:26 -0400 | [diff] [blame] | 4738 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4739 | if (trans) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4740 | ret = btrfs_end_transaction(trans); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4741 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4742 | if (ret) |
| 4743 | break; |
| 4744 | } |
| 4745 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4746 | if (key.offset < (u64)-1) { |
| 4747 | key.offset++; |
| 4748 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4749 | key.offset = 0; |
| 4750 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4751 | } else if (key.objectid < (u64)-1) { |
| 4752 | key.offset = 0; |
| 4753 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4754 | key.objectid++; |
| 4755 | } else { |
| 4756 | break; |
| 4757 | } |
| 4758 | cond_resched(); |
| 4759 | } |
| 4760 | |
| 4761 | out: |
| 4762 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4763 | if (trans && !IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4764 | btrfs_end_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4765 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4766 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Josef Bacik | c94bec2 | 2020-02-14 15:05:01 -0500 | [diff] [blame] | 4767 | else if (!closing) |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4768 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4769 | up(&fs_info->uuid_tree_rescan_sem); |
| 4770 | return 0; |
| 4771 | } |
| 4772 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4773 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4774 | { |
| 4775 | struct btrfs_trans_handle *trans; |
| 4776 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4777 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4778 | struct task_struct *task; |
| 4779 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4780 | |
| 4781 | /* |
| 4782 | * 1 - root node |
| 4783 | * 1 - root item |
| 4784 | */ |
| 4785 | trans = btrfs_start_transaction(tree_root, 2); |
| 4786 | if (IS_ERR(trans)) |
| 4787 | return PTR_ERR(trans); |
| 4788 | |
David Sterba | 9b7a244 | 2019-03-20 13:20:49 +0100 | [diff] [blame] | 4789 | uuid_root = btrfs_create_tree(trans, BTRFS_UUID_TREE_OBJECTID); |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4790 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4791 | ret = PTR_ERR(uuid_root); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 4792 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4793 | btrfs_end_transaction(trans); |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4794 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4795 | } |
| 4796 | |
| 4797 | fs_info->uuid_root = uuid_root; |
| 4798 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4799 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4800 | if (ret) |
| 4801 | return ret; |
| 4802 | |
| 4803 | down(&fs_info->uuid_tree_rescan_sem); |
| 4804 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4805 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4806 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4807 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4808 | up(&fs_info->uuid_tree_rescan_sem); |
| 4809 | return PTR_ERR(task); |
| 4810 | } |
| 4811 | |
| 4812 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4813 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4814 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4815 | /* |
| 4816 | * shrinking a device means finding all of the device extents past |
| 4817 | * the new size, and then following the back refs to the chunks. |
| 4818 | * The chunk relocation code actually frees the device extent |
| 4819 | */ |
| 4820 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4821 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4822 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 4823 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4824 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4825 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4826 | struct btrfs_path *path; |
| 4827 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4828 | u64 chunk_offset; |
| 4829 | int ret; |
| 4830 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4831 | int failed = 0; |
| 4832 | bool retried = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4833 | struct extent_buffer *l; |
| 4834 | struct btrfs_key key; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4835 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4836 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4837 | u64 old_size = btrfs_device_get_total_bytes(device); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4838 | u64 diff; |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4839 | u64 start; |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4840 | |
| 4841 | new_size = round_down(new_size, fs_info->sectorsize); |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4842 | start = new_size; |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 4843 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4844 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4845 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4846 | return -EINVAL; |
| 4847 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4848 | path = btrfs_alloc_path(); |
| 4849 | if (!path) |
| 4850 | return -ENOMEM; |
| 4851 | |
Gu Jinxiang | 0338dff | 2018-04-27 16:22:07 +0800 | [diff] [blame] | 4852 | path->reada = READA_BACK; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4853 | |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4854 | trans = btrfs_start_transaction(root, 0); |
| 4855 | if (IS_ERR(trans)) { |
| 4856 | btrfs_free_path(path); |
| 4857 | return PTR_ERR(trans); |
| 4858 | } |
| 4859 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4860 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4861 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4862 | btrfs_device_set_total_bytes(device, new_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4863 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4864 | device->fs_devices->total_rw_bytes -= diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4865 | atomic64_sub(diff, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4866 | } |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4867 | |
| 4868 | /* |
| 4869 | * Once the device's size has been set to the new size, ensure all |
| 4870 | * in-memory chunks are synced to disk so that the loop below sees them |
| 4871 | * and relocates them accordingly. |
| 4872 | */ |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 4873 | if (contains_pending_extent(device, &start, diff)) { |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4874 | mutex_unlock(&fs_info->chunk_mutex); |
| 4875 | ret = btrfs_commit_transaction(trans); |
| 4876 | if (ret) |
| 4877 | goto done; |
| 4878 | } else { |
| 4879 | mutex_unlock(&fs_info->chunk_mutex); |
| 4880 | btrfs_end_transaction(trans); |
| 4881 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4882 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4883 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4884 | key.objectid = device->devid; |
| 4885 | key.offset = (u64)-1; |
| 4886 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4887 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4888 | do { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4889 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4890 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4891 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4892 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4893 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4894 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4895 | |
| 4896 | ret = btrfs_previous_item(root, path, 0, key.type); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4897 | if (ret) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4898 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Nikolay Borisov | 7056bf6 | 2020-12-17 15:21:16 +0200 | [diff] [blame] | 4899 | if (ret < 0) |
| 4900 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4901 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4902 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4903 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4904 | } |
| 4905 | |
| 4906 | l = path->nodes[0]; |
| 4907 | slot = path->slots[0]; |
| 4908 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4909 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4910 | if (key.objectid != device->devid) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4911 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4912 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4913 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4914 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4915 | |
| 4916 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4917 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4918 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4919 | if (key.offset + length <= new_size) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4920 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4921 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4922 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4923 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4924 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4925 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4926 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4927 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4928 | /* |
| 4929 | * We may be relocating the only data chunk we have, |
| 4930 | * which could potentially end up with losing data's |
| 4931 | * raid profile, so lets allocate an empty one in |
| 4932 | * advance. |
| 4933 | */ |
| 4934 | ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset); |
| 4935 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4936 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4937 | goto done; |
| 4938 | } |
| 4939 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4940 | ret = btrfs_relocate_chunk(fs_info, chunk_offset); |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4941 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 4942 | if (ret == -ENOSPC) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4943 | failed++; |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 4944 | } else if (ret) { |
| 4945 | if (ret == -ETXTBSY) { |
| 4946 | btrfs_warn(fs_info, |
| 4947 | "could not shrink block group %llu due to active swapfile", |
| 4948 | chunk_offset); |
| 4949 | } |
| 4950 | goto done; |
| 4951 | } |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4952 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4953 | |
| 4954 | if (failed && !retried) { |
| 4955 | failed = 0; |
| 4956 | retried = true; |
| 4957 | goto again; |
| 4958 | } else if (failed && retried) { |
| 4959 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4960 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4961 | } |
| 4962 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4963 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4964 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4965 | if (IS_ERR(trans)) { |
| 4966 | ret = PTR_ERR(trans); |
| 4967 | goto done; |
| 4968 | } |
| 4969 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4970 | mutex_lock(&fs_info->chunk_mutex); |
Qu Wenruo | c57dd1f | 2020-07-31 19:29:11 +0800 | [diff] [blame] | 4971 | /* Clear all state bits beyond the shrunk device size */ |
| 4972 | clear_extent_bits(&device->alloc_state, new_size, (u64)-1, |
| 4973 | CHUNK_STATE_MASK); |
| 4974 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4975 | btrfs_device_set_disk_total_bytes(device, new_size); |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 4976 | if (list_empty(&device->post_commit_list)) |
| 4977 | list_add_tail(&device->post_commit_list, |
| 4978 | &trans->transaction->dev_update_list); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4979 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4980 | WARN_ON(diff > old_total); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4981 | btrfs_set_super_total_bytes(super_copy, |
| 4982 | round_down(old_total - diff, fs_info->sectorsize)); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4983 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4984 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 4985 | btrfs_reserve_chunk_metadata(trans, false); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4986 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4987 | ret = btrfs_update_device(trans, device); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 4988 | btrfs_trans_release_chunk_metadata(trans); |
Anand Jain | 801660b | 2018-08-06 18:12:37 +0800 | [diff] [blame] | 4989 | if (ret < 0) { |
| 4990 | btrfs_abort_transaction(trans, ret); |
| 4991 | btrfs_end_transaction(trans); |
| 4992 | } else { |
| 4993 | ret = btrfs_commit_transaction(trans); |
| 4994 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4995 | done: |
| 4996 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4997 | if (ret) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4998 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4999 | btrfs_device_set_total_bytes(device, old_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 5000 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 5001 | device->fs_devices->total_rw_bytes += diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 5002 | atomic64_add(diff, &fs_info->free_chunk_space); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 5003 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 5004 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 5005 | return ret; |
| 5006 | } |
| 5007 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5008 | static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5009 | struct btrfs_key *key, |
| 5010 | struct btrfs_chunk *chunk, int item_size) |
| 5011 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5012 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5013 | struct btrfs_disk_key disk_key; |
| 5014 | u32 array_size; |
| 5015 | u8 *ptr; |
| 5016 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5017 | lockdep_assert_held(&fs_info->chunk_mutex); |
| 5018 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5019 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 5020 | if (array_size + item_size + sizeof(disk_key) |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5021 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5022 | return -EFBIG; |
| 5023 | |
| 5024 | ptr = super_copy->sys_chunk_array + array_size; |
| 5025 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 5026 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 5027 | ptr += sizeof(disk_key); |
| 5028 | memcpy(ptr, chunk, item_size); |
| 5029 | item_size += sizeof(disk_key); |
| 5030 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 5031 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5032 | return 0; |
| 5033 | } |
| 5034 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5035 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5036 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5037 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5038 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5039 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5040 | const struct btrfs_device_info *di_a = a; |
| 5041 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5042 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5043 | if (di_a->max_avail > di_b->max_avail) |
| 5044 | return -1; |
| 5045 | if (di_a->max_avail < di_b->max_avail) |
| 5046 | return 1; |
| 5047 | if (di_a->total_avail > di_b->total_avail) |
| 5048 | return -1; |
| 5049 | if (di_a->total_avail < di_b->total_avail) |
| 5050 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5051 | return 0; |
| 5052 | } |
| 5053 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5054 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 5055 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5056 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5057 | return; |
| 5058 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 5059 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5060 | } |
| 5061 | |
David Sterba | cfbb825 | 2018-07-10 18:15:05 +0200 | [diff] [blame] | 5062 | static void check_raid1c34_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 5063 | { |
| 5064 | if (!(type & (BTRFS_BLOCK_GROUP_RAID1C3 | BTRFS_BLOCK_GROUP_RAID1C4))) |
| 5065 | return; |
| 5066 | |
| 5067 | btrfs_set_fs_incompat(info, RAID1C34); |
| 5068 | } |
| 5069 | |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5070 | /* |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5071 | * Structure used internally for btrfs_create_chunk() function. |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5072 | * Wraps needed parameters. |
| 5073 | */ |
| 5074 | struct alloc_chunk_ctl { |
| 5075 | u64 start; |
| 5076 | u64 type; |
| 5077 | /* Total number of stripes to allocate */ |
| 5078 | int num_stripes; |
| 5079 | /* sub_stripes info for map */ |
| 5080 | int sub_stripes; |
| 5081 | /* Stripes per device */ |
| 5082 | int dev_stripes; |
| 5083 | /* Maximum number of devices to use */ |
| 5084 | int devs_max; |
| 5085 | /* Minimum number of devices to use */ |
| 5086 | int devs_min; |
| 5087 | /* ndevs has to be a multiple of this */ |
| 5088 | int devs_increment; |
| 5089 | /* Number of copies */ |
| 5090 | int ncopies; |
| 5091 | /* Number of stripes worth of bytes to store parity information */ |
| 5092 | int nparity; |
| 5093 | u64 max_stripe_size; |
| 5094 | u64 max_chunk_size; |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5095 | u64 dev_extent_min; |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5096 | u64 stripe_size; |
| 5097 | u64 chunk_size; |
| 5098 | int ndevs; |
| 5099 | }; |
| 5100 | |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5101 | static void init_alloc_chunk_ctl_policy_regular( |
| 5102 | struct btrfs_fs_devices *fs_devices, |
| 5103 | struct alloc_chunk_ctl *ctl) |
| 5104 | { |
| 5105 | u64 type = ctl->type; |
| 5106 | |
| 5107 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
| 5108 | ctl->max_stripe_size = SZ_1G; |
| 5109 | ctl->max_chunk_size = BTRFS_MAX_DATA_CHUNK_SIZE; |
| 5110 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
| 5111 | /* For larger filesystems, use larger metadata chunks */ |
| 5112 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 5113 | ctl->max_stripe_size = SZ_1G; |
| 5114 | else |
| 5115 | ctl->max_stripe_size = SZ_256M; |
| 5116 | ctl->max_chunk_size = ctl->max_stripe_size; |
| 5117 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5118 | ctl->max_stripe_size = SZ_32M; |
| 5119 | ctl->max_chunk_size = 2 * ctl->max_stripe_size; |
| 5120 | ctl->devs_max = min_t(int, ctl->devs_max, |
| 5121 | BTRFS_MAX_DEVS_SYS_CHUNK); |
| 5122 | } else { |
| 5123 | BUG(); |
| 5124 | } |
| 5125 | |
| 5126 | /* We don't want a chunk larger than 10% of writable space */ |
| 5127 | ctl->max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 5128 | ctl->max_chunk_size); |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5129 | ctl->dev_extent_min = BTRFS_STRIPE_LEN * ctl->dev_stripes; |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5130 | } |
| 5131 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5132 | static void init_alloc_chunk_ctl_policy_zoned( |
| 5133 | struct btrfs_fs_devices *fs_devices, |
| 5134 | struct alloc_chunk_ctl *ctl) |
| 5135 | { |
| 5136 | u64 zone_size = fs_devices->fs_info->zone_size; |
| 5137 | u64 limit; |
| 5138 | int min_num_stripes = ctl->devs_min * ctl->dev_stripes; |
| 5139 | int min_data_stripes = (min_num_stripes - ctl->nparity) / ctl->ncopies; |
| 5140 | u64 min_chunk_size = min_data_stripes * zone_size; |
| 5141 | u64 type = ctl->type; |
| 5142 | |
| 5143 | ctl->max_stripe_size = zone_size; |
| 5144 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
| 5145 | ctl->max_chunk_size = round_down(BTRFS_MAX_DATA_CHUNK_SIZE, |
| 5146 | zone_size); |
| 5147 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
| 5148 | ctl->max_chunk_size = ctl->max_stripe_size; |
| 5149 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5150 | ctl->max_chunk_size = 2 * ctl->max_stripe_size; |
| 5151 | ctl->devs_max = min_t(int, ctl->devs_max, |
| 5152 | BTRFS_MAX_DEVS_SYS_CHUNK); |
Arnd Bergmann | bb05b29 | 2021-03-23 15:31:19 +0100 | [diff] [blame] | 5153 | } else { |
| 5154 | BUG(); |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5155 | } |
| 5156 | |
| 5157 | /* We don't want a chunk larger than 10% of writable space */ |
| 5158 | limit = max(round_down(div_factor(fs_devices->total_rw_bytes, 1), |
| 5159 | zone_size), |
| 5160 | min_chunk_size); |
| 5161 | ctl->max_chunk_size = min(limit, ctl->max_chunk_size); |
| 5162 | ctl->dev_extent_min = zone_size * ctl->dev_stripes; |
| 5163 | } |
| 5164 | |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5165 | static void init_alloc_chunk_ctl(struct btrfs_fs_devices *fs_devices, |
| 5166 | struct alloc_chunk_ctl *ctl) |
| 5167 | { |
| 5168 | int index = btrfs_bg_flags_to_raid_index(ctl->type); |
| 5169 | |
| 5170 | ctl->sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 5171 | ctl->dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 5172 | ctl->devs_max = btrfs_raid_array[index].devs_max; |
| 5173 | if (!ctl->devs_max) |
| 5174 | ctl->devs_max = BTRFS_MAX_DEVS(fs_devices->fs_info); |
| 5175 | ctl->devs_min = btrfs_raid_array[index].devs_min; |
| 5176 | ctl->devs_increment = btrfs_raid_array[index].devs_increment; |
| 5177 | ctl->ncopies = btrfs_raid_array[index].ncopies; |
| 5178 | ctl->nparity = btrfs_raid_array[index].nparity; |
| 5179 | ctl->ndevs = 0; |
| 5180 | |
| 5181 | switch (fs_devices->chunk_alloc_policy) { |
| 5182 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 5183 | init_alloc_chunk_ctl_policy_regular(fs_devices, ctl); |
| 5184 | break; |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5185 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 5186 | init_alloc_chunk_ctl_policy_zoned(fs_devices, ctl); |
| 5187 | break; |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5188 | default: |
| 5189 | BUG(); |
| 5190 | } |
| 5191 | } |
| 5192 | |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5193 | static int gather_device_info(struct btrfs_fs_devices *fs_devices, |
| 5194 | struct alloc_chunk_ctl *ctl, |
| 5195 | struct btrfs_device_info *devices_info) |
| 5196 | { |
| 5197 | struct btrfs_fs_info *info = fs_devices->fs_info; |
| 5198 | struct btrfs_device *device; |
| 5199 | u64 total_avail; |
| 5200 | u64 dev_extent_want = ctl->max_stripe_size * ctl->dev_stripes; |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5201 | int ret; |
| 5202 | int ndevs = 0; |
| 5203 | u64 max_avail; |
| 5204 | u64 dev_offset; |
| 5205 | |
| 5206 | /* |
| 5207 | * in the first pass through the devices list, we gather information |
| 5208 | * about the available holes on each device. |
| 5209 | */ |
| 5210 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
| 5211 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
| 5212 | WARN(1, KERN_ERR |
| 5213 | "BTRFS: read-only device in alloc_list\n"); |
| 5214 | continue; |
| 5215 | } |
| 5216 | |
| 5217 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 5218 | &device->dev_state) || |
| 5219 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
| 5220 | continue; |
| 5221 | |
| 5222 | if (device->total_bytes > device->bytes_used) |
| 5223 | total_avail = device->total_bytes - device->bytes_used; |
| 5224 | else |
| 5225 | total_avail = 0; |
| 5226 | |
| 5227 | /* If there is no space on this device, skip it. */ |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5228 | if (total_avail < ctl->dev_extent_min) |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5229 | continue; |
| 5230 | |
| 5231 | ret = find_free_dev_extent(device, dev_extent_want, &dev_offset, |
| 5232 | &max_avail); |
| 5233 | if (ret && ret != -ENOSPC) |
| 5234 | return ret; |
| 5235 | |
| 5236 | if (ret == 0) |
| 5237 | max_avail = dev_extent_want; |
| 5238 | |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5239 | if (max_avail < ctl->dev_extent_min) { |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5240 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 5241 | btrfs_debug(info, |
| 5242 | "%s: devid %llu has no free space, have=%llu want=%llu", |
| 5243 | __func__, device->devid, max_avail, |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5244 | ctl->dev_extent_min); |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5245 | continue; |
| 5246 | } |
| 5247 | |
| 5248 | if (ndevs == fs_devices->rw_devices) { |
| 5249 | WARN(1, "%s: found more than %llu devices\n", |
| 5250 | __func__, fs_devices->rw_devices); |
| 5251 | break; |
| 5252 | } |
| 5253 | devices_info[ndevs].dev_offset = dev_offset; |
| 5254 | devices_info[ndevs].max_avail = max_avail; |
| 5255 | devices_info[ndevs].total_avail = total_avail; |
| 5256 | devices_info[ndevs].dev = device; |
| 5257 | ++ndevs; |
| 5258 | } |
| 5259 | ctl->ndevs = ndevs; |
| 5260 | |
| 5261 | /* |
| 5262 | * now sort the devices by hole size / available space |
| 5263 | */ |
| 5264 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 5265 | btrfs_cmp_device_info, NULL); |
| 5266 | |
| 5267 | return 0; |
| 5268 | } |
| 5269 | |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5270 | static int decide_stripe_size_regular(struct alloc_chunk_ctl *ctl, |
| 5271 | struct btrfs_device_info *devices_info) |
| 5272 | { |
| 5273 | /* Number of stripes that count for block group size */ |
| 5274 | int data_stripes; |
| 5275 | |
| 5276 | /* |
| 5277 | * The primary goal is to maximize the number of stripes, so use as |
| 5278 | * many devices as possible, even if the stripes are not maximum sized. |
| 5279 | * |
| 5280 | * The DUP profile stores more than one stripe per device, the |
| 5281 | * max_avail is the total size so we have to adjust. |
| 5282 | */ |
| 5283 | ctl->stripe_size = div_u64(devices_info[ctl->ndevs - 1].max_avail, |
| 5284 | ctl->dev_stripes); |
| 5285 | ctl->num_stripes = ctl->ndevs * ctl->dev_stripes; |
| 5286 | |
| 5287 | /* This will have to be fixed for RAID1 and RAID10 over more drives */ |
| 5288 | data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies; |
| 5289 | |
| 5290 | /* |
| 5291 | * Use the number of data stripes to figure out how big this chunk is |
| 5292 | * really going to be in terms of logical address space, and compare |
| 5293 | * that answer with the max chunk size. If it's higher, we try to |
| 5294 | * reduce stripe_size. |
| 5295 | */ |
| 5296 | if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) { |
| 5297 | /* |
| 5298 | * Reduce stripe_size, round it up to a 16MB boundary again and |
| 5299 | * then use it, unless it ends up being even bigger than the |
| 5300 | * previous value we had already. |
| 5301 | */ |
| 5302 | ctl->stripe_size = min(round_up(div_u64(ctl->max_chunk_size, |
| 5303 | data_stripes), SZ_16M), |
| 5304 | ctl->stripe_size); |
| 5305 | } |
| 5306 | |
| 5307 | /* Align to BTRFS_STRIPE_LEN */ |
| 5308 | ctl->stripe_size = round_down(ctl->stripe_size, BTRFS_STRIPE_LEN); |
| 5309 | ctl->chunk_size = ctl->stripe_size * data_stripes; |
| 5310 | |
| 5311 | return 0; |
| 5312 | } |
| 5313 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5314 | static int decide_stripe_size_zoned(struct alloc_chunk_ctl *ctl, |
| 5315 | struct btrfs_device_info *devices_info) |
| 5316 | { |
| 5317 | u64 zone_size = devices_info[0].dev->zone_info->zone_size; |
| 5318 | /* Number of stripes that count for block group size */ |
| 5319 | int data_stripes; |
| 5320 | |
| 5321 | /* |
| 5322 | * It should hold because: |
| 5323 | * dev_extent_min == dev_extent_want == zone_size * dev_stripes |
| 5324 | */ |
| 5325 | ASSERT(devices_info[ctl->ndevs - 1].max_avail == ctl->dev_extent_min); |
| 5326 | |
| 5327 | ctl->stripe_size = zone_size; |
| 5328 | ctl->num_stripes = ctl->ndevs * ctl->dev_stripes; |
| 5329 | data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies; |
| 5330 | |
| 5331 | /* stripe_size is fixed in zoned filesysmte. Reduce ndevs instead. */ |
| 5332 | if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) { |
| 5333 | ctl->ndevs = div_u64(div_u64(ctl->max_chunk_size * ctl->ncopies, |
| 5334 | ctl->stripe_size) + ctl->nparity, |
| 5335 | ctl->dev_stripes); |
| 5336 | ctl->num_stripes = ctl->ndevs * ctl->dev_stripes; |
| 5337 | data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies; |
| 5338 | ASSERT(ctl->stripe_size * data_stripes <= ctl->max_chunk_size); |
| 5339 | } |
| 5340 | |
| 5341 | ctl->chunk_size = ctl->stripe_size * data_stripes; |
| 5342 | |
| 5343 | return 0; |
| 5344 | } |
| 5345 | |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5346 | static int decide_stripe_size(struct btrfs_fs_devices *fs_devices, |
| 5347 | struct alloc_chunk_ctl *ctl, |
| 5348 | struct btrfs_device_info *devices_info) |
| 5349 | { |
| 5350 | struct btrfs_fs_info *info = fs_devices->fs_info; |
| 5351 | |
| 5352 | /* |
| 5353 | * Round down to number of usable stripes, devs_increment can be any |
| 5354 | * number so we can't use round_down() that requires power of 2, while |
| 5355 | * rounddown is safe. |
| 5356 | */ |
| 5357 | ctl->ndevs = rounddown(ctl->ndevs, ctl->devs_increment); |
| 5358 | |
| 5359 | if (ctl->ndevs < ctl->devs_min) { |
| 5360 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) { |
| 5361 | btrfs_debug(info, |
| 5362 | "%s: not enough devices with free space: have=%d minimum required=%d", |
| 5363 | __func__, ctl->ndevs, ctl->devs_min); |
| 5364 | } |
| 5365 | return -ENOSPC; |
| 5366 | } |
| 5367 | |
| 5368 | ctl->ndevs = min(ctl->ndevs, ctl->devs_max); |
| 5369 | |
| 5370 | switch (fs_devices->chunk_alloc_policy) { |
| 5371 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 5372 | return decide_stripe_size_regular(ctl, devices_info); |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5373 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 5374 | return decide_stripe_size_zoned(ctl, devices_info); |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5375 | default: |
| 5376 | BUG(); |
| 5377 | } |
| 5378 | } |
| 5379 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5380 | static struct btrfs_block_group *create_chunk(struct btrfs_trans_handle *trans, |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5381 | struct alloc_chunk_ctl *ctl, |
| 5382 | struct btrfs_device_info *devices_info) |
| 5383 | { |
| 5384 | struct btrfs_fs_info *info = trans->fs_info; |
| 5385 | struct map_lookup *map = NULL; |
| 5386 | struct extent_map_tree *em_tree; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5387 | struct btrfs_block_group *block_group; |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5388 | struct extent_map *em; |
| 5389 | u64 start = ctl->start; |
| 5390 | u64 type = ctl->type; |
| 5391 | int ret; |
| 5392 | int i; |
| 5393 | int j; |
| 5394 | |
| 5395 | map = kmalloc(map_lookup_size(ctl->num_stripes), GFP_NOFS); |
| 5396 | if (!map) |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5397 | return ERR_PTR(-ENOMEM); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5398 | map->num_stripes = ctl->num_stripes; |
| 5399 | |
| 5400 | for (i = 0; i < ctl->ndevs; ++i) { |
| 5401 | for (j = 0; j < ctl->dev_stripes; ++j) { |
| 5402 | int s = i * ctl->dev_stripes + j; |
| 5403 | map->stripes[s].dev = devices_info[i].dev; |
| 5404 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 5405 | j * ctl->stripe_size; |
| 5406 | } |
| 5407 | } |
| 5408 | map->stripe_len = BTRFS_STRIPE_LEN; |
| 5409 | map->io_align = BTRFS_STRIPE_LEN; |
| 5410 | map->io_width = BTRFS_STRIPE_LEN; |
| 5411 | map->type = type; |
| 5412 | map->sub_stripes = ctl->sub_stripes; |
| 5413 | |
| 5414 | trace_btrfs_chunk_alloc(info, map, start, ctl->chunk_size); |
| 5415 | |
| 5416 | em = alloc_extent_map(); |
| 5417 | if (!em) { |
| 5418 | kfree(map); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5419 | return ERR_PTR(-ENOMEM); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5420 | } |
| 5421 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
| 5422 | em->map_lookup = map; |
| 5423 | em->start = start; |
| 5424 | em->len = ctl->chunk_size; |
| 5425 | em->block_start = 0; |
| 5426 | em->block_len = em->len; |
| 5427 | em->orig_block_len = ctl->stripe_size; |
| 5428 | |
| 5429 | em_tree = &info->mapping_tree; |
| 5430 | write_lock(&em_tree->lock); |
| 5431 | ret = add_extent_mapping(em_tree, em, 0); |
| 5432 | if (ret) { |
| 5433 | write_unlock(&em_tree->lock); |
| 5434 | free_extent_map(em); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5435 | return ERR_PTR(ret); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5436 | } |
| 5437 | write_unlock(&em_tree->lock); |
| 5438 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5439 | block_group = btrfs_make_block_group(trans, 0, type, start, ctl->chunk_size); |
| 5440 | if (IS_ERR(block_group)) |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5441 | goto error_del_extent; |
| 5442 | |
| 5443 | for (i = 0; i < map->num_stripes; i++) { |
| 5444 | struct btrfs_device *dev = map->stripes[i].dev; |
| 5445 | |
| 5446 | btrfs_device_set_bytes_used(dev, |
| 5447 | dev->bytes_used + ctl->stripe_size); |
| 5448 | if (list_empty(&dev->post_commit_list)) |
| 5449 | list_add_tail(&dev->post_commit_list, |
| 5450 | &trans->transaction->dev_update_list); |
| 5451 | } |
| 5452 | |
| 5453 | atomic64_sub(ctl->stripe_size * map->num_stripes, |
| 5454 | &info->free_chunk_space); |
| 5455 | |
| 5456 | free_extent_map(em); |
| 5457 | check_raid56_incompat_flag(info, type); |
| 5458 | check_raid1c34_incompat_flag(info, type); |
| 5459 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5460 | return block_group; |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5461 | |
| 5462 | error_del_extent: |
| 5463 | write_lock(&em_tree->lock); |
| 5464 | remove_extent_mapping(em_tree, em); |
| 5465 | write_unlock(&em_tree->lock); |
| 5466 | |
| 5467 | /* One for our allocation */ |
| 5468 | free_extent_map(em); |
| 5469 | /* One for the tree reference */ |
| 5470 | free_extent_map(em); |
| 5471 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5472 | return block_group; |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5473 | } |
| 5474 | |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5475 | struct btrfs_block_group *btrfs_create_chunk(struct btrfs_trans_handle *trans, |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5476 | u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5477 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5478 | struct btrfs_fs_info *info = trans->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5479 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5480 | struct btrfs_device_info *devices_info = NULL; |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5481 | struct alloc_chunk_ctl ctl; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5482 | struct btrfs_block_group *block_group; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5483 | int ret; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5484 | |
Nikolay Borisov | 11c67b1 | 2020-03-02 12:29:25 +0200 | [diff] [blame] | 5485 | lockdep_assert_held(&info->chunk_mutex); |
| 5486 | |
Naohiro Aota | b25c19f | 2020-02-25 12:56:07 +0900 | [diff] [blame] | 5487 | if (!alloc_profile_is_valid(type, 0)) { |
| 5488 | ASSERT(0); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5489 | return ERR_PTR(-EINVAL); |
Naohiro Aota | b25c19f | 2020-02-25 12:56:07 +0900 | [diff] [blame] | 5490 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5491 | |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 5492 | if (list_empty(&fs_devices->alloc_list)) { |
| 5493 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 5494 | btrfs_debug(info, "%s: no writable device", __func__); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5495 | return ERR_PTR(-ENOSPC); |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 5496 | } |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5497 | |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5498 | if (!(type & BTRFS_BLOCK_GROUP_TYPE_MASK)) { |
| 5499 | btrfs_err(info, "invalid chunk type 0x%llx requested", type); |
| 5500 | ASSERT(0); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5501 | return ERR_PTR(-EINVAL); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5502 | } |
| 5503 | |
Nikolay Borisov | 11c67b1 | 2020-03-02 12:29:25 +0200 | [diff] [blame] | 5504 | ctl.start = find_next_chunk(info); |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5505 | ctl.type = type; |
| 5506 | init_alloc_chunk_ctl(fs_devices, &ctl); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5507 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 5508 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5509 | GFP_NOFS); |
| 5510 | if (!devices_info) |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5511 | return ERR_PTR(-ENOMEM); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5512 | |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5513 | ret = gather_device_info(fs_devices, &ctl, devices_info); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5514 | if (ret < 0) { |
| 5515 | block_group = ERR_PTR(ret); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5516 | goto out; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5517 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5518 | |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5519 | ret = decide_stripe_size(fs_devices, &ctl, devices_info); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5520 | if (ret < 0) { |
| 5521 | block_group = ERR_PTR(ret); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5522 | goto out; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5523 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5524 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5525 | block_group = create_chunk(trans, &ctl, devices_info); |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 5526 | |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5527 | out: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5528 | kfree(devices_info); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5529 | return block_group; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5530 | } |
| 5531 | |
Nikolay Borisov | 11c67b1 | 2020-03-02 12:29:25 +0200 | [diff] [blame] | 5532 | /* |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5533 | * This function, btrfs_chunk_alloc_add_chunk_item(), typically belongs to the |
| 5534 | * phase 1 of chunk allocation. It belongs to phase 2 only when allocating system |
| 5535 | * chunks. |
| 5536 | * |
| 5537 | * See the comment at btrfs_chunk_alloc() for details about the chunk allocation |
| 5538 | * phases. |
| 5539 | */ |
| 5540 | int btrfs_chunk_alloc_add_chunk_item(struct btrfs_trans_handle *trans, |
| 5541 | struct btrfs_block_group *bg) |
| 5542 | { |
| 5543 | struct btrfs_fs_info *fs_info = trans->fs_info; |
| 5544 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 5545 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 5546 | struct btrfs_key key; |
| 5547 | struct btrfs_chunk *chunk; |
| 5548 | struct btrfs_stripe *stripe; |
| 5549 | struct extent_map *em; |
| 5550 | struct map_lookup *map; |
| 5551 | size_t item_size; |
| 5552 | int i; |
| 5553 | int ret; |
| 5554 | |
| 5555 | /* |
| 5556 | * We take the chunk_mutex for 2 reasons: |
| 5557 | * |
| 5558 | * 1) Updates and insertions in the chunk btree must be done while holding |
| 5559 | * the chunk_mutex, as well as updating the system chunk array in the |
| 5560 | * superblock. See the comment on top of btrfs_chunk_alloc() for the |
| 5561 | * details; |
| 5562 | * |
| 5563 | * 2) To prevent races with the final phase of a device replace operation |
| 5564 | * that replaces the device object associated with the map's stripes, |
| 5565 | * because the device object's id can change at any time during that |
| 5566 | * final phase of the device replace operation |
| 5567 | * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the |
| 5568 | * replaced device and then see it with an ID of BTRFS_DEV_REPLACE_DEVID, |
| 5569 | * which would cause a failure when updating the device item, which does |
| 5570 | * not exists, or persisting a stripe of the chunk item with such ID. |
| 5571 | * Here we can't use the device_list_mutex because our caller already |
| 5572 | * has locked the chunk_mutex, and the final phase of device replace |
| 5573 | * acquires both mutexes - first the device_list_mutex and then the |
| 5574 | * chunk_mutex. Using any of those two mutexes protects us from a |
| 5575 | * concurrent device replace. |
| 5576 | */ |
| 5577 | lockdep_assert_held(&fs_info->chunk_mutex); |
| 5578 | |
| 5579 | em = btrfs_get_chunk_map(fs_info, bg->start, bg->length); |
| 5580 | if (IS_ERR(em)) { |
| 5581 | ret = PTR_ERR(em); |
| 5582 | btrfs_abort_transaction(trans, ret); |
| 5583 | return ret; |
| 5584 | } |
| 5585 | |
| 5586 | map = em->map_lookup; |
| 5587 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 5588 | |
| 5589 | chunk = kzalloc(item_size, GFP_NOFS); |
| 5590 | if (!chunk) { |
| 5591 | ret = -ENOMEM; |
| 5592 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5593 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5594 | } |
| 5595 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5596 | for (i = 0; i < map->num_stripes; i++) { |
| 5597 | struct btrfs_device *device = map->stripes[i].dev; |
| 5598 | |
| 5599 | ret = btrfs_update_device(trans, device); |
| 5600 | if (ret) |
| 5601 | goto out; |
| 5602 | } |
| 5603 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5604 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5605 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5606 | struct btrfs_device *device = map->stripes[i].dev; |
| 5607 | const u64 dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5608 | |
| 5609 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 5610 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 5611 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 5612 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5613 | } |
| 5614 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5615 | btrfs_set_stack_chunk_length(chunk, bg->length); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5616 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 5617 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 5618 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 5619 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 5620 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 5621 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5622 | btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5623 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 5624 | |
| 5625 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 5626 | key.type = BTRFS_CHUNK_ITEM_KEY; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5627 | key.offset = bg->start; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5628 | |
| 5629 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5630 | if (ret) |
| 5631 | goto out; |
| 5632 | |
| 5633 | bg->chunk_item_inserted = 1; |
| 5634 | |
| 5635 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5636 | ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5637 | if (ret) |
| 5638 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5639 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5640 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5641 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5642 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5643 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5644 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5645 | } |
| 5646 | |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 5647 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5648 | { |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 5649 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5650 | u64 alloc_profile; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5651 | struct btrfs_block_group *meta_bg; |
| 5652 | struct btrfs_block_group *sys_bg; |
| 5653 | |
| 5654 | /* |
| 5655 | * When adding a new device for sprouting, the seed device is read-only |
| 5656 | * so we must first allocate a metadata and a system chunk. But before |
| 5657 | * adding the block group items to the extent, device and chunk btrees, |
| 5658 | * we must first: |
| 5659 | * |
| 5660 | * 1) Create both chunks without doing any changes to the btrees, as |
| 5661 | * otherwise we would get -ENOSPC since the block groups from the |
| 5662 | * seed device are read-only; |
| 5663 | * |
| 5664 | * 2) Add the device item for the new sprout device - finishing the setup |
| 5665 | * of a new block group requires updating the device item in the chunk |
| 5666 | * btree, so it must exist when we attempt to do it. The previous step |
| 5667 | * ensures this does not fail with -ENOSPC. |
| 5668 | * |
| 5669 | * After that we can add the block group items to their btrees: |
| 5670 | * update existing device item in the chunk btree, add a new block group |
| 5671 | * item to the extent btree, add a new chunk item to the chunk btree and |
| 5672 | * finally add the new device extent items to the devices btree. |
| 5673 | */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5674 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5675 | alloc_profile = btrfs_metadata_alloc_profile(fs_info); |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5676 | meta_bg = btrfs_create_chunk(trans, alloc_profile); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5677 | if (IS_ERR(meta_bg)) |
| 5678 | return PTR_ERR(meta_bg); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5679 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5680 | alloc_profile = btrfs_system_alloc_profile(fs_info); |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5681 | sys_bg = btrfs_create_chunk(trans, alloc_profile); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5682 | if (IS_ERR(sys_bg)) |
| 5683 | return PTR_ERR(sys_bg); |
| 5684 | |
| 5685 | return 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5686 | } |
| 5687 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5688 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 5689 | { |
David Sterba | fc9a2ac | 2019-05-17 11:43:22 +0200 | [diff] [blame] | 5690 | const int index = btrfs_bg_flags_to_raid_index(map->type); |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5691 | |
David Sterba | fc9a2ac | 2019-05-17 11:43:22 +0200 | [diff] [blame] | 5692 | return btrfs_raid_array[index].tolerated_failures; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5693 | } |
| 5694 | |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5695 | bool btrfs_chunk_writeable(struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5696 | { |
| 5697 | struct extent_map *em; |
| 5698 | struct map_lookup *map; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5699 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5700 | int i; |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5701 | bool ret = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5702 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5703 | em = btrfs_get_chunk_map(fs_info, chunk_offset, 1); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5704 | if (IS_ERR(em)) |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5705 | return false; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5706 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5707 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5708 | for (i = 0; i < map->num_stripes; i++) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 5709 | if (test_bit(BTRFS_DEV_STATE_MISSING, |
| 5710 | &map->stripes[i].dev->dev_state)) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5711 | miss_ndevs++; |
| 5712 | continue; |
| 5713 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 5714 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, |
| 5715 | &map->stripes[i].dev->dev_state)) { |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5716 | ret = false; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5717 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5718 | } |
| 5719 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5720 | |
| 5721 | /* |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5722 | * If the number of missing devices is larger than max errors, we can |
| 5723 | * not write the data into that chunk successfully. |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5724 | */ |
| 5725 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5726 | ret = false; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5727 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5728 | free_extent_map(em); |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5729 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5730 | } |
| 5731 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 5732 | void btrfs_mapping_tree_free(struct extent_map_tree *tree) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5733 | { |
| 5734 | struct extent_map *em; |
| 5735 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5736 | while (1) { |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 5737 | write_lock(&tree->lock); |
| 5738 | em = lookup_extent_mapping(tree, 0, (u64)-1); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5739 | if (em) |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 5740 | remove_extent_mapping(tree, em); |
| 5741 | write_unlock(&tree->lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5742 | if (!em) |
| 5743 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5744 | /* once for us */ |
| 5745 | free_extent_map(em); |
| 5746 | /* once for the tree */ |
| 5747 | free_extent_map(em); |
| 5748 | } |
| 5749 | } |
| 5750 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5751 | int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5752 | { |
| 5753 | struct extent_map *em; |
| 5754 | struct map_lookup *map; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5755 | int ret; |
| 5756 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5757 | em = btrfs_get_chunk_map(fs_info, logical, len); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5758 | if (IS_ERR(em)) |
| 5759 | /* |
| 5760 | * We could return errors for these cases, but that could get |
| 5761 | * ugly and we'd probably do the same thing which is just not do |
| 5762 | * anything else and exit, so return 1 so the callers don't try |
| 5763 | * to use other copies. |
| 5764 | */ |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5765 | return 1; |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5766 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5767 | map = em->map_lookup; |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 5768 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1_MASK)) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5769 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5770 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5771 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5772 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5773 | ret = 2; |
| 5774 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5775 | /* |
| 5776 | * There could be two corrupted data stripes, we need |
| 5777 | * to loop retry in order to rebuild the correct data. |
Nikolay Borisov | e7e0209 | 2018-06-20 15:48:55 +0300 | [diff] [blame] | 5778 | * |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5779 | * Fail a stripe at a time on every retry except the |
| 5780 | * stripe under reconstruction. |
| 5781 | */ |
| 5782 | ret = map->num_stripes; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5783 | else |
| 5784 | ret = 1; |
| 5785 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5786 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 5787 | down_read(&fs_info->dev_replace.rwsem); |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5788 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) && |
| 5789 | fs_info->dev_replace.tgtdev) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5790 | ret++; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 5791 | up_read(&fs_info->dev_replace.rwsem); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5792 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5793 | return ret; |
| 5794 | } |
| 5795 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5796 | unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5797 | u64 logical) |
| 5798 | { |
| 5799 | struct extent_map *em; |
| 5800 | struct map_lookup *map; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5801 | unsigned long len = fs_info->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5802 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5803 | em = btrfs_get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5804 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5805 | if (!WARN_ON(IS_ERR(em))) { |
| 5806 | map = em->map_lookup; |
| 5807 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5808 | len = map->stripe_len * nr_data_stripes(map); |
| 5809 | free_extent_map(em); |
| 5810 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5811 | return len; |
| 5812 | } |
| 5813 | |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 5814 | int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5815 | { |
| 5816 | struct extent_map *em; |
| 5817 | struct map_lookup *map; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5818 | int ret = 0; |
| 5819 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5820 | em = btrfs_get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5821 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5822 | if(!WARN_ON(IS_ERR(em))) { |
| 5823 | map = em->map_lookup; |
| 5824 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5825 | ret = 1; |
| 5826 | free_extent_map(em); |
| 5827 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5828 | return ret; |
| 5829 | } |
| 5830 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5831 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5832 | struct map_lookup *map, int first, |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5833 | int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5834 | { |
| 5835 | int i; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5836 | int num_stripes; |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5837 | int preferred_mirror; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5838 | int tolerance; |
| 5839 | struct btrfs_device *srcdev; |
| 5840 | |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5841 | ASSERT((map->type & |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 5842 | (BTRFS_BLOCK_GROUP_RAID1_MASK | BTRFS_BLOCK_GROUP_RAID10))); |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5843 | |
| 5844 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5845 | num_stripes = map->sub_stripes; |
| 5846 | else |
| 5847 | num_stripes = map->num_stripes; |
| 5848 | |
Anand Jain | 33fd2f7 | 2020-10-28 21:14:46 +0800 | [diff] [blame] | 5849 | switch (fs_info->fs_devices->read_policy) { |
| 5850 | default: |
| 5851 | /* Shouldn't happen, just warn and use pid instead of failing */ |
| 5852 | btrfs_warn_rl(fs_info, |
| 5853 | "unknown read_policy type %u, reset to pid", |
| 5854 | fs_info->fs_devices->read_policy); |
| 5855 | fs_info->fs_devices->read_policy = BTRFS_READ_POLICY_PID; |
| 5856 | fallthrough; |
| 5857 | case BTRFS_READ_POLICY_PID: |
| 5858 | preferred_mirror = first + (current->pid % num_stripes); |
| 5859 | break; |
| 5860 | } |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5861 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5862 | if (dev_replace_is_ongoing && |
| 5863 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5864 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5865 | srcdev = fs_info->dev_replace.srcdev; |
| 5866 | else |
| 5867 | srcdev = NULL; |
| 5868 | |
| 5869 | /* |
| 5870 | * try to avoid the drive that is the source drive for a |
| 5871 | * dev-replace procedure, only choose it if no other non-missing |
| 5872 | * mirror is available |
| 5873 | */ |
| 5874 | for (tolerance = 0; tolerance < 2; tolerance++) { |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5875 | if (map->stripes[preferred_mirror].dev->bdev && |
| 5876 | (tolerance || map->stripes[preferred_mirror].dev != srcdev)) |
| 5877 | return preferred_mirror; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5878 | for (i = first; i < first + num_stripes; i++) { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5879 | if (map->stripes[i].dev->bdev && |
| 5880 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5881 | return i; |
| 5882 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5883 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5884 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5885 | /* we couldn't find one that doesn't fail. Just return something |
| 5886 | * and the io error handling code will clean up eventually |
| 5887 | */ |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5888 | return preferred_mirror; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5889 | } |
| 5890 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5891 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5892 | static void sort_parity_stripes(struct btrfs_io_context *bioc, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5893 | { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5894 | int i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5895 | int again = 1; |
| 5896 | |
| 5897 | while (again) { |
| 5898 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5899 | for (i = 0; i < num_stripes - 1; i++) { |
David Sterba | eeb6f17 | 2019-11-28 15:31:17 +0100 | [diff] [blame] | 5900 | /* Swap if parity is on a smaller index */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5901 | if (bioc->raid_map[i] > bioc->raid_map[i + 1]) { |
| 5902 | swap(bioc->stripes[i], bioc->stripes[i + 1]); |
| 5903 | swap(bioc->raid_map[i], bioc->raid_map[i + 1]); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5904 | again = 1; |
| 5905 | } |
| 5906 | } |
| 5907 | } |
| 5908 | } |
| 5909 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 5910 | static struct btrfs_io_context *alloc_btrfs_io_context(struct btrfs_fs_info *fs_info, |
| 5911 | int total_stripes, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5912 | int real_stripes) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5913 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5914 | struct btrfs_io_context *bioc = kzalloc( |
| 5915 | /* The size of btrfs_io_context */ |
| 5916 | sizeof(struct btrfs_io_context) + |
| 5917 | /* Plus the variable array for the stripes */ |
| 5918 | sizeof(struct btrfs_io_stripe) * (total_stripes) + |
| 5919 | /* Plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5920 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5921 | /* |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5922 | * Plus the raid_map, which includes both the tgt dev |
| 5923 | * and the stripes. |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5924 | */ |
| 5925 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5926 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5927 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5928 | atomic_set(&bioc->error, 0); |
| 5929 | refcount_set(&bioc->refs, 1); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5930 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 5931 | bioc->fs_info = fs_info; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5932 | bioc->tgtdev_map = (int *)(bioc->stripes + total_stripes); |
| 5933 | bioc->raid_map = (u64 *)(bioc->tgtdev_map + real_stripes); |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 5934 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5935 | return bioc; |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5936 | } |
| 5937 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5938 | void btrfs_get_bioc(struct btrfs_io_context *bioc) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5939 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5940 | WARN_ON(!refcount_read(&bioc->refs)); |
| 5941 | refcount_inc(&bioc->refs); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5942 | } |
| 5943 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5944 | void btrfs_put_bioc(struct btrfs_io_context *bioc) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5945 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5946 | if (!bioc) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5947 | return; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5948 | if (refcount_dec_and_test(&bioc->refs)) |
| 5949 | kfree(bioc); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5950 | } |
| 5951 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5952 | /* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */ |
| 5953 | /* |
| 5954 | * Please note that, discard won't be sent to target device of device |
| 5955 | * replace. |
| 5956 | */ |
| 5957 | static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info, |
Qu Wenruo | 6b7faad | 2019-10-23 21:57:27 +0800 | [diff] [blame] | 5958 | u64 logical, u64 *length_ret, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5959 | struct btrfs_io_context **bioc_ret) |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5960 | { |
| 5961 | struct extent_map *em; |
| 5962 | struct map_lookup *map; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5963 | struct btrfs_io_context *bioc; |
Qu Wenruo | 6b7faad | 2019-10-23 21:57:27 +0800 | [diff] [blame] | 5964 | u64 length = *length_ret; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5965 | u64 offset; |
| 5966 | u64 stripe_nr; |
| 5967 | u64 stripe_nr_end; |
| 5968 | u64 stripe_end_offset; |
| 5969 | u64 stripe_cnt; |
| 5970 | u64 stripe_len; |
| 5971 | u64 stripe_offset; |
| 5972 | u64 num_stripes; |
| 5973 | u32 stripe_index; |
| 5974 | u32 factor = 0; |
| 5975 | u32 sub_stripes = 0; |
| 5976 | u64 stripes_per_dev = 0; |
| 5977 | u32 remaining_stripes = 0; |
| 5978 | u32 last_stripe = 0; |
| 5979 | int ret = 0; |
| 5980 | int i; |
| 5981 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5982 | /* Discard always returns a bioc. */ |
| 5983 | ASSERT(bioc_ret); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5984 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5985 | em = btrfs_get_chunk_map(fs_info, logical, length); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5986 | if (IS_ERR(em)) |
| 5987 | return PTR_ERR(em); |
| 5988 | |
| 5989 | map = em->map_lookup; |
| 5990 | /* we don't discard raid56 yet */ |
| 5991 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 5992 | ret = -EOPNOTSUPP; |
| 5993 | goto out; |
| 5994 | } |
| 5995 | |
| 5996 | offset = logical - em->start; |
Qu Wenruo | 2d97461 | 2019-10-23 21:57:26 +0800 | [diff] [blame] | 5997 | length = min_t(u64, em->start + em->len - logical, length); |
Qu Wenruo | 6b7faad | 2019-10-23 21:57:27 +0800 | [diff] [blame] | 5998 | *length_ret = length; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5999 | |
| 6000 | stripe_len = map->stripe_len; |
| 6001 | /* |
| 6002 | * stripe_nr counts the total number of stripes we have to stride |
| 6003 | * to get to this block |
| 6004 | */ |
| 6005 | stripe_nr = div64_u64(offset, stripe_len); |
| 6006 | |
| 6007 | /* stripe_offset is the offset of this block in its stripe */ |
| 6008 | stripe_offset = offset - stripe_nr * stripe_len; |
| 6009 | |
| 6010 | stripe_nr_end = round_up(offset + length, map->stripe_len); |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 6011 | stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6012 | stripe_cnt = stripe_nr_end - stripe_nr; |
| 6013 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 6014 | (offset + length); |
| 6015 | /* |
| 6016 | * after this, stripe_nr is the number of stripes on this |
| 6017 | * device we have to walk to find the data, and stripe_index is |
| 6018 | * the number of our device in the stripe array |
| 6019 | */ |
| 6020 | num_stripes = 1; |
| 6021 | stripe_index = 0; |
| 6022 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 6023 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 6024 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 6025 | sub_stripes = 1; |
| 6026 | else |
| 6027 | sub_stripes = map->sub_stripes; |
| 6028 | |
| 6029 | factor = map->num_stripes / sub_stripes; |
| 6030 | num_stripes = min_t(u64, map->num_stripes, |
| 6031 | sub_stripes * stripe_cnt); |
| 6032 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
| 6033 | stripe_index *= sub_stripes; |
| 6034 | stripes_per_dev = div_u64_rem(stripe_cnt, factor, |
| 6035 | &remaining_stripes); |
| 6036 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 6037 | last_stripe *= sub_stripes; |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 6038 | } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1_MASK | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6039 | BTRFS_BLOCK_GROUP_DUP)) { |
| 6040 | num_stripes = map->num_stripes; |
| 6041 | } else { |
| 6042 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 6043 | &stripe_index); |
| 6044 | } |
| 6045 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 6046 | bioc = alloc_btrfs_io_context(fs_info, num_stripes, 0); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6047 | if (!bioc) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6048 | ret = -ENOMEM; |
| 6049 | goto out; |
| 6050 | } |
| 6051 | |
| 6052 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6053 | bioc->stripes[i].physical = |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6054 | map->stripes[stripe_index].physical + |
| 6055 | stripe_offset + stripe_nr * map->stripe_len; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6056 | bioc->stripes[i].dev = map->stripes[stripe_index].dev; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6057 | |
| 6058 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 6059 | BTRFS_BLOCK_GROUP_RAID10)) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6060 | bioc->stripes[i].length = stripes_per_dev * |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6061 | map->stripe_len; |
| 6062 | |
| 6063 | if (i / sub_stripes < remaining_stripes) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6064 | bioc->stripes[i].length += map->stripe_len; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6065 | |
| 6066 | /* |
| 6067 | * Special for the first stripe and |
| 6068 | * the last stripe: |
| 6069 | * |
| 6070 | * |-------|...|-------| |
| 6071 | * |----------| |
| 6072 | * off end_off |
| 6073 | */ |
| 6074 | if (i < sub_stripes) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6075 | bioc->stripes[i].length -= stripe_offset; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6076 | |
| 6077 | if (stripe_index >= last_stripe && |
| 6078 | stripe_index <= (last_stripe + |
| 6079 | sub_stripes - 1)) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6080 | bioc->stripes[i].length -= stripe_end_offset; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6081 | |
| 6082 | if (i == sub_stripes - 1) |
| 6083 | stripe_offset = 0; |
| 6084 | } else { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6085 | bioc->stripes[i].length = length; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6086 | } |
| 6087 | |
| 6088 | stripe_index++; |
| 6089 | if (stripe_index == map->num_stripes) { |
| 6090 | stripe_index = 0; |
| 6091 | stripe_nr++; |
| 6092 | } |
| 6093 | } |
| 6094 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6095 | *bioc_ret = bioc; |
| 6096 | bioc->map_type = map->type; |
| 6097 | bioc->num_stripes = num_stripes; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6098 | out: |
| 6099 | free_extent_map(em); |
| 6100 | return ret; |
| 6101 | } |
| 6102 | |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6103 | /* |
| 6104 | * In dev-replace case, for repair case (that's the only case where the mirror |
| 6105 | * is selected explicitly when calling btrfs_map_block), blocks left of the |
| 6106 | * left cursor can also be read from the target drive. |
| 6107 | * |
| 6108 | * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the |
| 6109 | * array of stripes. |
| 6110 | * For READ, it also needs to be supported using the same mirror number. |
| 6111 | * |
| 6112 | * If the requested block is not left of the left cursor, EIO is returned. This |
| 6113 | * can happen because btrfs_num_copies() returns one more in the dev-replace |
| 6114 | * case. |
| 6115 | */ |
| 6116 | static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info, |
| 6117 | u64 logical, u64 length, |
| 6118 | u64 srcdev_devid, int *mirror_num, |
| 6119 | u64 *physical) |
| 6120 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6121 | struct btrfs_io_context *bioc = NULL; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6122 | int num_stripes; |
| 6123 | int index_srcdev = 0; |
| 6124 | int found = 0; |
| 6125 | u64 physical_of_found = 0; |
| 6126 | int i; |
| 6127 | int ret = 0; |
| 6128 | |
| 6129 | ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6130 | logical, &length, &bioc, 0, 0); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6131 | if (ret) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6132 | ASSERT(bioc == NULL); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6133 | return ret; |
| 6134 | } |
| 6135 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6136 | num_stripes = bioc->num_stripes; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6137 | if (*mirror_num > num_stripes) { |
| 6138 | /* |
| 6139 | * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror, |
| 6140 | * that means that the requested area is not left of the left |
| 6141 | * cursor |
| 6142 | */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6143 | btrfs_put_bioc(bioc); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6144 | return -EIO; |
| 6145 | } |
| 6146 | |
| 6147 | /* |
| 6148 | * process the rest of the function using the mirror_num of the source |
| 6149 | * drive. Therefore look it up first. At the end, patch the device |
| 6150 | * pointer to the one of the target drive. |
| 6151 | */ |
| 6152 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6153 | if (bioc->stripes[i].dev->devid != srcdev_devid) |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6154 | continue; |
| 6155 | |
| 6156 | /* |
| 6157 | * In case of DUP, in order to keep it simple, only add the |
| 6158 | * mirror with the lowest physical address |
| 6159 | */ |
| 6160 | if (found && |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6161 | physical_of_found <= bioc->stripes[i].physical) |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6162 | continue; |
| 6163 | |
| 6164 | index_srcdev = i; |
| 6165 | found = 1; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6166 | physical_of_found = bioc->stripes[i].physical; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6167 | } |
| 6168 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6169 | btrfs_put_bioc(bioc); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6170 | |
| 6171 | ASSERT(found); |
| 6172 | if (!found) |
| 6173 | return -EIO; |
| 6174 | |
| 6175 | *mirror_num = index_srcdev + 1; |
| 6176 | *physical = physical_of_found; |
| 6177 | return ret; |
| 6178 | } |
| 6179 | |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6180 | static bool is_block_group_to_copy(struct btrfs_fs_info *fs_info, u64 logical) |
| 6181 | { |
| 6182 | struct btrfs_block_group *cache; |
| 6183 | bool ret; |
| 6184 | |
Naohiro Aota | de17add | 2021-02-04 19:22:13 +0900 | [diff] [blame] | 6185 | /* Non zoned filesystem does not use "to_copy" flag */ |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6186 | if (!btrfs_is_zoned(fs_info)) |
| 6187 | return false; |
| 6188 | |
| 6189 | cache = btrfs_lookup_block_group(fs_info, logical); |
| 6190 | |
| 6191 | spin_lock(&cache->lock); |
| 6192 | ret = cache->to_copy; |
| 6193 | spin_unlock(&cache->lock); |
| 6194 | |
| 6195 | btrfs_put_block_group(cache); |
| 6196 | return ret; |
| 6197 | } |
| 6198 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6199 | static void handle_ops_on_dev_replace(enum btrfs_map_op op, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6200 | struct btrfs_io_context **bioc_ret, |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6201 | struct btrfs_dev_replace *dev_replace, |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6202 | u64 logical, |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6203 | int *num_stripes_ret, int *max_errors_ret) |
| 6204 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6205 | struct btrfs_io_context *bioc = *bioc_ret; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6206 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 6207 | int tgtdev_indexes = 0; |
| 6208 | int num_stripes = *num_stripes_ret; |
| 6209 | int max_errors = *max_errors_ret; |
| 6210 | int i; |
| 6211 | |
| 6212 | if (op == BTRFS_MAP_WRITE) { |
| 6213 | int index_where_to_add; |
| 6214 | |
| 6215 | /* |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6216 | * A block group which have "to_copy" set will eventually |
| 6217 | * copied by dev-replace process. We can avoid cloning IO here. |
| 6218 | */ |
| 6219 | if (is_block_group_to_copy(dev_replace->srcdev->fs_info, logical)) |
| 6220 | return; |
| 6221 | |
| 6222 | /* |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6223 | * duplicate the write operations while the dev replace |
| 6224 | * procedure is running. Since the copying of the old disk to |
| 6225 | * the new disk takes place at run time while the filesystem is |
| 6226 | * mounted writable, the regular write operations to the old |
| 6227 | * disk have to be duplicated to go to the new disk as well. |
| 6228 | * |
| 6229 | * Note that device->missing is handled by the caller, and that |
| 6230 | * the write to the old disk is already set up in the stripes |
| 6231 | * array. |
| 6232 | */ |
| 6233 | index_where_to_add = num_stripes; |
| 6234 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6235 | if (bioc->stripes[i].dev->devid == srcdev_devid) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6236 | /* write to new disk, too */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6237 | struct btrfs_io_stripe *new = |
| 6238 | bioc->stripes + index_where_to_add; |
| 6239 | struct btrfs_io_stripe *old = |
| 6240 | bioc->stripes + i; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6241 | |
| 6242 | new->physical = old->physical; |
| 6243 | new->length = old->length; |
| 6244 | new->dev = dev_replace->tgtdev; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6245 | bioc->tgtdev_map[i] = index_where_to_add; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6246 | index_where_to_add++; |
| 6247 | max_errors++; |
| 6248 | tgtdev_indexes++; |
| 6249 | } |
| 6250 | } |
| 6251 | num_stripes = index_where_to_add; |
| 6252 | } else if (op == BTRFS_MAP_GET_READ_MIRRORS) { |
| 6253 | int index_srcdev = 0; |
| 6254 | int found = 0; |
| 6255 | u64 physical_of_found = 0; |
| 6256 | |
| 6257 | /* |
| 6258 | * During the dev-replace procedure, the target drive can also |
| 6259 | * be used to read data in case it is needed to repair a corrupt |
| 6260 | * block elsewhere. This is possible if the requested area is |
| 6261 | * left of the left cursor. In this area, the target drive is a |
| 6262 | * full copy of the source drive. |
| 6263 | */ |
| 6264 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6265 | if (bioc->stripes[i].dev->devid == srcdev_devid) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6266 | /* |
| 6267 | * In case of DUP, in order to keep it simple, |
| 6268 | * only add the mirror with the lowest physical |
| 6269 | * address |
| 6270 | */ |
| 6271 | if (found && |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6272 | physical_of_found <= bioc->stripes[i].physical) |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6273 | continue; |
| 6274 | index_srcdev = i; |
| 6275 | found = 1; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6276 | physical_of_found = bioc->stripes[i].physical; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6277 | } |
| 6278 | } |
| 6279 | if (found) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6280 | struct btrfs_io_stripe *tgtdev_stripe = |
| 6281 | bioc->stripes + num_stripes; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6282 | |
| 6283 | tgtdev_stripe->physical = physical_of_found; |
| 6284 | tgtdev_stripe->length = |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6285 | bioc->stripes[index_srcdev].length; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6286 | tgtdev_stripe->dev = dev_replace->tgtdev; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6287 | bioc->tgtdev_map[index_srcdev] = num_stripes; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6288 | |
| 6289 | tgtdev_indexes++; |
| 6290 | num_stripes++; |
| 6291 | } |
| 6292 | } |
| 6293 | |
| 6294 | *num_stripes_ret = num_stripes; |
| 6295 | *max_errors_ret = max_errors; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6296 | bioc->num_tgtdevs = tgtdev_indexes; |
| 6297 | *bioc_ret = bioc; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6298 | } |
| 6299 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6300 | static bool need_full_stripe(enum btrfs_map_op op) |
| 6301 | { |
| 6302 | return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS); |
| 6303 | } |
| 6304 | |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6305 | /* |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6306 | * Calculate the geometry of a particular (address, len) tuple. This |
| 6307 | * information is used to calculate how big a particular bio can get before it |
| 6308 | * straddles a stripe. |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6309 | * |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6310 | * @fs_info: the filesystem |
| 6311 | * @em: mapping containing the logical extent |
| 6312 | * @op: type of operation - write or read |
| 6313 | * @logical: address that we want to figure out the geometry of |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6314 | * @io_geom: pointer used to return values |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6315 | * |
| 6316 | * Returns < 0 in case a chunk for the given logical address cannot be found, |
| 6317 | * usually shouldn't happen unless @logical is corrupted, 0 otherwise. |
| 6318 | */ |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6319 | int btrfs_get_io_geometry(struct btrfs_fs_info *fs_info, struct extent_map *em, |
Qu Wenruo | 43c0d1a | 2021-04-13 17:58:48 +0800 | [diff] [blame] | 6320 | enum btrfs_map_op op, u64 logical, |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6321 | struct btrfs_io_geometry *io_geom) |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6322 | { |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6323 | struct map_lookup *map; |
Qu Wenruo | 43c0d1a | 2021-04-13 17:58:48 +0800 | [diff] [blame] | 6324 | u64 len; |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6325 | u64 offset; |
| 6326 | u64 stripe_offset; |
| 6327 | u64 stripe_nr; |
| 6328 | u64 stripe_len; |
| 6329 | u64 raid56_full_stripe_start = (u64)-1; |
| 6330 | int data_stripes; |
| 6331 | |
| 6332 | ASSERT(op != BTRFS_MAP_DISCARD); |
| 6333 | |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6334 | map = em->map_lookup; |
| 6335 | /* Offset of this logical address in the chunk */ |
| 6336 | offset = logical - em->start; |
| 6337 | /* Len of a stripe in a chunk */ |
| 6338 | stripe_len = map->stripe_len; |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 6339 | /* Stripe where this block falls in */ |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6340 | stripe_nr = div64_u64(offset, stripe_len); |
| 6341 | /* Offset of stripe in the chunk */ |
| 6342 | stripe_offset = stripe_nr * stripe_len; |
| 6343 | if (offset < stripe_offset) { |
| 6344 | btrfs_crit(fs_info, |
| 6345 | "stripe math has gone wrong, stripe_offset=%llu offset=%llu start=%llu logical=%llu stripe_len=%llu", |
| 6346 | stripe_offset, offset, em->start, logical, stripe_len); |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6347 | return -EINVAL; |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6348 | } |
| 6349 | |
| 6350 | /* stripe_offset is the offset of this block in its stripe */ |
| 6351 | stripe_offset = offset - stripe_offset; |
| 6352 | data_stripes = nr_data_stripes(map); |
| 6353 | |
Qu Wenruo | bf08387 | 2021-11-19 14:19:33 +0800 | [diff] [blame^] | 6354 | /* Only stripe based profiles needs to check against stripe length. */ |
| 6355 | if (map->type & BTRFS_BLOCK_GROUP_STRIPE_MASK) { |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6356 | u64 max_len = stripe_len - stripe_offset; |
| 6357 | |
| 6358 | /* |
| 6359 | * In case of raid56, we need to know the stripe aligned start |
| 6360 | */ |
| 6361 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 6362 | unsigned long full_stripe_len = stripe_len * data_stripes; |
| 6363 | raid56_full_stripe_start = offset; |
| 6364 | |
| 6365 | /* |
| 6366 | * Allow a write of a full stripe, but make sure we |
| 6367 | * don't allow straddling of stripes |
| 6368 | */ |
| 6369 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 6370 | full_stripe_len); |
| 6371 | raid56_full_stripe_start *= full_stripe_len; |
| 6372 | |
| 6373 | /* |
| 6374 | * For writes to RAID[56], allow a full stripeset across |
| 6375 | * all disks. For other RAID types and for RAID[56] |
| 6376 | * reads, just allow a single stripe (on a single disk). |
| 6377 | */ |
| 6378 | if (op == BTRFS_MAP_WRITE) { |
| 6379 | max_len = stripe_len * data_stripes - |
| 6380 | (offset - raid56_full_stripe_start); |
| 6381 | } |
| 6382 | } |
| 6383 | len = min_t(u64, em->len - offset, max_len); |
| 6384 | } else { |
| 6385 | len = em->len - offset; |
| 6386 | } |
| 6387 | |
| 6388 | io_geom->len = len; |
| 6389 | io_geom->offset = offset; |
| 6390 | io_geom->stripe_len = stripe_len; |
| 6391 | io_geom->stripe_nr = stripe_nr; |
| 6392 | io_geom->stripe_offset = stripe_offset; |
| 6393 | io_geom->raid56_stripe_offset = raid56_full_stripe_start; |
| 6394 | |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6395 | return 0; |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6396 | } |
| 6397 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6398 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 6399 | enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6400 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6401 | struct btrfs_io_context **bioc_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6402 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6403 | { |
| 6404 | struct extent_map *em; |
| 6405 | struct map_lookup *map; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6406 | u64 stripe_offset; |
| 6407 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6408 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 6409 | u32 stripe_index; |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6410 | int data_stripes; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6411 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6412 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6413 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6414 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 6415 | int tgtdev_indexes = 0; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6416 | struct btrfs_io_context *bioc = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6417 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 6418 | int dev_replace_is_ongoing = 0; |
| 6419 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6420 | int patch_the_first_stripe_for_dev_replace = 0; |
| 6421 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6422 | u64 raid56_full_stripe_start = (u64)-1; |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6423 | struct btrfs_io_geometry geom; |
| 6424 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6425 | ASSERT(bioc_ret); |
David Sterba | 75fb2e9 | 2018-08-03 00:36:29 +0200 | [diff] [blame] | 6426 | ASSERT(op != BTRFS_MAP_DISCARD); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6427 | |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6428 | em = btrfs_get_chunk_map(fs_info, logical, *length); |
| 6429 | ASSERT(!IS_ERR(em)); |
| 6430 | |
Qu Wenruo | 43c0d1a | 2021-04-13 17:58:48 +0800 | [diff] [blame] | 6431 | ret = btrfs_get_io_geometry(fs_info, em, op, logical, &geom); |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6432 | if (ret < 0) |
| 6433 | return ret; |
| 6434 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6435 | map = em->map_lookup; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6436 | |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6437 | *length = geom.len; |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6438 | stripe_len = geom.stripe_len; |
| 6439 | stripe_nr = geom.stripe_nr; |
| 6440 | stripe_offset = geom.stripe_offset; |
| 6441 | raid56_full_stripe_start = geom.raid56_stripe_offset; |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6442 | data_stripes = nr_data_stripes(map); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6443 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 6444 | down_read(&dev_replace->rwsem); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6445 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
David Sterba | 53176dd | 2018-04-05 01:41:06 +0200 | [diff] [blame] | 6446 | /* |
| 6447 | * Hold the semaphore for read during the whole operation, write is |
| 6448 | * requested at commit time but must wait. |
| 6449 | */ |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6450 | if (!dev_replace_is_ongoing) |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 6451 | up_read(&dev_replace->rwsem); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6452 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6453 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6454 | !need_full_stripe(op) && dev_replace->tgtdev != NULL) { |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6455 | ret = get_extra_mirror_from_replace(fs_info, logical, *length, |
| 6456 | dev_replace->srcdev->devid, |
| 6457 | &mirror_num, |
| 6458 | &physical_to_patch_in_first_stripe); |
| 6459 | if (ret) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6460 | goto out; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6461 | else |
| 6462 | patch_the_first_stripe_for_dev_replace = 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6463 | } else if (mirror_num > map->num_stripes) { |
| 6464 | mirror_num = 0; |
| 6465 | } |
| 6466 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6467 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6468 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 6469 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6470 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 6471 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6472 | if (!need_full_stripe(op)) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 6473 | mirror_num = 1; |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 6474 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6475 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6476 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 6477 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6478 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6479 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6480 | stripe_index = find_live_mirror(fs_info, map, 0, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6481 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6482 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6483 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 6484 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6485 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6486 | if (need_full_stripe(op)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6487 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6488 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6489 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6490 | } else { |
| 6491 | mirror_num = 1; |
| 6492 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 6493 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6494 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 6495 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6496 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6497 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6498 | stripe_index *= map->sub_stripes; |
| 6499 | |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6500 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6501 | num_stripes = map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6502 | else if (mirror_num) |
| 6503 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6504 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 6505 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6506 | stripe_index = find_live_mirror(fs_info, map, |
| 6507 | stripe_index, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6508 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 6509 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6510 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6511 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 6512 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6513 | if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6514 | /* push stripe_nr back to the start of the full stripe */ |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 6515 | stripe_nr = div64_u64(raid56_full_stripe_start, |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6516 | stripe_len * data_stripes); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6517 | |
| 6518 | /* RAID[56] write or recovery. Return all stripes */ |
| 6519 | num_stripes = map->num_stripes; |
| 6520 | max_errors = nr_parity_stripes(map); |
| 6521 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6522 | *length = map->stripe_len; |
| 6523 | stripe_index = 0; |
| 6524 | stripe_offset = 0; |
| 6525 | } else { |
| 6526 | /* |
| 6527 | * Mirror #0 or #1 means the original data block. |
| 6528 | * Mirror #2 is RAID5 parity block. |
| 6529 | * Mirror #3 is RAID6 Q block. |
| 6530 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6531 | stripe_nr = div_u64_rem(stripe_nr, |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6532 | data_stripes, &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6533 | if (mirror_num > 1) |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6534 | stripe_index = data_stripes + mirror_num - 2; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6535 | |
| 6536 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6537 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 6538 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6539 | if (!need_full_stripe(op) && mirror_num <= 1) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 6540 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6541 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6542 | } else { |
| 6543 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6544 | * after this, stripe_nr is the number of stripes on this |
| 6545 | * device we have to walk to find the data, and stripe_index is |
| 6546 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6547 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6548 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 6549 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6550 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6551 | } |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 6552 | if (stripe_index >= map->num_stripes) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6553 | btrfs_crit(fs_info, |
| 6554 | "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u", |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 6555 | stripe_index, map->num_stripes); |
| 6556 | ret = -EINVAL; |
| 6557 | goto out; |
| 6558 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6559 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6560 | num_alloc_stripes = num_stripes; |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 6561 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6562 | if (op == BTRFS_MAP_WRITE) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6563 | num_alloc_stripes <<= 1; |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6564 | if (op == BTRFS_MAP_GET_READ_MIRRORS) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6565 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 6566 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6567 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 6568 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 6569 | bioc = alloc_btrfs_io_context(fs_info, num_alloc_stripes, tgtdev_indexes); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6570 | if (!bioc) { |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6571 | ret = -ENOMEM; |
| 6572 | goto out; |
| 6573 | } |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 6574 | |
| 6575 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6576 | bioc->stripes[i].physical = map->stripes[stripe_index].physical + |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 6577 | stripe_offset + stripe_nr * map->stripe_len; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6578 | bioc->stripes[i].dev = map->stripes[stripe_index].dev; |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 6579 | stripe_index++; |
| 6580 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6581 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6582 | /* Build raid_map */ |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6583 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map && |
| 6584 | (need_full_stripe(op) || mirror_num > 1)) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6585 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 6586 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6587 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6588 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6589 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6590 | |
| 6591 | /* Fill in the logical address of each stripe */ |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6592 | tmp = stripe_nr * data_stripes; |
| 6593 | for (i = 0; i < data_stripes; i++) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6594 | bioc->raid_map[(i + rot) % num_stripes] = |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6595 | em->start + (tmp + i) * map->stripe_len; |
| 6596 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6597 | bioc->raid_map[(i + rot) % map->num_stripes] = RAID5_P_STRIPE; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6598 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6599 | bioc->raid_map[(i + rot + 1) % num_stripes] = |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6600 | RAID6_Q_STRIPE; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6601 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6602 | sort_parity_stripes(bioc, num_stripes); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6603 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6604 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6605 | if (need_full_stripe(op)) |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 6606 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6607 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6608 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6609 | need_full_stripe(op)) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6610 | handle_ops_on_dev_replace(op, &bioc, dev_replace, logical, |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6611 | &num_stripes, &max_errors); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6612 | } |
| 6613 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6614 | *bioc_ret = bioc; |
| 6615 | bioc->map_type = map->type; |
| 6616 | bioc->num_stripes = num_stripes; |
| 6617 | bioc->max_errors = max_errors; |
| 6618 | bioc->mirror_num = mirror_num; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6619 | |
| 6620 | /* |
| 6621 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 6622 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 6623 | * available as a mirror |
| 6624 | */ |
| 6625 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 6626 | WARN_ON(num_stripes > 1); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6627 | bioc->stripes[0].dev = dev_replace->tgtdev; |
| 6628 | bioc->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 6629 | bioc->mirror_num = map->num_stripes + 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6630 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6631 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 6632 | if (dev_replace_is_ongoing) { |
David Sterba | 53176dd | 2018-04-05 01:41:06 +0200 | [diff] [blame] | 6633 | lockdep_assert_held(&dev_replace->rwsem); |
| 6634 | /* Unlock and let waiting writers proceed */ |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 6635 | up_read(&dev_replace->rwsem); |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 6636 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6637 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6638 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6639 | } |
| 6640 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6641 | int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6642 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6643 | struct btrfs_io_context **bioc_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6644 | { |
David Sterba | 75fb2e9 | 2018-08-03 00:36:29 +0200 | [diff] [blame] | 6645 | if (op == BTRFS_MAP_DISCARD) |
| 6646 | return __btrfs_map_block_for_discard(fs_info, logical, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6647 | length, bioc_ret); |
David Sterba | 75fb2e9 | 2018-08-03 00:36:29 +0200 | [diff] [blame] | 6648 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6649 | return __btrfs_map_block(fs_info, op, logical, length, bioc_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6650 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6651 | } |
| 6652 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6653 | /* For Scrub/replace */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6654 | int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op, |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6655 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6656 | struct btrfs_io_context **bioc_ret) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6657 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6658 | return __btrfs_map_block(fs_info, op, logical, length, bioc_ret, 0, 1); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6659 | } |
| 6660 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6661 | static inline void btrfs_end_bioc(struct btrfs_io_context *bioc, struct bio *bio) |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6662 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6663 | bio->bi_private = bioc->private; |
| 6664 | bio->bi_end_io = bioc->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6665 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6666 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6667 | btrfs_put_bioc(bioc); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6668 | } |
| 6669 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6670 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6671 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6672 | struct btrfs_io_context *bioc = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6673 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6674 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6675 | if (bio->bi_status) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6676 | atomic_inc(&bioc->error); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6677 | if (bio->bi_status == BLK_STS_IOERR || |
| 6678 | bio->bi_status == BLK_STS_TARGET) { |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6679 | struct btrfs_device *dev = btrfs_bio(bio)->device; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6680 | |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6681 | ASSERT(dev->bdev); |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6682 | if (btrfs_op(bio) == BTRFS_MAP_WRITE) |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6683 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6684 | BTRFS_DEV_STAT_WRITE_ERRS); |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6685 | else if (!(bio->bi_opf & REQ_RAHEAD)) |
| 6686 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6687 | BTRFS_DEV_STAT_READ_ERRS); |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6688 | if (bio->bi_opf & REQ_PREFLUSH) |
| 6689 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6690 | BTRFS_DEV_STAT_FLUSH_ERRS); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6691 | } |
| 6692 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6693 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6694 | if (bio == bioc->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6695 | is_orig_bio = 1; |
| 6696 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6697 | btrfs_bio_counter_dec(bioc->fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6698 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6699 | if (atomic_dec_and_test(&bioc->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6700 | if (!is_orig_bio) { |
| 6701 | bio_put(bio); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6702 | bio = bioc->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6703 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 6704 | |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6705 | btrfs_bio(bio)->mirror_num = bioc->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6706 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6707 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6708 | */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6709 | if (atomic_read(&bioc->error) > bioc->max_errors) { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6710 | bio->bi_status = BLK_STS_IOERR; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 6711 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6712 | /* |
| 6713 | * this bio is actually up to date, we didn't |
| 6714 | * go over the max number of errors |
| 6715 | */ |
Anand Jain | 2dbe0c7 | 2017-10-14 08:35:56 +0800 | [diff] [blame] | 6716 | bio->bi_status = BLK_STS_OK; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6717 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 6718 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6719 | btrfs_end_bioc(bioc, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6720 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6721 | bio_put(bio); |
| 6722 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6723 | } |
| 6724 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6725 | static void submit_stripe_bio(struct btrfs_io_context *bioc, struct bio *bio, |
Nikolay Borisov | c31efbd | 2020-07-03 11:14:27 +0300 | [diff] [blame] | 6726 | u64 physical, struct btrfs_device *dev) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6727 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6728 | struct btrfs_fs_info *fs_info = bioc->fs_info; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6729 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6730 | bio->bi_private = bioc; |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6731 | btrfs_bio(bio)->device = dev; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6732 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6733 | bio->bi_iter.bi_sector = physical >> 9; |
Naohiro Aota | d8e3fb1 | 2021-02-04 19:22:05 +0900 | [diff] [blame] | 6734 | /* |
| 6735 | * For zone append writing, bi_sector must point the beginning of the |
| 6736 | * zone |
| 6737 | */ |
| 6738 | if (bio_op(bio) == REQ_OP_ZONE_APPEND) { |
| 6739 | if (btrfs_dev_is_sequential(dev, physical)) { |
| 6740 | u64 zone_start = round_down(physical, fs_info->zone_size); |
| 6741 | |
| 6742 | bio->bi_iter.bi_sector = zone_start >> SECTOR_SHIFT; |
| 6743 | } else { |
| 6744 | bio->bi_opf &= ~REQ_OP_ZONE_APPEND; |
| 6745 | bio->bi_opf |= REQ_OP_WRITE; |
| 6746 | } |
| 6747 | } |
Misono Tomohiro | 672d599 | 2018-08-02 16:19:07 +0900 | [diff] [blame] | 6748 | btrfs_debug_in_rcu(fs_info, |
| 6749 | "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u", |
David Sterba | 1201b58 | 2020-11-26 15:41:27 +0100 | [diff] [blame] | 6750 | bio_op(bio), bio->bi_opf, bio->bi_iter.bi_sector, |
David Sterba | 1db45a3 | 2019-11-28 15:31:46 +0100 | [diff] [blame] | 6751 | (unsigned long)dev->bdev->bd_dev, rcu_str_deref(dev->name), |
| 6752 | dev->devid, bio->bi_iter.bi_size); |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 6753 | bio_set_dev(bio, dev->bdev); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6754 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6755 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6756 | |
Chris Mason | 08635ba | 2019-07-10 12:28:14 -0700 | [diff] [blame] | 6757 | btrfsic_submit_bio(bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6758 | } |
| 6759 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6760 | static void bioc_error(struct btrfs_io_context *bioc, struct bio *bio, u64 logical) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6761 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6762 | atomic_inc(&bioc->error); |
| 6763 | if (atomic_dec_and_test(&bioc->stripes_pending)) { |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6764 | /* Should be the original bio. */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6765 | WARN_ON(bio != bioc->orig_bio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6766 | |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6767 | btrfs_bio(bio)->mirror_num = bioc->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6768 | bio->bi_iter.bi_sector = logical >> 9; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6769 | if (atomic_read(&bioc->error) > bioc->max_errors) |
Anand Jain | 102ed2c | 2017-10-14 08:34:02 +0800 | [diff] [blame] | 6770 | bio->bi_status = BLK_STS_IOERR; |
| 6771 | else |
| 6772 | bio->bi_status = BLK_STS_OK; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6773 | btrfs_end_bioc(bioc, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6774 | } |
| 6775 | } |
| 6776 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6777 | blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio, |
Chris Mason | 08635ba | 2019-07-10 12:28:14 -0700 | [diff] [blame] | 6778 | int mirror_num) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6779 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6780 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6781 | struct bio *first_bio = bio; |
David Sterba | 1201b58 | 2020-11-26 15:41:27 +0100 | [diff] [blame] | 6782 | u64 logical = bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6783 | u64 length = 0; |
| 6784 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6785 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6786 | int dev_nr; |
| 6787 | int total_devs; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6788 | struct btrfs_io_context *bioc = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6789 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6790 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6791 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6792 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6793 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Bo | bd7d63c | 2017-09-19 17:50:09 -0600 | [diff] [blame] | 6794 | ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6795 | &map_length, &bioc, mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6796 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6797 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6798 | return errno_to_blk_status(ret); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6799 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6800 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6801 | total_devs = bioc->num_stripes; |
| 6802 | bioc->orig_bio = first_bio; |
| 6803 | bioc->private = first_bio->bi_private; |
| 6804 | bioc->end_io = first_bio->bi_end_io; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6805 | atomic_set(&bioc->stripes_pending, bioc->num_stripes); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6806 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6807 | if ((bioc->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6808 | ((btrfs_op(bio) == BTRFS_MAP_WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6809 | /* In this case, map_length has been set to the length of |
| 6810 | a single stripe; not the whole write */ |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6811 | if (btrfs_op(bio) == BTRFS_MAP_WRITE) { |
Qu Wenruo | 6a258d7 | 2021-09-23 14:00:09 +0800 | [diff] [blame] | 6812 | ret = raid56_parity_write(bio, bioc, map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6813 | } else { |
Qu Wenruo | 6a258d7 | 2021-09-23 14:00:09 +0800 | [diff] [blame] | 6814 | ret = raid56_parity_recover(bio, bioc, map_length, |
| 6815 | mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6816 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6817 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6818 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6819 | return errno_to_blk_status(ret); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6820 | } |
| 6821 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6822 | if (map_length < length) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6823 | btrfs_crit(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6824 | "mapping failed logical %llu bio len %llu len %llu", |
| 6825 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6826 | BUG(); |
| 6827 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6828 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6829 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6830 | dev = bioc->stripes[dev_nr].dev; |
Nikolay Borisov | fc8a168 | 2018-11-08 16:16:38 +0200 | [diff] [blame] | 6831 | if (!dev || !dev->bdev || test_bit(BTRFS_DEV_STATE_MISSING, |
| 6832 | &dev->dev_state) || |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6833 | (btrfs_op(first_bio) == BTRFS_MAP_WRITE && |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6834 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6835 | bioc_error(bioc, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6836 | continue; |
| 6837 | } |
| 6838 | |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6839 | if (dev_nr < total_devs - 1) |
David Sterba | 8b6c1d5 | 2017-06-02 17:48:13 +0200 | [diff] [blame] | 6840 | bio = btrfs_bio_clone(first_bio); |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6841 | else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6842 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6843 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6844 | submit_stripe_bio(bioc, bio, bioc->stripes[dev_nr].physical, dev); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6845 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6846 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6847 | return BLK_STS_OK; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6848 | } |
| 6849 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6850 | static bool dev_args_match_fs_devices(const struct btrfs_dev_lookup_args *args, |
| 6851 | const struct btrfs_fs_devices *fs_devices) |
| 6852 | { |
| 6853 | if (args->fsid == NULL) |
| 6854 | return true; |
| 6855 | if (memcmp(fs_devices->metadata_uuid, args->fsid, BTRFS_FSID_SIZE) == 0) |
| 6856 | return true; |
| 6857 | return false; |
| 6858 | } |
| 6859 | |
| 6860 | static bool dev_args_match_device(const struct btrfs_dev_lookup_args *args, |
| 6861 | const struct btrfs_device *device) |
| 6862 | { |
| 6863 | ASSERT((args->devid != (u64)-1) || args->missing); |
| 6864 | |
| 6865 | if ((args->devid != (u64)-1) && device->devid != args->devid) |
| 6866 | return false; |
| 6867 | if (args->uuid && memcmp(device->uuid, args->uuid, BTRFS_UUID_SIZE) != 0) |
| 6868 | return false; |
| 6869 | if (!args->missing) |
| 6870 | return true; |
| 6871 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state) && |
| 6872 | !device->bdev) |
| 6873 | return true; |
| 6874 | return false; |
| 6875 | } |
| 6876 | |
Anand Jain | 09ba3bc | 2019-01-19 14:48:55 +0800 | [diff] [blame] | 6877 | /* |
| 6878 | * Find a device specified by @devid or @uuid in the list of @fs_devices, or |
| 6879 | * return NULL. |
| 6880 | * |
| 6881 | * If devid and uuid are both specified, the match must be exact, otherwise |
| 6882 | * only devid is used. |
Anand Jain | 09ba3bc | 2019-01-19 14:48:55 +0800 | [diff] [blame] | 6883 | */ |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6884 | struct btrfs_device *btrfs_find_device(const struct btrfs_fs_devices *fs_devices, |
| 6885 | const struct btrfs_dev_lookup_args *args) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6886 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6887 | struct btrfs_device *device; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6888 | struct btrfs_fs_devices *seed_devs; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6889 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6890 | if (dev_args_match_fs_devices(args, fs_devices)) { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6891 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6892 | if (dev_args_match_device(args, device)) |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6893 | return device; |
| 6894 | } |
| 6895 | } |
| 6896 | |
| 6897 | list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6898 | if (!dev_args_match_fs_devices(args, seed_devs)) |
| 6899 | continue; |
| 6900 | list_for_each_entry(device, &seed_devs->devices, dev_list) { |
| 6901 | if (dev_args_match_device(args, device)) |
| 6902 | return device; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6903 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6904 | } |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6905 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6906 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6907 | } |
| 6908 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6909 | static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6910 | u64 devid, u8 *dev_uuid) |
| 6911 | { |
| 6912 | struct btrfs_device *device; |
Josef Bacik | fccc000 | 2020-08-31 10:52:42 -0400 | [diff] [blame] | 6913 | unsigned int nofs_flag; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6914 | |
Josef Bacik | fccc000 | 2020-08-31 10:52:42 -0400 | [diff] [blame] | 6915 | /* |
| 6916 | * We call this under the chunk_mutex, so we want to use NOFS for this |
| 6917 | * allocation, however we don't want to change btrfs_alloc_device() to |
| 6918 | * always do NOFS because we use it in a lot of other GFP_KERNEL safe |
| 6919 | * places. |
| 6920 | */ |
| 6921 | nofs_flag = memalloc_nofs_save(); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6922 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
Josef Bacik | fccc000 | 2020-08-31 10:52:42 -0400 | [diff] [blame] | 6923 | memalloc_nofs_restore(nofs_flag); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6924 | if (IS_ERR(device)) |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6925 | return device; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6926 | |
| 6927 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6928 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6929 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6930 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6931 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6932 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6933 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6934 | return device; |
| 6935 | } |
| 6936 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6937 | /** |
| 6938 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6939 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6940 | * devid is provided (i.e. @devid != NULL). |
| 6941 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6942 | * is generated. |
| 6943 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6944 | * is generated. |
| 6945 | * |
| 6946 | * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR() |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 6947 | * on error. Returned struct is not linked onto any lists and must be |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 6948 | * destroyed with btrfs_free_device. |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6949 | */ |
| 6950 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6951 | const u64 *devid, |
| 6952 | const u8 *uuid) |
| 6953 | { |
| 6954 | struct btrfs_device *dev; |
| 6955 | u64 tmp; |
| 6956 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6957 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6958 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6959 | |
David Sterba | fe4f46d | 2021-07-26 14:15:21 +0200 | [diff] [blame] | 6960 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
| 6961 | if (!dev) |
| 6962 | return ERR_PTR(-ENOMEM); |
| 6963 | |
| 6964 | /* |
| 6965 | * Preallocate a bio that's always going to be used for flushing device |
| 6966 | * barriers and matches the device lifespan |
| 6967 | */ |
| 6968 | dev->flush_bio = bio_kmalloc(GFP_KERNEL, 0); |
| 6969 | if (!dev->flush_bio) { |
| 6970 | kfree(dev); |
| 6971 | return ERR_PTR(-ENOMEM); |
| 6972 | } |
| 6973 | |
| 6974 | INIT_LIST_HEAD(&dev->dev_list); |
| 6975 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
| 6976 | INIT_LIST_HEAD(&dev->post_commit_list); |
| 6977 | |
| 6978 | atomic_set(&dev->reada_in_flight, 0); |
| 6979 | atomic_set(&dev->dev_stats_ccnt, 0); |
| 6980 | btrfs_device_data_ordered_init(dev); |
| 6981 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
| 6982 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
| 6983 | extent_io_tree_init(fs_info, &dev->alloc_state, |
| 6984 | IO_TREE_DEVICE_ALLOC_STATE, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6985 | |
| 6986 | if (devid) |
| 6987 | tmp = *devid; |
| 6988 | else { |
| 6989 | int ret; |
| 6990 | |
| 6991 | ret = find_next_devid(fs_info, &tmp); |
| 6992 | if (ret) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 6993 | btrfs_free_device(dev); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6994 | return ERR_PTR(ret); |
| 6995 | } |
| 6996 | } |
| 6997 | dev->devid = tmp; |
| 6998 | |
| 6999 | if (uuid) |
| 7000 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 7001 | else |
| 7002 | generate_random_uuid(dev->uuid); |
| 7003 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 7004 | return dev; |
| 7005 | } |
| 7006 | |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 7007 | static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7008 | u64 devid, u8 *uuid, bool error) |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 7009 | { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7010 | if (error) |
| 7011 | btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing", |
| 7012 | devid, uuid); |
| 7013 | else |
| 7014 | btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", |
| 7015 | devid, uuid); |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 7016 | } |
| 7017 | |
Nikolay Borisov | 39e264a | 2019-03-25 14:31:25 +0200 | [diff] [blame] | 7018 | static u64 calc_stripe_length(u64 type, u64 chunk_len, int num_stripes) |
| 7019 | { |
David Sterba | d58ede8 | 2021-07-26 14:15:24 +0200 | [diff] [blame] | 7020 | const int data_stripes = calc_data_stripes(type, num_stripes); |
David Sterba | e4f6c6b | 2019-05-14 01:59:54 +0200 | [diff] [blame] | 7021 | |
Nikolay Borisov | 39e264a | 2019-03-25 14:31:25 +0200 | [diff] [blame] | 7022 | return div_u64(chunk_len, data_stripes); |
| 7023 | } |
| 7024 | |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7025 | #if BITS_PER_LONG == 32 |
| 7026 | /* |
| 7027 | * Due to page cache limit, metadata beyond BTRFS_32BIT_MAX_FILE_SIZE |
| 7028 | * can't be accessed on 32bit systems. |
| 7029 | * |
| 7030 | * This function do mount time check to reject the fs if it already has |
| 7031 | * metadata chunk beyond that limit. |
| 7032 | */ |
| 7033 | static int check_32bit_meta_chunk(struct btrfs_fs_info *fs_info, |
| 7034 | u64 logical, u64 length, u64 type) |
| 7035 | { |
| 7036 | if (!(type & BTRFS_BLOCK_GROUP_METADATA)) |
| 7037 | return 0; |
| 7038 | |
| 7039 | if (logical + length < MAX_LFS_FILESIZE) |
| 7040 | return 0; |
| 7041 | |
| 7042 | btrfs_err_32bit_limit(fs_info); |
| 7043 | return -EOVERFLOW; |
| 7044 | } |
| 7045 | |
| 7046 | /* |
| 7047 | * This is to give early warning for any metadata chunk reaching |
| 7048 | * BTRFS_32BIT_EARLY_WARN_THRESHOLD. |
| 7049 | * Although we can still access the metadata, it's not going to be possible |
| 7050 | * once the limit is reached. |
| 7051 | */ |
| 7052 | static void warn_32bit_meta_chunk(struct btrfs_fs_info *fs_info, |
| 7053 | u64 logical, u64 length, u64 type) |
| 7054 | { |
| 7055 | if (!(type & BTRFS_BLOCK_GROUP_METADATA)) |
| 7056 | return; |
| 7057 | |
| 7058 | if (logical + length < BTRFS_32BIT_EARLY_WARN_THRESHOLD) |
| 7059 | return; |
| 7060 | |
| 7061 | btrfs_warn_32bit_limit(fs_info); |
| 7062 | } |
| 7063 | #endif |
| 7064 | |
David Sterba | 9690ac0 | 2019-03-20 16:43:07 +0100 | [diff] [blame] | 7065 | static int read_one_chunk(struct btrfs_key *key, struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7066 | struct btrfs_chunk *chunk) |
| 7067 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7068 | BTRFS_DEV_LOOKUP_ARGS(args); |
David Sterba | 9690ac0 | 2019-03-20 16:43:07 +0100 | [diff] [blame] | 7069 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7070 | struct extent_map_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7071 | struct map_lookup *map; |
| 7072 | struct extent_map *em; |
| 7073 | u64 logical; |
| 7074 | u64 length; |
| 7075 | u64 devid; |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7076 | u64 type; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7077 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7078 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7079 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7080 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7081 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 7082 | logical = key->offset; |
| 7083 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7084 | type = btrfs_chunk_type(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 7085 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 7086 | |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7087 | #if BITS_PER_LONG == 32 |
| 7088 | ret = check_32bit_meta_chunk(fs_info, logical, length, type); |
| 7089 | if (ret < 0) |
| 7090 | return ret; |
| 7091 | warn_32bit_meta_chunk(fs_info, logical, length, type); |
| 7092 | #endif |
| 7093 | |
Qu Wenruo | 075cb3c | 2019-03-20 13:42:33 +0800 | [diff] [blame] | 7094 | /* |
| 7095 | * Only need to verify chunk item if we're reading from sys chunk array, |
| 7096 | * as chunk item in tree block is already verified by tree-checker. |
| 7097 | */ |
| 7098 | if (leaf->start == BTRFS_SUPER_INFO_OFFSET) { |
David Sterba | ddaf1d5 | 2019-03-20 16:40:48 +0100 | [diff] [blame] | 7099 | ret = btrfs_check_chunk_valid(leaf, chunk, logical); |
Qu Wenruo | 075cb3c | 2019-03-20 13:42:33 +0800 | [diff] [blame] | 7100 | if (ret) |
| 7101 | return ret; |
| 7102 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7103 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7104 | read_lock(&map_tree->lock); |
| 7105 | em = lookup_extent_mapping(map_tree, logical, 1); |
| 7106 | read_unlock(&map_tree->lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7107 | |
| 7108 | /* already mapped? */ |
| 7109 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 7110 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7111 | return 0; |
| 7112 | } else if (em) { |
| 7113 | free_extent_map(em); |
| 7114 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7115 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 7116 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7117 | if (!em) |
| 7118 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7119 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7120 | if (!map) { |
| 7121 | free_extent_map(em); |
| 7122 | return -ENOMEM; |
| 7123 | } |
| 7124 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 7125 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 7126 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7127 | em->start = logical; |
| 7128 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 7129 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7130 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 7131 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7132 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7133 | map->num_stripes = num_stripes; |
| 7134 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 7135 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7136 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7137 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 7138 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 7139 | map->verified_stripes = 0; |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7140 | em->orig_block_len = calc_stripe_length(type, em->len, |
Nikolay Borisov | 39e264a | 2019-03-25 14:31:25 +0200 | [diff] [blame] | 7141 | map->num_stripes); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7142 | for (i = 0; i < num_stripes; i++) { |
| 7143 | map->stripes[i].physical = |
| 7144 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 7145 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7146 | args.devid = devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7147 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 7148 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 7149 | BTRFS_UUID_SIZE); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7150 | args.uuid = uuid; |
| 7151 | map->stripes[i].dev = btrfs_find_device(fs_info->fs_devices, &args); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 7152 | if (!map->stripes[i].dev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7153 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7154 | free_extent_map(em); |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7155 | btrfs_report_missing_device(fs_info, devid, uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 7156 | return -ENOENT; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7157 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7158 | if (!map->stripes[i].dev) { |
| 7159 | map->stripes[i].dev = |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7160 | add_missing_dev(fs_info->fs_devices, devid, |
| 7161 | uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 7162 | if (IS_ERR(map->stripes[i].dev)) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7163 | free_extent_map(em); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 7164 | btrfs_err(fs_info, |
| 7165 | "failed to init missing dev %llu: %ld", |
| 7166 | devid, PTR_ERR(map->stripes[i].dev)); |
| 7167 | return PTR_ERR(map->stripes[i].dev); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7168 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7169 | btrfs_report_missing_device(fs_info, devid, uuid, false); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7170 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 7171 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 7172 | &(map->stripes[i].dev->dev_state)); |
| 7173 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7174 | } |
| 7175 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7176 | write_lock(&map_tree->lock); |
| 7177 | ret = add_extent_mapping(map_tree, em, 0); |
| 7178 | write_unlock(&map_tree->lock); |
Qu Wenruo | 64f64f4 | 2018-08-01 10:37:20 +0800 | [diff] [blame] | 7179 | if (ret < 0) { |
| 7180 | btrfs_err(fs_info, |
| 7181 | "failed to add chunk map, start=%llu len=%llu: %d", |
| 7182 | em->start, em->len, ret); |
| 7183 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7184 | free_extent_map(em); |
| 7185 | |
Qu Wenruo | 64f64f4 | 2018-08-01 10:37:20 +0800 | [diff] [blame] | 7186 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7187 | } |
| 7188 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 7189 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7190 | struct btrfs_dev_item *dev_item, |
| 7191 | struct btrfs_device *device) |
| 7192 | { |
| 7193 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7194 | |
| 7195 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 7196 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 7197 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7198 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7199 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7200 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7201 | device->type = btrfs_device_type(leaf, dev_item); |
| 7202 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 7203 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 7204 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 7205 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 7206 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7207 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 7208 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 7209 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7210 | } |
| 7211 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7212 | static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info, |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7213 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7214 | { |
| 7215 | struct btrfs_fs_devices *fs_devices; |
| 7216 | int ret; |
| 7217 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 7218 | lockdep_assert_held(&uuid_mutex); |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 7219 | ASSERT(fsid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7220 | |
Nikolay Borisov | 427c8fd | 2020-08-12 17:04:36 +0300 | [diff] [blame] | 7221 | /* This will match only for multi-device seed fs */ |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7222 | list_for_each_entry(fs_devices, &fs_info->fs_devices->seed_list, seed_list) |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 7223 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7224 | return fs_devices; |
| 7225 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7226 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 7227 | fs_devices = find_fsid(fsid, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7228 | if (!fs_devices) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7229 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7230 | return ERR_PTR(-ENOENT); |
| 7231 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 7232 | fs_devices = alloc_fs_devices(fsid, NULL); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7233 | if (IS_ERR(fs_devices)) |
| 7234 | return fs_devices; |
| 7235 | |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 7236 | fs_devices->seeding = true; |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7237 | fs_devices->opened = 1; |
| 7238 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7239 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 7240 | |
Nikolay Borisov | 427c8fd | 2020-08-12 17:04:36 +0300 | [diff] [blame] | 7241 | /* |
| 7242 | * Upon first call for a seed fs fsid, just create a private copy of the |
| 7243 | * respective fs_devices and anchor it at fs_info->fs_devices->seed_list |
| 7244 | */ |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 7245 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7246 | if (IS_ERR(fs_devices)) |
| 7247 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7248 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 7249 | ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 7250 | if (ret) { |
| 7251 | free_fs_devices(fs_devices); |
Anand Jain | c83b60c | 2020-09-05 01:34:35 +0800 | [diff] [blame] | 7252 | return ERR_PTR(ret); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 7253 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7254 | |
| 7255 | if (!fs_devices->seeding) { |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 7256 | close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 7257 | free_fs_devices(fs_devices); |
Anand Jain | c83b60c | 2020-09-05 01:34:35 +0800 | [diff] [blame] | 7258 | return ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7259 | } |
| 7260 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7261 | list_add(&fs_devices->seed_list, &fs_info->fs_devices->seed_list); |
Anand Jain | c83b60c | 2020-09-05 01:34:35 +0800 | [diff] [blame] | 7262 | |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7263 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7264 | } |
| 7265 | |
David Sterba | 1785075 | 2019-03-20 16:45:15 +0100 | [diff] [blame] | 7266 | static int read_one_dev(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7267 | struct btrfs_dev_item *dev_item) |
| 7268 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7269 | BTRFS_DEV_LOOKUP_ARGS(args); |
David Sterba | 1785075 | 2019-03-20 16:45:15 +0100 | [diff] [blame] | 7270 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7271 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7272 | struct btrfs_device *device; |
| 7273 | u64 devid; |
| 7274 | int ret; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 7275 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7276 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 7277 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7278 | devid = args.devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 7279 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7280 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 7281 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 7282 | BTRFS_FSID_SIZE); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7283 | args.uuid = dev_uuid; |
| 7284 | args.fsid = fs_uuid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7285 | |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 7286 | if (memcmp(fs_uuid, fs_devices->metadata_uuid, BTRFS_FSID_SIZE)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7287 | fs_devices = open_seed_devices(fs_info, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7288 | if (IS_ERR(fs_devices)) |
| 7289 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7290 | } |
| 7291 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7292 | device = btrfs_find_device(fs_info->fs_devices, &args); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7293 | if (!device) { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7294 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7295 | btrfs_report_missing_device(fs_info, devid, |
| 7296 | dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 7297 | return -ENOENT; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7298 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7299 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7300 | device = add_missing_dev(fs_devices, devid, dev_uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 7301 | if (IS_ERR(device)) { |
| 7302 | btrfs_err(fs_info, |
| 7303 | "failed to add missing dev %llu: %ld", |
| 7304 | devid, PTR_ERR(device)); |
| 7305 | return PTR_ERR(device); |
| 7306 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7307 | btrfs_report_missing_device(fs_info, devid, dev_uuid, false); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7308 | } else { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7309 | if (!device->bdev) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7310 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
| 7311 | btrfs_report_missing_device(fs_info, |
| 7312 | devid, dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 7313 | return -ENOENT; |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7314 | } |
| 7315 | btrfs_report_missing_device(fs_info, devid, |
| 7316 | dev_uuid, false); |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7317 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7318 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7319 | if (!device->bdev && |
| 7320 | !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 7321 | /* |
| 7322 | * this happens when a device that was properly setup |
| 7323 | * in the device info lists suddenly goes bad. |
| 7324 | * device->bdev is NULL, and so we have to set |
| 7325 | * device->missing to one here |
| 7326 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7327 | device->fs_devices->missing_devices++; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7328 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7329 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7330 | |
| 7331 | /* Move the device to its own fs_devices */ |
| 7332 | if (device->fs_devices != fs_devices) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7333 | ASSERT(test_bit(BTRFS_DEV_STATE_MISSING, |
| 7334 | &device->dev_state)); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7335 | |
| 7336 | list_move(&device->dev_list, &fs_devices->devices); |
| 7337 | device->fs_devices->num_devices--; |
| 7338 | fs_devices->num_devices++; |
| 7339 | |
| 7340 | device->fs_devices->missing_devices--; |
| 7341 | fs_devices->missing_devices++; |
| 7342 | |
| 7343 | device->fs_devices = fs_devices; |
| 7344 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7345 | } |
| 7346 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7347 | if (device->fs_devices != fs_info->fs_devices) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 7348 | BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7349 | if (device->generation != |
| 7350 | btrfs_device_generation(leaf, dev_item)) |
| 7351 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 7352 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7353 | |
| 7354 | fill_device_from_item(leaf, dev_item, device); |
Anand Jain | 3a160a9 | 2020-11-03 13:49:42 +0800 | [diff] [blame] | 7355 | if (device->bdev) { |
Christoph Hellwig | cda00eb | 2021-10-18 12:11:12 +0200 | [diff] [blame] | 7356 | u64 max_total_bytes = bdev_nr_bytes(device->bdev); |
Anand Jain | 3a160a9 | 2020-11-03 13:49:42 +0800 | [diff] [blame] | 7357 | |
| 7358 | if (device->total_bytes > max_total_bytes) { |
| 7359 | btrfs_err(fs_info, |
| 7360 | "device total_bytes should be at most %llu but found %llu", |
| 7361 | max_total_bytes, device->total_bytes); |
| 7362 | return -EINVAL; |
| 7363 | } |
| 7364 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 7365 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 7366 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 7367 | !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7368 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 7369 | atomic64_add(device->total_bytes - device->bytes_used, |
| 7370 | &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 7371 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7372 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7373 | return ret; |
| 7374 | } |
| 7375 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7376 | int btrfs_read_sys_array(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7377 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7378 | struct btrfs_root *root = fs_info->tree_root; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7379 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7380 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7381 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7382 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7383 | u8 *array_ptr; |
| 7384 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7385 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7386 | u32 num_stripes; |
| 7387 | u32 array_size; |
| 7388 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7389 | u32 cur_offset; |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 7390 | u64 type; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7391 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7392 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7393 | ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize); |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 7394 | /* |
| 7395 | * This will create extent buffer of nodesize, superblock size is |
| 7396 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 7397 | * overallocate but we can keep it as-is, only the first page is used. |
| 7398 | */ |
Josef Bacik | 3fbaf25 | 2020-11-05 10:45:20 -0500 | [diff] [blame] | 7399 | sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET, |
| 7400 | root->root_key.objectid, 0); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 7401 | if (IS_ERR(sb)) |
| 7402 | return PTR_ERR(sb); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 7403 | set_extent_buffer_uptodate(sb); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 7404 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 7405 | * The sb extent buffer is artificial and just used to read the system array. |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 7406 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 7407 | * pages up-to-date when the page is larger: extent does not cover the |
| 7408 | * whole page and consequently check_page_uptodate does not find all |
| 7409 | * the page's extents up-to-date (the hole beyond sb), |
| 7410 | * write_extent_buffer then triggers a WARN_ON. |
| 7411 | * |
| 7412 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 7413 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 7414 | * to silence the warning eg. on PowerPC 64. |
| 7415 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 7416 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 7417 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 7418 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7419 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7420 | array_size = btrfs_super_sys_array_size(super_copy); |
| 7421 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7422 | array_ptr = super_copy->sys_chunk_array; |
| 7423 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 7424 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7425 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7426 | while (cur_offset < array_size) { |
| 7427 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 7428 | len = sizeof(*disk_key); |
| 7429 | if (cur_offset + len > array_size) |
| 7430 | goto out_short_read; |
| 7431 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7432 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 7433 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7434 | array_ptr += len; |
| 7435 | sb_array_offset += len; |
| 7436 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7437 | |
Johannes Thumshirn | 32ab3d1 | 2019-10-18 11:58:23 +0200 | [diff] [blame] | 7438 | if (key.type != BTRFS_CHUNK_ITEM_KEY) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7439 | btrfs_err(fs_info, |
| 7440 | "unexpected item type %u in sys_array at offset %u", |
| 7441 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7442 | ret = -EIO; |
| 7443 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7444 | } |
Johannes Thumshirn | 32ab3d1 | 2019-10-18 11:58:23 +0200 | [diff] [blame] | 7445 | |
| 7446 | chunk = (struct btrfs_chunk *)sb_array_offset; |
| 7447 | /* |
| 7448 | * At least one btrfs_chunk with one stripe must be present, |
| 7449 | * exact stripe count check comes afterwards |
| 7450 | */ |
| 7451 | len = btrfs_chunk_item_size(1); |
| 7452 | if (cur_offset + len > array_size) |
| 7453 | goto out_short_read; |
| 7454 | |
| 7455 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
| 7456 | if (!num_stripes) { |
| 7457 | btrfs_err(fs_info, |
| 7458 | "invalid number of stripes %u in sys_array at offset %u", |
| 7459 | num_stripes, cur_offset); |
| 7460 | ret = -EIO; |
| 7461 | break; |
| 7462 | } |
| 7463 | |
| 7464 | type = btrfs_chunk_type(sb, chunk); |
| 7465 | if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) { |
| 7466 | btrfs_err(fs_info, |
| 7467 | "invalid chunk type %llu in sys_array at offset %u", |
| 7468 | type, cur_offset); |
| 7469 | ret = -EIO; |
| 7470 | break; |
| 7471 | } |
| 7472 | |
| 7473 | len = btrfs_chunk_item_size(num_stripes); |
| 7474 | if (cur_offset + len > array_size) |
| 7475 | goto out_short_read; |
| 7476 | |
| 7477 | ret = read_one_chunk(&key, sb, chunk); |
| 7478 | if (ret) |
| 7479 | break; |
| 7480 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7481 | array_ptr += len; |
| 7482 | sb_array_offset += len; |
| 7483 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7484 | } |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 7485 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 7486 | free_extent_buffer_stale(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7487 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 7488 | |
| 7489 | out_short_read: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7490 | btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u", |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 7491 | len, cur_offset); |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 7492 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 7493 | free_extent_buffer_stale(sb); |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 7494 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7495 | } |
| 7496 | |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7497 | /* |
| 7498 | * Check if all chunks in the fs are OK for read-write degraded mount |
| 7499 | * |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7500 | * If the @failing_dev is specified, it's accounted as missing. |
| 7501 | * |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7502 | * Return true if all chunks meet the minimal RW mount requirements. |
| 7503 | * Return false if any chunk doesn't meet the minimal RW mount requirements. |
| 7504 | */ |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7505 | bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info, |
| 7506 | struct btrfs_device *failing_dev) |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7507 | { |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7508 | struct extent_map_tree *map_tree = &fs_info->mapping_tree; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7509 | struct extent_map *em; |
| 7510 | u64 next_start = 0; |
| 7511 | bool ret = true; |
| 7512 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7513 | read_lock(&map_tree->lock); |
| 7514 | em = lookup_extent_mapping(map_tree, 0, (u64)-1); |
| 7515 | read_unlock(&map_tree->lock); |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7516 | /* No chunk at all? Return false anyway */ |
| 7517 | if (!em) { |
| 7518 | ret = false; |
| 7519 | goto out; |
| 7520 | } |
| 7521 | while (em) { |
| 7522 | struct map_lookup *map; |
| 7523 | int missing = 0; |
| 7524 | int max_tolerated; |
| 7525 | int i; |
| 7526 | |
| 7527 | map = em->map_lookup; |
| 7528 | max_tolerated = |
| 7529 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 7530 | map->type); |
| 7531 | for (i = 0; i < map->num_stripes; i++) { |
| 7532 | struct btrfs_device *dev = map->stripes[i].dev; |
| 7533 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7534 | if (!dev || !dev->bdev || |
| 7535 | test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) || |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7536 | dev->last_flush_error) |
| 7537 | missing++; |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7538 | else if (failing_dev && failing_dev == dev) |
| 7539 | missing++; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7540 | } |
| 7541 | if (missing > max_tolerated) { |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7542 | if (!failing_dev) |
| 7543 | btrfs_warn(fs_info, |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 7544 | "chunk %llu missing %d devices, max tolerance is %d for writable mount", |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7545 | em->start, missing, max_tolerated); |
| 7546 | free_extent_map(em); |
| 7547 | ret = false; |
| 7548 | goto out; |
| 7549 | } |
| 7550 | next_start = extent_map_end(em); |
| 7551 | free_extent_map(em); |
| 7552 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7553 | read_lock(&map_tree->lock); |
| 7554 | em = lookup_extent_mapping(map_tree, next_start, |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7555 | (u64)(-1) - next_start); |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7556 | read_unlock(&map_tree->lock); |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7557 | } |
| 7558 | out: |
| 7559 | return ret; |
| 7560 | } |
| 7561 | |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7562 | static void readahead_tree_node_children(struct extent_buffer *node) |
| 7563 | { |
| 7564 | int i; |
| 7565 | const int nr_items = btrfs_header_nritems(node); |
| 7566 | |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 7567 | for (i = 0; i < nr_items; i++) |
| 7568 | btrfs_readahead_node_child(node, i); |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7569 | } |
| 7570 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7571 | int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7572 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7573 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7574 | struct btrfs_path *path; |
| 7575 | struct extent_buffer *leaf; |
| 7576 | struct btrfs_key key; |
| 7577 | struct btrfs_key found_key; |
| 7578 | int ret; |
| 7579 | int slot; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7580 | u64 total_dev = 0; |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7581 | u64 last_ra_node = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7582 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7583 | path = btrfs_alloc_path(); |
| 7584 | if (!path) |
| 7585 | return -ENOMEM; |
| 7586 | |
Anand Jain | 3dd0f7a | 2018-04-12 10:29:32 +0800 | [diff] [blame] | 7587 | /* |
| 7588 | * uuid_mutex is needed only if we are mounting a sprout FS |
| 7589 | * otherwise we don't need it. |
| 7590 | */ |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7591 | mutex_lock(&uuid_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7592 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7593 | /* |
Boris Burkov | 48cfa61 | 2020-07-16 13:29:46 -0700 | [diff] [blame] | 7594 | * It is possible for mount and umount to race in such a way that |
| 7595 | * we execute this code path, but open_fs_devices failed to clear |
| 7596 | * total_rw_bytes. We certainly want it cleared before reading the |
| 7597 | * device items, so clear it here. |
| 7598 | */ |
| 7599 | fs_info->fs_devices->total_rw_bytes = 0; |
| 7600 | |
| 7601 | /* |
Filipe Manana | 4d9380e | 2021-11-04 12:43:08 +0000 | [diff] [blame] | 7602 | * Lockdep complains about possible circular locking dependency between |
| 7603 | * a disk's open_mutex (struct gendisk.open_mutex), the rw semaphores |
| 7604 | * used for freeze procection of a fs (struct super_block.s_writers), |
| 7605 | * which we take when starting a transaction, and extent buffers of the |
| 7606 | * chunk tree if we call read_one_dev() while holding a lock on an |
| 7607 | * extent buffer of the chunk tree. Since we are mounting the filesystem |
| 7608 | * and at this point there can't be any concurrent task modifying the |
| 7609 | * chunk tree, to keep it simple, just skip locking on the chunk tree. |
| 7610 | */ |
| 7611 | ASSERT(!test_bit(BTRFS_FS_OPEN, &fs_info->flags)); |
| 7612 | path->skip_locking = 1; |
| 7613 | |
| 7614 | /* |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7615 | * Read all device items, and then all the chunk items. All |
| 7616 | * device items are found before any chunk item (their object id |
| 7617 | * is smaller than the lowest possible object id for a chunk |
| 7618 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7619 | */ |
| 7620 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 7621 | key.offset = 0; |
| 7622 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7623 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 7624 | if (ret < 0) |
| 7625 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7626 | while (1) { |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7627 | struct extent_buffer *node; |
| 7628 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7629 | leaf = path->nodes[0]; |
| 7630 | slot = path->slots[0]; |
| 7631 | if (slot >= btrfs_header_nritems(leaf)) { |
| 7632 | ret = btrfs_next_leaf(root, path); |
| 7633 | if (ret == 0) |
| 7634 | continue; |
| 7635 | if (ret < 0) |
| 7636 | goto error; |
| 7637 | break; |
| 7638 | } |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7639 | node = path->nodes[1]; |
| 7640 | if (node) { |
| 7641 | if (last_ra_node != node->start) { |
| 7642 | readahead_tree_node_children(node); |
| 7643 | last_ra_node = node->start; |
| 7644 | } |
| 7645 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7646 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7647 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 7648 | struct btrfs_dev_item *dev_item; |
| 7649 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7650 | struct btrfs_dev_item); |
David Sterba | 1785075 | 2019-03-20 16:45:15 +0100 | [diff] [blame] | 7651 | ret = read_one_dev(leaf, dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7652 | if (ret) |
| 7653 | goto error; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7654 | total_dev++; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7655 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 7656 | struct btrfs_chunk *chunk; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 7657 | |
| 7658 | /* |
| 7659 | * We are only called at mount time, so no need to take |
| 7660 | * fs_info->chunk_mutex. Plus, to avoid lockdep warnings, |
| 7661 | * we always lock first fs_info->chunk_mutex before |
| 7662 | * acquiring any locks on the chunk tree. This is a |
| 7663 | * requirement for chunk allocation, see the comment on |
| 7664 | * top of btrfs_chunk_alloc() for details. |
| 7665 | */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7666 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 9690ac0 | 2019-03-20 16:43:07 +0100 | [diff] [blame] | 7667 | ret = read_one_chunk(&found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7668 | if (ret) |
| 7669 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7670 | } |
| 7671 | path->slots[0]++; |
| 7672 | } |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7673 | |
| 7674 | /* |
| 7675 | * After loading chunk tree, we've got all device information, |
| 7676 | * do another round of validation checks. |
| 7677 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7678 | if (total_dev != fs_info->fs_devices->total_devices) { |
| 7679 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7680 | "super_num_devices %llu mismatch with num_devices %llu found here", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7681 | btrfs_super_num_devices(fs_info->super_copy), |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7682 | total_dev); |
| 7683 | ret = -EINVAL; |
| 7684 | goto error; |
| 7685 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7686 | if (btrfs_super_total_bytes(fs_info->super_copy) < |
| 7687 | fs_info->fs_devices->total_rw_bytes) { |
| 7688 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7689 | "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7690 | btrfs_super_total_bytes(fs_info->super_copy), |
| 7691 | fs_info->fs_devices->total_rw_bytes); |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7692 | ret = -EINVAL; |
| 7693 | goto error; |
| 7694 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7695 | ret = 0; |
| 7696 | error: |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7697 | mutex_unlock(&uuid_mutex); |
| 7698 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7699 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7700 | return ret; |
| 7701 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7702 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7703 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 7704 | { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7705 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs; |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7706 | struct btrfs_device *device; |
| 7707 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7708 | fs_devices->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7709 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7710 | mutex_lock(&fs_devices->device_list_mutex); |
| 7711 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
| 7712 | device->fs_info = fs_info; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7713 | |
| 7714 | list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7715 | list_for_each_entry(device, &seed_devs->devices, dev_list) |
| 7716 | device->fs_info = fs_info; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7717 | |
| 7718 | seed_devs->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7719 | } |
Anand Jain | e17125b | 2020-09-05 01:34:31 +0800 | [diff] [blame] | 7720 | mutex_unlock(&fs_devices->device_list_mutex); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7721 | } |
| 7722 | |
David Sterba | 1dc990d | 2019-08-21 20:05:32 +0200 | [diff] [blame] | 7723 | static u64 btrfs_dev_stats_value(const struct extent_buffer *eb, |
| 7724 | const struct btrfs_dev_stats_item *ptr, |
| 7725 | int index) |
| 7726 | { |
| 7727 | u64 val; |
| 7728 | |
| 7729 | read_extent_buffer(eb, &val, |
| 7730 | offsetof(struct btrfs_dev_stats_item, values) + |
| 7731 | ((unsigned long)ptr) + (index * sizeof(u64)), |
| 7732 | sizeof(val)); |
| 7733 | return val; |
| 7734 | } |
| 7735 | |
| 7736 | static void btrfs_set_dev_stats_value(struct extent_buffer *eb, |
| 7737 | struct btrfs_dev_stats_item *ptr, |
| 7738 | int index, u64 val) |
| 7739 | { |
| 7740 | write_extent_buffer(eb, &val, |
| 7741 | offsetof(struct btrfs_dev_stats_item, values) + |
| 7742 | ((unsigned long)ptr) + (index * sizeof(u64)), |
| 7743 | sizeof(val)); |
| 7744 | } |
| 7745 | |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7746 | static int btrfs_device_init_dev_stats(struct btrfs_device *device, |
| 7747 | struct btrfs_path *path) |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7748 | { |
| 7749 | struct btrfs_dev_stats_item *ptr; |
| 7750 | struct extent_buffer *eb; |
| 7751 | struct btrfs_key key; |
| 7752 | int item_size; |
| 7753 | int i, ret, slot; |
| 7754 | |
Josef Bacik | 82d62d0 | 2021-03-11 11:23:15 -0500 | [diff] [blame] | 7755 | if (!device->fs_info->dev_root) |
| 7756 | return 0; |
| 7757 | |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7758 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7759 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
| 7760 | key.offset = device->devid; |
| 7761 | ret = btrfs_search_slot(NULL, device->fs_info->dev_root, &key, path, 0, 0); |
| 7762 | if (ret) { |
| 7763 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7764 | btrfs_dev_stat_set(device, i, 0); |
| 7765 | device->dev_stats_valid = 1; |
| 7766 | btrfs_release_path(path); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7767 | return ret < 0 ? ret : 0; |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7768 | } |
| 7769 | slot = path->slots[0]; |
| 7770 | eb = path->nodes[0]; |
Josef Bacik | 3212fa1 | 2021-10-21 14:58:35 -0400 | [diff] [blame] | 7771 | item_size = btrfs_item_size(eb, slot); |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7772 | |
| 7773 | ptr = btrfs_item_ptr(eb, slot, struct btrfs_dev_stats_item); |
| 7774 | |
| 7775 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7776 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 7777 | btrfs_dev_stat_set(device, i, |
| 7778 | btrfs_dev_stats_value(eb, ptr, i)); |
| 7779 | else |
| 7780 | btrfs_dev_stat_set(device, i, 0); |
| 7781 | } |
| 7782 | |
| 7783 | device->dev_stats_valid = 1; |
| 7784 | btrfs_dev_stat_print_on_load(device); |
| 7785 | btrfs_release_path(path); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7786 | |
| 7787 | return 0; |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7788 | } |
| 7789 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7790 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 7791 | { |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7792 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7793 | struct btrfs_device *device; |
| 7794 | struct btrfs_path *path = NULL; |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7795 | int ret = 0; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7796 | |
| 7797 | path = btrfs_alloc_path(); |
Anand Jain | 3b80a984 | 2019-08-21 17:26:32 +0800 | [diff] [blame] | 7798 | if (!path) |
| 7799 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7800 | |
| 7801 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7802 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 7803 | ret = btrfs_device_init_dev_stats(device, path); |
| 7804 | if (ret) |
| 7805 | goto out; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7806 | } |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7807 | list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) { |
| 7808 | list_for_each_entry(device, &seed_devs->devices, dev_list) { |
| 7809 | ret = btrfs_device_init_dev_stats(device, path); |
| 7810 | if (ret) |
| 7811 | goto out; |
| 7812 | } |
| 7813 | } |
| 7814 | out: |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7815 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7816 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7817 | btrfs_free_path(path); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7818 | return ret; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7819 | } |
| 7820 | |
| 7821 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7822 | struct btrfs_device *device) |
| 7823 | { |
Nikolay Borisov | 5495f19 | 2018-07-20 19:37:49 +0300 | [diff] [blame] | 7824 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7825 | struct btrfs_root *dev_root = fs_info->dev_root; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7826 | struct btrfs_path *path; |
| 7827 | struct btrfs_key key; |
| 7828 | struct extent_buffer *eb; |
| 7829 | struct btrfs_dev_stats_item *ptr; |
| 7830 | int ret; |
| 7831 | int i; |
| 7832 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7833 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7834 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7835 | key.offset = device->devid; |
| 7836 | |
| 7837 | path = btrfs_alloc_path(); |
David Sterba | fa25299 | 2017-02-15 09:35:01 +0100 | [diff] [blame] | 7838 | if (!path) |
| 7839 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7840 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 7841 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7842 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7843 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7844 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7845 | goto out; |
| 7846 | } |
| 7847 | |
| 7848 | if (ret == 0 && |
Josef Bacik | 3212fa1 | 2021-10-21 14:58:35 -0400 | [diff] [blame] | 7849 | btrfs_item_size(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7850 | /* need to delete old one and insert a new one */ |
| 7851 | ret = btrfs_del_item(trans, dev_root, path); |
| 7852 | if (ret != 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7853 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7854 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7855 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7856 | goto out; |
| 7857 | } |
| 7858 | ret = 1; |
| 7859 | } |
| 7860 | |
| 7861 | if (ret == 1) { |
| 7862 | /* need to insert a new item */ |
| 7863 | btrfs_release_path(path); |
| 7864 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 7865 | &key, sizeof(*ptr)); |
| 7866 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7867 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7868 | "insert dev_stats item for device %s failed %d", |
| 7869 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7870 | goto out; |
| 7871 | } |
| 7872 | } |
| 7873 | |
| 7874 | eb = path->nodes[0]; |
| 7875 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 7876 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7877 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 7878 | btrfs_dev_stat_read(device, i)); |
| 7879 | btrfs_mark_buffer_dirty(eb); |
| 7880 | |
| 7881 | out: |
| 7882 | btrfs_free_path(path); |
| 7883 | return ret; |
| 7884 | } |
| 7885 | |
| 7886 | /* |
| 7887 | * called from commit_transaction. Writes all changed device stats to disk. |
| 7888 | */ |
David Sterba | 196c9d8 | 2019-03-20 16:50:38 +0100 | [diff] [blame] | 7889 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7890 | { |
David Sterba | 196c9d8 | 2019-03-20 16:50:38 +0100 | [diff] [blame] | 7891 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7892 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7893 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7894 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7895 | int ret = 0; |
| 7896 | |
| 7897 | mutex_lock(&fs_devices->device_list_mutex); |
| 7898 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7899 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
| 7900 | if (!device->dev_stats_valid || stats_cnt == 0) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7901 | continue; |
| 7902 | |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7903 | |
| 7904 | /* |
| 7905 | * There is a LOAD-LOAD control dependency between the value of |
| 7906 | * dev_stats_ccnt and updating the on-disk values which requires |
| 7907 | * reading the in-memory counters. Such control dependencies |
| 7908 | * require explicit read memory barriers. |
| 7909 | * |
| 7910 | * This memory barriers pairs with smp_mb__before_atomic in |
| 7911 | * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full |
| 7912 | * barrier implied by atomic_xchg in |
| 7913 | * btrfs_dev_stats_read_and_reset |
| 7914 | */ |
| 7915 | smp_rmb(); |
| 7916 | |
Nikolay Borisov | 5495f19 | 2018-07-20 19:37:49 +0300 | [diff] [blame] | 7917 | ret = update_dev_stat_item(trans, device); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7918 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7919 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7920 | } |
| 7921 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7922 | |
| 7923 | return ret; |
| 7924 | } |
| 7925 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7926 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 7927 | { |
| 7928 | btrfs_dev_stat_inc(dev, index); |
| 7929 | btrfs_dev_stat_print_on_error(dev); |
| 7930 | } |
| 7931 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7932 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7933 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7934 | if (!dev->dev_stats_valid) |
| 7935 | return; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7936 | btrfs_err_rl_in_rcu(dev->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 7937 | "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7938 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7939 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7940 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7941 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7942 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7943 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7944 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7945 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7946 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 7947 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 7948 | int i; |
| 7949 | |
| 7950 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7951 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 7952 | break; |
| 7953 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 7954 | return; /* all values == 0, suppress message */ |
| 7955 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7956 | btrfs_info_in_rcu(dev->fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7957 | "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7958 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7959 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7960 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7961 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 7962 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7963 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 7964 | } |
| 7965 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7966 | int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7967 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7968 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7969 | BTRFS_DEV_LOOKUP_ARGS(args); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7970 | struct btrfs_device *dev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7971 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7972 | int i; |
| 7973 | |
| 7974 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7975 | args.devid = stats->devid; |
| 7976 | dev = btrfs_find_device(fs_info->fs_devices, &args); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7977 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7978 | |
| 7979 | if (!dev) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7980 | btrfs_warn(fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7981 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7982 | } else if (!dev->dev_stats_valid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7983 | btrfs_warn(fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7984 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7985 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7986 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7987 | if (stats->nr_items > i) |
| 7988 | stats->values[i] = |
| 7989 | btrfs_dev_stat_read_and_reset(dev, i); |
| 7990 | else |
Anand Jain | 4e411a7 | 2019-08-07 16:21:19 +0800 | [diff] [blame] | 7991 | btrfs_dev_stat_set(dev, i, 0); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7992 | } |
Anand Jain | a69976b | 2020-01-10 12:26:34 +0800 | [diff] [blame] | 7993 | btrfs_info(fs_info, "device stats zeroed by %s (%d)", |
| 7994 | current->comm, task_pid_nr(current)); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7995 | } else { |
| 7996 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7997 | if (stats->nr_items > i) |
| 7998 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 7999 | } |
| 8000 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 8001 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 8002 | return 0; |
| 8003 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 8004 | |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 8005 | /* |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 8006 | * Update the size and bytes used for each device where it changed. This is |
| 8007 | * delayed since we would otherwise get errors while writing out the |
| 8008 | * superblocks. |
| 8009 | * |
| 8010 | * Must be invoked during transaction commit. |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 8011 | */ |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 8012 | void btrfs_commit_device_sizes(struct btrfs_transaction *trans) |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 8013 | { |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 8014 | struct btrfs_device *curr, *next; |
| 8015 | |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 8016 | ASSERT(trans->state == TRANS_STATE_COMMIT_DOING); |
| 8017 | |
| 8018 | if (list_empty(&trans->dev_update_list)) |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 8019 | return; |
| 8020 | |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 8021 | /* |
| 8022 | * We don't need the device_list_mutex here. This list is owned by the |
| 8023 | * transaction and the transaction must complete before the device is |
| 8024 | * released. |
| 8025 | */ |
| 8026 | mutex_lock(&trans->fs_info->chunk_mutex); |
| 8027 | list_for_each_entry_safe(curr, next, &trans->dev_update_list, |
| 8028 | post_commit_list) { |
| 8029 | list_del_init(&curr->post_commit_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 8030 | curr->commit_total_bytes = curr->disk_total_bytes; |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 8031 | curr->commit_bytes_used = curr->bytes_used; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 8032 | } |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 8033 | mutex_unlock(&trans->fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 8034 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 8035 | |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 8036 | /* |
| 8037 | * Multiplicity factor for simple profiles: DUP, RAID1-like and RAID10. |
| 8038 | */ |
| 8039 | int btrfs_bg_type_to_factor(u64 flags) |
| 8040 | { |
David Sterba | 44b28ad | 2019-05-17 11:43:31 +0200 | [diff] [blame] | 8041 | const int index = btrfs_bg_flags_to_raid_index(flags); |
| 8042 | |
| 8043 | return btrfs_raid_array[index].ncopies; |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 8044 | } |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8045 | |
| 8046 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8047 | |
| 8048 | static int verify_one_dev_extent(struct btrfs_fs_info *fs_info, |
| 8049 | u64 chunk_offset, u64 devid, |
| 8050 | u64 physical_offset, u64 physical_len) |
| 8051 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 8052 | struct btrfs_dev_lookup_args args = { .devid = devid }; |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 8053 | struct extent_map_tree *em_tree = &fs_info->mapping_tree; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8054 | struct extent_map *em; |
| 8055 | struct map_lookup *map; |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8056 | struct btrfs_device *dev; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8057 | u64 stripe_len; |
| 8058 | bool found = false; |
| 8059 | int ret = 0; |
| 8060 | int i; |
| 8061 | |
| 8062 | read_lock(&em_tree->lock); |
| 8063 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 8064 | read_unlock(&em_tree->lock); |
| 8065 | |
| 8066 | if (!em) { |
| 8067 | btrfs_err(fs_info, |
| 8068 | "dev extent physical offset %llu on devid %llu doesn't have corresponding chunk", |
| 8069 | physical_offset, devid); |
| 8070 | ret = -EUCLEAN; |
| 8071 | goto out; |
| 8072 | } |
| 8073 | |
| 8074 | map = em->map_lookup; |
| 8075 | stripe_len = calc_stripe_length(map->type, em->len, map->num_stripes); |
| 8076 | if (physical_len != stripe_len) { |
| 8077 | btrfs_err(fs_info, |
| 8078 | "dev extent physical offset %llu on devid %llu length doesn't match chunk %llu, have %llu expect %llu", |
| 8079 | physical_offset, devid, em->start, physical_len, |
| 8080 | stripe_len); |
| 8081 | ret = -EUCLEAN; |
| 8082 | goto out; |
| 8083 | } |
| 8084 | |
| 8085 | for (i = 0; i < map->num_stripes; i++) { |
| 8086 | if (map->stripes[i].dev->devid == devid && |
| 8087 | map->stripes[i].physical == physical_offset) { |
| 8088 | found = true; |
| 8089 | if (map->verified_stripes >= map->num_stripes) { |
| 8090 | btrfs_err(fs_info, |
| 8091 | "too many dev extents for chunk %llu found", |
| 8092 | em->start); |
| 8093 | ret = -EUCLEAN; |
| 8094 | goto out; |
| 8095 | } |
| 8096 | map->verified_stripes++; |
| 8097 | break; |
| 8098 | } |
| 8099 | } |
| 8100 | if (!found) { |
| 8101 | btrfs_err(fs_info, |
| 8102 | "dev extent physical offset %llu devid %llu has no corresponding chunk", |
| 8103 | physical_offset, devid); |
| 8104 | ret = -EUCLEAN; |
| 8105 | } |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8106 | |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 8107 | /* Make sure no dev extent is beyond device boundary */ |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 8108 | dev = btrfs_find_device(fs_info->fs_devices, &args); |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8109 | if (!dev) { |
| 8110 | btrfs_err(fs_info, "failed to find devid %llu", devid); |
| 8111 | ret = -EUCLEAN; |
| 8112 | goto out; |
| 8113 | } |
Qu Wenruo | 1b3922a | 2019-01-08 14:08:18 +0800 | [diff] [blame] | 8114 | |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8115 | if (physical_offset + physical_len > dev->disk_total_bytes) { |
| 8116 | btrfs_err(fs_info, |
| 8117 | "dev extent devid %llu physical offset %llu len %llu is beyond device boundary %llu", |
| 8118 | devid, physical_offset, physical_len, |
| 8119 | dev->disk_total_bytes); |
| 8120 | ret = -EUCLEAN; |
| 8121 | goto out; |
| 8122 | } |
Naohiro Aota | 381a696 | 2021-02-04 19:21:49 +0900 | [diff] [blame] | 8123 | |
| 8124 | if (dev->zone_info) { |
| 8125 | u64 zone_size = dev->zone_info->zone_size; |
| 8126 | |
| 8127 | if (!IS_ALIGNED(physical_offset, zone_size) || |
| 8128 | !IS_ALIGNED(physical_len, zone_size)) { |
| 8129 | btrfs_err(fs_info, |
| 8130 | "zoned: dev extent devid %llu physical offset %llu len %llu is not aligned to device zone", |
| 8131 | devid, physical_offset, physical_len); |
| 8132 | ret = -EUCLEAN; |
| 8133 | goto out; |
| 8134 | } |
| 8135 | } |
| 8136 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8137 | out: |
| 8138 | free_extent_map(em); |
| 8139 | return ret; |
| 8140 | } |
| 8141 | |
| 8142 | static int verify_chunk_dev_extent_mapping(struct btrfs_fs_info *fs_info) |
| 8143 | { |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 8144 | struct extent_map_tree *em_tree = &fs_info->mapping_tree; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8145 | struct extent_map *em; |
| 8146 | struct rb_node *node; |
| 8147 | int ret = 0; |
| 8148 | |
| 8149 | read_lock(&em_tree->lock); |
Liu Bo | 07e1ce0 | 2018-08-23 03:51:52 +0800 | [diff] [blame] | 8150 | for (node = rb_first_cached(&em_tree->map); node; node = rb_next(node)) { |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8151 | em = rb_entry(node, struct extent_map, rb_node); |
| 8152 | if (em->map_lookup->num_stripes != |
| 8153 | em->map_lookup->verified_stripes) { |
| 8154 | btrfs_err(fs_info, |
| 8155 | "chunk %llu has missing dev extent, have %d expect %d", |
| 8156 | em->start, em->map_lookup->verified_stripes, |
| 8157 | em->map_lookup->num_stripes); |
| 8158 | ret = -EUCLEAN; |
| 8159 | goto out; |
| 8160 | } |
| 8161 | } |
| 8162 | out: |
| 8163 | read_unlock(&em_tree->lock); |
| 8164 | return ret; |
| 8165 | } |
| 8166 | |
| 8167 | /* |
| 8168 | * Ensure that all dev extents are mapped to correct chunk, otherwise |
| 8169 | * later chunk allocation/free would cause unexpected behavior. |
| 8170 | * |
| 8171 | * NOTE: This will iterate through the whole device tree, which should be of |
| 8172 | * the same size level as the chunk tree. This slightly increases mount time. |
| 8173 | */ |
| 8174 | int btrfs_verify_dev_extents(struct btrfs_fs_info *fs_info) |
| 8175 | { |
| 8176 | struct btrfs_path *path; |
| 8177 | struct btrfs_root *root = fs_info->dev_root; |
| 8178 | struct btrfs_key key; |
Qu Wenruo | 5eb1938 | 2018-10-05 17:45:54 +0800 | [diff] [blame] | 8179 | u64 prev_devid = 0; |
| 8180 | u64 prev_dev_ext_end = 0; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8181 | int ret = 0; |
| 8182 | |
Josef Bacik | 42437a6 | 2020-10-16 11:29:18 -0400 | [diff] [blame] | 8183 | /* |
| 8184 | * We don't have a dev_root because we mounted with ignorebadroots and |
| 8185 | * failed to load the root, so we want to skip the verification in this |
| 8186 | * case for sure. |
| 8187 | * |
| 8188 | * However if the dev root is fine, but the tree itself is corrupted |
| 8189 | * we'd still fail to mount. This verification is only to make sure |
| 8190 | * writes can happen safely, so instead just bypass this check |
| 8191 | * completely in the case of IGNOREBADROOTS. |
| 8192 | */ |
| 8193 | if (btrfs_test_opt(fs_info, IGNOREBADROOTS)) |
| 8194 | return 0; |
| 8195 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8196 | key.objectid = 1; |
| 8197 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 8198 | key.offset = 0; |
| 8199 | |
| 8200 | path = btrfs_alloc_path(); |
| 8201 | if (!path) |
| 8202 | return -ENOMEM; |
| 8203 | |
| 8204 | path->reada = READA_FORWARD; |
| 8205 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 8206 | if (ret < 0) |
| 8207 | goto out; |
| 8208 | |
| 8209 | if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) { |
Marcos Paulo de Souza | ad9a937 | 2021-07-13 10:58:03 -0300 | [diff] [blame] | 8210 | ret = btrfs_next_leaf(root, path); |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8211 | if (ret < 0) |
| 8212 | goto out; |
| 8213 | /* No dev extents at all? Not good */ |
| 8214 | if (ret > 0) { |
| 8215 | ret = -EUCLEAN; |
| 8216 | goto out; |
| 8217 | } |
| 8218 | } |
| 8219 | while (1) { |
| 8220 | struct extent_buffer *leaf = path->nodes[0]; |
| 8221 | struct btrfs_dev_extent *dext; |
| 8222 | int slot = path->slots[0]; |
| 8223 | u64 chunk_offset; |
| 8224 | u64 physical_offset; |
| 8225 | u64 physical_len; |
| 8226 | u64 devid; |
| 8227 | |
| 8228 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 8229 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
| 8230 | break; |
| 8231 | devid = key.objectid; |
| 8232 | physical_offset = key.offset; |
| 8233 | |
| 8234 | dext = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent); |
| 8235 | chunk_offset = btrfs_dev_extent_chunk_offset(leaf, dext); |
| 8236 | physical_len = btrfs_dev_extent_length(leaf, dext); |
| 8237 | |
Qu Wenruo | 5eb1938 | 2018-10-05 17:45:54 +0800 | [diff] [blame] | 8238 | /* Check if this dev extent overlaps with the previous one */ |
| 8239 | if (devid == prev_devid && physical_offset < prev_dev_ext_end) { |
| 8240 | btrfs_err(fs_info, |
| 8241 | "dev extent devid %llu physical offset %llu overlap with previous dev extent end %llu", |
| 8242 | devid, physical_offset, prev_dev_ext_end); |
| 8243 | ret = -EUCLEAN; |
| 8244 | goto out; |
| 8245 | } |
| 8246 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8247 | ret = verify_one_dev_extent(fs_info, chunk_offset, devid, |
| 8248 | physical_offset, physical_len); |
| 8249 | if (ret < 0) |
| 8250 | goto out; |
Qu Wenruo | 5eb1938 | 2018-10-05 17:45:54 +0800 | [diff] [blame] | 8251 | prev_devid = devid; |
| 8252 | prev_dev_ext_end = physical_offset + physical_len; |
| 8253 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8254 | ret = btrfs_next_item(root, path); |
| 8255 | if (ret < 0) |
| 8256 | goto out; |
| 8257 | if (ret > 0) { |
| 8258 | ret = 0; |
| 8259 | break; |
| 8260 | } |
| 8261 | } |
| 8262 | |
| 8263 | /* Ensure all chunks have corresponding dev extents */ |
| 8264 | ret = verify_chunk_dev_extent_mapping(fs_info); |
| 8265 | out: |
| 8266 | btrfs_free_path(path); |
| 8267 | return ret; |
| 8268 | } |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 8269 | |
| 8270 | /* |
| 8271 | * Check whether the given block group or device is pinned by any inode being |
| 8272 | * used as a swapfile. |
| 8273 | */ |
| 8274 | bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr) |
| 8275 | { |
| 8276 | struct btrfs_swapfile_pin *sp; |
| 8277 | struct rb_node *node; |
| 8278 | |
| 8279 | spin_lock(&fs_info->swapfile_pins_lock); |
| 8280 | node = fs_info->swapfile_pins.rb_node; |
| 8281 | while (node) { |
| 8282 | sp = rb_entry(node, struct btrfs_swapfile_pin, node); |
| 8283 | if (ptr < sp->ptr) |
| 8284 | node = node->rb_left; |
| 8285 | else if (ptr > sp->ptr) |
| 8286 | node = node->rb_right; |
| 8287 | else |
| 8288 | break; |
| 8289 | } |
| 8290 | spin_unlock(&fs_info->swapfile_pins_lock); |
| 8291 | return node != NULL; |
| 8292 | } |
Naohiro Aota | f7ef528 | 2021-02-04 19:22:16 +0900 | [diff] [blame] | 8293 | |
| 8294 | static int relocating_repair_kthread(void *data) |
| 8295 | { |
| 8296 | struct btrfs_block_group *cache = (struct btrfs_block_group *)data; |
| 8297 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 8298 | u64 target; |
| 8299 | int ret = 0; |
| 8300 | |
| 8301 | target = cache->start; |
| 8302 | btrfs_put_block_group(cache); |
| 8303 | |
| 8304 | if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) { |
| 8305 | btrfs_info(fs_info, |
| 8306 | "zoned: skip relocating block group %llu to repair: EBUSY", |
| 8307 | target); |
| 8308 | return -EBUSY; |
| 8309 | } |
| 8310 | |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 8311 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Naohiro Aota | f7ef528 | 2021-02-04 19:22:16 +0900 | [diff] [blame] | 8312 | |
| 8313 | /* Ensure block group still exists */ |
| 8314 | cache = btrfs_lookup_block_group(fs_info, target); |
| 8315 | if (!cache) |
| 8316 | goto out; |
| 8317 | |
| 8318 | if (!cache->relocating_repair) |
| 8319 | goto out; |
| 8320 | |
| 8321 | ret = btrfs_may_alloc_data_chunk(fs_info, target); |
| 8322 | if (ret < 0) |
| 8323 | goto out; |
| 8324 | |
| 8325 | btrfs_info(fs_info, |
| 8326 | "zoned: relocating block group %llu to repair IO failure", |
| 8327 | target); |
| 8328 | ret = btrfs_relocate_chunk(fs_info, target); |
| 8329 | |
| 8330 | out: |
| 8331 | if (cache) |
| 8332 | btrfs_put_block_group(cache); |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 8333 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Naohiro Aota | f7ef528 | 2021-02-04 19:22:16 +0900 | [diff] [blame] | 8334 | btrfs_exclop_finish(fs_info); |
| 8335 | |
| 8336 | return ret; |
| 8337 | } |
| 8338 | |
| 8339 | int btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical) |
| 8340 | { |
| 8341 | struct btrfs_block_group *cache; |
| 8342 | |
| 8343 | /* Do not attempt to repair in degraded state */ |
| 8344 | if (btrfs_test_opt(fs_info, DEGRADED)) |
| 8345 | return 0; |
| 8346 | |
| 8347 | cache = btrfs_lookup_block_group(fs_info, logical); |
| 8348 | if (!cache) |
| 8349 | return 0; |
| 8350 | |
| 8351 | spin_lock(&cache->lock); |
| 8352 | if (cache->relocating_repair) { |
| 8353 | spin_unlock(&cache->lock); |
| 8354 | btrfs_put_block_group(cache); |
| 8355 | return 0; |
| 8356 | } |
| 8357 | cache->relocating_repair = 1; |
| 8358 | spin_unlock(&cache->lock); |
| 8359 | |
| 8360 | kthread_run(relocating_repair_kthread, cache, |
| 8361 | "btrfs-relocating-repair"); |
| 8362 | |
| 8363 | return 0; |
| 8364 | } |