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 | |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 37 | const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { |
| 38 | [BTRFS_RAID_RAID10] = { |
| 39 | .sub_stripes = 2, |
| 40 | .dev_stripes = 1, |
| 41 | .devs_max = 0, /* 0 == as many as possible */ |
David Sterba | b2f78e8 | 2021-07-22 20:54:37 +0200 | [diff] [blame] | 42 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 43 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 44 | .devs_increment = 2, |
| 45 | .ncopies = 2, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 46 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 47 | .raid_name = "raid10", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 48 | .bg_flag = BTRFS_BLOCK_GROUP_RAID10, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 49 | .mindev_error = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 50 | }, |
| 51 | [BTRFS_RAID_RAID1] = { |
| 52 | .sub_stripes = 1, |
| 53 | .dev_stripes = 1, |
| 54 | .devs_max = 2, |
| 55 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 56 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 57 | .devs_increment = 2, |
| 58 | .ncopies = 2, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 59 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 60 | .raid_name = "raid1", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 61 | .bg_flag = BTRFS_BLOCK_GROUP_RAID1, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 62 | .mindev_error = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 63 | }, |
David Sterba | 47e6f74 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 64 | [BTRFS_RAID_RAID1C3] = { |
| 65 | .sub_stripes = 1, |
| 66 | .dev_stripes = 1, |
David Sterba | cf93e15 | 2019-11-27 16:10:54 +0100 | [diff] [blame] | 67 | .devs_max = 3, |
David Sterba | 47e6f74 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 68 | .devs_min = 3, |
| 69 | .tolerated_failures = 2, |
| 70 | .devs_increment = 3, |
| 71 | .ncopies = 3, |
David Sterba | db26a02 | 2019-11-25 15:34:48 +0100 | [diff] [blame] | 72 | .nparity = 0, |
David Sterba | 47e6f74 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 73 | .raid_name = "raid1c3", |
| 74 | .bg_flag = BTRFS_BLOCK_GROUP_RAID1C3, |
| 75 | .mindev_error = BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET, |
| 76 | }, |
David Sterba | 8d6fac0 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 77 | [BTRFS_RAID_RAID1C4] = { |
| 78 | .sub_stripes = 1, |
| 79 | .dev_stripes = 1, |
David Sterba | cf93e15 | 2019-11-27 16:10:54 +0100 | [diff] [blame] | 80 | .devs_max = 4, |
David Sterba | 8d6fac0 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 81 | .devs_min = 4, |
| 82 | .tolerated_failures = 3, |
| 83 | .devs_increment = 4, |
| 84 | .ncopies = 4, |
David Sterba | db26a02 | 2019-11-25 15:34:48 +0100 | [diff] [blame] | 85 | .nparity = 0, |
David Sterba | 8d6fac0 | 2018-03-02 22:56:53 +0100 | [diff] [blame] | 86 | .raid_name = "raid1c4", |
| 87 | .bg_flag = BTRFS_BLOCK_GROUP_RAID1C4, |
| 88 | .mindev_error = BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET, |
| 89 | }, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 90 | [BTRFS_RAID_DUP] = { |
| 91 | .sub_stripes = 1, |
| 92 | .dev_stripes = 2, |
| 93 | .devs_max = 1, |
| 94 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 95 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 96 | .devs_increment = 1, |
| 97 | .ncopies = 2, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 98 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 99 | .raid_name = "dup", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 100 | .bg_flag = BTRFS_BLOCK_GROUP_DUP, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 101 | .mindev_error = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 102 | }, |
| 103 | [BTRFS_RAID_RAID0] = { |
| 104 | .sub_stripes = 1, |
| 105 | .dev_stripes = 1, |
| 106 | .devs_max = 0, |
David Sterba | b2f78e8 | 2021-07-22 20:54:37 +0200 | [diff] [blame] | 107 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 108 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 109 | .devs_increment = 1, |
| 110 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 111 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 112 | .raid_name = "raid0", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 113 | .bg_flag = BTRFS_BLOCK_GROUP_RAID0, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 114 | .mindev_error = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 115 | }, |
| 116 | [BTRFS_RAID_SINGLE] = { |
| 117 | .sub_stripes = 1, |
| 118 | .dev_stripes = 1, |
| 119 | .devs_max = 1, |
| 120 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 121 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 122 | .devs_increment = 1, |
| 123 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 124 | .nparity = 0, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 125 | .raid_name = "single", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 126 | .bg_flag = 0, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 127 | .mindev_error = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 128 | }, |
| 129 | [BTRFS_RAID_RAID5] = { |
| 130 | .sub_stripes = 1, |
| 131 | .dev_stripes = 1, |
| 132 | .devs_max = 0, |
| 133 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 134 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 135 | .devs_increment = 1, |
Hans van Kranenburg | da612e3 | 2018-10-04 23:24:41 +0200 | [diff] [blame] | 136 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 137 | .nparity = 1, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 138 | .raid_name = "raid5", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 139 | .bg_flag = BTRFS_BLOCK_GROUP_RAID5, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 140 | .mindev_error = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 141 | }, |
| 142 | [BTRFS_RAID_RAID6] = { |
| 143 | .sub_stripes = 1, |
| 144 | .dev_stripes = 1, |
| 145 | .devs_max = 0, |
| 146 | .devs_min = 3, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 147 | .tolerated_failures = 2, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 148 | .devs_increment = 1, |
Hans van Kranenburg | da612e3 | 2018-10-04 23:24:41 +0200 | [diff] [blame] | 149 | .ncopies = 1, |
Hans van Kranenburg | b50836e | 2018-10-04 23:24:42 +0200 | [diff] [blame] | 150 | .nparity = 2, |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 151 | .raid_name = "raid6", |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 152 | .bg_flag = BTRFS_BLOCK_GROUP_RAID6, |
Anand Jain | f9fbcaa | 2018-04-25 19:01:44 +0800 | [diff] [blame] | 153 | .mindev_error = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 154 | }, |
| 155 | }; |
| 156 | |
David Sterba | 500a44c | 2021-07-26 14:15:19 +0200 | [diff] [blame] | 157 | /* |
| 158 | * Convert block group flags (BTRFS_BLOCK_GROUP_*) to btrfs_raid_types, which |
| 159 | * can be used as index to access btrfs_raid_array[]. |
| 160 | */ |
| 161 | enum btrfs_raid_types __attribute_const__ btrfs_bg_flags_to_raid_index(u64 flags) |
| 162 | { |
| 163 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
| 164 | return BTRFS_RAID_RAID10; |
| 165 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
| 166 | return BTRFS_RAID_RAID1; |
| 167 | else if (flags & BTRFS_BLOCK_GROUP_RAID1C3) |
| 168 | return BTRFS_RAID_RAID1C3; |
| 169 | else if (flags & BTRFS_BLOCK_GROUP_RAID1C4) |
| 170 | return BTRFS_RAID_RAID1C4; |
| 171 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 172 | return BTRFS_RAID_DUP; |
| 173 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 174 | return BTRFS_RAID_RAID0; |
| 175 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
| 176 | return BTRFS_RAID_RAID5; |
| 177 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
| 178 | return BTRFS_RAID_RAID6; |
| 179 | |
| 180 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
| 181 | } |
| 182 | |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 183 | const char *btrfs_bg_type_to_raid_name(u64 flags) |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 184 | { |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 185 | const int index = btrfs_bg_flags_to_raid_index(flags); |
| 186 | |
| 187 | if (index >= BTRFS_NR_RAID_TYPES) |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 188 | return NULL; |
| 189 | |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 190 | return btrfs_raid_array[index].raid_name; |
Anand Jain | ed23467 | 2018-04-25 19:01:42 +0800 | [diff] [blame] | 191 | } |
| 192 | |
Anand Jain | f89e09c | 2018-11-20 16:12:55 +0800 | [diff] [blame] | 193 | /* |
| 194 | * Fill @buf with textual description of @bg_flags, no more than @size_buf |
| 195 | * bytes including terminating null byte. |
| 196 | */ |
| 197 | void btrfs_describe_block_groups(u64 bg_flags, char *buf, u32 size_buf) |
| 198 | { |
| 199 | int i; |
| 200 | int ret; |
| 201 | char *bp = buf; |
| 202 | u64 flags = bg_flags; |
| 203 | u32 size_bp = size_buf; |
| 204 | |
| 205 | if (!flags) { |
| 206 | strcpy(bp, "NONE"); |
| 207 | return; |
| 208 | } |
| 209 | |
| 210 | #define DESCRIBE_FLAG(flag, desc) \ |
| 211 | do { \ |
| 212 | if (flags & (flag)) { \ |
| 213 | ret = snprintf(bp, size_bp, "%s|", (desc)); \ |
| 214 | if (ret < 0 || ret >= size_bp) \ |
| 215 | goto out_overflow; \ |
| 216 | size_bp -= ret; \ |
| 217 | bp += ret; \ |
| 218 | flags &= ~(flag); \ |
| 219 | } \ |
| 220 | } while (0) |
| 221 | |
| 222 | DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_DATA, "data"); |
| 223 | DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_SYSTEM, "system"); |
| 224 | DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_METADATA, "metadata"); |
| 225 | |
| 226 | DESCRIBE_FLAG(BTRFS_AVAIL_ALLOC_BIT_SINGLE, "single"); |
| 227 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
| 228 | DESCRIBE_FLAG(btrfs_raid_array[i].bg_flag, |
| 229 | btrfs_raid_array[i].raid_name); |
| 230 | #undef DESCRIBE_FLAG |
| 231 | |
| 232 | if (flags) { |
| 233 | ret = snprintf(bp, size_bp, "0x%llx|", flags); |
| 234 | size_bp -= ret; |
| 235 | } |
| 236 | |
| 237 | if (size_bp < size_buf) |
| 238 | buf[size_buf - size_bp - 1] = '\0'; /* remove last | */ |
| 239 | |
| 240 | /* |
| 241 | * The text is trimmed, it's up to the caller to provide sufficiently |
| 242 | * large buffer |
| 243 | */ |
| 244 | out_overflow:; |
| 245 | } |
| 246 | |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 247 | static int init_first_rw_device(struct btrfs_trans_handle *trans); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 248 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 249 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 250 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *device); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 251 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 252 | enum btrfs_map_op op, |
| 253 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 254 | struct btrfs_io_context **bioc_ret, |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 255 | int mirror_num, int need_raid_map); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 256 | |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 257 | /* |
| 258 | * Device locking |
| 259 | * ============== |
| 260 | * |
| 261 | * There are several mutexes that protect manipulation of devices and low-level |
| 262 | * structures like chunks but not block groups, extents or files |
| 263 | * |
| 264 | * uuid_mutex (global lock) |
| 265 | * ------------------------ |
| 266 | * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from |
| 267 | * the SCAN_DEV ioctl registration or from mount either implicitly (the first |
| 268 | * device) or requested by the device= mount option |
| 269 | * |
| 270 | * the mutex can be very coarse and can cover long-running operations |
| 271 | * |
| 272 | * protects: updates to fs_devices counters like missing devices, rw devices, |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 273 | * seeding, structure cloning, opening/closing devices at mount/umount time |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 274 | * |
| 275 | * global::fs_devs - add, remove, updates to the global list |
| 276 | * |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 277 | * does not protect: manipulation of the fs_devices::devices list in general |
| 278 | * but in mount context it could be used to exclude list modifications by eg. |
| 279 | * scan ioctl |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 280 | * |
| 281 | * btrfs_device::name - renames (write side), read is RCU |
| 282 | * |
| 283 | * fs_devices::device_list_mutex (per-fs, with RCU) |
| 284 | * ------------------------------------------------ |
| 285 | * protects updates to fs_devices::devices, ie. adding and deleting |
| 286 | * |
| 287 | * simple list traversal with read-only actions can be done with RCU protection |
| 288 | * |
| 289 | * may be used to exclude some operations from running concurrently without any |
| 290 | * modifications to the list (see write_all_supers) |
| 291 | * |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 292 | * Is not required at mount and close times, because our device list is |
| 293 | * protected by the uuid_mutex at that point. |
| 294 | * |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 295 | * balance_mutex |
| 296 | * ------------- |
| 297 | * protects balance structures (status, state) and context accessed from |
| 298 | * several places (internally, ioctl) |
| 299 | * |
| 300 | * chunk_mutex |
| 301 | * ----------- |
| 302 | * protects chunks, adding or removing during allocation, trim or when a new |
Nikolay Borisov | 0b6f5d4 | 2019-05-09 18:11:11 +0300 | [diff] [blame] | 303 | * device is added/removed. Additionally it also protects post_commit_list of |
| 304 | * individual devices, since they can be added to the transaction's |
| 305 | * post_commit_list only with chunk_mutex held. |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 306 | * |
| 307 | * cleaner_mutex |
| 308 | * ------------- |
| 309 | * a big lock that is held by the cleaner thread and prevents running subvolume |
| 310 | * cleaning together with relocation or delayed iputs |
| 311 | * |
| 312 | * |
| 313 | * Lock nesting |
| 314 | * ============ |
| 315 | * |
| 316 | * uuid_mutex |
Anand Jain | ae3e715 | 2020-05-14 01:42:45 +0800 | [diff] [blame] | 317 | * device_list_mutex |
| 318 | * chunk_mutex |
| 319 | * balance_mutex |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 320 | * |
| 321 | * |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 322 | * Exclusive operations |
| 323 | * ==================== |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 324 | * |
| 325 | * Maintains the exclusivity of the following operations that apply to the |
| 326 | * whole filesystem and cannot run in parallel. |
| 327 | * |
| 328 | * - Balance (*) |
| 329 | * - Device add |
| 330 | * - Device remove |
| 331 | * - Device replace (*) |
| 332 | * - Resize |
| 333 | * |
| 334 | * The device operations (as above) can be in one of the following states: |
| 335 | * |
| 336 | * - Running state |
| 337 | * - Paused state |
| 338 | * - Completed state |
| 339 | * |
| 340 | * Only device operations marked with (*) can go into the Paused state for the |
| 341 | * following reasons: |
| 342 | * |
| 343 | * - ioctl (only Balance can be Paused through ioctl) |
| 344 | * - filesystem remounted as read-only |
| 345 | * - filesystem unmounted and mounted as read-only |
| 346 | * - system power-cycle and filesystem mounted as read-only |
| 347 | * - filesystem or device errors leading to forced read-only |
| 348 | * |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 349 | * The status of exclusive operation is set and cleared atomically. |
| 350 | * During the course of Paused state, fs_info::exclusive_operation remains set. |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 351 | * A device operation in Paused or Running state can be canceled or resumed |
| 352 | * either by ioctl (Balance only) or when remounted as read-write. |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 353 | * The exclusive status is cleared when the device operation is canceled or |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 354 | * completed. |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 355 | */ |
| 356 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 357 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 358 | static LIST_HEAD(fs_uuids); |
David Sterba | 4143cb8 | 2019-10-01 19:57:37 +0200 | [diff] [blame] | 359 | struct list_head * __attribute_const__ btrfs_get_fs_uuids(void) |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 360 | { |
| 361 | return &fs_uuids; |
| 362 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 363 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 364 | /* |
| 365 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 366 | * @fsid: if not NULL, copy the UUID to fs_devices::fsid |
| 367 | * @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] | 368 | * |
| 369 | * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR(). |
| 370 | * The returned struct is not linked onto any lists and can be destroyed with |
| 371 | * kfree() right away. |
| 372 | */ |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 373 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid, |
| 374 | const u8 *metadata_fsid) |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 375 | { |
| 376 | struct btrfs_fs_devices *fs_devs; |
| 377 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 378 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 379 | if (!fs_devs) |
| 380 | return ERR_PTR(-ENOMEM); |
| 381 | |
| 382 | mutex_init(&fs_devs->device_list_mutex); |
| 383 | |
| 384 | INIT_LIST_HEAD(&fs_devs->devices); |
| 385 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 386 | INIT_LIST_HEAD(&fs_devs->fs_list); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 387 | INIT_LIST_HEAD(&fs_devs->seed_list); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 388 | if (fsid) |
| 389 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 390 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 391 | if (metadata_fsid) |
| 392 | memcpy(fs_devs->metadata_uuid, metadata_fsid, BTRFS_FSID_SIZE); |
| 393 | else if (fsid) |
| 394 | memcpy(fs_devs->metadata_uuid, fsid, BTRFS_FSID_SIZE); |
| 395 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 396 | return fs_devs; |
| 397 | } |
| 398 | |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 399 | void btrfs_free_device(struct btrfs_device *device) |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 400 | { |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 401 | WARN_ON(!list_empty(&device->post_commit_list)); |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 402 | rcu_string_free(device->name); |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 403 | extent_io_tree_release(&device->alloc_state); |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 404 | bio_put(device->flush_bio); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 405 | btrfs_destroy_dev_zone_info(device); |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 406 | kfree(device); |
| 407 | } |
| 408 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 409 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 410 | { |
| 411 | struct btrfs_device *device; |
| 412 | WARN_ON(fs_devices->opened); |
| 413 | while (!list_empty(&fs_devices->devices)) { |
| 414 | device = list_entry(fs_devices->devices.next, |
| 415 | struct btrfs_device, dev_list); |
| 416 | list_del(&device->dev_list); |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 417 | btrfs_free_device(device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 418 | } |
| 419 | kfree(fs_devices); |
| 420 | } |
| 421 | |
David Sterba | ffc5a37 | 2018-02-19 17:24:15 +0100 | [diff] [blame] | 422 | void __exit btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 423 | { |
| 424 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 425 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 426 | while (!list_empty(&fs_uuids)) { |
| 427 | fs_devices = list_entry(fs_uuids.next, |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 428 | struct btrfs_fs_devices, fs_list); |
| 429 | list_del(&fs_devices->fs_list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 430 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 431 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 432 | } |
| 433 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 434 | static noinline struct btrfs_fs_devices *find_fsid( |
| 435 | const u8 *fsid, const u8 *metadata_fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 436 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 437 | struct btrfs_fs_devices *fs_devices; |
| 438 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 439 | ASSERT(fsid); |
| 440 | |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 441 | /* Handle non-split brain cases */ |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 442 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 443 | if (metadata_fsid) { |
| 444 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0 |
| 445 | && memcmp(metadata_fsid, fs_devices->metadata_uuid, |
| 446 | BTRFS_FSID_SIZE) == 0) |
| 447 | return fs_devices; |
| 448 | } else { |
| 449 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 450 | return fs_devices; |
| 451 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 452 | } |
| 453 | return NULL; |
| 454 | } |
| 455 | |
Su Yue | c6730a0 | 2020-01-10 14:11:33 +0200 | [diff] [blame] | 456 | static struct btrfs_fs_devices *find_fsid_with_metadata_uuid( |
| 457 | struct btrfs_super_block *disk_super) |
| 458 | { |
| 459 | |
| 460 | struct btrfs_fs_devices *fs_devices; |
| 461 | |
| 462 | /* |
| 463 | * Handle scanned device having completed its fsid change but |
| 464 | * belonging to a fs_devices that was created by first scanning |
| 465 | * a device which didn't have its fsid/metadata_uuid changed |
| 466 | * at all and the CHANGING_FSID_V2 flag set. |
| 467 | */ |
| 468 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 469 | if (fs_devices->fsid_change && |
| 470 | memcmp(disk_super->metadata_uuid, fs_devices->fsid, |
| 471 | BTRFS_FSID_SIZE) == 0 && |
| 472 | memcmp(fs_devices->fsid, fs_devices->metadata_uuid, |
| 473 | BTRFS_FSID_SIZE) == 0) { |
| 474 | return fs_devices; |
| 475 | } |
| 476 | } |
| 477 | /* |
| 478 | * Handle scanned device having completed its fsid change but |
| 479 | * belonging to a fs_devices that was created by a device that |
| 480 | * has an outdated pair of fsid/metadata_uuid and |
| 481 | * CHANGING_FSID_V2 flag set. |
| 482 | */ |
| 483 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 484 | if (fs_devices->fsid_change && |
| 485 | memcmp(fs_devices->metadata_uuid, |
| 486 | fs_devices->fsid, BTRFS_FSID_SIZE) != 0 && |
| 487 | memcmp(disk_super->metadata_uuid, fs_devices->metadata_uuid, |
| 488 | BTRFS_FSID_SIZE) == 0) { |
| 489 | return fs_devices; |
| 490 | } |
| 491 | } |
| 492 | |
| 493 | return find_fsid(disk_super->fsid, disk_super->metadata_uuid); |
| 494 | } |
| 495 | |
| 496 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 497 | static int |
| 498 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 499 | int flush, struct block_device **bdev, |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 500 | struct btrfs_super_block **disk_super) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 501 | { |
| 502 | int ret; |
| 503 | |
| 504 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 505 | |
| 506 | if (IS_ERR(*bdev)) { |
| 507 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 508 | goto error; |
| 509 | } |
| 510 | |
| 511 | if (flush) |
Christoph Hellwig | 1226dff | 2021-10-19 08:25:27 +0200 | [diff] [blame] | 512 | sync_blockdev(*bdev); |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 513 | ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 514 | if (ret) { |
| 515 | blkdev_put(*bdev, flags); |
| 516 | goto error; |
| 517 | } |
| 518 | invalidate_bdev(*bdev); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 519 | *disk_super = btrfs_read_dev_super(*bdev); |
| 520 | if (IS_ERR(*disk_super)) { |
| 521 | ret = PTR_ERR(*disk_super); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 522 | blkdev_put(*bdev, flags); |
| 523 | goto error; |
| 524 | } |
| 525 | |
| 526 | return 0; |
| 527 | |
| 528 | error: |
| 529 | *bdev = NULL; |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 530 | return ret; |
| 531 | } |
| 532 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 533 | static bool device_path_matched(const char *path, struct btrfs_device *device) |
| 534 | { |
| 535 | int found; |
| 536 | |
| 537 | rcu_read_lock(); |
| 538 | found = strcmp(rcu_str_deref(device->name), path); |
| 539 | rcu_read_unlock(); |
| 540 | |
| 541 | return found == 0; |
| 542 | } |
| 543 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 544 | /* |
| 545 | * Search and remove all stale (devices which are not mounted) devices. |
| 546 | * When both inputs are NULL, it will search and release all stale devices. |
| 547 | * path: Optional. When provided will it release all unmounted devices |
| 548 | * matching this path only. |
| 549 | * skip_dev: Optional. Will skip this device when searching for the stale |
| 550 | * devices. |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 551 | * Return: 0 for success or if @path is NULL. |
| 552 | * -EBUSY if @path is a mounted device. |
| 553 | * -ENOENT if @path does not match any device in the list. |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 554 | */ |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 555 | static int btrfs_free_stale_devices(const char *path, |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 556 | struct btrfs_device *skip_device) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 557 | { |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 558 | struct btrfs_fs_devices *fs_devices, *tmp_fs_devices; |
| 559 | struct btrfs_device *device, *tmp_device; |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 560 | int ret = 0; |
| 561 | |
Anand Jain | c124706 | 2021-08-31 09:21:28 +0800 | [diff] [blame] | 562 | lockdep_assert_held(&uuid_mutex); |
| 563 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 564 | if (path) |
| 565 | ret = -ENOENT; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 566 | |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 567 | 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] | 568 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 569 | mutex_lock(&fs_devices->device_list_mutex); |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 570 | list_for_each_entry_safe(device, tmp_device, |
| 571 | &fs_devices->devices, dev_list) { |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 572 | if (skip_device && skip_device == device) |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 573 | continue; |
Anand Jain | fa6d2ae | 2018-05-29 15:33:08 +0800 | [diff] [blame] | 574 | if (path && !device->name) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 575 | continue; |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 576 | if (path && !device_path_matched(path, device)) |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 577 | continue; |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 578 | if (fs_devices->opened) { |
| 579 | /* for an already deleted device return 0 */ |
| 580 | if (path && ret != 0) |
| 581 | ret = -EBUSY; |
| 582 | break; |
| 583 | } |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 584 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 585 | /* delete the stale device */ |
Anand Jain | 7bcb816 | 2018-05-29 17:23:20 +0800 | [diff] [blame] | 586 | fs_devices->num_devices--; |
| 587 | list_del(&device->dev_list); |
| 588 | btrfs_free_device(device); |
| 589 | |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 590 | ret = 0; |
Anand Jain | 7bcb816 | 2018-05-29 17:23:20 +0800 | [diff] [blame] | 591 | } |
| 592 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 593 | |
Anand Jain | 7bcb816 | 2018-05-29 17:23:20 +0800 | [diff] [blame] | 594 | if (fs_devices->num_devices == 0) { |
| 595 | btrfs_sysfs_remove_fsid(fs_devices); |
| 596 | list_del(&fs_devices->fs_list); |
| 597 | free_fs_devices(fs_devices); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 598 | } |
| 599 | } |
Anand Jain | 70bc708 | 2019-01-04 13:31:53 +0800 | [diff] [blame] | 600 | |
| 601 | return ret; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 602 | } |
| 603 | |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 604 | /* |
| 605 | * This is only used on mount, and we are protected from competing things |
| 606 | * messing with our fs_devices by the uuid_mutex, thus we do not need the |
| 607 | * fs_devices->device_list_mutex here. |
| 608 | */ |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 609 | static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices, |
| 610 | struct btrfs_device *device, fmode_t flags, |
| 611 | void *holder) |
| 612 | { |
| 613 | struct request_queue *q; |
| 614 | struct block_device *bdev; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 615 | struct btrfs_super_block *disk_super; |
| 616 | u64 devid; |
| 617 | int ret; |
| 618 | |
| 619 | if (device->bdev) |
| 620 | return -EINVAL; |
| 621 | if (!device->name) |
| 622 | return -EINVAL; |
| 623 | |
| 624 | ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 625 | &bdev, &disk_super); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 626 | if (ret) |
| 627 | return ret; |
| 628 | |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 629 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 630 | if (devid != device->devid) |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 631 | goto error_free_page; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 632 | |
| 633 | if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE)) |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 634 | goto error_free_page; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 635 | |
| 636 | device->generation = btrfs_super_generation(disk_super); |
| 637 | |
| 638 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 639 | if (btrfs_super_incompat_flags(disk_super) & |
| 640 | BTRFS_FEATURE_INCOMPAT_METADATA_UUID) { |
| 641 | pr_err( |
| 642 | "BTRFS: Invalid seeding and uuid-changed device detected\n"); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 643 | goto error_free_page; |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 644 | } |
| 645 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 646 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 647 | fs_devices->seeding = true; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 648 | } else { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 649 | if (bdev_read_only(bdev)) |
| 650 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
| 651 | else |
| 652 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | q = bdev_get_queue(bdev); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 656 | if (!blk_queue_nonrot(q)) |
Johannes Thumshirn | 7f0432d | 2019-11-13 11:27:28 +0100 | [diff] [blame] | 657 | fs_devices->rotating = true; |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 658 | |
| 659 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 660 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 661 | device->mode = flags; |
| 662 | |
| 663 | fs_devices->open_devices++; |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 664 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 665 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 666 | fs_devices->rw_devices++; |
Anand Jain | b1b8e38 | 2018-01-22 14:49:37 -0800 | [diff] [blame] | 667 | list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 668 | } |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 669 | btrfs_release_disk_super(disk_super); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 670 | |
| 671 | return 0; |
| 672 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 673 | error_free_page: |
| 674 | btrfs_release_disk_super(disk_super); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 675 | blkdev_put(bdev, flags); |
| 676 | |
| 677 | return -EINVAL; |
| 678 | } |
| 679 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 680 | /* |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 681 | * 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] | 682 | * being created with a disk that has already completed its fsid change. Such |
| 683 | * disk can belong to an fs which has its FSID changed or to one which doesn't. |
| 684 | * Handle both cases here. |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 685 | */ |
| 686 | static struct btrfs_fs_devices *find_fsid_inprogress( |
| 687 | struct btrfs_super_block *disk_super) |
| 688 | { |
| 689 | struct btrfs_fs_devices *fs_devices; |
| 690 | |
| 691 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 692 | if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid, |
| 693 | BTRFS_FSID_SIZE) != 0 && |
| 694 | memcmp(fs_devices->metadata_uuid, disk_super->fsid, |
| 695 | BTRFS_FSID_SIZE) == 0 && !fs_devices->fsid_change) { |
| 696 | return fs_devices; |
| 697 | } |
| 698 | } |
| 699 | |
Su Yue | c0d81c7 | 2020-01-10 14:11:32 +0200 | [diff] [blame] | 700 | return find_fsid(disk_super->fsid, NULL); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 701 | } |
| 702 | |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 703 | |
| 704 | static struct btrfs_fs_devices *find_fsid_changed( |
| 705 | struct btrfs_super_block *disk_super) |
| 706 | { |
| 707 | struct btrfs_fs_devices *fs_devices; |
| 708 | |
| 709 | /* |
| 710 | * 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] | 711 | * multiple successful changes of FSID but currently device didn't |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 712 | * observe it. Meaning our fsid will be different than theirs. We need |
| 713 | * to handle two subcases : |
| 714 | * 1 - The fs still continues to have different METADATA/FSID uuids. |
| 715 | * 2 - The fs is switched back to its original FSID (METADATA/FSID |
| 716 | * are equal). |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 717 | */ |
| 718 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 719 | /* Changed UUIDs */ |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 720 | if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid, |
| 721 | BTRFS_FSID_SIZE) != 0 && |
| 722 | memcmp(fs_devices->metadata_uuid, disk_super->metadata_uuid, |
| 723 | BTRFS_FSID_SIZE) == 0 && |
| 724 | memcmp(fs_devices->fsid, disk_super->fsid, |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 725 | BTRFS_FSID_SIZE) != 0) |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 726 | return fs_devices; |
Nikolay Borisov | 0584071 | 2020-01-10 14:11:34 +0200 | [diff] [blame] | 727 | |
| 728 | /* Unchanged UUIDs */ |
| 729 | if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid, |
| 730 | BTRFS_FSID_SIZE) == 0 && |
| 731 | memcmp(fs_devices->fsid, disk_super->metadata_uuid, |
| 732 | BTRFS_FSID_SIZE) == 0) |
| 733 | return fs_devices; |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | return NULL; |
| 737 | } |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 738 | |
| 739 | static struct btrfs_fs_devices *find_fsid_reverted_metadata( |
| 740 | struct btrfs_super_block *disk_super) |
| 741 | { |
| 742 | struct btrfs_fs_devices *fs_devices; |
| 743 | |
| 744 | /* |
| 745 | * Handle the case where the scanned device is part of an fs whose last |
| 746 | * metadata UUID change reverted it to the original FSID. At the same |
| 747 | * time * fs_devices was first created by another constitutent device |
| 748 | * which didn't fully observe the operation. This results in an |
| 749 | * btrfs_fs_devices created with metadata/fsid different AND |
| 750 | * btrfs_fs_devices::fsid_change set AND the metadata_uuid of the |
| 751 | * fs_devices equal to the FSID of the disk. |
| 752 | */ |
| 753 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
| 754 | if (memcmp(fs_devices->fsid, fs_devices->metadata_uuid, |
| 755 | BTRFS_FSID_SIZE) != 0 && |
| 756 | memcmp(fs_devices->metadata_uuid, disk_super->fsid, |
| 757 | BTRFS_FSID_SIZE) == 0 && |
| 758 | fs_devices->fsid_change) |
| 759 | return fs_devices; |
| 760 | } |
| 761 | |
| 762 | return NULL; |
| 763 | } |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 764 | /* |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 765 | * Add new device to list of registered devices |
| 766 | * |
| 767 | * Returns: |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 768 | * device pointer which was just added or updated when successful |
| 769 | * error pointer when failed |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 770 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 771 | static noinline struct btrfs_device *device_list_add(const char *path, |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 772 | struct btrfs_super_block *disk_super, |
| 773 | bool *new_device_added) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 774 | { |
| 775 | struct btrfs_device *device; |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 776 | struct btrfs_fs_devices *fs_devices = NULL; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 777 | struct rcu_string *name; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 778 | u64 found_transid = btrfs_super_generation(disk_super); |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 779 | u64 devid = btrfs_stack_device_id(&disk_super->dev_item); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 780 | bool has_metadata_uuid = (btrfs_super_incompat_flags(disk_super) & |
| 781 | BTRFS_FEATURE_INCOMPAT_METADATA_UUID); |
Nikolay Borisov | d1a6300 | 2018-10-30 16:43:26 +0200 | [diff] [blame] | 782 | bool fsid_change_in_progress = (btrfs_super_flags(disk_super) & |
| 783 | BTRFS_SUPER_FLAG_CHANGING_FSID_V2); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 784 | |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 785 | if (fsid_change_in_progress) { |
Su Yue | c0d81c7 | 2020-01-10 14:11:32 +0200 | [diff] [blame] | 786 | if (!has_metadata_uuid) |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 787 | fs_devices = find_fsid_inprogress(disk_super); |
Su Yue | c0d81c7 | 2020-01-10 14:11:32 +0200 | [diff] [blame] | 788 | else |
Nikolay Borisov | cc5de4e | 2018-10-30 16:43:28 +0200 | [diff] [blame] | 789 | fs_devices = find_fsid_changed(disk_super); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 790 | } else if (has_metadata_uuid) { |
Su Yue | c6730a0 | 2020-01-10 14:11:33 +0200 | [diff] [blame] | 791 | fs_devices = find_fsid_with_metadata_uuid(disk_super); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 792 | } else { |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 793 | fs_devices = find_fsid_reverted_metadata(disk_super); |
| 794 | if (!fs_devices) |
| 795 | fs_devices = find_fsid(disk_super->fsid, NULL); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 796 | } |
| 797 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 798 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 799 | if (!fs_devices) { |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 800 | if (has_metadata_uuid) |
| 801 | fs_devices = alloc_fs_devices(disk_super->fsid, |
| 802 | disk_super->metadata_uuid); |
| 803 | else |
| 804 | fs_devices = alloc_fs_devices(disk_super->fsid, NULL); |
| 805 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 806 | if (IS_ERR(fs_devices)) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 807 | return ERR_CAST(fs_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 808 | |
Al Viro | 92900e5 | 2019-01-27 04:58:00 +0000 | [diff] [blame] | 809 | fs_devices->fsid_change = fsid_change_in_progress; |
| 810 | |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 811 | mutex_lock(&fs_devices->device_list_mutex); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 812 | list_add(&fs_devices->fs_list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 813 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 814 | device = NULL; |
| 815 | } else { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 816 | struct btrfs_dev_lookup_args args = { |
| 817 | .devid = devid, |
| 818 | .uuid = disk_super->dev_item.uuid, |
| 819 | }; |
| 820 | |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 821 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 822 | device = btrfs_find_device(fs_devices, &args); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 823 | |
| 824 | /* |
| 825 | * If this disk has been pulled into an fs devices created by |
| 826 | * a device which had the CHANGING_FSID_V2 flag then replace the |
| 827 | * metadata_uuid/fsid values of the fs_devices. |
| 828 | */ |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 829 | if (fs_devices->fsid_change && |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 830 | found_transid > fs_devices->latest_generation) { |
| 831 | memcpy(fs_devices->fsid, disk_super->fsid, |
| 832 | BTRFS_FSID_SIZE); |
Nikolay Borisov | 1362089 | 2020-01-10 14:11:35 +0200 | [diff] [blame] | 833 | |
| 834 | if (has_metadata_uuid) |
| 835 | memcpy(fs_devices->metadata_uuid, |
| 836 | disk_super->metadata_uuid, |
| 837 | BTRFS_FSID_SIZE); |
| 838 | else |
| 839 | memcpy(fs_devices->metadata_uuid, |
| 840 | disk_super->fsid, BTRFS_FSID_SIZE); |
Nikolay Borisov | 7a62d0f | 2018-10-30 16:43:27 +0200 | [diff] [blame] | 841 | |
| 842 | fs_devices->fsid_change = false; |
| 843 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 844 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 845 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 846 | if (!device) { |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 847 | if (fs_devices->opened) { |
| 848 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 849 | return ERR_PTR(-EBUSY); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 850 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 851 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 852 | device = btrfs_alloc_device(NULL, &devid, |
| 853 | disk_super->dev_item.uuid); |
| 854 | if (IS_ERR(device)) { |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 855 | mutex_unlock(&fs_devices->device_list_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 856 | /* we can safely leave the fs_devices entry around */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 857 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 858 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 859 | |
| 860 | name = rcu_string_strdup(path, GFP_NOFS); |
| 861 | if (!name) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 862 | btrfs_free_device(device); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 863 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 864 | return ERR_PTR(-ENOMEM); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 865 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 866 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 867 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 868 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 869 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 870 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 871 | device->fs_devices = fs_devices; |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 872 | *new_device_added = true; |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 873 | |
| 874 | if (disk_super->label[0]) |
Anand Jain | aa6c0df | 2019-10-02 18:30:48 +0800 | [diff] [blame] | 875 | pr_info( |
| 876 | "BTRFS: device label %s devid %llu transid %llu %s scanned by %s (%d)\n", |
| 877 | disk_super->label, devid, found_transid, path, |
| 878 | current->comm, task_pid_nr(current)); |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 879 | else |
Anand Jain | aa6c0df | 2019-10-02 18:30:48 +0800 | [diff] [blame] | 880 | pr_info( |
| 881 | "BTRFS: device fsid %pU devid %llu transid %llu %s scanned by %s (%d)\n", |
| 882 | disk_super->fsid, devid, found_transid, path, |
| 883 | current->comm, task_pid_nr(current)); |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 884 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 885 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 886 | /* |
| 887 | * When FS is already mounted. |
| 888 | * 1. If you are here and if the device->name is NULL that |
| 889 | * means this device was missing at time of FS mount. |
| 890 | * 2. If you are here and if the device->name is different |
| 891 | * from 'path' that means either |
| 892 | * a. The same device disappeared and reappeared with |
| 893 | * different name. or |
| 894 | * b. The missing-disk-which-was-replaced, has |
| 895 | * reappeared now. |
| 896 | * |
| 897 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 898 | * and unintentional. |
| 899 | * |
| 900 | * Further in case of 1 and 2a above, the disk at 'path' |
| 901 | * would have missed some transaction when it was away and |
| 902 | * in case of 2a the stale bdev has to be updated as well. |
| 903 | * 2b must not be allowed at all time. |
| 904 | */ |
| 905 | |
| 906 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 907 | * For now, we do allow update to btrfs_fs_device through the |
| 908 | * btrfs dev scan cli after FS has been mounted. We're still |
| 909 | * tracking a problem where systems fail mount by subvolume id |
| 910 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 911 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 912 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 913 | /* |
| 914 | * That is if the FS is _not_ mounted and if you |
| 915 | * are here, that means there is more than one |
| 916 | * disk with same uuid and devid.We keep the one |
| 917 | * with larger generation number or the last-in if |
| 918 | * generation are equal. |
| 919 | */ |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 920 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 921 | return ERR_PTR(-EEXIST); |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 922 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 923 | |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 924 | /* |
| 925 | * We are going to replace the device path for a given devid, |
| 926 | * make sure it's the same device if the device is mounted |
| 927 | */ |
| 928 | if (device->bdev) { |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 929 | int error; |
| 930 | dev_t path_dev; |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 931 | |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 932 | error = lookup_bdev(path, &path_dev); |
| 933 | if (error) { |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 934 | mutex_unlock(&fs_devices->device_list_mutex); |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 935 | return ERR_PTR(error); |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 936 | } |
| 937 | |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 938 | if (device->bdev->bd_dev != path_dev) { |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 939 | mutex_unlock(&fs_devices->device_list_mutex); |
Johannes Thumshirn | 0697d9a | 2020-11-18 18:03:26 +0900 | [diff] [blame] | 940 | /* |
| 941 | * device->fs_info may not be reliable here, so |
| 942 | * pass in a NULL instead. This avoids a |
| 943 | * possible use-after-free when the fs_info and |
| 944 | * fs_info->sb are already torn down. |
| 945 | */ |
| 946 | btrfs_warn_in_rcu(NULL, |
Anand Jain | 79dae17 | 2020-09-03 21:30:12 +0800 | [diff] [blame] | 947 | "duplicate device %s devid %llu generation %llu scanned by %s (%d)", |
| 948 | path, devid, found_transid, |
| 949 | current->comm, |
| 950 | task_pid_nr(current)); |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 951 | return ERR_PTR(-EEXIST); |
| 952 | } |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 953 | btrfs_info_in_rcu(device->fs_info, |
Anand Jain | 79dae17 | 2020-09-03 21:30:12 +0800 | [diff] [blame] | 954 | "devid %llu device path %s changed to %s scanned by %s (%d)", |
| 955 | devid, rcu_str_deref(device->name), |
| 956 | path, current->comm, |
| 957 | task_pid_nr(current)); |
Anand Jain | a9261d4 | 2018-10-15 10:45:17 +0800 | [diff] [blame] | 958 | } |
| 959 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 960 | name = rcu_string_strdup(path, GFP_NOFS); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 961 | if (!name) { |
| 962 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 963 | return ERR_PTR(-ENOMEM); |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 964 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 965 | rcu_string_free(device->name); |
| 966 | rcu_assign_pointer(device->name, name); |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 967 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 968 | fs_devices->missing_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 969 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 970 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 971 | } |
| 972 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 973 | /* |
| 974 | * Unmount does not free the btrfs_device struct but would zero |
| 975 | * generation along with most of the other members. So just update |
| 976 | * it back. We need it to pick the disk with largest generation |
| 977 | * (as above). |
| 978 | */ |
Nikolay Borisov | d1a6300 | 2018-10-30 16:43:26 +0200 | [diff] [blame] | 979 | if (!fs_devices->opened) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 980 | device->generation = found_transid; |
Nikolay Borisov | d1a6300 | 2018-10-30 16:43:26 +0200 | [diff] [blame] | 981 | fs_devices->latest_generation = max_t(u64, found_transid, |
| 982 | fs_devices->latest_generation); |
| 983 | } |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 984 | |
Anand Jain | f2788d2 | 2018-01-18 22:02:34 +0800 | [diff] [blame] | 985 | fs_devices->total_devices = btrfs_super_num_devices(disk_super); |
| 986 | |
Anand Jain | 9c6d173 | 2018-05-29 14:10:20 +0800 | [diff] [blame] | 987 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 988 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 989 | } |
| 990 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 991 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 992 | { |
| 993 | struct btrfs_fs_devices *fs_devices; |
| 994 | struct btrfs_device *device; |
| 995 | struct btrfs_device *orig_dev; |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 996 | int ret = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 997 | |
Anand Jain | c124706 | 2021-08-31 09:21:28 +0800 | [diff] [blame] | 998 | lockdep_assert_held(&uuid_mutex); |
| 999 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 1000 | fs_devices = alloc_fs_devices(orig->fsid, NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 1001 | if (IS_ERR(fs_devices)) |
| 1002 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1003 | |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1004 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1005 | |
| 1006 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 1007 | struct rcu_string *name; |
| 1008 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 1009 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 1010 | orig_dev->uuid); |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1011 | if (IS_ERR(device)) { |
| 1012 | ret = PTR_ERR(device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1013 | goto error; |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1014 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1015 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 1016 | /* |
| 1017 | * This is ok to do without rcu read locked because we hold the |
| 1018 | * uuid mutex so nothing we touch in here is going to disappear. |
| 1019 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 1020 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 1021 | name = rcu_string_strdup(orig_dev->name->str, |
| 1022 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 1023 | if (!name) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 1024 | btrfs_free_device(device); |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1025 | ret = -ENOMEM; |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 1026 | goto error; |
| 1027 | } |
| 1028 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 1029 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1030 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1031 | list_add(&device->dev_list, &fs_devices->devices); |
| 1032 | device->fs_devices = fs_devices; |
| 1033 | fs_devices->num_devices++; |
| 1034 | } |
| 1035 | return fs_devices; |
| 1036 | error: |
| 1037 | free_fs_devices(fs_devices); |
Anand Jain | d2979aa | 2019-08-27 15:40:45 +0800 | [diff] [blame] | 1038 | return ERR_PTR(ret); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1039 | } |
| 1040 | |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1041 | static void __btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices, |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1042 | struct btrfs_device **latest_dev) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1043 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1044 | struct btrfs_device *device, *next; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1045 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 1046 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1047 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1048 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state)) { |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1049 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1050 | &device->dev_state) && |
Anand Jain | 998a067 | 2020-05-05 02:58:25 +0800 | [diff] [blame] | 1051 | !test_bit(BTRFS_DEV_STATE_MISSING, |
| 1052 | &device->dev_state) && |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1053 | (!*latest_dev || |
| 1054 | device->generation > (*latest_dev)->generation)) { |
| 1055 | *latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1056 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1057 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1058 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1059 | |
Anand Jain | cf89af1 | 2020-10-30 06:53:56 +0800 | [diff] [blame] | 1060 | /* |
| 1061 | * We have already validated the presence of BTRFS_DEV_REPLACE_DEVID, |
| 1062 | * in btrfs_init_dev_replace() so just continue. |
| 1063 | */ |
| 1064 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) |
| 1065 | continue; |
| 1066 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1067 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1068 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1069 | device->bdev = NULL; |
| 1070 | fs_devices->open_devices--; |
| 1071 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1072 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1073 | list_del_init(&device->dev_alloc_list); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1074 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Desmond Cheong Zhi Xi | b2a6166 | 2021-07-27 15:13:03 +0800 | [diff] [blame] | 1075 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1076 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1077 | list_del_init(&device->dev_list); |
| 1078 | fs_devices->num_devices--; |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 1079 | btrfs_free_device(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1080 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1081 | |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | /* |
| 1085 | * After we have read the system tree and know devids belonging to this |
| 1086 | * filesystem, remove the device which does not belong there. |
| 1087 | */ |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1088 | void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices) |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1089 | { |
| 1090 | struct btrfs_device *latest_dev = NULL; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1091 | struct btrfs_fs_devices *seed_dev; |
Nikolay Borisov | 3712ccb | 2020-07-16 10:17:04 +0300 | [diff] [blame] | 1092 | |
| 1093 | mutex_lock(&uuid_mutex); |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1094 | __btrfs_free_extra_devids(fs_devices, &latest_dev); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1095 | |
| 1096 | list_for_each_entry(seed_dev, &fs_devices->seed_list, seed_list) |
Anand Jain | bacce86 | 2020-11-06 16:06:33 +0800 | [diff] [blame] | 1097 | __btrfs_free_extra_devids(seed_dev, &latest_dev); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1098 | |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 1099 | fs_devices->latest_dev = latest_dev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 1100 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1101 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1102 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1103 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1104 | static void btrfs_close_bdev(struct btrfs_device *device) |
| 1105 | { |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 1106 | if (!device->bdev) |
| 1107 | return; |
| 1108 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1109 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1110 | sync_blockdev(device->bdev); |
| 1111 | invalidate_bdev(device->bdev); |
| 1112 | } |
| 1113 | |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 1114 | blkdev_put(device->bdev, device->mode); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1115 | } |
| 1116 | |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1117 | static void btrfs_close_one_device(struct btrfs_device *device) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1118 | { |
| 1119 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1120 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1121 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1122 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 1123 | list_del_init(&device->dev_alloc_list); |
| 1124 | fs_devices->rw_devices--; |
| 1125 | } |
| 1126 | |
Desmond Cheong Zhi Xi | 0d977e0 | 2021-08-21 01:50:40 +0800 | [diff] [blame] | 1127 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) |
| 1128 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
| 1129 | |
Li Zhang | 5d03dbe | 2021-10-05 01:15:33 +0800 | [diff] [blame] | 1130 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
| 1131 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1132 | fs_devices->missing_devices--; |
Li Zhang | 5d03dbe | 2021-10-05 01:15:33 +0800 | [diff] [blame] | 1133 | } |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1134 | |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1135 | btrfs_close_bdev(device); |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1136 | if (device->bdev) { |
Johannes Thumshirn | 3fff397 | 2019-11-26 09:40:05 +0100 | [diff] [blame] | 1137 | fs_devices->open_devices--; |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1138 | device->bdev = NULL; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1139 | } |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1140 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 1141 | btrfs_destroy_dev_zone_info(device); |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1142 | |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1143 | device->fs_info = NULL; |
| 1144 | atomic_set(&device->dev_stats_ccnt, 0); |
| 1145 | extent_io_tree_release(&device->alloc_state); |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1146 | |
Filipe Manana | 6b225ba | 2021-09-08 19:05:44 +0100 | [diff] [blame] | 1147 | /* |
| 1148 | * Reset the flush error record. We might have a transient flush error |
| 1149 | * in this mount, and if so we aborted the current transaction and set |
| 1150 | * the fs to an error state, guaranteeing no super blocks can be further |
| 1151 | * committed. However that error might be transient and if we unmount the |
| 1152 | * filesystem and mount it again, we should allow the mount to succeed |
| 1153 | * (btrfs_check_rw_degradable() should not fail) - if after mounting the |
| 1154 | * filesystem again we still get flush errors, then we will again abort |
| 1155 | * any transaction and set the error state, guaranteeing no commits of |
| 1156 | * unsafe super blocks. |
| 1157 | */ |
| 1158 | device->last_flush_error = 0; |
| 1159 | |
Johannes Thumshirn | 321f69f | 2019-12-04 14:36:39 +0100 | [diff] [blame] | 1160 | /* Verify the device is back in a pristine state */ |
| 1161 | ASSERT(!test_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state)); |
| 1162 | ASSERT(!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)); |
| 1163 | ASSERT(list_empty(&device->dev_alloc_list)); |
| 1164 | ASSERT(list_empty(&device->post_commit_list)); |
| 1165 | ASSERT(atomic_read(&device->reada_in_flight) == 0); |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1166 | } |
| 1167 | |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1168 | static void close_fs_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1169 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1170 | struct btrfs_device *device, *tmp; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1171 | |
Josef Bacik | 425c6ed | 2020-08-10 11:42:28 -0400 | [diff] [blame] | 1172 | lockdep_assert_held(&uuid_mutex); |
| 1173 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1174 | if (--fs_devices->opened > 0) |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1175 | return; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1176 | |
Josef Bacik | 425c6ed | 2020-08-10 11:42:28 -0400 | [diff] [blame] | 1177 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) |
Nikolay Borisov | 959b1c0 | 2018-06-29 08:26:05 +0300 | [diff] [blame] | 1178 | btrfs_close_one_device(device); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1179 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1180 | WARN_ON(fs_devices->open_devices); |
| 1181 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1182 | fs_devices->opened = 0; |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 1183 | fs_devices->seeding = false; |
Nikolay Borisov | c4989c2f | 2020-07-15 13:48:49 +0300 | [diff] [blame] | 1184 | fs_devices->fs_info = NULL; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1185 | } |
| 1186 | |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1187 | void btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1188 | { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1189 | LIST_HEAD(list); |
| 1190 | struct btrfs_fs_devices *tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1191 | |
| 1192 | mutex_lock(&uuid_mutex); |
Nikolay Borisov | 54eed6a | 2020-07-15 13:48:48 +0300 | [diff] [blame] | 1193 | close_fs_devices(fs_devices); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1194 | if (!fs_devices->opened) |
| 1195 | list_splice_init(&fs_devices->seed_list, &list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1196 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1197 | list_for_each_entry_safe(fs_devices, tmp, &list, seed_list) { |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1198 | close_fs_devices(fs_devices); |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 1199 | list_del(&fs_devices->seed_list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1200 | free_fs_devices(fs_devices); |
| 1201 | } |
Josef Bacik | 425c6ed | 2020-08-10 11:42:28 -0400 | [diff] [blame] | 1202 | mutex_unlock(&uuid_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1203 | } |
| 1204 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1205 | static int open_fs_devices(struct btrfs_fs_devices *fs_devices, |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1206 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1207 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1208 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1209 | struct btrfs_device *latest_dev = NULL; |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1210 | struct btrfs_device *tmp_device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1211 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1212 | flags |= FMODE_EXCL; |
| 1213 | |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1214 | list_for_each_entry_safe(device, tmp_device, &fs_devices->devices, |
| 1215 | dev_list) { |
| 1216 | int ret; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1217 | |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1218 | ret = btrfs_open_one_device(fs_devices, device, flags, holder); |
| 1219 | if (ret == 0 && |
| 1220 | (!latest_dev || device->generation > latest_dev->generation)) { |
Anand Jain | 9f050db | 2017-11-09 23:45:25 +0800 | [diff] [blame] | 1221 | latest_dev = device; |
Anand Jain | 96c2e06 | 2020-09-30 21:09:52 +0800 | [diff] [blame] | 1222 | } else if (ret == -ENODATA) { |
| 1223 | fs_devices->num_devices--; |
| 1224 | list_del(&device->dev_list); |
| 1225 | btrfs_free_device(device); |
| 1226 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1227 | } |
Anand Jain | 1ed802c | 2020-04-28 23:22:25 +0800 | [diff] [blame] | 1228 | if (fs_devices->open_devices == 0) |
| 1229 | return -EINVAL; |
| 1230 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1231 | fs_devices->opened = 1; |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 1232 | fs_devices->latest_dev = latest_dev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1233 | fs_devices->total_rw_bytes = 0; |
Naohiro Aota | c4a816c | 2020-02-25 12:56:08 +0900 | [diff] [blame] | 1234 | fs_devices->chunk_alloc_policy = BTRFS_CHUNK_ALLOC_REGULAR; |
Anand Jain | 33fd2f7 | 2020-10-28 21:14:46 +0800 | [diff] [blame] | 1235 | fs_devices->read_policy = BTRFS_READ_POLICY_PID; |
Anand Jain | 1ed802c | 2020-04-28 23:22:25 +0800 | [diff] [blame] | 1236 | |
| 1237 | return 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1238 | } |
| 1239 | |
Sami Tolvanen | 4f0f586 | 2021-04-08 11:28:34 -0700 | [diff] [blame] | 1240 | static int devid_cmp(void *priv, const struct list_head *a, |
| 1241 | const struct list_head *b) |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1242 | { |
David Sterba | 214cc18 | 2021-07-26 14:15:26 +0200 | [diff] [blame] | 1243 | const struct btrfs_device *dev1, *dev2; |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1244 | |
| 1245 | dev1 = list_entry(a, struct btrfs_device, dev_list); |
| 1246 | dev2 = list_entry(b, struct btrfs_device, dev_list); |
| 1247 | |
| 1248 | if (dev1->devid < dev2->devid) |
| 1249 | return -1; |
| 1250 | else if (dev1->devid > dev2->devid) |
| 1251 | return 1; |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1255 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1256 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1257 | { |
| 1258 | int ret; |
| 1259 | |
David Sterba | f5194e3 | 2018-06-19 17:09:47 +0200 | [diff] [blame] | 1260 | lockdep_assert_held(&uuid_mutex); |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 1261 | /* |
| 1262 | * The device_list_mutex cannot be taken here in case opening the |
Christoph Hellwig | a869870 | 2021-05-25 08:12:56 +0200 | [diff] [blame] | 1263 | * underlying device takes further locks like open_mutex. |
Josef Bacik | 18c850f | 2020-07-17 15:12:27 -0400 | [diff] [blame] | 1264 | * |
| 1265 | * We also don't need the lock here as this is called during mount and |
| 1266 | * exclusion is provided by uuid_mutex |
| 1267 | */ |
David Sterba | f5194e3 | 2018-06-19 17:09:47 +0200 | [diff] [blame] | 1268 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1269 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1270 | fs_devices->opened++; |
| 1271 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1272 | } else { |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1273 | list_sort(NULL, &fs_devices->devices, devid_cmp); |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1274 | ret = open_fs_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1275 | } |
Anand Jain | 542c590 | 2018-04-12 10:29:34 +0800 | [diff] [blame] | 1276 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1277 | return ret; |
| 1278 | } |
| 1279 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1280 | void btrfs_release_disk_super(struct btrfs_super_block *super) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1281 | { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1282 | struct page *page = virt_to_page(super); |
| 1283 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1284 | put_page(page); |
| 1285 | } |
| 1286 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1287 | 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] | 1288 | u64 bytenr, u64 bytenr_orig) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1289 | { |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1290 | struct btrfs_super_block *disk_super; |
| 1291 | struct page *page; |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1292 | void *p; |
| 1293 | pgoff_t index; |
| 1294 | |
| 1295 | /* make sure our super fits in the device */ |
Christoph Hellwig | cda00eb | 2021-10-18 12:11:12 +0200 | [diff] [blame] | 1296 | if (bytenr + PAGE_SIZE >= bdev_nr_bytes(bdev)) |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1297 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1298 | |
| 1299 | /* make sure our super fits in the page */ |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1300 | if (sizeof(*disk_super) > PAGE_SIZE) |
| 1301 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1302 | |
| 1303 | /* make sure our super doesn't straddle pages on disk */ |
| 1304 | index = bytenr >> PAGE_SHIFT; |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1305 | if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_SHIFT != index) |
| 1306 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1307 | |
| 1308 | /* pull in the page with our super */ |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1309 | 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] | 1310 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1311 | if (IS_ERR(page)) |
| 1312 | return ERR_CAST(page); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1313 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1314 | p = page_address(page); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1315 | |
| 1316 | /* align our pointer to the offset of the super block */ |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1317 | disk_super = p + offset_in_page(bytenr); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1318 | |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1319 | if (btrfs_super_bytenr(disk_super) != bytenr_orig || |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1320 | btrfs_super_magic(disk_super) != BTRFS_MAGIC) { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1321 | btrfs_release_disk_super(p); |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1322 | return ERR_PTR(-EINVAL); |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1323 | } |
| 1324 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1325 | if (disk_super->label[0] && disk_super->label[BTRFS_LABEL_SIZE - 1]) |
| 1326 | disk_super->label[BTRFS_LABEL_SIZE - 1] = 0; |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1327 | |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1328 | return disk_super; |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1329 | } |
| 1330 | |
Anand Jain | 228a73a | 2019-01-04 13:31:54 +0800 | [diff] [blame] | 1331 | int btrfs_forget_devices(const char *path) |
| 1332 | { |
| 1333 | int ret; |
| 1334 | |
| 1335 | mutex_lock(&uuid_mutex); |
| 1336 | ret = btrfs_free_stale_devices(strlen(path) ? path : NULL, NULL); |
| 1337 | mutex_unlock(&uuid_mutex); |
| 1338 | |
| 1339 | return ret; |
| 1340 | } |
| 1341 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1342 | /* |
| 1343 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1344 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1345 | * is read via pagecache |
| 1346 | */ |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1347 | struct btrfs_device *btrfs_scan_one_device(const char *path, fmode_t flags, |
| 1348 | void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1349 | { |
| 1350 | struct btrfs_super_block *disk_super; |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 1351 | bool new_device_added = false; |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1352 | struct btrfs_device *device = NULL; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1353 | struct block_device *bdev; |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1354 | u64 bytenr, bytenr_orig; |
| 1355 | int ret; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1356 | |
David Sterba | 899f930 | 2018-06-19 16:37:36 +0200 | [diff] [blame] | 1357 | lockdep_assert_held(&uuid_mutex); |
| 1358 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1359 | /* |
| 1360 | * we would like to check all the supers, but that would make |
| 1361 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1362 | * So, we need to add a special mount option to scan for |
| 1363 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1364 | */ |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1365 | flags |= FMODE_EXCL; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1366 | |
| 1367 | bdev = blkdev_get_by_path(path, flags, holder); |
Anand Jain | b6ed73b | 2018-04-12 10:29:24 +0800 | [diff] [blame] | 1368 | if (IS_ERR(bdev)) |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1369 | return ERR_CAST(bdev); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1370 | |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 1371 | bytenr_orig = btrfs_sb_offset(0); |
| 1372 | ret = btrfs_sb_log_location_bdev(bdev, 0, READ, &bytenr); |
| 1373 | if (ret) |
| 1374 | return ERR_PTR(ret); |
| 1375 | |
| 1376 | disk_super = btrfs_read_disk_super(bdev, bytenr, bytenr_orig); |
Nikolay Borisov | b335eab | 2020-04-15 15:53:46 +0300 | [diff] [blame] | 1377 | if (IS_ERR(disk_super)) { |
| 1378 | device = ERR_CAST(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1379 | goto error_bdev_put; |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1380 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1381 | |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 1382 | device = device_list_add(path, disk_super, &new_device_added); |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1383 | if (!IS_ERR(device)) { |
Anand Jain | 4306a97 | 2018-05-29 12:28:37 +0800 | [diff] [blame] | 1384 | if (new_device_added) |
| 1385 | btrfs_free_stale_devices(path, device); |
| 1386 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1387 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 1388 | btrfs_release_disk_super(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1389 | |
| 1390 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1391 | blkdev_put(bdev, flags); |
Anand Jain | b6ed73b | 2018-04-12 10:29:24 +0800 | [diff] [blame] | 1392 | |
Gu Jinxiang | 36350e9 | 2018-07-12 14:23:16 +0800 | [diff] [blame] | 1393 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1394 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1395 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1396 | /* |
| 1397 | * Try to find a chunk that intersects [start, start + len] range and when one |
| 1398 | * such is found, record the end of it in *start |
| 1399 | */ |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1400 | static bool contains_pending_extent(struct btrfs_device *device, u64 *start, |
| 1401 | u64 len) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1402 | { |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1403 | u64 physical_start, physical_end; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1404 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1405 | lockdep_assert_held(&device->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1406 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1407 | if (!find_first_extent_bit(&device->alloc_state, *start, |
| 1408 | &physical_start, &physical_end, |
| 1409 | CHUNK_ALLOCATED, NULL)) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1410 | |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1411 | if (in_range(physical_start, *start, len) || |
| 1412 | in_range(*start, physical_start, |
| 1413 | physical_end - physical_start)) { |
| 1414 | *start = physical_end + 1; |
| 1415 | return true; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1416 | } |
| 1417 | } |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 1418 | return false; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1419 | } |
| 1420 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1421 | static u64 dev_extent_search_start(struct btrfs_device *device, u64 start) |
| 1422 | { |
| 1423 | switch (device->fs_devices->chunk_alloc_policy) { |
| 1424 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 1425 | /* |
| 1426 | * We don't want to overwrite the superblock on the drive nor |
| 1427 | * any area used by the boot loader (grub for example), so we |
| 1428 | * make sure to start at an offset of at least 1MB. |
| 1429 | */ |
| 1430 | return max_t(u64, start, SZ_1M); |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1431 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 1432 | /* |
| 1433 | * We don't care about the starting region like regular |
| 1434 | * allocator, because we anyway use/reserve the first two zones |
| 1435 | * for superblock logging. |
| 1436 | */ |
| 1437 | return ALIGN(start, device->zone_info->zone_size); |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1438 | default: |
| 1439 | BUG(); |
| 1440 | } |
| 1441 | } |
| 1442 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1443 | static bool dev_extent_hole_check_zoned(struct btrfs_device *device, |
| 1444 | u64 *hole_start, u64 *hole_size, |
| 1445 | u64 num_bytes) |
| 1446 | { |
| 1447 | u64 zone_size = device->zone_info->zone_size; |
| 1448 | u64 pos; |
| 1449 | int ret; |
| 1450 | bool changed = false; |
| 1451 | |
| 1452 | ASSERT(IS_ALIGNED(*hole_start, zone_size)); |
| 1453 | |
| 1454 | while (*hole_size > 0) { |
| 1455 | pos = btrfs_find_allocatable_zones(device, *hole_start, |
| 1456 | *hole_start + *hole_size, |
| 1457 | num_bytes); |
| 1458 | if (pos != *hole_start) { |
| 1459 | *hole_size = *hole_start + *hole_size - pos; |
| 1460 | *hole_start = pos; |
| 1461 | changed = true; |
| 1462 | if (*hole_size < num_bytes) |
| 1463 | break; |
| 1464 | } |
| 1465 | |
| 1466 | ret = btrfs_ensure_empty_zones(device, pos, num_bytes); |
| 1467 | |
| 1468 | /* Range is ensured to be empty */ |
| 1469 | if (!ret) |
| 1470 | return changed; |
| 1471 | |
| 1472 | /* Given hole range was invalid (outside of device) */ |
| 1473 | if (ret == -ERANGE) { |
| 1474 | *hole_start += *hole_size; |
Johannes Thumshirn | d6f67af | 2021-05-10 22:39:38 +0900 | [diff] [blame] | 1475 | *hole_size = 0; |
Jiapeng Chong | 7000bab | 2021-03-03 17:45:28 +0800 | [diff] [blame] | 1476 | return true; |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1477 | } |
| 1478 | |
| 1479 | *hole_start += zone_size; |
| 1480 | *hole_size -= zone_size; |
| 1481 | changed = true; |
| 1482 | } |
| 1483 | |
| 1484 | return changed; |
| 1485 | } |
| 1486 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1487 | /** |
| 1488 | * dev_extent_hole_check - check if specified hole is suitable for allocation |
| 1489 | * @device: the device which we have the hole |
| 1490 | * @hole_start: starting position of the hole |
| 1491 | * @hole_size: the size of the hole |
| 1492 | * @num_bytes: the size of the free space that we need |
| 1493 | * |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1494 | * 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] | 1495 | * position for allocation. Returns 1 if hole position is updated, 0 otherwise. |
| 1496 | */ |
| 1497 | static bool dev_extent_hole_check(struct btrfs_device *device, u64 *hole_start, |
| 1498 | u64 *hole_size, u64 num_bytes) |
| 1499 | { |
| 1500 | bool changed = false; |
| 1501 | u64 hole_end = *hole_start + *hole_size; |
| 1502 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1503 | for (;;) { |
| 1504 | /* |
| 1505 | * Check before we set max_hole_start, otherwise we could end up |
| 1506 | * sending back this offset anyway. |
| 1507 | */ |
| 1508 | if (contains_pending_extent(device, hole_start, *hole_size)) { |
| 1509 | if (hole_end >= *hole_start) |
| 1510 | *hole_size = hole_end - *hole_start; |
| 1511 | else |
| 1512 | *hole_size = 0; |
| 1513 | changed = true; |
| 1514 | } |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1515 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1516 | switch (device->fs_devices->chunk_alloc_policy) { |
| 1517 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 1518 | /* No extra check */ |
| 1519 | break; |
| 1520 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 1521 | if (dev_extent_hole_check_zoned(device, hole_start, |
| 1522 | hole_size, num_bytes)) { |
| 1523 | changed = true; |
| 1524 | /* |
| 1525 | * The changed hole can contain pending extent. |
| 1526 | * Loop again to check that. |
| 1527 | */ |
| 1528 | continue; |
| 1529 | } |
| 1530 | break; |
| 1531 | default: |
| 1532 | BUG(); |
| 1533 | } |
| 1534 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1535 | break; |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | return changed; |
| 1539 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1540 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1541 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1542 | * find_free_dev_extent_start - find free space in the specified device |
| 1543 | * @device: the device which we search the free space in |
| 1544 | * @num_bytes: the size of the free space that we need |
| 1545 | * @search_start: the position from which to begin the search |
| 1546 | * @start: store the start of the free space. |
| 1547 | * @len: the size of the free space. that we find, or the size |
| 1548 | * 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] | 1549 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1550 | * this uses a pretty simple search, the expectation is that it is |
| 1551 | * called very infrequently and that a given device has a small number |
| 1552 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1553 | * |
| 1554 | * @start is used to store the start of the free space if we find. But if we |
| 1555 | * don't find suitable free space, it will be used to store the start position |
| 1556 | * of the max free space. |
| 1557 | * |
| 1558 | * @len is used to store the size of the free space that we find. |
| 1559 | * But if we don't find suitable free space, it is used to store the size of |
| 1560 | * the max free space. |
Qu Wenruo | 135da97 | 2019-07-19 14:51:42 +0800 | [diff] [blame] | 1561 | * |
| 1562 | * NOTE: This function will search *commit* root of device tree, and does extra |
| 1563 | * check to ensure dev extents are not double allocated. |
| 1564 | * This makes the function safe to allocate dev extents but may not report |
| 1565 | * correct usable device space, as device extent freed in current transaction |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 1566 | * is not reported as available. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1567 | */ |
Qu Wenruo | 9e3246a | 2019-07-19 14:51:41 +0800 | [diff] [blame] | 1568 | static int find_free_dev_extent_start(struct btrfs_device *device, |
| 1569 | u64 num_bytes, u64 search_start, u64 *start, |
| 1570 | u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1571 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1572 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1573 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1574 | struct btrfs_key key; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1575 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1576 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1577 | u64 hole_size; |
| 1578 | u64 max_hole_start; |
| 1579 | u64 max_hole_size; |
| 1580 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1581 | u64 search_end = device->total_bytes; |
| 1582 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1583 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1584 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1585 | |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1586 | search_start = dev_extent_search_start(device, search_start); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1587 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 1588 | WARN_ON(device->zone_info && |
| 1589 | !IS_ALIGNED(num_bytes, device->zone_info->zone_size)); |
| 1590 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1591 | path = btrfs_alloc_path(); |
| 1592 | if (!path) |
| 1593 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1594 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1595 | max_hole_start = search_start; |
| 1596 | max_hole_size = 0; |
| 1597 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1598 | again: |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1599 | if (search_start >= search_end || |
| 1600 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1601 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1602 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1605 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1606 | path->search_commit_root = 1; |
| 1607 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1608 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1609 | key.objectid = device->devid; |
| 1610 | key.offset = search_start; |
| 1611 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1612 | |
Marcos Paulo de Souza | 0ff40a9 | 2021-07-29 05:22:16 -0300 | [diff] [blame] | 1613 | ret = btrfs_search_backwards(root, &key, path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1614 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1615 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1616 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1617 | while (1) { |
| 1618 | l = path->nodes[0]; |
| 1619 | slot = path->slots[0]; |
| 1620 | if (slot >= btrfs_header_nritems(l)) { |
| 1621 | ret = btrfs_next_leaf(root, path); |
| 1622 | if (ret == 0) |
| 1623 | continue; |
| 1624 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1625 | goto out; |
| 1626 | |
| 1627 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1628 | } |
| 1629 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1630 | |
| 1631 | if (key.objectid < device->devid) |
| 1632 | goto next; |
| 1633 | |
| 1634 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1635 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1636 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1637 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1638 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1639 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1640 | if (key.offset > search_start) { |
| 1641 | hole_size = key.offset - search_start; |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1642 | dev_extent_hole_check(device, &search_start, &hole_size, |
| 1643 | num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1644 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1645 | if (hole_size > max_hole_size) { |
| 1646 | max_hole_start = search_start; |
| 1647 | max_hole_size = hole_size; |
| 1648 | } |
| 1649 | |
| 1650 | /* |
| 1651 | * If this free space is greater than which we need, |
| 1652 | * it must be the max free space that we have found |
| 1653 | * until now, so max_hole_start must point to the start |
| 1654 | * of this free space and the length of this free space |
| 1655 | * is stored in max_hole_size. Thus, we return |
| 1656 | * max_hole_start and max_hole_size and go back to the |
| 1657 | * caller. |
| 1658 | */ |
| 1659 | if (hole_size >= num_bytes) { |
| 1660 | ret = 0; |
| 1661 | goto out; |
| 1662 | } |
| 1663 | } |
| 1664 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1665 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1666 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1667 | dev_extent); |
| 1668 | if (extent_end > search_start) |
| 1669 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1670 | next: |
| 1671 | path->slots[0]++; |
| 1672 | cond_resched(); |
| 1673 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1674 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1675 | /* |
| 1676 | * At this point, search_start should be the end of |
| 1677 | * allocated dev extents, and when shrinking the device, |
| 1678 | * search_end may be smaller than search_start. |
| 1679 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1680 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1681 | hole_size = search_end - search_start; |
Naohiro Aota | 3b4ffa4 | 2020-02-25 12:56:09 +0900 | [diff] [blame] | 1682 | if (dev_extent_hole_check(device, &search_start, &hole_size, |
| 1683 | num_bytes)) { |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1684 | btrfs_release_path(path); |
| 1685 | goto again; |
| 1686 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1687 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1688 | if (hole_size > max_hole_size) { |
| 1689 | max_hole_start = search_start; |
| 1690 | max_hole_size = hole_size; |
| 1691 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1692 | } |
| 1693 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1694 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1695 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1696 | ret = -ENOSPC; |
| 1697 | else |
| 1698 | ret = 0; |
| 1699 | |
| 1700 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1701 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1702 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1703 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1704 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1705 | return ret; |
| 1706 | } |
| 1707 | |
Nikolay Borisov | 60dfdf2 | 2019-03-27 14:24:14 +0200 | [diff] [blame] | 1708 | int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes, |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1709 | u64 *start, u64 *len) |
| 1710 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1711 | /* FIXME use last free of some kind */ |
Nikolay Borisov | 60dfdf2 | 2019-03-27 14:24:14 +0200 | [diff] [blame] | 1712 | return find_free_dev_extent_start(device, num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1713 | } |
| 1714 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1715 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1716 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1717 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1718 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1719 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1720 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1721 | int ret; |
| 1722 | struct btrfs_path *path; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1723 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1724 | struct btrfs_key found_key; |
| 1725 | struct extent_buffer *leaf = NULL; |
| 1726 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1727 | |
| 1728 | path = btrfs_alloc_path(); |
| 1729 | if (!path) |
| 1730 | return -ENOMEM; |
| 1731 | |
| 1732 | key.objectid = device->devid; |
| 1733 | key.offset = start; |
| 1734 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1735 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1736 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1737 | if (ret > 0) { |
| 1738 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1739 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1740 | if (ret) |
| 1741 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1742 | leaf = path->nodes[0]; |
| 1743 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1744 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1745 | struct btrfs_dev_extent); |
| 1746 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1747 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1748 | key = found_key; |
| 1749 | btrfs_release_path(path); |
| 1750 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1751 | } else if (ret == 0) { |
| 1752 | leaf = path->nodes[0]; |
| 1753 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1754 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1755 | } else { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1756 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1757 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1758 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1759 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1760 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1761 | ret = btrfs_del_item(trans, root, path); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 1762 | if (ret == 0) |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1763 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1764 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1765 | btrfs_free_path(path); |
| 1766 | return ret; |
| 1767 | } |
| 1768 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1769 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1770 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1771 | struct extent_map_tree *em_tree; |
| 1772 | struct extent_map *em; |
| 1773 | struct rb_node *n; |
| 1774 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1775 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 1776 | em_tree = &fs_info->mapping_tree; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1777 | read_lock(&em_tree->lock); |
Liu Bo | 07e1ce0 | 2018-08-23 03:51:52 +0800 | [diff] [blame] | 1778 | n = rb_last(&em_tree->map.rb_root); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1779 | if (n) { |
| 1780 | em = rb_entry(n, struct extent_map, rb_node); |
| 1781 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1782 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1783 | read_unlock(&em_tree->lock); |
| 1784 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1785 | return ret; |
| 1786 | } |
| 1787 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1788 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1789 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1790 | { |
| 1791 | int ret; |
| 1792 | struct btrfs_key key; |
| 1793 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1794 | struct btrfs_path *path; |
| 1795 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1796 | path = btrfs_alloc_path(); |
| 1797 | if (!path) |
| 1798 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1799 | |
| 1800 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1801 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1802 | key.offset = (u64)-1; |
| 1803 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1804 | 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] | 1805 | if (ret < 0) |
| 1806 | goto error; |
| 1807 | |
Anand Jain | a06dee4d | 2019-08-27 15:40:44 +0800 | [diff] [blame] | 1808 | if (ret == 0) { |
| 1809 | /* Corruption */ |
| 1810 | btrfs_err(fs_info, "corrupted chunk tree devid -1 matched"); |
| 1811 | ret = -EUCLEAN; |
| 1812 | goto error; |
| 1813 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1814 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1815 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1816 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1817 | BTRFS_DEV_ITEM_KEY); |
| 1818 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1819 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1820 | } else { |
| 1821 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1822 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1823 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1824 | } |
| 1825 | ret = 0; |
| 1826 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1827 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1828 | return ret; |
| 1829 | } |
| 1830 | |
| 1831 | /* |
| 1832 | * the device information is stored in the chunk root |
| 1833 | * the btrfs_device struct should be fully filled in |
| 1834 | */ |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 1835 | static int btrfs_add_dev_item(struct btrfs_trans_handle *trans, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1836 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1837 | { |
| 1838 | int ret; |
| 1839 | struct btrfs_path *path; |
| 1840 | struct btrfs_dev_item *dev_item; |
| 1841 | struct extent_buffer *leaf; |
| 1842 | struct btrfs_key key; |
| 1843 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1844 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1845 | path = btrfs_alloc_path(); |
| 1846 | if (!path) |
| 1847 | return -ENOMEM; |
| 1848 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1849 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1850 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1851 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1852 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1853 | btrfs_reserve_chunk_metadata(trans, true); |
Nikolay Borisov | 8e87e85 | 2018-07-20 19:37:47 +0300 | [diff] [blame] | 1854 | ret = btrfs_insert_empty_item(trans, trans->fs_info->chunk_root, path, |
| 1855 | &key, sizeof(*dev_item)); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1856 | btrfs_trans_release_chunk_metadata(trans); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1857 | if (ret) |
| 1858 | goto out; |
| 1859 | |
| 1860 | leaf = path->nodes[0]; |
| 1861 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1862 | |
| 1863 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1864 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1865 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1866 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1867 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1868 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1869 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1870 | btrfs_device_get_disk_total_bytes(device)); |
| 1871 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1872 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1873 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1874 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1875 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1876 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1877 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1878 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1879 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1880 | ptr = btrfs_device_fsid(dev_item); |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 1881 | write_extent_buffer(leaf, trans->fs_info->fs_devices->metadata_uuid, |
| 1882 | ptr, BTRFS_FSID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1883 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1884 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1885 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1886 | out: |
| 1887 | btrfs_free_path(path); |
| 1888 | return ret; |
| 1889 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1890 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1891 | /* |
| 1892 | * Function to update ctime/mtime for a given device path. |
| 1893 | * Mainly used for ctime/mtime based probe like libblkid. |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1894 | * |
| 1895 | * 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] | 1896 | */ |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1897 | static void update_dev_time(const char *device_path) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1898 | { |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1899 | struct path path; |
Josef Bacik | 8f96a5b | 2021-07-27 17:01:16 -0400 | [diff] [blame] | 1900 | struct timespec64 now; |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1901 | int ret; |
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 | ret = kern_path(device_path, LOOKUP_FOLLOW, &path); |
| 1904 | if (ret) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1905 | return; |
Josef Bacik | 8f96a5b | 2021-07-27 17:01:16 -0400 | [diff] [blame] | 1906 | |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 1907 | now = current_time(d_inode(path.dentry)); |
| 1908 | inode_update_time(d_inode(path.dentry), &now, S_MTIME | S_CTIME); |
| 1909 | path_put(&path); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1910 | } |
| 1911 | |
David Sterba | f331a95 | 2019-03-20 16:31:53 +0100 | [diff] [blame] | 1912 | static int btrfs_rm_dev_item(struct btrfs_device *device) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1913 | { |
David Sterba | f331a95 | 2019-03-20 16:31:53 +0100 | [diff] [blame] | 1914 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1915 | int ret; |
| 1916 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1917 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1918 | struct btrfs_trans_handle *trans; |
| 1919 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1920 | path = btrfs_alloc_path(); |
| 1921 | if (!path) |
| 1922 | return -ENOMEM; |
| 1923 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1924 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1925 | if (IS_ERR(trans)) { |
| 1926 | btrfs_free_path(path); |
| 1927 | return PTR_ERR(trans); |
| 1928 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1929 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1930 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1931 | key.offset = device->devid; |
| 1932 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1933 | btrfs_reserve_chunk_metadata(trans, false); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1934 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 1935 | btrfs_trans_release_chunk_metadata(trans); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1936 | if (ret) { |
| 1937 | if (ret > 0) |
| 1938 | ret = -ENOENT; |
| 1939 | btrfs_abort_transaction(trans, ret); |
| 1940 | btrfs_end_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1941 | goto out; |
| 1942 | } |
| 1943 | |
| 1944 | ret = btrfs_del_item(trans, root, path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1945 | if (ret) { |
| 1946 | btrfs_abort_transaction(trans, ret); |
| 1947 | btrfs_end_transaction(trans); |
| 1948 | } |
| 1949 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1950 | out: |
| 1951 | btrfs_free_path(path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1952 | if (!ret) |
| 1953 | ret = btrfs_commit_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1954 | return ret; |
| 1955 | } |
| 1956 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1957 | /* |
| 1958 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1959 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1960 | * replace. |
| 1961 | */ |
| 1962 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1963 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1964 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1965 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1966 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1967 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1968 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1969 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1970 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1971 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1972 | all_avail = fs_info->avail_data_alloc_bits | |
| 1973 | fs_info->avail_system_alloc_bits | |
| 1974 | fs_info->avail_metadata_alloc_bits; |
| 1975 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1976 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1977 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 1978 | if (!(all_avail & btrfs_raid_array[i].bg_flag)) |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1979 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1980 | |
Anand Jain | efc222f | 2021-07-28 07:03:05 +0800 | [diff] [blame] | 1981 | if (num_devices < btrfs_raid_array[i].devs_min) |
| 1982 | return btrfs_raid_array[i].mindev_error; |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1983 | } |
| 1984 | |
| 1985 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1986 | } |
| 1987 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1988 | static struct btrfs_device * btrfs_find_next_active_device( |
| 1989 | struct btrfs_fs_devices *fs_devs, struct btrfs_device *device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1990 | { |
| 1991 | struct btrfs_device *next_device; |
| 1992 | |
| 1993 | list_for_each_entry(next_device, &fs_devs->devices, dev_list) { |
| 1994 | if (next_device != device && |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1995 | !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state) |
| 1996 | && next_device->bdev) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1997 | return next_device; |
| 1998 | } |
| 1999 | |
| 2000 | return NULL; |
| 2001 | } |
| 2002 | |
| 2003 | /* |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 2004 | * 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] | 2005 | * and replace it with the provided or the next active device, in the context |
| 2006 | * where this function called, there should be always be another device (or |
| 2007 | * this_dev) which is active. |
| 2008 | */ |
David Sterba | b105e92 | 2019-10-01 19:57:35 +0200 | [diff] [blame] | 2009 | void __cold btrfs_assign_next_active_device(struct btrfs_device *device, |
Anand Jain | e493e8f | 2020-09-05 01:34:34 +0800 | [diff] [blame] | 2010 | struct btrfs_device *next_device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2011 | { |
Nikolay Borisov | d6507cf | 2018-07-20 19:37:50 +0300 | [diff] [blame] | 2012 | struct btrfs_fs_info *fs_info = device->fs_info; |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2013 | |
Anand Jain | e493e8f | 2020-09-05 01:34:34 +0800 | [diff] [blame] | 2014 | if (!next_device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2015 | next_device = btrfs_find_next_active_device(fs_info->fs_devices, |
Anand Jain | e493e8f | 2020-09-05 01:34:34 +0800 | [diff] [blame] | 2016 | device); |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2017 | ASSERT(next_device); |
| 2018 | |
| 2019 | if (fs_info->sb->s_bdev && |
| 2020 | (fs_info->sb->s_bdev == device->bdev)) |
| 2021 | fs_info->sb->s_bdev = next_device->bdev; |
| 2022 | |
Anand Jain | d24fa5c | 2021-08-24 13:05:19 +0800 | [diff] [blame] | 2023 | if (fs_info->fs_devices->latest_dev->bdev == device->bdev) |
| 2024 | fs_info->fs_devices->latest_dev = next_device; |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2025 | } |
| 2026 | |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2027 | /* |
| 2028 | * Return btrfs_fs_devices::num_devices excluding the device that's being |
| 2029 | * currently replaced. |
| 2030 | */ |
| 2031 | static u64 btrfs_num_devices(struct btrfs_fs_info *fs_info) |
| 2032 | { |
| 2033 | u64 num_devices = fs_info->fs_devices->num_devices; |
| 2034 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 2035 | down_read(&fs_info->dev_replace.rwsem); |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2036 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 2037 | ASSERT(num_devices > 1); |
| 2038 | num_devices--; |
| 2039 | } |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 2040 | up_read(&fs_info->dev_replace.rwsem); |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2041 | |
| 2042 | return num_devices; |
| 2043 | } |
| 2044 | |
Josef Bacik | 313b085 | 2020-08-20 11:18:26 -0400 | [diff] [blame] | 2045 | void btrfs_scratch_superblocks(struct btrfs_fs_info *fs_info, |
| 2046 | struct block_device *bdev, |
| 2047 | const char *device_path) |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2048 | { |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2049 | struct btrfs_super_block *disk_super; |
| 2050 | int copy_num; |
| 2051 | |
| 2052 | if (!bdev) |
| 2053 | return; |
| 2054 | |
| 2055 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; copy_num++) { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2056 | struct page *page; |
| 2057 | int ret; |
| 2058 | |
| 2059 | disk_super = btrfs_read_dev_one_super(bdev, copy_num); |
| 2060 | if (IS_ERR(disk_super)) |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2061 | continue; |
| 2062 | |
Naohiro Aota | 1265925 | 2020-11-10 20:26:14 +0900 | [diff] [blame] | 2063 | if (bdev_is_zoned(bdev)) { |
| 2064 | btrfs_reset_sb_log_zones(bdev, copy_num); |
| 2065 | continue; |
| 2066 | } |
| 2067 | |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2068 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2069 | |
| 2070 | page = virt_to_page(disk_super); |
| 2071 | set_page_dirty(page); |
| 2072 | lock_page(page); |
| 2073 | /* write_on_page() unlocks the page */ |
| 2074 | ret = write_one_page(page); |
| 2075 | if (ret) |
| 2076 | btrfs_warn(fs_info, |
| 2077 | "error clearing superblock number %d (%d)", |
| 2078 | copy_num, ret); |
| 2079 | btrfs_release_disk_super(disk_super); |
| 2080 | |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | /* Notify udev that device has changed */ |
| 2084 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 2085 | |
| 2086 | /* Update ctime/mtime for device path for libblkid */ |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 2087 | update_dev_time(device_path); |
Johannes Thumshirn | 6fbceb9 | 2020-02-14 00:24:31 +0900 | [diff] [blame] | 2088 | } |
| 2089 | |
Josef Bacik | 1a15eb7 | 2021-10-05 16:12:44 -0400 | [diff] [blame] | 2090 | int btrfs_rm_device(struct btrfs_fs_info *fs_info, |
| 2091 | struct btrfs_dev_lookup_args *args, |
| 2092 | struct block_device **bdev, fmode_t *mode) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2093 | { |
| 2094 | struct btrfs_device *device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2095 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2096 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2097 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2098 | int ret = 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2099 | |
Josef Bacik | 8ef9dc0 | 2021-07-27 17:01:14 -0400 | [diff] [blame] | 2100 | /* |
| 2101 | * The device list in fs_devices is accessed without locks (neither |
| 2102 | * uuid_mutex nor device_list_mutex) as it won't change on a mounted |
| 2103 | * filesystem and another device rm cannot run. |
| 2104 | */ |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 2105 | num_devices = btrfs_num_devices(fs_info); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2106 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2107 | ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 2108 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2109 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2110 | |
Josef Bacik | 1a15eb7 | 2021-10-05 16:12:44 -0400 | [diff] [blame] | 2111 | device = btrfs_find_device(fs_info->fs_devices, args); |
| 2112 | if (!device) { |
| 2113 | if (args->missing) |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2114 | ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
| 2115 | else |
Josef Bacik | 1a15eb7 | 2021-10-05 16:12:44 -0400 | [diff] [blame] | 2116 | ret = -ENOENT; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2117 | goto out; |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2118 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2119 | |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 2120 | if (btrfs_pinned_by_swapfile(fs_info, device)) { |
| 2121 | btrfs_warn_in_rcu(fs_info, |
| 2122 | "cannot remove device %s (devid %llu) due to active swapfile", |
| 2123 | rcu_str_deref(device->name), device->devid); |
| 2124 | ret = -ETXTBSY; |
| 2125 | goto out; |
| 2126 | } |
| 2127 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2128 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 2129 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2130 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2131 | } |
| 2132 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2133 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 2134 | fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 2135 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2136 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [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)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2140 | mutex_lock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2141 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2142 | device->fs_devices->rw_devices--; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2143 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2144 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2145 | |
| 2146 | ret = btrfs_shrink_device(device, 0); |
Filipe Manana | 66d204a | 2020-10-12 11:55:24 +0100 | [diff] [blame] | 2147 | if (!ret) |
| 2148 | btrfs_reada_remove_dev(device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2149 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2150 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2151 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2152 | /* |
| 2153 | * TODO: the superblock still includes this device in its num_devices |
| 2154 | * counter although write_all_supers() is not locked out. This |
| 2155 | * could give a filesystem state which requires a degraded mount. |
| 2156 | */ |
David Sterba | f331a95 | 2019-03-20 16:31:53 +0100 | [diff] [blame] | 2157 | ret = btrfs_rm_dev_item(device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2158 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2159 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2160 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2161 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
David Sterba | 163e97e | 2019-03-20 16:32:55 +0100 | [diff] [blame] | 2162 | btrfs_scrub_cancel_dev(device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2163 | |
| 2164 | /* |
| 2165 | * the device list mutex makes sure that we don't change |
| 2166 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 2167 | * the device supers. Whoever is writing all supers, should |
| 2168 | * lock the device list mutex before getting the number of |
| 2169 | * devices in the super block (super_copy). Conversely, |
| 2170 | * whoever updates the number of devices in the super block |
| 2171 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2172 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2173 | |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2174 | /* |
| 2175 | * In normal cases the cur_devices == fs_devices. But in case |
| 2176 | * of deleting a seed device, the cur_devices should point to |
Su Yue | 9675ea8 | 2021-08-18 12:15:48 +0800 | [diff] [blame] | 2177 | * its own fs_devices listed under the fs_devices->seed_list. |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2178 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2179 | cur_devices = device->fs_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2180 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2181 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2182 | |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2183 | cur_devices->num_devices--; |
| 2184 | cur_devices->total_devices--; |
Anand Jain | b4993e6 | 2018-07-03 17:07:23 +0800 | [diff] [blame] | 2185 | /* Update total_devices of the parent fs_devices if it's seed */ |
| 2186 | if (cur_devices != fs_devices) |
| 2187 | fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2188 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2189 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2190 | cur_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 2191 | |
Nikolay Borisov | d6507cf | 2018-07-20 19:37:50 +0300 | [diff] [blame] | 2192 | btrfs_assign_next_active_device(device, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2193 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2194 | if (device->bdev) { |
Anand Jain | 41a52a0 | 2018-04-12 10:29:31 +0800 | [diff] [blame] | 2195 | cur_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2196 | /* remove sysfs entry */ |
Anand Jain | 53f8a74 | 2020-09-05 01:34:27 +0800 | [diff] [blame] | 2197 | btrfs_sysfs_remove_device(device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2198 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 2199 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2200 | num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1; |
| 2201 | btrfs_set_super_num_devices(fs_info->super_copy, num_devices); |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2202 | mutex_unlock(&fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2203 | |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2204 | /* |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2205 | * At this point, the device is zero sized and detached from the |
| 2206 | * devices list. All that's left is to zero out the old supers and |
| 2207 | * free the device. |
| 2208 | * |
| 2209 | * We cannot call btrfs_close_bdev() here because we're holding the sb |
| 2210 | * write lock, and blkdev_put() will pull in the ->open_mutex on the |
| 2211 | * block device and it's dependencies. Instead just flush the device |
| 2212 | * and let the caller do the final blkdev_put. |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2213 | */ |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2214 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2215 | btrfs_scratch_superblocks(fs_info, device->bdev, |
| 2216 | device->name->str); |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2217 | if (device->bdev) { |
| 2218 | sync_blockdev(device->bdev); |
| 2219 | invalidate_bdev(device->bdev); |
| 2220 | } |
| 2221 | } |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2222 | |
Josef Bacik | 3fa421d | 2021-07-27 17:01:17 -0400 | [diff] [blame] | 2223 | *bdev = device->bdev; |
| 2224 | *mode = device->mode; |
Nikolay Borisov | 8e75fd8 | 2019-03-27 14:24:11 +0200 | [diff] [blame] | 2225 | synchronize_rcu(); |
| 2226 | btrfs_free_device(device); |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2227 | |
Josef Bacik | 8b41393 | 2021-10-05 16:12:41 -0400 | [diff] [blame] | 2228 | /* |
| 2229 | * This can happen if cur_devices is the private seed devices list. We |
| 2230 | * cannot call close_fs_devices() here because it expects the uuid_mutex |
| 2231 | * to be held, but in fact we don't need that for the private |
| 2232 | * seed_devices, we can simply decrement cur_devices->opened and then |
| 2233 | * remove it from our list and free the fs_devices. |
| 2234 | */ |
Anand Jain | 8e90694 | 2021-10-05 16:12:39 -0400 | [diff] [blame] | 2235 | if (cur_devices->num_devices == 0) { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 2236 | list_del_init(&cur_devices->seed_list); |
Josef Bacik | 8b41393 | 2021-10-05 16:12:41 -0400 | [diff] [blame] | 2237 | ASSERT(cur_devices->opened == 1); |
| 2238 | cur_devices->opened--; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2239 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2240 | } |
| 2241 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2242 | out: |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2243 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2244 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2245 | error_undo: |
Filipe Manana | 66d204a | 2020-10-12 11:55:24 +0100 | [diff] [blame] | 2246 | btrfs_reada_undo_remove_dev(device); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2247 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2248 | mutex_lock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2249 | list_add(&device->dev_alloc_list, |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2250 | &fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2251 | device->fs_devices->rw_devices++; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2252 | mutex_unlock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2253 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2254 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2255 | } |
| 2256 | |
Nikolay Borisov | 68a9db5 | 2018-07-20 19:37:48 +0300 | [diff] [blame] | 2257 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2258 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2259 | struct btrfs_fs_devices *fs_devices; |
| 2260 | |
Nikolay Borisov | 68a9db5 | 2018-07-20 19:37:48 +0300 | [diff] [blame] | 2261 | lockdep_assert_held(&srcdev->fs_info->fs_devices->device_list_mutex); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2262 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 2263 | /* |
| 2264 | * in case of fs with no seed, srcdev->fs_devices will point |
| 2265 | * to fs_devices of fs_info. However when the dev being replaced is |
| 2266 | * a seed dev it will point to the seed's local fs_devices. In short |
| 2267 | * srcdev will have its correct fs_devices in both the cases. |
| 2268 | */ |
| 2269 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2270 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2271 | list_del_rcu(&srcdev->dev_list); |
David Sterba | 619c47f | 2017-06-19 14:14:22 +0200 | [diff] [blame] | 2272 | list_del(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2273 | fs_devices->num_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2274 | if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state)) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2275 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2276 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2277 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2278 | fs_devices->rw_devices--; |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2279 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2280 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2281 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2282 | } |
| 2283 | |
David Sterba | 65237ee | 2019-03-20 16:34:54 +0100 | [diff] [blame] | 2284 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_device *srcdev) |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2285 | { |
| 2286 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2287 | |
Josef Bacik | a466c85 | 2020-08-20 11:18:27 -0400 | [diff] [blame] | 2288 | mutex_lock(&uuid_mutex); |
| 2289 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2290 | btrfs_close_bdev(srcdev); |
Nikolay Borisov | 8e75fd8 | 2019-03-27 14:24:11 +0200 | [diff] [blame] | 2291 | synchronize_rcu(); |
| 2292 | btrfs_free_device(srcdev); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2293 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2294 | /* if this is no devs we rather delete the fs_devices */ |
| 2295 | if (!fs_devices->num_devices) { |
Anand Jain | 6dd38f8 | 2017-10-17 06:53:50 +0800 | [diff] [blame] | 2296 | /* |
| 2297 | * On a mounted FS, num_devices can't be zero unless it's a |
| 2298 | * seed. In case of a seed device being replaced, the replace |
| 2299 | * target added to the sprout FS, so there will be no more |
| 2300 | * device left under the seed FS. |
| 2301 | */ |
| 2302 | ASSERT(fs_devices->seeding); |
| 2303 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 2304 | list_del_init(&fs_devices->seed_list); |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 2305 | close_fs_devices(fs_devices); |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2306 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2307 | } |
Josef Bacik | a466c85 | 2020-08-20 11:18:27 -0400 | [diff] [blame] | 2308 | mutex_unlock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2309 | } |
| 2310 | |
Nikolay Borisov | 4f5ad7b | 2018-07-20 19:37:51 +0300 | [diff] [blame] | 2311 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_device *tgtdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2312 | { |
Nikolay Borisov | 4f5ad7b | 2018-07-20 19:37:51 +0300 | [diff] [blame] | 2313 | struct btrfs_fs_devices *fs_devices = tgtdev->fs_info->fs_devices; |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2314 | |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2315 | mutex_lock(&fs_devices->device_list_mutex); |
| 2316 | |
Anand Jain | 53f8a74 | 2020-09-05 01:34:27 +0800 | [diff] [blame] | 2317 | btrfs_sysfs_remove_device(tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2318 | |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2319 | if (tgtdev->bdev) |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2320 | fs_devices->open_devices--; |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2321 | |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2322 | fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2323 | |
Nikolay Borisov | d6507cf | 2018-07-20 19:37:50 +0300 | [diff] [blame] | 2324 | btrfs_assign_next_active_device(tgtdev, NULL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2325 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2326 | list_del_rcu(&tgtdev->dev_list); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2327 | |
Anand Jain | d9a071f | 2018-04-12 10:29:38 +0800 | [diff] [blame] | 2328 | mutex_unlock(&fs_devices->device_list_mutex); |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2329 | |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2330 | btrfs_scratch_superblocks(tgtdev->fs_info, tgtdev->bdev, |
| 2331 | tgtdev->name->str); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2332 | |
| 2333 | btrfs_close_bdev(tgtdev); |
Nikolay Borisov | 8e75fd8 | 2019-03-27 14:24:11 +0200 | [diff] [blame] | 2334 | synchronize_rcu(); |
| 2335 | btrfs_free_device(tgtdev); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2336 | } |
| 2337 | |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2338 | /** |
| 2339 | * Populate args from device at path |
| 2340 | * |
| 2341 | * @fs_info: the filesystem |
| 2342 | * @args: the args to populate |
| 2343 | * @path: the path to the device |
| 2344 | * |
| 2345 | * This will read the super block of the device at @path and populate @args with |
| 2346 | * the devid, fsid, and uuid. This is meant to be used for ioctls that need to |
| 2347 | * lookup a device to operate on, but need to do it before we take any locks. |
| 2348 | * This properly handles the special case of "missing" that a user may pass in, |
| 2349 | * and does some basic sanity checks. The caller must make sure that @path is |
| 2350 | * properly NUL terminated before calling in, and must call |
| 2351 | * btrfs_put_dev_args_from_path() in order to free up the temporary fsid and |
| 2352 | * uuid buffers. |
| 2353 | * |
| 2354 | * Return: 0 for success, -errno for failure |
| 2355 | */ |
| 2356 | int btrfs_get_dev_args_from_path(struct btrfs_fs_info *fs_info, |
| 2357 | struct btrfs_dev_lookup_args *args, |
| 2358 | const char *path) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2359 | { |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2360 | struct btrfs_super_block *disk_super; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2361 | struct block_device *bdev; |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2362 | int ret; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2363 | |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2364 | if (!path || !path[0]) |
| 2365 | return -EINVAL; |
| 2366 | if (!strcmp(path, "missing")) { |
| 2367 | args->missing = true; |
| 2368 | return 0; |
| 2369 | } |
| 2370 | |
| 2371 | args->uuid = kzalloc(BTRFS_UUID_SIZE, GFP_KERNEL); |
| 2372 | args->fsid = kzalloc(BTRFS_FSID_SIZE, GFP_KERNEL); |
| 2373 | if (!args->uuid || !args->fsid) { |
| 2374 | btrfs_put_dev_args_from_path(args); |
| 2375 | return -ENOMEM; |
| 2376 | } |
| 2377 | |
| 2378 | ret = btrfs_get_bdev_and_sb(path, FMODE_READ, fs_info->bdev_holder, 0, |
| 2379 | &bdev, &disk_super); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2380 | if (ret) |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2381 | return ret; |
| 2382 | args->devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2383 | memcpy(args->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2384 | if (btrfs_fs_incompat(fs_info, METADATA_UUID)) |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2385 | memcpy(args->fsid, disk_super->metadata_uuid, BTRFS_FSID_SIZE); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2386 | else |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2387 | memcpy(args->fsid, disk_super->fsid, BTRFS_FSID_SIZE); |
Johannes Thumshirn | 8f32380 | 2020-02-14 00:24:32 +0900 | [diff] [blame] | 2388 | btrfs_release_disk_super(disk_super); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2389 | blkdev_put(bdev, FMODE_READ); |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2390 | return 0; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2391 | } |
| 2392 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2393 | /* |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2394 | * Only use this jointly with btrfs_get_dev_args_from_path() because we will |
| 2395 | * allocate our ->uuid and ->fsid pointers, everybody else uses local variables |
| 2396 | * that don't need to be freed. |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2397 | */ |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2398 | void btrfs_put_dev_args_from_path(struct btrfs_dev_lookup_args *args) |
| 2399 | { |
| 2400 | kfree(args->uuid); |
| 2401 | kfree(args->fsid); |
| 2402 | args->uuid = NULL; |
| 2403 | args->fsid = NULL; |
| 2404 | } |
| 2405 | |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2406 | struct btrfs_device *btrfs_find_device_by_devspec( |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2407 | struct btrfs_fs_info *fs_info, u64 devid, |
| 2408 | const char *device_path) |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2409 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2410 | BTRFS_DEV_LOOKUP_ARGS(args); |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2411 | struct btrfs_device *device; |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2412 | int ret; |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2413 | |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2414 | if (devid) { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2415 | args.devid = devid; |
| 2416 | device = btrfs_find_device(fs_info->fs_devices, &args); |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 2417 | if (!device) |
| 2418 | return ERR_PTR(-ENOENT); |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2419 | return device; |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2420 | } |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2421 | |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2422 | ret = btrfs_get_dev_args_from_path(fs_info, &args, device_path); |
| 2423 | if (ret) |
| 2424 | return ERR_PTR(ret); |
| 2425 | device = btrfs_find_device(fs_info->fs_devices, &args); |
| 2426 | btrfs_put_dev_args_from_path(&args); |
| 2427 | if (!device) |
Anand Jain | 6e927ce | 2019-01-17 23:32:29 +0800 | [diff] [blame] | 2428 | return ERR_PTR(-ENOENT); |
Josef Bacik | faa775c | 2021-10-05 16:12:43 -0400 | [diff] [blame] | 2429 | return device; |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2430 | } |
| 2431 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2432 | /* |
| 2433 | * does all the dirty work required for changing file system's UUID. |
| 2434 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2435 | static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2436 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2437 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2438 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2439 | struct btrfs_fs_devices *seed_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2440 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2441 | struct btrfs_device *device; |
| 2442 | u64 super_flags; |
| 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) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2446 | return -EINVAL; |
| 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)) |
| 2454 | return PTR_ERR(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); |
| 2465 | return PTR_ERR(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 | 321a4bf | 2018-07-16 22:58:09 +0800 | [diff] [blame] | 2476 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2477 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2478 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2479 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2480 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2481 | |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 2482 | fs_devices->seeding = false; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2483 | fs_devices->num_devices = 0; |
| 2484 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2485 | fs_devices->missing_devices = 0; |
Johannes Thumshirn | 7f0432d | 2019-11-13 11:27:28 +0100 | [diff] [blame] | 2486 | fs_devices->rotating = false; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 2487 | list_add(&seed_devices->seed_list, &fs_devices->seed_list); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2488 | |
| 2489 | generate_random_uuid(fs_devices->fsid); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2490 | memcpy(fs_devices->metadata_uuid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2491 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Anand Jain | 321a4bf | 2018-07-16 22:58:09 +0800 | [diff] [blame] | 2492 | mutex_unlock(&fs_devices->device_list_mutex); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2493 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2494 | super_flags = btrfs_super_flags(disk_super) & |
| 2495 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2496 | btrfs_set_super_flags(disk_super, super_flags); |
| 2497 | |
| 2498 | return 0; |
| 2499 | } |
| 2500 | |
| 2501 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2502 | * Store the expected generation for seed devices in device items. |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2503 | */ |
David Sterba | 5c466629 | 2019-03-20 16:36:39 +0100 | [diff] [blame] | 2504 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2505 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2506 | BTRFS_DEV_LOOKUP_ARGS(args); |
David Sterba | 5c466629 | 2019-03-20 16:36:39 +0100 | [diff] [blame] | 2507 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2508 | struct btrfs_root *root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2509 | struct btrfs_path *path; |
| 2510 | struct extent_buffer *leaf; |
| 2511 | struct btrfs_dev_item *dev_item; |
| 2512 | struct btrfs_device *device; |
| 2513 | struct btrfs_key key; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2514 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2515 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2516 | int ret; |
| 2517 | |
| 2518 | path = btrfs_alloc_path(); |
| 2519 | if (!path) |
| 2520 | return -ENOMEM; |
| 2521 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2522 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2523 | key.offset = 0; |
| 2524 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2525 | |
| 2526 | while (1) { |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2527 | btrfs_reserve_chunk_metadata(trans, false); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2528 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2529 | btrfs_trans_release_chunk_metadata(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2530 | if (ret < 0) |
| 2531 | goto error; |
| 2532 | |
| 2533 | leaf = path->nodes[0]; |
| 2534 | next_slot: |
| 2535 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2536 | ret = btrfs_next_leaf(root, path); |
| 2537 | if (ret > 0) |
| 2538 | break; |
| 2539 | if (ret < 0) |
| 2540 | goto error; |
| 2541 | leaf = path->nodes[0]; |
| 2542 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2543 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2544 | continue; |
| 2545 | } |
| 2546 | |
| 2547 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2548 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2549 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2550 | break; |
| 2551 | |
| 2552 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2553 | struct btrfs_dev_item); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2554 | args.devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2555 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2556 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2557 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2558 | BTRFS_FSID_SIZE); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 2559 | args.uuid = dev_uuid; |
| 2560 | args.fsid = fs_uuid; |
| 2561 | device = btrfs_find_device(fs_info->fs_devices, &args); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2562 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2563 | |
| 2564 | if (device->fs_devices->seeding) { |
| 2565 | btrfs_set_device_generation(leaf, dev_item, |
| 2566 | device->generation); |
| 2567 | btrfs_mark_buffer_dirty(leaf); |
| 2568 | } |
| 2569 | |
| 2570 | path->slots[0]++; |
| 2571 | goto next_slot; |
| 2572 | } |
| 2573 | ret = 0; |
| 2574 | error: |
| 2575 | btrfs_free_path(path); |
| 2576 | return ret; |
| 2577 | } |
| 2578 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2579 | 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] | 2580 | { |
Jeff Mahoney | 5112feb | 2016-06-21 20:16:08 -0400 | [diff] [blame] | 2581 | struct btrfs_root *root = fs_info->dev_root; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2582 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2583 | struct btrfs_trans_handle *trans; |
| 2584 | struct btrfs_device *device; |
| 2585 | struct block_device *bdev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2586 | struct super_block *sb = fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2587 | struct rcu_string *name; |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2588 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2589 | u64 orig_super_total_bytes; |
| 2590 | u64 orig_super_num_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2591 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2592 | int ret = 0; |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2593 | bool locked = false; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2594 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2595 | if (sb_rdonly(sb) && !fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2596 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2597 | |
Li Zefan | a5d16333 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2598 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2599 | fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2600 | if (IS_ERR(bdev)) |
| 2601 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2602 | |
Naohiro Aota | b70f509 | 2020-11-10 20:26:08 +0900 | [diff] [blame] | 2603 | if (!btrfs_check_device_zone_type(fs_info, bdev)) { |
| 2604 | ret = -EINVAL; |
| 2605 | goto error; |
| 2606 | } |
| 2607 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2608 | if (fs_devices->seeding) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2609 | seeding_dev = 1; |
| 2610 | down_write(&sb->s_umount); |
| 2611 | mutex_lock(&uuid_mutex); |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2612 | locked = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2613 | } |
| 2614 | |
Nikolay Borisov | b9ba017 | 2020-07-22 11:09:25 +0300 | [diff] [blame] | 2615 | sync_blockdev(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2616 | |
Nikolay Borisov | f4cfa9b | 2020-07-22 11:09:22 +0300 | [diff] [blame] | 2617 | rcu_read_lock(); |
| 2618 | list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2619 | if (device->bdev == bdev) { |
| 2620 | ret = -EEXIST; |
Nikolay Borisov | f4cfa9b | 2020-07-22 11:09:22 +0300 | [diff] [blame] | 2621 | rcu_read_unlock(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2622 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2623 | } |
| 2624 | } |
Nikolay Borisov | f4cfa9b | 2020-07-22 11:09:22 +0300 | [diff] [blame] | 2625 | rcu_read_unlock(); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2626 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2627 | device = btrfs_alloc_device(fs_info, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2628 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2629 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2630 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2631 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2632 | } |
| 2633 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2634 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2635 | if (!name) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2636 | ret = -ENOMEM; |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2637 | goto error_free_device; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2638 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2639 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2640 | |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 2641 | device->fs_info = fs_info; |
| 2642 | device->bdev = bdev; |
| 2643 | |
| 2644 | ret = btrfs_get_dev_zone_info(device); |
| 2645 | if (ret) |
| 2646 | goto error_free_device; |
| 2647 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2648 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2649 | if (IS_ERR(trans)) { |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2650 | ret = PTR_ERR(trans); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 2651 | goto error_free_zone; |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2652 | } |
| 2653 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2654 | q = bdev_get_queue(bdev); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2655 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2656 | device->generation = trans->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2657 | device->io_width = fs_info->sectorsize; |
| 2658 | device->io_align = fs_info->sectorsize; |
| 2659 | device->sector_size = fs_info->sectorsize; |
Christoph Hellwig | cda00eb | 2021-10-18 12:11:12 +0200 | [diff] [blame] | 2660 | device->total_bytes = |
| 2661 | round_down(bdev_nr_bytes(bdev), fs_info->sectorsize); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2662 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2663 | device->commit_total_bytes = device->total_bytes; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2664 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2665 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2666 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2667 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2668 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2669 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2670 | if (seeding_dev) { |
Filipe Manana | a0a1db7 | 2020-12-14 10:10:47 +0000 | [diff] [blame] | 2671 | btrfs_clear_sb_rdonly(sb); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2672 | ret = btrfs_prepare_sprout(fs_info); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2673 | if (ret) { |
| 2674 | btrfs_abort_transaction(trans, ret); |
| 2675 | goto error_trans; |
| 2676 | } |
Anand Jain | b7cb29e | 2021-08-24 13:05:21 +0800 | [diff] [blame] | 2677 | btrfs_assign_next_active_device(fs_info->fs_devices->latest_dev, |
| 2678 | device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2679 | } |
| 2680 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2681 | device->fs_devices = fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2682 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2683 | mutex_lock(&fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2684 | mutex_lock(&fs_info->chunk_mutex); |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2685 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
| 2686 | list_add(&device->dev_alloc_list, &fs_devices->alloc_list); |
| 2687 | fs_devices->num_devices++; |
| 2688 | fs_devices->open_devices++; |
| 2689 | fs_devices->rw_devices++; |
| 2690 | fs_devices->total_devices++; |
| 2691 | fs_devices->total_rw_bytes += device->total_bytes; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2692 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2693 | atomic64_add(device->total_bytes, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2694 | |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 2695 | if (!blk_queue_nonrot(q)) |
Johannes Thumshirn | 7f0432d | 2019-11-13 11:27:28 +0100 | [diff] [blame] | 2696 | fs_devices->rotating = true; |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2697 | |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2698 | orig_super_total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2699 | btrfs_set_super_total_bytes(fs_info->super_copy, |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2700 | round_down(orig_super_total_bytes + device->total_bytes, |
| 2701 | fs_info->sectorsize)); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2702 | |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2703 | orig_super_num_devices = btrfs_super_num_devices(fs_info->super_copy); |
| 2704 | btrfs_set_super_num_devices(fs_info->super_copy, |
| 2705 | orig_super_num_devices + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2706 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2707 | /* |
| 2708 | * we've got more storage, clear any full flags on the space |
| 2709 | * infos |
| 2710 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2711 | btrfs_clear_space_info_full(fs_info); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2712 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2713 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | ca10845 | 2020-09-01 08:09:01 -0400 | [diff] [blame] | 2714 | |
| 2715 | /* Add sysfs device entry */ |
Anand Jain | cd36da2 | 2020-09-05 01:34:26 +0800 | [diff] [blame] | 2716 | btrfs_sysfs_add_device(device); |
Josef Bacik | ca10845 | 2020-09-01 08:09:01 -0400 | [diff] [blame] | 2717 | |
Anand Jain | 5da54bc | 2018-07-03 13:14:50 +0800 | [diff] [blame] | 2718 | mutex_unlock(&fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2719 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2720 | if (seeding_dev) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2721 | mutex_lock(&fs_info->chunk_mutex); |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 2722 | ret = init_first_rw_device(trans); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2723 | mutex_unlock(&fs_info->chunk_mutex); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2724 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2725 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2726 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2727 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2728 | } |
| 2729 | |
Nikolay Borisov | 8e87e85 | 2018-07-20 19:37:47 +0300 | [diff] [blame] | 2730 | ret = btrfs_add_dev_item(trans, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2731 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2732 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2733 | goto error_sysfs; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2734 | } |
| 2735 | |
| 2736 | if (seeding_dev) { |
David Sterba | 5c466629 | 2019-03-20 16:36:39 +0100 | [diff] [blame] | 2737 | ret = btrfs_finish_sprout(trans); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2738 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2739 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2740 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2741 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2742 | |
Nikolay Borisov | 8e56008 | 2020-08-12 16:18:51 +0300 | [diff] [blame] | 2743 | /* |
| 2744 | * fs_devices now represents the newly sprouted filesystem and |
| 2745 | * its fsid has been changed by btrfs_prepare_sprout |
| 2746 | */ |
| 2747 | btrfs_sysfs_update_sprout_fsid(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2748 | } |
| 2749 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2750 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2751 | |
| 2752 | if (seeding_dev) { |
| 2753 | mutex_unlock(&uuid_mutex); |
| 2754 | up_write(&sb->s_umount); |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2755 | locked = false; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2756 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2757 | if (ret) /* transaction commit */ |
| 2758 | return ret; |
| 2759 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2760 | ret = btrfs_relocate_sys_chunks(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2761 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2762 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2763 | "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] | 2764 | trans = btrfs_attach_transaction(root); |
| 2765 | if (IS_ERR(trans)) { |
| 2766 | if (PTR_ERR(trans) == -ENOENT) |
| 2767 | return 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2768 | ret = PTR_ERR(trans); |
| 2769 | trans = NULL; |
| 2770 | goto error_sysfs; |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2771 | } |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2772 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2773 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2774 | |
Anand Jain | 7f551d9 | 2020-05-05 02:58:26 +0800 | [diff] [blame] | 2775 | /* |
| 2776 | * Now that we have written a new super block to this device, check all |
| 2777 | * other fs_devices list if device_path alienates any other scanned |
| 2778 | * device. |
| 2779 | * We can ignore the return value as it typically returns -EINVAL and |
| 2780 | * only succeeds if the device was an alien. |
| 2781 | */ |
| 2782 | btrfs_forget_devices(device_path); |
| 2783 | |
| 2784 | /* Update ctime/mtime for blkid or udev */ |
Josef Bacik | 54fde91 | 2021-10-14 13:11:01 -0400 | [diff] [blame] | 2785 | update_dev_time(device_path); |
Anand Jain | 7f551d9 | 2020-05-05 02:58:26 +0800 | [diff] [blame] | 2786 | |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2787 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2788 | |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2789 | error_sysfs: |
Anand Jain | 53f8a74 | 2020-09-05 01:34:27 +0800 | [diff] [blame] | 2790 | btrfs_sysfs_remove_device(device); |
Naohiro Aota | 39379fa | 2018-07-27 09:04:55 +0900 | [diff] [blame] | 2791 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
| 2792 | mutex_lock(&fs_info->chunk_mutex); |
| 2793 | list_del_rcu(&device->dev_list); |
| 2794 | list_del(&device->dev_alloc_list); |
| 2795 | fs_info->fs_devices->num_devices--; |
| 2796 | fs_info->fs_devices->open_devices--; |
| 2797 | fs_info->fs_devices->rw_devices--; |
| 2798 | fs_info->fs_devices->total_devices--; |
| 2799 | fs_info->fs_devices->total_rw_bytes -= device->total_bytes; |
| 2800 | atomic64_sub(device->total_bytes, &fs_info->free_chunk_space); |
| 2801 | btrfs_set_super_total_bytes(fs_info->super_copy, |
| 2802 | orig_super_total_bytes); |
| 2803 | btrfs_set_super_num_devices(fs_info->super_copy, |
| 2804 | orig_super_num_devices); |
| 2805 | mutex_unlock(&fs_info->chunk_mutex); |
| 2806 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2807 | error_trans: |
Anand Jain | 0af2c4b | 2017-09-28 14:51:09 +0800 | [diff] [blame] | 2808 | if (seeding_dev) |
Filipe Manana | a0a1db7 | 2020-12-14 10:10:47 +0000 | [diff] [blame] | 2809 | btrfs_set_sb_rdonly(sb); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2810 | if (trans) |
| 2811 | btrfs_end_transaction(trans); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 2812 | error_free_zone: |
| 2813 | btrfs_destroy_dev_zone_info(device); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2814 | error_free_device: |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 2815 | btrfs_free_device(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2816 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2817 | blkdev_put(bdev, FMODE_EXCL); |
Nikolay Borisov | 44cab9b | 2020-07-22 11:09:23 +0300 | [diff] [blame] | 2818 | if (locked) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2819 | mutex_unlock(&uuid_mutex); |
| 2820 | up_write(&sb->s_umount); |
| 2821 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2822 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2823 | } |
| 2824 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2825 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2826 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2827 | { |
| 2828 | int ret; |
| 2829 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2830 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2831 | struct btrfs_dev_item *dev_item; |
| 2832 | struct extent_buffer *leaf; |
| 2833 | struct btrfs_key key; |
| 2834 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2835 | path = btrfs_alloc_path(); |
| 2836 | if (!path) |
| 2837 | return -ENOMEM; |
| 2838 | |
| 2839 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2840 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2841 | key.offset = device->devid; |
| 2842 | |
| 2843 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2844 | if (ret < 0) |
| 2845 | goto out; |
| 2846 | |
| 2847 | if (ret > 0) { |
| 2848 | ret = -ENOENT; |
| 2849 | goto out; |
| 2850 | } |
| 2851 | |
| 2852 | leaf = path->nodes[0]; |
| 2853 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2854 | |
| 2855 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2856 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2857 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2858 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2859 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2860 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2861 | btrfs_device_get_disk_total_bytes(device)); |
| 2862 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2863 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2864 | btrfs_mark_buffer_dirty(leaf); |
| 2865 | |
| 2866 | out: |
| 2867 | btrfs_free_path(path); |
| 2868 | return ret; |
| 2869 | } |
| 2870 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2871 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2872 | struct btrfs_device *device, u64 new_size) |
| 2873 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2874 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 2875 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2876 | u64 old_total; |
| 2877 | u64 diff; |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2878 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2879 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2880 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2881 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2882 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2883 | new_size = round_down(new_size, fs_info->sectorsize); |
| 2884 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2885 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2886 | old_total = btrfs_super_total_bytes(super_copy); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 2887 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2888 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2889 | if (new_size <= device->total_bytes || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2890 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2891 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2892 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2893 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2894 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2895 | btrfs_set_super_total_bytes(super_copy, |
| 2896 | round_down(old_total + diff, fs_info->sectorsize)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2897 | device->fs_devices->total_rw_bytes += diff; |
| 2898 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2899 | btrfs_device_set_total_bytes(device, new_size); |
| 2900 | btrfs_device_set_disk_total_bytes(device, new_size); |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2901 | btrfs_clear_space_info_full(device->fs_info); |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 2902 | if (list_empty(&device->post_commit_list)) |
| 2903 | list_add_tail(&device->post_commit_list, |
| 2904 | &trans->transaction->dev_update_list); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2905 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2906 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 2907 | btrfs_reserve_chunk_metadata(trans, false); |
| 2908 | ret = btrfs_update_device(trans, device); |
| 2909 | btrfs_trans_release_chunk_metadata(trans); |
| 2910 | |
| 2911 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2912 | } |
| 2913 | |
Nikolay Borisov | f420879 | 2018-07-20 19:37:52 +0300 | [diff] [blame] | 2914 | 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] | 2915 | { |
Nikolay Borisov | f420879 | 2018-07-20 19:37:52 +0300 | [diff] [blame] | 2916 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2917 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2918 | int ret; |
| 2919 | struct btrfs_path *path; |
| 2920 | struct btrfs_key key; |
| 2921 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2922 | path = btrfs_alloc_path(); |
| 2923 | if (!path) |
| 2924 | return -ENOMEM; |
| 2925 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2926 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2927 | key.offset = chunk_offset; |
| 2928 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2929 | |
| 2930 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2931 | if (ret < 0) |
| 2932 | goto out; |
| 2933 | else if (ret > 0) { /* Logic error or corruption */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2934 | btrfs_handle_fs_error(fs_info, -ENOENT, |
| 2935 | "Failed lookup while freeing chunk."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2936 | ret = -ENOENT; |
| 2937 | goto out; |
| 2938 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2939 | |
| 2940 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2941 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2942 | btrfs_handle_fs_error(fs_info, ret, |
| 2943 | "Failed to delete chunk item."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2944 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2945 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2946 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2947 | } |
| 2948 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2949 | 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] | 2950 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2951 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2952 | struct btrfs_disk_key *disk_key; |
| 2953 | struct btrfs_chunk *chunk; |
| 2954 | u8 *ptr; |
| 2955 | int ret = 0; |
| 2956 | u32 num_stripes; |
| 2957 | u32 array_size; |
| 2958 | u32 len = 0; |
| 2959 | u32 cur; |
| 2960 | struct btrfs_key key; |
| 2961 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 2962 | lockdep_assert_held(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2963 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2964 | |
| 2965 | ptr = super_copy->sys_chunk_array; |
| 2966 | cur = 0; |
| 2967 | |
| 2968 | while (cur < array_size) { |
| 2969 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2970 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2971 | |
| 2972 | len = sizeof(*disk_key); |
| 2973 | |
| 2974 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2975 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2976 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2977 | len += btrfs_chunk_item_size(num_stripes); |
| 2978 | } else { |
| 2979 | ret = -EIO; |
| 2980 | break; |
| 2981 | } |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2982 | if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2983 | key.offset == chunk_offset) { |
| 2984 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2985 | array_size -= len; |
| 2986 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2987 | } else { |
| 2988 | ptr += len; |
| 2989 | cur += len; |
| 2990 | } |
| 2991 | } |
| 2992 | return ret; |
| 2993 | } |
| 2994 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 2995 | /* |
| 2996 | * btrfs_get_chunk_map() - Find the mapping containing the given logical extent. |
| 2997 | * @logical: Logical block offset in bytes. |
| 2998 | * @length: Length of extent in bytes. |
| 2999 | * |
| 3000 | * Return: Chunk mapping or ERR_PTR. |
| 3001 | */ |
| 3002 | struct extent_map *btrfs_get_chunk_map(struct btrfs_fs_info *fs_info, |
| 3003 | u64 logical, u64 length) |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3004 | { |
| 3005 | struct extent_map_tree *em_tree; |
| 3006 | struct extent_map *em; |
| 3007 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 3008 | em_tree = &fs_info->mapping_tree; |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3009 | read_lock(&em_tree->lock); |
| 3010 | em = lookup_extent_mapping(em_tree, logical, length); |
| 3011 | read_unlock(&em_tree->lock); |
| 3012 | |
| 3013 | if (!em) { |
| 3014 | btrfs_crit(fs_info, "unable to find logical %llu length %llu", |
| 3015 | logical, length); |
| 3016 | return ERR_PTR(-EINVAL); |
| 3017 | } |
| 3018 | |
| 3019 | if (em->start > logical || em->start + em->len < logical) { |
| 3020 | btrfs_crit(fs_info, |
| 3021 | "found a bad mapping, wanted %llu-%llu, found %llu-%llu", |
| 3022 | logical, length, em->start, em->start + em->len); |
| 3023 | free_extent_map(em); |
| 3024 | return ERR_PTR(-EINVAL); |
| 3025 | } |
| 3026 | |
| 3027 | /* callers are responsible for dropping em's ref. */ |
| 3028 | return em; |
| 3029 | } |
| 3030 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3031 | static int remove_chunk_item(struct btrfs_trans_handle *trans, |
| 3032 | struct map_lookup *map, u64 chunk_offset) |
| 3033 | { |
| 3034 | int i; |
| 3035 | |
| 3036 | /* |
| 3037 | * Removing chunk items and updating the device items in the chunks btree |
| 3038 | * requires holding the chunk_mutex. |
| 3039 | * See the comment at btrfs_chunk_alloc() for the details. |
| 3040 | */ |
| 3041 | lockdep_assert_held(&trans->fs_info->chunk_mutex); |
| 3042 | |
| 3043 | for (i = 0; i < map->num_stripes; i++) { |
| 3044 | int ret; |
| 3045 | |
| 3046 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 3047 | if (ret) |
| 3048 | return ret; |
| 3049 | } |
| 3050 | |
| 3051 | return btrfs_free_chunk(trans, chunk_offset); |
| 3052 | } |
| 3053 | |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 3054 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3055 | { |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 3056 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3057 | struct extent_map *em; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3058 | struct map_lookup *map; |
| 3059 | u64 dev_extent_len = 0; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3060 | int i, ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3061 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3062 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 3063 | em = btrfs_get_chunk_map(fs_info, chunk_offset, 1); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3064 | if (IS_ERR(em)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3065 | /* |
| 3066 | * 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] | 3067 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3068 | * do anything we still error out. |
| 3069 | */ |
| 3070 | ASSERT(0); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 3071 | return PTR_ERR(em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3072 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 3073 | map = em->map_lookup; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3074 | |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3075 | /* |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3076 | * First delete the device extent items from the devices btree. |
| 3077 | * We take the device_list_mutex to avoid racing with the finishing phase |
| 3078 | * of a device replace operation. See the comment below before acquiring |
| 3079 | * fs_info->chunk_mutex. Note that here we do not acquire the chunk_mutex |
| 3080 | * because that can result in a deadlock when deleting the device extent |
| 3081 | * items from the devices btree - COWing an extent buffer from the btree |
| 3082 | * may result in allocating a new metadata chunk, which would attempt to |
| 3083 | * lock again fs_info->chunk_mutex. |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3084 | */ |
| 3085 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3086 | for (i = 0; i < map->num_stripes; i++) { |
| 3087 | struct btrfs_device *device = map->stripes[i].dev; |
| 3088 | ret = btrfs_free_dev_extent(trans, device, |
| 3089 | map->stripes[i].physical, |
| 3090 | &dev_extent_len); |
| 3091 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3092 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3093 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3094 | goto out; |
| 3095 | } |
| 3096 | |
| 3097 | if (device->bytes_used > 0) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 3098 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3099 | btrfs_device_set_bytes_used(device, |
| 3100 | device->bytes_used - dev_extent_len); |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 3101 | atomic64_add(dev_extent_len, &fs_info->free_chunk_space); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3102 | btrfs_clear_space_info_full(fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 3103 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3104 | } |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3105 | } |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 3106 | mutex_unlock(&fs_devices->device_list_mutex); |
| 3107 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3108 | /* |
| 3109 | * We acquire fs_info->chunk_mutex for 2 reasons: |
| 3110 | * |
| 3111 | * 1) Just like with the first phase of the chunk allocation, we must |
| 3112 | * reserve system space, do all chunk btree updates and deletions, and |
| 3113 | * update the system chunk array in the superblock while holding this |
| 3114 | * mutex. This is for similar reasons as explained on the comment at |
| 3115 | * the top of btrfs_chunk_alloc(); |
| 3116 | * |
| 3117 | * 2) Prevent races with the final phase of a device replace operation |
| 3118 | * that replaces the device object associated with the map's stripes, |
| 3119 | * because the device object's id can change at any time during that |
| 3120 | * final phase of the device replace operation |
| 3121 | * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the |
| 3122 | * replaced device and then see it with an ID of |
| 3123 | * BTRFS_DEV_REPLACE_DEVID, which would cause a failure when updating |
| 3124 | * the device item, which does not exists on the chunk btree. |
| 3125 | * The finishing phase of device replace acquires both the |
| 3126 | * device_list_mutex and the chunk_mutex, in that order, so we are |
| 3127 | * safe by just acquiring the chunk_mutex. |
| 3128 | */ |
| 3129 | trans->removing_chunk = true; |
| 3130 | mutex_lock(&fs_info->chunk_mutex); |
| 3131 | |
| 3132 | check_system_chunk(trans, map->type); |
| 3133 | |
| 3134 | ret = remove_chunk_item(trans, map, chunk_offset); |
| 3135 | /* |
| 3136 | * Normally we should not get -ENOSPC since we reserved space before |
| 3137 | * through the call to check_system_chunk(). |
| 3138 | * |
| 3139 | * Despite our system space_info having enough free space, we may not |
| 3140 | * be able to allocate extents from its block groups, because all have |
| 3141 | * an incompatible profile, which will force us to allocate a new system |
| 3142 | * block group with the right profile, or right after we called |
| 3143 | * check_system_space() above, a scrub turned the only system block group |
| 3144 | * with enough free space into RO mode. |
| 3145 | * This is explained with more detail at do_chunk_alloc(). |
| 3146 | * |
| 3147 | * So if we get -ENOSPC, allocate a new system chunk and retry once. |
| 3148 | */ |
| 3149 | if (ret == -ENOSPC) { |
| 3150 | const u64 sys_flags = btrfs_system_alloc_profile(fs_info); |
| 3151 | struct btrfs_block_group *sys_bg; |
| 3152 | |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 3153 | sys_bg = btrfs_create_chunk(trans, sys_flags); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3154 | if (IS_ERR(sys_bg)) { |
| 3155 | ret = PTR_ERR(sys_bg); |
| 3156 | btrfs_abort_transaction(trans, ret); |
| 3157 | goto out; |
| 3158 | } |
| 3159 | |
| 3160 | ret = btrfs_chunk_alloc_add_chunk_item(trans, sys_bg); |
| 3161 | if (ret) { |
| 3162 | btrfs_abort_transaction(trans, ret); |
| 3163 | goto out; |
| 3164 | } |
| 3165 | |
| 3166 | ret = remove_chunk_item(trans, map, chunk_offset); |
| 3167 | if (ret) { |
| 3168 | btrfs_abort_transaction(trans, ret); |
| 3169 | goto out; |
| 3170 | } |
| 3171 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3172 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3173 | goto out; |
| 3174 | } |
| 3175 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3176 | trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3177 | |
| 3178 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 3179 | ret = btrfs_del_sys_chunk(fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3180 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3181 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3182 | goto out; |
| 3183 | } |
| 3184 | } |
| 3185 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3186 | mutex_unlock(&fs_info->chunk_mutex); |
| 3187 | trans->removing_chunk = false; |
| 3188 | |
| 3189 | /* |
| 3190 | * We are done with chunk btree updates and deletions, so release the |
| 3191 | * system space we previously reserved (with check_system_chunk()). |
| 3192 | */ |
| 3193 | btrfs_trans_release_chunk_metadata(trans); |
| 3194 | |
Nikolay Borisov | 5a98ec0 | 2018-06-20 15:48:56 +0300 | [diff] [blame] | 3195 | ret = btrfs_remove_block_group(trans, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3196 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3197 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3198 | goto out; |
| 3199 | } |
| 3200 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3201 | out: |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3202 | if (trans->removing_chunk) { |
| 3203 | mutex_unlock(&fs_info->chunk_mutex); |
| 3204 | trans->removing_chunk = false; |
| 3205 | } |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3206 | /* once for us */ |
| 3207 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3208 | return ret; |
| 3209 | } |
| 3210 | |
Johannes Thumshirn | 18bb8bb | 2021-04-19 16:41:02 +0900 | [diff] [blame] | 3211 | 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] | 3212 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3213 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3214 | struct btrfs_trans_handle *trans; |
Dennis Zhou | b0643e5 | 2019-12-13 16:22:14 -0800 | [diff] [blame] | 3215 | struct btrfs_block_group *block_group; |
Johannes Thumshirn | 01e8600 | 2021-04-19 16:41:00 +0900 | [diff] [blame] | 3216 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3217 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3218 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3219 | /* |
| 3220 | * Prevent races with automatic removal of unused block groups. |
| 3221 | * After we relocate and before we remove the chunk with offset |
| 3222 | * chunk_offset, automatic removal of the block group can kick in, |
| 3223 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 3224 | * |
| 3225 | * Make sure to acquire this mutex before doing a tree search (dev |
| 3226 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 3227 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 3228 | * we release the path used to search the chunk/dev tree and before |
| 3229 | * the current task acquires this mutex and calls us. |
| 3230 | */ |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3231 | lockdep_assert_held(&fs_info->reclaim_bgs_lock); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3232 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3233 | /* step one, relocate all the extents inside this chunk */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3234 | btrfs_scrub_pause(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3235 | ret = btrfs_relocate_block_group(fs_info, chunk_offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3236 | btrfs_scrub_continue(fs_info); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3237 | if (ret) |
| 3238 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3239 | |
Dennis Zhou | b0643e5 | 2019-12-13 16:22:14 -0800 | [diff] [blame] | 3240 | block_group = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3241 | if (!block_group) |
| 3242 | return -ENOENT; |
| 3243 | btrfs_discard_cancel_work(&fs_info->discard_ctl, block_group); |
Johannes Thumshirn | 01e8600 | 2021-04-19 16:41:00 +0900 | [diff] [blame] | 3244 | length = block_group->length; |
Dennis Zhou | b0643e5 | 2019-12-13 16:22:14 -0800 | [diff] [blame] | 3245 | btrfs_put_block_group(block_group); |
| 3246 | |
Johannes Thumshirn | 01e8600 | 2021-04-19 16:41:00 +0900 | [diff] [blame] | 3247 | /* |
| 3248 | * On a zoned file system, discard the whole block group, this will |
| 3249 | * trigger a REQ_OP_ZONE_RESET operation on the device zone. If |
| 3250 | * resetting the zone fails, don't treat it as a fatal problem from the |
| 3251 | * filesystem's point of view. |
| 3252 | */ |
| 3253 | if (btrfs_is_zoned(fs_info)) { |
| 3254 | ret = btrfs_discard_extent(fs_info, chunk_offset, length, NULL); |
| 3255 | if (ret) |
| 3256 | btrfs_info(fs_info, |
| 3257 | "failed to reset zone %llu after relocation", |
| 3258 | chunk_offset); |
| 3259 | } |
| 3260 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3261 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 3262 | chunk_offset); |
| 3263 | if (IS_ERR(trans)) { |
| 3264 | ret = PTR_ERR(trans); |
| 3265 | btrfs_handle_fs_error(root->fs_info, ret, NULL); |
| 3266 | return ret; |
| 3267 | } |
Naohiro Aota | 5d8eb6f | 2016-09-02 16:46:32 +0900 | [diff] [blame] | 3268 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3269 | /* |
| 3270 | * step two, delete the device extents and the |
| 3271 | * chunk tree entries |
| 3272 | */ |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 3273 | ret = btrfs_remove_chunk(trans, chunk_offset); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3274 | btrfs_end_transaction(trans); |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3275 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3276 | } |
| 3277 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3278 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3279 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3280 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3281 | struct btrfs_path *path; |
| 3282 | struct extent_buffer *leaf; |
| 3283 | struct btrfs_chunk *chunk; |
| 3284 | struct btrfs_key key; |
| 3285 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3286 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3287 | bool retried = false; |
| 3288 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3289 | int ret; |
| 3290 | |
| 3291 | path = btrfs_alloc_path(); |
| 3292 | if (!path) |
| 3293 | return -ENOMEM; |
| 3294 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3295 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3296 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3297 | key.offset = (u64)-1; |
| 3298 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3299 | |
| 3300 | while (1) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3301 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3302 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3303 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3304 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3305 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3306 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3307 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3308 | |
| 3309 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 3310 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3311 | if (ret) |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3312 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3313 | if (ret < 0) |
| 3314 | goto error; |
| 3315 | if (ret > 0) |
| 3316 | break; |
| 3317 | |
| 3318 | leaf = path->nodes[0]; |
| 3319 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3320 | |
| 3321 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 3322 | struct btrfs_chunk); |
| 3323 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3324 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3325 | |
| 3326 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3327 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3328 | if (ret == -ENOSPC) |
| 3329 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 3330 | else |
| 3331 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3332 | } |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3333 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3334 | |
| 3335 | if (found_key.offset == 0) |
| 3336 | break; |
| 3337 | key.offset = found_key.offset - 1; |
| 3338 | } |
| 3339 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3340 | if (failed && !retried) { |
| 3341 | failed = 0; |
| 3342 | retried = true; |
| 3343 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3344 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3345 | ret = -ENOSPC; |
| 3346 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3347 | error: |
| 3348 | btrfs_free_path(path); |
| 3349 | return ret; |
| 3350 | } |
| 3351 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3352 | /* |
| 3353 | * return 1 : allocate a data chunk successfully, |
| 3354 | * return <0: errors during allocating a data chunk, |
| 3355 | * return 0 : no need to allocate a data chunk. |
| 3356 | */ |
| 3357 | static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info, |
| 3358 | u64 chunk_offset) |
| 3359 | { |
David Sterba | 32da5386 | 2019-10-29 19:20:18 +0100 | [diff] [blame] | 3360 | struct btrfs_block_group *cache; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3361 | u64 bytes_used; |
| 3362 | u64 chunk_type; |
| 3363 | |
| 3364 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3365 | ASSERT(cache); |
| 3366 | chunk_type = cache->flags; |
| 3367 | btrfs_put_block_group(cache); |
| 3368 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3369 | if (!(chunk_type & BTRFS_BLOCK_GROUP_DATA)) |
| 3370 | return 0; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3371 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3372 | spin_lock(&fs_info->data_sinfo->lock); |
| 3373 | bytes_used = fs_info->data_sinfo->bytes_used; |
| 3374 | spin_unlock(&fs_info->data_sinfo->lock); |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3375 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3376 | if (!bytes_used) { |
| 3377 | struct btrfs_trans_handle *trans; |
| 3378 | int ret; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3379 | |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3380 | trans = btrfs_join_transaction(fs_info->tree_root); |
| 3381 | if (IS_ERR(trans)) |
| 3382 | return PTR_ERR(trans); |
| 3383 | |
| 3384 | ret = btrfs_force_chunk_alloc(trans, BTRFS_BLOCK_GROUP_DATA); |
| 3385 | btrfs_end_transaction(trans); |
| 3386 | if (ret < 0) |
| 3387 | return ret; |
| 3388 | return 1; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3389 | } |
Johannes Thumshirn | 5ae2169 | 2019-10-18 11:58:22 +0200 | [diff] [blame] | 3390 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3391 | return 0; |
| 3392 | } |
| 3393 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3394 | static int insert_balance_item(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3395 | struct btrfs_balance_control *bctl) |
| 3396 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3397 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3398 | struct btrfs_trans_handle *trans; |
| 3399 | struct btrfs_balance_item *item; |
| 3400 | struct btrfs_disk_balance_args disk_bargs; |
| 3401 | struct btrfs_path *path; |
| 3402 | struct extent_buffer *leaf; |
| 3403 | struct btrfs_key key; |
| 3404 | int ret, err; |
| 3405 | |
| 3406 | path = btrfs_alloc_path(); |
| 3407 | if (!path) |
| 3408 | return -ENOMEM; |
| 3409 | |
| 3410 | trans = btrfs_start_transaction(root, 0); |
| 3411 | if (IS_ERR(trans)) { |
| 3412 | btrfs_free_path(path); |
| 3413 | return PTR_ERR(trans); |
| 3414 | } |
| 3415 | |
| 3416 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3417 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3418 | key.offset = 0; |
| 3419 | |
| 3420 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 3421 | sizeof(*item)); |
| 3422 | if (ret) |
| 3423 | goto out; |
| 3424 | |
| 3425 | leaf = path->nodes[0]; |
| 3426 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3427 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 3428 | memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item)); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3429 | |
| 3430 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 3431 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 3432 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 3433 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 3434 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 3435 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 3436 | |
| 3437 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 3438 | |
| 3439 | btrfs_mark_buffer_dirty(leaf); |
| 3440 | out: |
| 3441 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3442 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3443 | if (err && !ret) |
| 3444 | ret = err; |
| 3445 | return ret; |
| 3446 | } |
| 3447 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3448 | static int del_balance_item(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3449 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3450 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3451 | struct btrfs_trans_handle *trans; |
| 3452 | struct btrfs_path *path; |
| 3453 | struct btrfs_key key; |
| 3454 | int ret, err; |
| 3455 | |
| 3456 | path = btrfs_alloc_path(); |
| 3457 | if (!path) |
| 3458 | return -ENOMEM; |
| 3459 | |
David Sterba | 3502a8c | 2020-06-25 12:35:28 +0200 | [diff] [blame] | 3460 | trans = btrfs_start_transaction_fallback_global_rsv(root, 0); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3461 | if (IS_ERR(trans)) { |
| 3462 | btrfs_free_path(path); |
| 3463 | return PTR_ERR(trans); |
| 3464 | } |
| 3465 | |
| 3466 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3467 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3468 | key.offset = 0; |
| 3469 | |
| 3470 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3471 | if (ret < 0) |
| 3472 | goto out; |
| 3473 | if (ret > 0) { |
| 3474 | ret = -ENOENT; |
| 3475 | goto out; |
| 3476 | } |
| 3477 | |
| 3478 | ret = btrfs_del_item(trans, root, path); |
| 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 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3487 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3488 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3489 | * resume after balance was interrupted. |
| 3490 | */ |
| 3491 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3492 | { |
| 3493 | /* |
| 3494 | * Turn on soft mode for chunk types that were being converted. |
| 3495 | */ |
| 3496 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3497 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3498 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3499 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3500 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3501 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3502 | |
| 3503 | /* |
| 3504 | * Turn on usage filter if is not already used. The idea is |
| 3505 | * that chunks that we have already balanced should be |
| 3506 | * reasonably full. Don't do it for chunks that are being |
| 3507 | * converted - that will keep us from relocating unconverted |
| 3508 | * (albeit full) chunks. |
| 3509 | */ |
| 3510 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3511 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3512 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3513 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3514 | bctl->data.usage = 90; |
| 3515 | } |
| 3516 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3517 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3518 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3519 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3520 | bctl->sys.usage = 90; |
| 3521 | } |
| 3522 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3523 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3524 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3525 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3526 | bctl->meta.usage = 90; |
| 3527 | } |
| 3528 | } |
| 3529 | |
| 3530 | /* |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3531 | * Clear the balance status in fs_info and delete the balance item from disk. |
| 3532 | */ |
| 3533 | static void reset_balance_state(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3534 | { |
| 3535 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3536 | int ret; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3537 | |
| 3538 | BUG_ON(!fs_info->balance_ctl); |
| 3539 | |
| 3540 | spin_lock(&fs_info->balance_lock); |
| 3541 | fs_info->balance_ctl = NULL; |
| 3542 | spin_unlock(&fs_info->balance_lock); |
| 3543 | |
| 3544 | kfree(bctl); |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3545 | ret = del_balance_item(fs_info); |
| 3546 | if (ret) |
| 3547 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3548 | } |
| 3549 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3550 | /* |
| 3551 | * Balance filters. Return 1 if chunk should be filtered out |
| 3552 | * (should not be balanced). |
| 3553 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3554 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3555 | struct btrfs_balance_args *bargs) |
| 3556 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3557 | chunk_type = chunk_to_extended(chunk_type) & |
| 3558 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3559 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3560 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3561 | return 0; |
| 3562 | |
| 3563 | return 1; |
| 3564 | } |
| 3565 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3566 | 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] | 3567 | struct btrfs_balance_args *bargs) |
| 3568 | { |
David Sterba | 32da5386 | 2019-10-29 19:20:18 +0100 | [diff] [blame] | 3569 | struct btrfs_block_group *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3570 | u64 chunk_used; |
| 3571 | u64 user_thresh_min; |
| 3572 | u64 user_thresh_max; |
| 3573 | int ret = 1; |
| 3574 | |
| 3575 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
David Sterba | bf38be6 | 2019-10-23 18:48:11 +0200 | [diff] [blame] | 3576 | chunk_used = cache->used; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3577 | |
| 3578 | if (bargs->usage_min == 0) |
| 3579 | user_thresh_min = 0; |
| 3580 | else |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3581 | user_thresh_min = div_factor_fine(cache->length, |
| 3582 | bargs->usage_min); |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3583 | |
| 3584 | if (bargs->usage_max == 0) |
| 3585 | user_thresh_max = 1; |
| 3586 | else if (bargs->usage_max > 100) |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3587 | user_thresh_max = cache->length; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3588 | else |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3589 | user_thresh_max = div_factor_fine(cache->length, |
| 3590 | bargs->usage_max); |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3591 | |
| 3592 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3593 | ret = 0; |
| 3594 | |
| 3595 | btrfs_put_block_group(cache); |
| 3596 | return ret; |
| 3597 | } |
| 3598 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3599 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3600 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3601 | { |
David Sterba | 32da5386 | 2019-10-29 19:20:18 +0100 | [diff] [blame] | 3602 | struct btrfs_block_group *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3603 | u64 chunk_used, user_thresh; |
| 3604 | int ret = 1; |
| 3605 | |
| 3606 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
David Sterba | bf38be6 | 2019-10-23 18:48:11 +0200 | [diff] [blame] | 3607 | chunk_used = cache->used; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3608 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3609 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3610 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3611 | else if (bargs->usage > 100) |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3612 | user_thresh = cache->length; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3613 | else |
David Sterba | b3470b5 | 2019-10-23 18:48:22 +0200 | [diff] [blame] | 3614 | user_thresh = div_factor_fine(cache->length, bargs->usage); |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3615 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3616 | if (chunk_used < user_thresh) |
| 3617 | ret = 0; |
| 3618 | |
| 3619 | btrfs_put_block_group(cache); |
| 3620 | return ret; |
| 3621 | } |
| 3622 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3623 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3624 | struct btrfs_chunk *chunk, |
| 3625 | struct btrfs_balance_args *bargs) |
| 3626 | { |
| 3627 | struct btrfs_stripe *stripe; |
| 3628 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3629 | int i; |
| 3630 | |
| 3631 | for (i = 0; i < num_stripes; i++) { |
| 3632 | stripe = btrfs_stripe_nr(chunk, i); |
| 3633 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3634 | return 0; |
| 3635 | } |
| 3636 | |
| 3637 | return 1; |
| 3638 | } |
| 3639 | |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3640 | static u64 calc_data_stripes(u64 type, int num_stripes) |
| 3641 | { |
| 3642 | const int index = btrfs_bg_flags_to_raid_index(type); |
| 3643 | const int ncopies = btrfs_raid_array[index].ncopies; |
| 3644 | const int nparity = btrfs_raid_array[index].nparity; |
| 3645 | |
David Sterba | d58ede8 | 2021-07-26 14:15:24 +0200 | [diff] [blame] | 3646 | return (num_stripes - nparity) / ncopies; |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3647 | } |
| 3648 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3649 | /* [pstart, pend) */ |
| 3650 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3651 | struct btrfs_chunk *chunk, |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3652 | struct btrfs_balance_args *bargs) |
| 3653 | { |
| 3654 | struct btrfs_stripe *stripe; |
| 3655 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3656 | u64 stripe_offset; |
| 3657 | u64 stripe_length; |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3658 | u64 type; |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3659 | int factor; |
| 3660 | int i; |
| 3661 | |
| 3662 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3663 | return 0; |
| 3664 | |
David Sterba | 946c925 | 2019-05-17 11:43:34 +0200 | [diff] [blame] | 3665 | type = btrfs_chunk_type(leaf, chunk); |
| 3666 | factor = calc_data_stripes(type, num_stripes); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3667 | |
| 3668 | for (i = 0; i < num_stripes; i++) { |
| 3669 | stripe = btrfs_stripe_nr(chunk, i); |
| 3670 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3671 | continue; |
| 3672 | |
| 3673 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3674 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3675 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3676 | |
| 3677 | if (stripe_offset < bargs->pend && |
| 3678 | stripe_offset + stripe_length > bargs->pstart) |
| 3679 | return 0; |
| 3680 | } |
| 3681 | |
| 3682 | return 1; |
| 3683 | } |
| 3684 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3685 | /* [vstart, vend) */ |
| 3686 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3687 | struct btrfs_chunk *chunk, |
| 3688 | u64 chunk_offset, |
| 3689 | struct btrfs_balance_args *bargs) |
| 3690 | { |
| 3691 | if (chunk_offset < bargs->vend && |
| 3692 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3693 | /* at least part of the chunk is inside this vrange */ |
| 3694 | return 0; |
| 3695 | |
| 3696 | return 1; |
| 3697 | } |
| 3698 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3699 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3700 | struct btrfs_chunk *chunk, |
| 3701 | struct btrfs_balance_args *bargs) |
| 3702 | { |
| 3703 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3704 | |
| 3705 | if (bargs->stripes_min <= num_stripes |
| 3706 | && num_stripes <= bargs->stripes_max) |
| 3707 | return 0; |
| 3708 | |
| 3709 | return 1; |
| 3710 | } |
| 3711 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3712 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3713 | struct btrfs_balance_args *bargs) |
| 3714 | { |
| 3715 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3716 | return 0; |
| 3717 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3718 | chunk_type = chunk_to_extended(chunk_type) & |
| 3719 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3720 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3721 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3722 | return 1; |
| 3723 | |
| 3724 | return 0; |
| 3725 | } |
| 3726 | |
David Sterba | 6ec0896 | 2019-03-20 16:38:52 +0100 | [diff] [blame] | 3727 | static int should_balance_chunk(struct extent_buffer *leaf, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3728 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3729 | { |
David Sterba | 6ec0896 | 2019-03-20 16:38:52 +0100 | [diff] [blame] | 3730 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3731 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3732 | struct btrfs_balance_args *bargs = NULL; |
| 3733 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3734 | |
| 3735 | /* type filter */ |
| 3736 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3737 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3738 | return 0; |
| 3739 | } |
| 3740 | |
| 3741 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3742 | bargs = &bctl->data; |
| 3743 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3744 | bargs = &bctl->sys; |
| 3745 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3746 | bargs = &bctl->meta; |
| 3747 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3748 | /* profiles filter */ |
| 3749 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3750 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3751 | return 0; |
| 3752 | } |
| 3753 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3754 | /* usage filter */ |
| 3755 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3756 | chunk_usage_filter(fs_info, chunk_offset, bargs)) { |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3757 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3758 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3759 | chunk_usage_range_filter(fs_info, chunk_offset, bargs)) { |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3760 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3761 | } |
| 3762 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3763 | /* devid filter */ |
| 3764 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3765 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3766 | return 0; |
| 3767 | } |
| 3768 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3769 | /* drange filter, makes sense only with devid filter */ |
| 3770 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 3771 | chunk_drange_filter(leaf, chunk, bargs)) { |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3772 | return 0; |
| 3773 | } |
| 3774 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3775 | /* vrange filter */ |
| 3776 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3777 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3778 | return 0; |
| 3779 | } |
| 3780 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3781 | /* stripes filter */ |
| 3782 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3783 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3784 | return 0; |
| 3785 | } |
| 3786 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3787 | /* soft profile changing mode */ |
| 3788 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3789 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3790 | return 0; |
| 3791 | } |
| 3792 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3793 | /* |
| 3794 | * limited by count, must be the last filter |
| 3795 | */ |
| 3796 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3797 | if (bargs->limit == 0) |
| 3798 | return 0; |
| 3799 | else |
| 3800 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3801 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3802 | /* |
| 3803 | * Same logic as the 'limit' filter; the minimum cannot be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3804 | * determined here because we do not have the global information |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3805 | * about the count of all chunks that satisfy the filters. |
| 3806 | */ |
| 3807 | if (bargs->limit_max == 0) |
| 3808 | return 0; |
| 3809 | else |
| 3810 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3811 | } |
| 3812 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3813 | return 1; |
| 3814 | } |
| 3815 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3816 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3817 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3818 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3819 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3820 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3821 | struct btrfs_chunk *chunk; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3822 | struct btrfs_path *path = NULL; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3823 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3824 | struct btrfs_key found_key; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3825 | struct extent_buffer *leaf; |
| 3826 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3827 | int ret; |
| 3828 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3829 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3830 | /* 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] | 3831 | u64 limit_data = bctl->data.limit; |
| 3832 | u64 limit_meta = bctl->meta.limit; |
| 3833 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3834 | u32 count_data = 0; |
| 3835 | u32 count_meta = 0; |
| 3836 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3837 | int chunk_reserved = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3838 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3839 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3840 | if (!path) { |
| 3841 | ret = -ENOMEM; |
| 3842 | goto error; |
| 3843 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3844 | |
| 3845 | /* zero out stat counters */ |
| 3846 | spin_lock(&fs_info->balance_lock); |
| 3847 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3848 | spin_unlock(&fs_info->balance_lock); |
| 3849 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3850 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3851 | /* |
| 3852 | * The single value limit and min/max limits use the same bytes |
| 3853 | * in the |
| 3854 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3855 | bctl->data.limit = limit_data; |
| 3856 | bctl->meta.limit = limit_meta; |
| 3857 | bctl->sys.limit = limit_sys; |
| 3858 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3859 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3860 | key.offset = (u64)-1; |
| 3861 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3862 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3863 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3864 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3865 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3866 | ret = -ECANCELED; |
| 3867 | goto error; |
| 3868 | } |
| 3869 | |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3870 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3871 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3872 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3873 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3874 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3875 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3876 | |
| 3877 | /* |
| 3878 | * this shouldn't happen, it means the last relocate |
| 3879 | * failed |
| 3880 | */ |
| 3881 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3882 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3883 | |
| 3884 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3885 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3886 | if (ret) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3887 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3888 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3889 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3890 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3891 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3892 | leaf = path->nodes[0]; |
| 3893 | slot = path->slots[0]; |
| 3894 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3895 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3896 | if (found_key.objectid != key.objectid) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3897 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3898 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3899 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3900 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3901 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3902 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3903 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3904 | if (!counting) { |
| 3905 | spin_lock(&fs_info->balance_lock); |
| 3906 | bctl->stat.considered++; |
| 3907 | spin_unlock(&fs_info->balance_lock); |
| 3908 | } |
| 3909 | |
David Sterba | 6ec0896 | 2019-03-20 16:38:52 +0100 | [diff] [blame] | 3910 | ret = should_balance_chunk(leaf, chunk, found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3911 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3912 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3913 | if (!ret) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3914 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3915 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3916 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3917 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3918 | if (counting) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3919 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3920 | spin_lock(&fs_info->balance_lock); |
| 3921 | bctl->stat.expected++; |
| 3922 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3923 | |
| 3924 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3925 | count_data++; |
| 3926 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3927 | count_sys++; |
| 3928 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3929 | count_meta++; |
| 3930 | |
| 3931 | goto loop; |
| 3932 | } |
| 3933 | |
| 3934 | /* |
| 3935 | * Apply limit_min filter, no need to check if the LIMITS |
| 3936 | * filter is used, limit_min is 0 by default |
| 3937 | */ |
| 3938 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3939 | count_data < bctl->data.limit_min) |
| 3940 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3941 | count_meta < bctl->meta.limit_min) |
| 3942 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3943 | count_sys < bctl->sys.limit_min)) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3944 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3945 | goto loop; |
| 3946 | } |
| 3947 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3948 | if (!chunk_reserved) { |
| 3949 | /* |
| 3950 | * We may be relocating the only data chunk we have, |
| 3951 | * which could potentially end up with losing data's |
| 3952 | * raid profile, so lets allocate an empty one in |
| 3953 | * advance. |
| 3954 | */ |
| 3955 | ret = btrfs_may_alloc_data_chunk(fs_info, |
| 3956 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3957 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3958 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3959 | goto error; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3960 | } else if (ret == 1) { |
| 3961 | chunk_reserved = 1; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3962 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3963 | } |
| 3964 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3965 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 3966 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3967 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3968 | enospc_errors++; |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 3969 | } else if (ret == -ETXTBSY) { |
| 3970 | btrfs_info(fs_info, |
| 3971 | "skipping relocation of block group %llu due to active swapfile", |
| 3972 | found_key.offset); |
| 3973 | ret = 0; |
| 3974 | } else if (ret) { |
| 3975 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3976 | } else { |
| 3977 | spin_lock(&fs_info->balance_lock); |
| 3978 | bctl->stat.completed++; |
| 3979 | spin_unlock(&fs_info->balance_lock); |
| 3980 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3981 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3982 | if (found_key.offset == 0) |
| 3983 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3984 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3985 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3986 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3987 | if (counting) { |
| 3988 | btrfs_release_path(path); |
| 3989 | counting = false; |
| 3990 | goto again; |
| 3991 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3992 | error: |
| 3993 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3994 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3995 | btrfs_info(fs_info, "%d enospc errors during balance", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3996 | enospc_errors); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3997 | if (!ret) |
| 3998 | ret = -ENOSPC; |
| 3999 | } |
| 4000 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4001 | return ret; |
| 4002 | } |
| 4003 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4004 | /** |
| 4005 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 4006 | * @flags: profile to validate |
| 4007 | * @extended: if true @flags is treated as an extended profile |
| 4008 | */ |
| 4009 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 4010 | { |
| 4011 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 4012 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 4013 | |
| 4014 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 4015 | |
| 4016 | /* 1) check that all other bits are zeroed */ |
| 4017 | if (flags & ~mask) |
| 4018 | return 0; |
| 4019 | |
| 4020 | /* 2) see if profile is reduced */ |
| 4021 | if (flags == 0) |
| 4022 | return !extended; /* "0" is valid for usual profiles */ |
| 4023 | |
David Sterba | c149916 | 2019-10-01 19:44:42 +0200 | [diff] [blame] | 4024 | return has_single_bit_set(flags); |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4025 | } |
| 4026 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4027 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 4028 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4029 | /* cancel requested || normal exit path */ |
| 4030 | return atomic_read(&fs_info->balance_cancel_req) || |
| 4031 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 4032 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4033 | } |
| 4034 | |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4035 | /* |
| 4036 | * Validate target profile against allowed profiles and return true if it's OK. |
| 4037 | * Otherwise print the error message and return false. |
| 4038 | */ |
| 4039 | static inline int validate_convert_profile(struct btrfs_fs_info *fs_info, |
| 4040 | const struct btrfs_balance_args *bargs, |
| 4041 | u64 allowed, const char *type) |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 4042 | { |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4043 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 4044 | return true; |
| 4045 | |
Qu Wenruo | c8050b3 | 2021-07-26 14:35:01 +0800 | [diff] [blame] | 4046 | if (fs_info->sectorsize < PAGE_SIZE && |
| 4047 | bargs->target & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 4048 | btrfs_err(fs_info, |
| 4049 | "RAID56 is not yet supported for sectorsize %u with page size %lu", |
| 4050 | fs_info->sectorsize, PAGE_SIZE); |
| 4051 | return false; |
| 4052 | } |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4053 | /* Profile is valid and does not have bits outside of the allowed set */ |
| 4054 | if (alloc_profile_is_valid(bargs->target, 1) && |
| 4055 | (bargs->target & ~allowed) == 0) |
| 4056 | return true; |
| 4057 | |
| 4058 | btrfs_err(fs_info, "balance: invalid convert %s profile %s", |
| 4059 | type, btrfs_bg_type_to_raid_name(bargs->target)); |
| 4060 | return false; |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 4061 | } |
| 4062 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4063 | /* |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4064 | * Fill @buf with textual description of balance filter flags @bargs, up to |
| 4065 | * @size_buf including the terminating null. The output may be trimmed if it |
| 4066 | * does not fit into the provided buffer. |
| 4067 | */ |
| 4068 | static void describe_balance_args(struct btrfs_balance_args *bargs, char *buf, |
| 4069 | u32 size_buf) |
| 4070 | { |
| 4071 | int ret; |
| 4072 | u32 size_bp = size_buf; |
| 4073 | char *bp = buf; |
| 4074 | u64 flags = bargs->flags; |
| 4075 | char tmp_buf[128] = {'\0'}; |
| 4076 | |
| 4077 | if (!flags) |
| 4078 | return; |
| 4079 | |
| 4080 | #define CHECK_APPEND_NOARG(a) \ |
| 4081 | do { \ |
| 4082 | ret = snprintf(bp, size_bp, (a)); \ |
| 4083 | if (ret < 0 || ret >= size_bp) \ |
| 4084 | goto out_overflow; \ |
| 4085 | size_bp -= ret; \ |
| 4086 | bp += ret; \ |
| 4087 | } while (0) |
| 4088 | |
| 4089 | #define CHECK_APPEND_1ARG(a, v1) \ |
| 4090 | do { \ |
| 4091 | ret = snprintf(bp, size_bp, (a), (v1)); \ |
| 4092 | if (ret < 0 || ret >= size_bp) \ |
| 4093 | goto out_overflow; \ |
| 4094 | size_bp -= ret; \ |
| 4095 | bp += ret; \ |
| 4096 | } while (0) |
| 4097 | |
| 4098 | #define CHECK_APPEND_2ARG(a, v1, v2) \ |
| 4099 | do { \ |
| 4100 | ret = snprintf(bp, size_bp, (a), (v1), (v2)); \ |
| 4101 | if (ret < 0 || ret >= size_bp) \ |
| 4102 | goto out_overflow; \ |
| 4103 | size_bp -= ret; \ |
| 4104 | bp += ret; \ |
| 4105 | } while (0) |
| 4106 | |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 4107 | if (flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 4108 | CHECK_APPEND_1ARG("convert=%s,", |
| 4109 | btrfs_bg_type_to_raid_name(bargs->target)); |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4110 | |
| 4111 | if (flags & BTRFS_BALANCE_ARGS_SOFT) |
| 4112 | CHECK_APPEND_NOARG("soft,"); |
| 4113 | |
| 4114 | if (flags & BTRFS_BALANCE_ARGS_PROFILES) { |
| 4115 | btrfs_describe_block_groups(bargs->profiles, tmp_buf, |
| 4116 | sizeof(tmp_buf)); |
| 4117 | CHECK_APPEND_1ARG("profiles=%s,", tmp_buf); |
| 4118 | } |
| 4119 | |
| 4120 | if (flags & BTRFS_BALANCE_ARGS_USAGE) |
| 4121 | CHECK_APPEND_1ARG("usage=%llu,", bargs->usage); |
| 4122 | |
| 4123 | if (flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) |
| 4124 | CHECK_APPEND_2ARG("usage=%u..%u,", |
| 4125 | bargs->usage_min, bargs->usage_max); |
| 4126 | |
| 4127 | if (flags & BTRFS_BALANCE_ARGS_DEVID) |
| 4128 | CHECK_APPEND_1ARG("devid=%llu,", bargs->devid); |
| 4129 | |
| 4130 | if (flags & BTRFS_BALANCE_ARGS_DRANGE) |
| 4131 | CHECK_APPEND_2ARG("drange=%llu..%llu,", |
| 4132 | bargs->pstart, bargs->pend); |
| 4133 | |
| 4134 | if (flags & BTRFS_BALANCE_ARGS_VRANGE) |
| 4135 | CHECK_APPEND_2ARG("vrange=%llu..%llu,", |
| 4136 | bargs->vstart, bargs->vend); |
| 4137 | |
| 4138 | if (flags & BTRFS_BALANCE_ARGS_LIMIT) |
| 4139 | CHECK_APPEND_1ARG("limit=%llu,", bargs->limit); |
| 4140 | |
| 4141 | if (flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE) |
| 4142 | CHECK_APPEND_2ARG("limit=%u..%u,", |
| 4143 | bargs->limit_min, bargs->limit_max); |
| 4144 | |
| 4145 | if (flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) |
| 4146 | CHECK_APPEND_2ARG("stripes=%u..%u,", |
| 4147 | bargs->stripes_min, bargs->stripes_max); |
| 4148 | |
| 4149 | #undef CHECK_APPEND_2ARG |
| 4150 | #undef CHECK_APPEND_1ARG |
| 4151 | #undef CHECK_APPEND_NOARG |
| 4152 | |
| 4153 | out_overflow: |
| 4154 | |
| 4155 | if (size_bp < size_buf) |
| 4156 | buf[size_buf - size_bp - 1] = '\0'; /* remove last , */ |
| 4157 | else |
| 4158 | buf[0] = '\0'; |
| 4159 | } |
| 4160 | |
| 4161 | static void describe_balance_start_or_resume(struct btrfs_fs_info *fs_info) |
| 4162 | { |
| 4163 | u32 size_buf = 1024; |
| 4164 | char tmp_buf[192] = {'\0'}; |
| 4165 | char *buf; |
| 4166 | char *bp; |
| 4167 | u32 size_bp = size_buf; |
| 4168 | int ret; |
| 4169 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 4170 | |
| 4171 | buf = kzalloc(size_buf, GFP_KERNEL); |
| 4172 | if (!buf) |
| 4173 | return; |
| 4174 | |
| 4175 | bp = buf; |
| 4176 | |
| 4177 | #define CHECK_APPEND_1ARG(a, v1) \ |
| 4178 | do { \ |
| 4179 | ret = snprintf(bp, size_bp, (a), (v1)); \ |
| 4180 | if (ret < 0 || ret >= size_bp) \ |
| 4181 | goto out_overflow; \ |
| 4182 | size_bp -= ret; \ |
| 4183 | bp += ret; \ |
| 4184 | } while (0) |
| 4185 | |
| 4186 | if (bctl->flags & BTRFS_BALANCE_FORCE) |
| 4187 | CHECK_APPEND_1ARG("%s", "-f "); |
| 4188 | |
| 4189 | if (bctl->flags & BTRFS_BALANCE_DATA) { |
| 4190 | describe_balance_args(&bctl->data, tmp_buf, sizeof(tmp_buf)); |
| 4191 | CHECK_APPEND_1ARG("-d%s ", tmp_buf); |
| 4192 | } |
| 4193 | |
| 4194 | if (bctl->flags & BTRFS_BALANCE_METADATA) { |
| 4195 | describe_balance_args(&bctl->meta, tmp_buf, sizeof(tmp_buf)); |
| 4196 | CHECK_APPEND_1ARG("-m%s ", tmp_buf); |
| 4197 | } |
| 4198 | |
| 4199 | if (bctl->flags & BTRFS_BALANCE_SYSTEM) { |
| 4200 | describe_balance_args(&bctl->sys, tmp_buf, sizeof(tmp_buf)); |
| 4201 | CHECK_APPEND_1ARG("-s%s ", tmp_buf); |
| 4202 | } |
| 4203 | |
| 4204 | #undef CHECK_APPEND_1ARG |
| 4205 | |
| 4206 | out_overflow: |
| 4207 | |
| 4208 | if (size_bp < size_buf) |
| 4209 | buf[size_buf - size_bp - 1] = '\0'; /* remove last " " */ |
| 4210 | btrfs_info(fs_info, "balance: %s %s", |
| 4211 | (bctl->flags & BTRFS_BALANCE_RESUME) ? |
| 4212 | "resume" : "start", buf); |
| 4213 | |
| 4214 | kfree(buf); |
| 4215 | } |
| 4216 | |
| 4217 | /* |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 4218 | * Should be called with balance mutexe held |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4219 | */ |
David Sterba | 6fcf6e2 | 2018-05-07 17:44:03 +0200 | [diff] [blame] | 4220 | int btrfs_balance(struct btrfs_fs_info *fs_info, |
| 4221 | struct btrfs_balance_control *bctl, |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4222 | struct btrfs_ioctl_balance_args *bargs) |
| 4223 | { |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 4224 | u64 meta_target, data_target; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4225 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4226 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4227 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 4228 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4229 | unsigned seq; |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4230 | bool reducing_redundancy; |
David Sterba | 081db89 | 2019-05-17 11:43:27 +0200 | [diff] [blame] | 4231 | int i; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4232 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4233 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4234 | atomic_read(&fs_info->balance_pause_req) || |
Qu Wenruo | 726a342 | 2020-02-17 14:16:52 +0800 | [diff] [blame] | 4235 | btrfs_should_cancel_balance(fs_info)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4236 | ret = -EINVAL; |
| 4237 | goto out; |
| 4238 | } |
| 4239 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4240 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 4241 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 4242 | mixed = 1; |
| 4243 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4244 | /* |
| 4245 | * In case of mixed groups both data and meta should be picked, |
| 4246 | * and identical options should be given for both of them. |
| 4247 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4248 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 4249 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4250 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 4251 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 4252 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 4253 | btrfs_err(fs_info, |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4254 | "balance: mixed groups data and metadata options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4255 | ret = -EINVAL; |
| 4256 | goto out; |
| 4257 | } |
| 4258 | } |
| 4259 | |
Josef Bacik | b35cf1f | 2020-01-10 11:11:24 -0500 | [diff] [blame] | 4260 | /* |
| 4261 | * rw_devices will not change at the moment, device add/delete/replace |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4262 | * are exclusive |
Josef Bacik | b35cf1f | 2020-01-10 11:11:24 -0500 | [diff] [blame] | 4263 | */ |
| 4264 | num_devices = fs_info->fs_devices->rw_devices; |
Qu Wenruo | fab2735 | 2019-09-25 10:13:27 +0800 | [diff] [blame] | 4265 | |
| 4266 | /* |
| 4267 | * SINGLE profile on-disk has no profile bit, but in-memory we have a |
| 4268 | * special bit for it, to make it easier to distinguish. Thus we need |
| 4269 | * to set it manually, or balance would refuse the profile. |
| 4270 | */ |
| 4271 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE; |
David Sterba | 081db89 | 2019-05-17 11:43:27 +0200 | [diff] [blame] | 4272 | for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++) |
| 4273 | if (num_devices >= btrfs_raid_array[i].devs_min) |
| 4274 | allowed |= btrfs_raid_array[i].bg_flag; |
Anand Jain | 1da7396 | 2018-08-10 13:53:21 +0800 | [diff] [blame] | 4275 | |
David Sterba | 5ba366c | 2020-02-27 21:00:52 +0100 | [diff] [blame] | 4276 | if (!validate_convert_profile(fs_info, &bctl->data, allowed, "data") || |
| 4277 | !validate_convert_profile(fs_info, &bctl->meta, allowed, "metadata") || |
| 4278 | !validate_convert_profile(fs_info, &bctl->sys, allowed, "system")) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4279 | ret = -EINVAL; |
| 4280 | goto out; |
| 4281 | } |
| 4282 | |
David Sterba | 6079e12 | 2019-05-17 11:43:29 +0200 | [diff] [blame] | 4283 | /* |
| 4284 | * Allow to reduce metadata or system integrity only if force set for |
| 4285 | * profiles with redundancy (copies, parity) |
| 4286 | */ |
| 4287 | allowed = 0; |
| 4288 | for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++) { |
| 4289 | if (btrfs_raid_array[i].ncopies >= 2 || |
| 4290 | btrfs_raid_array[i].tolerated_failures >= 1) |
| 4291 | allowed |= btrfs_raid_array[i].bg_flag; |
| 4292 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4293 | do { |
| 4294 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 4295 | |
| 4296 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 4297 | (fs_info->avail_system_alloc_bits & allowed) && |
| 4298 | !(bctl->sys.target & allowed)) || |
| 4299 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 4300 | (fs_info->avail_metadata_alloc_bits & allowed) && |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4301 | !(bctl->meta.target & allowed))) |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4302 | reducing_redundancy = true; |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4303 | else |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4304 | reducing_redundancy = false; |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4305 | |
| 4306 | /* if we're not converting, the target field is uninitialized */ |
| 4307 | meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 4308 | bctl->meta.target : fs_info->avail_metadata_alloc_bits; |
| 4309 | data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 4310 | bctl->data.target : fs_info->avail_data_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4311 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4312 | |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4313 | if (reducing_redundancy) { |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4314 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
| 4315 | btrfs_info(fs_info, |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4316 | "balance: force reducing metadata redundancy"); |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4317 | } else { |
| 4318 | btrfs_err(fs_info, |
Anand Jain | e62869b | 2019-09-25 14:29:28 +0800 | [diff] [blame] | 4319 | "balance: reduces metadata redundancy, use --force if you want this"); |
Filipe Manana | 5a8067c | 2018-11-19 09:48:12 +0000 | [diff] [blame] | 4320 | ret = -EINVAL; |
| 4321 | goto out; |
| 4322 | } |
| 4323 | } |
| 4324 | |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 4325 | if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) < |
| 4326 | btrfs_get_num_tolerated_disk_barrier_failures(data_target)) { |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 4327 | btrfs_warn(fs_info, |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4328 | "balance: metadata profile %s has lower redundancy than data profile %s", |
David Sterba | 158da51 | 2019-05-17 11:43:41 +0200 | [diff] [blame] | 4329 | btrfs_bg_type_to_raid_name(meta_target), |
| 4330 | btrfs_bg_type_to_raid_name(data_target)); |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 4331 | } |
| 4332 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4333 | ret = insert_balance_item(fs_info, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4334 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4335 | goto out; |
| 4336 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4337 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 4338 | BUG_ON(ret == -EEXIST); |
David Sterba | 833aae1 | 2018-03-21 02:41:30 +0100 | [diff] [blame] | 4339 | BUG_ON(fs_info->balance_ctl); |
| 4340 | spin_lock(&fs_info->balance_lock); |
| 4341 | fs_info->balance_ctl = bctl; |
| 4342 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4343 | } else { |
| 4344 | BUG_ON(ret != -EEXIST); |
| 4345 | spin_lock(&fs_info->balance_lock); |
| 4346 | update_balance_args(bctl); |
| 4347 | spin_unlock(&fs_info->balance_lock); |
| 4348 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4349 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4350 | ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
| 4351 | set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags); |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4352 | describe_balance_start_or_resume(fs_info); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4353 | mutex_unlock(&fs_info->balance_mutex); |
| 4354 | |
| 4355 | ret = __btrfs_balance(fs_info); |
| 4356 | |
| 4357 | mutex_lock(&fs_info->balance_mutex); |
Anand Jain | 7333bd0 | 2018-11-20 16:12:57 +0800 | [diff] [blame] | 4358 | if (ret == -ECANCELED && atomic_read(&fs_info->balance_pause_req)) |
| 4359 | btrfs_info(fs_info, "balance: paused"); |
Qu Wenruo | 44d354a | 2020-07-13 09:03:21 +0800 | [diff] [blame] | 4360 | /* |
| 4361 | * Balance can be canceled by: |
| 4362 | * |
| 4363 | * - Regular cancel request |
| 4364 | * Then ret == -ECANCELED and balance_cancel_req > 0 |
| 4365 | * |
| 4366 | * - Fatal signal to "btrfs" process |
| 4367 | * Either the signal caught by wait_reserve_ticket() and callers |
| 4368 | * got -EINTR, or caught by btrfs_should_cancel_balance() and |
| 4369 | * got -ECANCELED. |
| 4370 | * Either way, in this case balance_cancel_req = 0, and |
| 4371 | * ret == -EINTR or ret == -ECANCELED. |
| 4372 | * |
| 4373 | * So here we only check the return value to catch canceled balance. |
| 4374 | */ |
| 4375 | else if (ret == -ECANCELED || ret == -EINTR) |
Anand Jain | 7333bd0 | 2018-11-20 16:12:57 +0800 | [diff] [blame] | 4376 | btrfs_info(fs_info, "balance: canceled"); |
| 4377 | else |
| 4378 | btrfs_info(fs_info, "balance: ended with status: %d", ret); |
| 4379 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4380 | clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4381 | |
| 4382 | if (bargs) { |
| 4383 | memset(bargs, 0, sizeof(*bargs)); |
David Sterba | 008ef09 | 2018-03-21 02:05:27 +0100 | [diff] [blame] | 4384 | btrfs_update_ioctl_balance_args(fs_info, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4385 | } |
| 4386 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 4387 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 4388 | balance_need_close(fs_info)) { |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 4389 | reset_balance_state(fs_info); |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4390 | btrfs_exclop_finish(fs_info); |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 4391 | } |
| 4392 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4393 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4394 | |
| 4395 | return ret; |
| 4396 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4397 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 4398 | reset_balance_state(fs_info); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4399 | else |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4400 | kfree(bctl); |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4401 | btrfs_exclop_finish(fs_info); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4402 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4403 | return ret; |
| 4404 | } |
| 4405 | |
| 4406 | static int balance_kthread(void *data) |
| 4407 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4408 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4409 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4410 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4411 | mutex_lock(&fs_info->balance_mutex); |
Anand Jain | 56fc37d | 2018-11-20 16:12:56 +0800 | [diff] [blame] | 4412 | if (fs_info->balance_ctl) |
David Sterba | 6fcf6e2 | 2018-05-07 17:44:03 +0200 | [diff] [blame] | 4413 | ret = btrfs_balance(fs_info, fs_info->balance_ctl, NULL); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4414 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4415 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4416 | return ret; |
| 4417 | } |
| 4418 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4419 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 4420 | { |
| 4421 | struct task_struct *tsk; |
| 4422 | |
David Sterba | 1354e1a | 2018-03-21 02:29:13 +0100 | [diff] [blame] | 4423 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4424 | if (!fs_info->balance_ctl) { |
David Sterba | 1354e1a | 2018-03-21 02:29:13 +0100 | [diff] [blame] | 4425 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4426 | return 0; |
| 4427 | } |
David Sterba | 1354e1a | 2018-03-21 02:29:13 +0100 | [diff] [blame] | 4428 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4429 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 4430 | if (btrfs_test_opt(fs_info, SKIP_BALANCE)) { |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4431 | btrfs_info(fs_info, "balance: resume skipped"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4432 | return 0; |
| 4433 | } |
| 4434 | |
Anand Jain | 02ee654 | 2018-05-17 15:16:51 +0800 | [diff] [blame] | 4435 | /* |
| 4436 | * A ro->rw remount sequence should continue with the paused balance |
| 4437 | * regardless of who pauses it, system or the user as of now, so set |
| 4438 | * the resume flag. |
| 4439 | */ |
| 4440 | spin_lock(&fs_info->balance_lock); |
| 4441 | fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME; |
| 4442 | spin_unlock(&fs_info->balance_lock); |
| 4443 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4444 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 4445 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4446 | } |
| 4447 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4448 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
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 | struct btrfs_balance_control *bctl; |
| 4451 | struct btrfs_balance_item *item; |
| 4452 | struct btrfs_disk_balance_args disk_bargs; |
| 4453 | struct btrfs_path *path; |
| 4454 | struct extent_buffer *leaf; |
| 4455 | struct btrfs_key key; |
| 4456 | int ret; |
| 4457 | |
| 4458 | path = btrfs_alloc_path(); |
| 4459 | if (!path) |
| 4460 | return -ENOMEM; |
| 4461 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4462 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 4463 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4464 | key.offset = 0; |
| 4465 | |
| 4466 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 4467 | if (ret < 0) |
| 4468 | goto out; |
| 4469 | if (ret > 0) { /* ret = -ENOENT; */ |
| 4470 | ret = 0; |
| 4471 | goto out; |
| 4472 | } |
| 4473 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4474 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 4475 | if (!bctl) { |
| 4476 | ret = -ENOMEM; |
| 4477 | goto out; |
| 4478 | } |
| 4479 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4480 | leaf = path->nodes[0]; |
| 4481 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 4482 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4483 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 4484 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4485 | |
| 4486 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 4487 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 4488 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 4489 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 4490 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 4491 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 4492 | |
David Sterba | eee95e3 | 2018-03-20 20:07:58 +0100 | [diff] [blame] | 4493 | /* |
| 4494 | * This should never happen, as the paused balance state is recovered |
| 4495 | * during mount without any chance of other exclusive ops to collide. |
| 4496 | * |
| 4497 | * This gives the exclusive op status to balance and keeps in paused |
| 4498 | * state until user intervention (cancel or umount). If the ownership |
| 4499 | * cannot be assigned, show a message but do not fail. The balance |
| 4500 | * is in a paused state and must have fs_info::balance_ctl properly |
| 4501 | * set up. |
| 4502 | */ |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4503 | if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) |
David Sterba | eee95e3 | 2018-03-20 20:07:58 +0100 | [diff] [blame] | 4504 | btrfs_warn(fs_info, |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4505 | "balance: cannot set exclusive op status, resume manually"); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4506 | |
Josef Bacik | fb28610 | 2020-12-16 11:22:14 -0500 | [diff] [blame] | 4507 | btrfs_release_path(path); |
| 4508 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4509 | mutex_lock(&fs_info->balance_mutex); |
David Sterba | 833aae1 | 2018-03-21 02:41:30 +0100 | [diff] [blame] | 4510 | BUG_ON(fs_info->balance_ctl); |
| 4511 | spin_lock(&fs_info->balance_lock); |
| 4512 | fs_info->balance_ctl = bctl; |
| 4513 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4514 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4515 | out: |
| 4516 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4517 | return ret; |
| 4518 | } |
| 4519 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4520 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 4521 | { |
| 4522 | int ret = 0; |
| 4523 | |
| 4524 | mutex_lock(&fs_info->balance_mutex); |
| 4525 | if (!fs_info->balance_ctl) { |
| 4526 | mutex_unlock(&fs_info->balance_mutex); |
| 4527 | return -ENOTCONN; |
| 4528 | } |
| 4529 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4530 | if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4531 | atomic_inc(&fs_info->balance_pause_req); |
| 4532 | mutex_unlock(&fs_info->balance_mutex); |
| 4533 | |
| 4534 | wait_event(fs_info->balance_wait_q, |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4535 | !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4536 | |
| 4537 | mutex_lock(&fs_info->balance_mutex); |
| 4538 | /* we are good with balance_ctl ripped off from under us */ |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4539 | BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4540 | atomic_dec(&fs_info->balance_pause_req); |
| 4541 | } else { |
| 4542 | ret = -ENOTCONN; |
| 4543 | } |
| 4544 | |
| 4545 | mutex_unlock(&fs_info->balance_mutex); |
| 4546 | return ret; |
| 4547 | } |
| 4548 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4549 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 4550 | { |
| 4551 | mutex_lock(&fs_info->balance_mutex); |
| 4552 | if (!fs_info->balance_ctl) { |
| 4553 | mutex_unlock(&fs_info->balance_mutex); |
| 4554 | return -ENOTCONN; |
| 4555 | } |
| 4556 | |
David Sterba | cf7d20f | 2018-03-21 01:45:32 +0100 | [diff] [blame] | 4557 | /* |
| 4558 | * A paused balance with the item stored on disk can be resumed at |
| 4559 | * mount time if the mount is read-write. Otherwise it's still paused |
| 4560 | * and we must not allow cancelling as it deletes the item. |
| 4561 | */ |
| 4562 | if (sb_rdonly(fs_info->sb)) { |
| 4563 | mutex_unlock(&fs_info->balance_mutex); |
| 4564 | return -EROFS; |
| 4565 | } |
| 4566 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4567 | atomic_inc(&fs_info->balance_cancel_req); |
| 4568 | /* |
| 4569 | * if we are running just wait and return, balance item is |
| 4570 | * deleted in btrfs_balance in this case |
| 4571 | */ |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4572 | if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4573 | mutex_unlock(&fs_info->balance_mutex); |
| 4574 | wait_event(fs_info->balance_wait_q, |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4575 | !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4576 | mutex_lock(&fs_info->balance_mutex); |
| 4577 | } else { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4578 | mutex_unlock(&fs_info->balance_mutex); |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 4579 | /* |
| 4580 | * Lock released to allow other waiters to continue, we'll |
| 4581 | * reexamine the status again. |
| 4582 | */ |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4583 | mutex_lock(&fs_info->balance_mutex); |
| 4584 | |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4585 | if (fs_info->balance_ctl) { |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 4586 | reset_balance_state(fs_info); |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 4587 | btrfs_exclop_finish(fs_info); |
Anand Jain | 6dac13f | 2018-05-16 10:51:26 +0800 | [diff] [blame] | 4588 | btrfs_info(fs_info, "balance: canceled"); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4589 | } |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4590 | } |
| 4591 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4592 | BUG_ON(fs_info->balance_ctl || |
| 4593 | test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4594 | atomic_dec(&fs_info->balance_cancel_req); |
| 4595 | mutex_unlock(&fs_info->balance_mutex); |
| 4596 | return 0; |
| 4597 | } |
| 4598 | |
Nikolay Borisov | 97f4dd0 | 2020-02-18 16:56:08 +0200 | [diff] [blame] | 4599 | int btrfs_uuid_scan_kthread(void *data) |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4600 | { |
| 4601 | struct btrfs_fs_info *fs_info = data; |
| 4602 | struct btrfs_root *root = fs_info->tree_root; |
| 4603 | struct btrfs_key key; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4604 | struct btrfs_path *path = NULL; |
| 4605 | int ret = 0; |
| 4606 | struct extent_buffer *eb; |
| 4607 | int slot; |
| 4608 | struct btrfs_root_item root_item; |
| 4609 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4610 | struct btrfs_trans_handle *trans = NULL; |
Josef Bacik | c94bec2 | 2020-02-14 15:05:01 -0500 | [diff] [blame] | 4611 | bool closing = false; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4612 | |
| 4613 | path = btrfs_alloc_path(); |
| 4614 | if (!path) { |
| 4615 | ret = -ENOMEM; |
| 4616 | goto out; |
| 4617 | } |
| 4618 | |
| 4619 | key.objectid = 0; |
| 4620 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4621 | key.offset = 0; |
| 4622 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4623 | while (1) { |
Josef Bacik | c94bec2 | 2020-02-14 15:05:01 -0500 | [diff] [blame] | 4624 | if (btrfs_fs_closing(fs_info)) { |
| 4625 | closing = true; |
| 4626 | break; |
| 4627 | } |
Anand Jain | 7c829b7 | 2018-03-07 17:29:18 +0800 | [diff] [blame] | 4628 | ret = btrfs_search_forward(root, &key, path, |
| 4629 | BTRFS_OLDEST_GENERATION); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4630 | if (ret) { |
| 4631 | if (ret > 0) |
| 4632 | ret = 0; |
| 4633 | break; |
| 4634 | } |
| 4635 | |
| 4636 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4637 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4638 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4639 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4640 | goto skip; |
| 4641 | |
| 4642 | eb = path->nodes[0]; |
| 4643 | slot = path->slots[0]; |
| 4644 | item_size = btrfs_item_size_nr(eb, slot); |
| 4645 | if (item_size < sizeof(root_item)) |
| 4646 | goto skip; |
| 4647 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4648 | read_extent_buffer(eb, &root_item, |
| 4649 | btrfs_item_ptr_offset(eb, slot), |
| 4650 | (int)sizeof(root_item)); |
| 4651 | if (btrfs_root_refs(&root_item) == 0) |
| 4652 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4653 | |
| 4654 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4655 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4656 | if (trans) |
| 4657 | goto update_tree; |
| 4658 | |
| 4659 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4660 | /* |
| 4661 | * 1 - subvol uuid item |
| 4662 | * 1 - received_subvol uuid item |
| 4663 | */ |
| 4664 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4665 | if (IS_ERR(trans)) { |
| 4666 | ret = PTR_ERR(trans); |
| 4667 | break; |
| 4668 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4669 | continue; |
| 4670 | } else { |
| 4671 | goto skip; |
| 4672 | } |
| 4673 | update_tree: |
Josef Bacik | 9771a5cf | 2020-08-10 11:42:26 -0400 | [diff] [blame] | 4674 | btrfs_release_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4675 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Lu Fengqi | cdb345a | 2018-05-29 15:01:53 +0800 | [diff] [blame] | 4676 | ret = btrfs_uuid_tree_add(trans, root_item.uuid, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4677 | BTRFS_UUID_KEY_SUBVOL, |
| 4678 | key.objectid); |
| 4679 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4680 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4681 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4682 | break; |
| 4683 | } |
| 4684 | } |
| 4685 | |
| 4686 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Lu Fengqi | cdb345a | 2018-05-29 15:01:53 +0800 | [diff] [blame] | 4687 | ret = btrfs_uuid_tree_add(trans, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4688 | root_item.received_uuid, |
| 4689 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4690 | key.objectid); |
| 4691 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4692 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4693 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4694 | break; |
| 4695 | } |
| 4696 | } |
| 4697 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4698 | skip: |
Josef Bacik | 9771a5cf | 2020-08-10 11:42:26 -0400 | [diff] [blame] | 4699 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4700 | if (trans) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4701 | ret = btrfs_end_transaction(trans); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4702 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4703 | if (ret) |
| 4704 | break; |
| 4705 | } |
| 4706 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4707 | if (key.offset < (u64)-1) { |
| 4708 | key.offset++; |
| 4709 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4710 | key.offset = 0; |
| 4711 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4712 | } else if (key.objectid < (u64)-1) { |
| 4713 | key.offset = 0; |
| 4714 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4715 | key.objectid++; |
| 4716 | } else { |
| 4717 | break; |
| 4718 | } |
| 4719 | cond_resched(); |
| 4720 | } |
| 4721 | |
| 4722 | out: |
| 4723 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4724 | if (trans && !IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4725 | btrfs_end_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4726 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4727 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Josef Bacik | c94bec2 | 2020-02-14 15:05:01 -0500 | [diff] [blame] | 4728 | else if (!closing) |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4729 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4730 | up(&fs_info->uuid_tree_rescan_sem); |
| 4731 | return 0; |
| 4732 | } |
| 4733 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4734 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4735 | { |
| 4736 | struct btrfs_trans_handle *trans; |
| 4737 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4738 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4739 | struct task_struct *task; |
| 4740 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4741 | |
| 4742 | /* |
| 4743 | * 1 - root node |
| 4744 | * 1 - root item |
| 4745 | */ |
| 4746 | trans = btrfs_start_transaction(tree_root, 2); |
| 4747 | if (IS_ERR(trans)) |
| 4748 | return PTR_ERR(trans); |
| 4749 | |
David Sterba | 9b7a244 | 2019-03-20 13:20:49 +0100 | [diff] [blame] | 4750 | uuid_root = btrfs_create_tree(trans, BTRFS_UUID_TREE_OBJECTID); |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4751 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4752 | ret = PTR_ERR(uuid_root); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 4753 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4754 | btrfs_end_transaction(trans); |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4755 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4756 | } |
| 4757 | |
| 4758 | fs_info->uuid_root = uuid_root; |
| 4759 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4760 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4761 | if (ret) |
| 4762 | return ret; |
| 4763 | |
| 4764 | down(&fs_info->uuid_tree_rescan_sem); |
| 4765 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4766 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4767 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4768 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4769 | up(&fs_info->uuid_tree_rescan_sem); |
| 4770 | return PTR_ERR(task); |
| 4771 | } |
| 4772 | |
| 4773 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4774 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4775 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4776 | /* |
| 4777 | * shrinking a device means finding all of the device extents past |
| 4778 | * the new size, and then following the back refs to the chunks. |
| 4779 | * The chunk relocation code actually frees the device extent |
| 4780 | */ |
| 4781 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4782 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4783 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 4784 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4785 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4786 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4787 | struct btrfs_path *path; |
| 4788 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4789 | u64 chunk_offset; |
| 4790 | int ret; |
| 4791 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4792 | int failed = 0; |
| 4793 | bool retried = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4794 | struct extent_buffer *l; |
| 4795 | struct btrfs_key key; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4796 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4797 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4798 | u64 old_size = btrfs_device_get_total_bytes(device); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4799 | u64 diff; |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4800 | u64 start; |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4801 | |
| 4802 | new_size = round_down(new_size, fs_info->sectorsize); |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4803 | start = new_size; |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 4804 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4805 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4806 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4807 | return -EINVAL; |
| 4808 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4809 | path = btrfs_alloc_path(); |
| 4810 | if (!path) |
| 4811 | return -ENOMEM; |
| 4812 | |
Gu Jinxiang | 0338dff | 2018-04-27 16:22:07 +0800 | [diff] [blame] | 4813 | path->reada = READA_BACK; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4814 | |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4815 | trans = btrfs_start_transaction(root, 0); |
| 4816 | if (IS_ERR(trans)) { |
| 4817 | btrfs_free_path(path); |
| 4818 | return PTR_ERR(trans); |
| 4819 | } |
| 4820 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4821 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4822 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4823 | btrfs_device_set_total_bytes(device, new_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4824 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4825 | device->fs_devices->total_rw_bytes -= diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4826 | atomic64_sub(diff, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4827 | } |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4828 | |
| 4829 | /* |
| 4830 | * Once the device's size has been set to the new size, ensure all |
| 4831 | * in-memory chunks are synced to disk so that the loop below sees them |
| 4832 | * and relocates them accordingly. |
| 4833 | */ |
Jeff Mahoney | 1c11b63 | 2019-03-27 14:24:12 +0200 | [diff] [blame] | 4834 | if (contains_pending_extent(device, &start, diff)) { |
Nikolay Borisov | 61d0d0d | 2019-03-25 14:31:23 +0200 | [diff] [blame] | 4835 | mutex_unlock(&fs_info->chunk_mutex); |
| 4836 | ret = btrfs_commit_transaction(trans); |
| 4837 | if (ret) |
| 4838 | goto done; |
| 4839 | } else { |
| 4840 | mutex_unlock(&fs_info->chunk_mutex); |
| 4841 | btrfs_end_transaction(trans); |
| 4842 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4843 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4844 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4845 | key.objectid = device->devid; |
| 4846 | key.offset = (u64)-1; |
| 4847 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4848 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4849 | do { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4850 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4851 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4852 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4853 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4854 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4855 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4856 | |
| 4857 | ret = btrfs_previous_item(root, path, 0, key.type); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4858 | if (ret) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4859 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Nikolay Borisov | 7056bf6 | 2020-12-17 15:21:16 +0200 | [diff] [blame] | 4860 | if (ret < 0) |
| 4861 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4862 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4863 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4864 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4865 | } |
| 4866 | |
| 4867 | l = path->nodes[0]; |
| 4868 | slot = path->slots[0]; |
| 4869 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4870 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4871 | if (key.objectid != device->devid) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4872 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4873 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4874 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4875 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4876 | |
| 4877 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4878 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4879 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4880 | if (key.offset + length <= new_size) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4881 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4882 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4883 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4884 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4885 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4886 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4887 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4888 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4889 | /* |
| 4890 | * We may be relocating the only data chunk we have, |
| 4891 | * which could potentially end up with losing data's |
| 4892 | * raid profile, so lets allocate an empty one in |
| 4893 | * advance. |
| 4894 | */ |
| 4895 | ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset); |
| 4896 | if (ret < 0) { |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4897 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4898 | goto done; |
| 4899 | } |
| 4900 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4901 | ret = btrfs_relocate_chunk(fs_info, chunk_offset); |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 4902 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 4903 | if (ret == -ENOSPC) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4904 | failed++; |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 4905 | } else if (ret) { |
| 4906 | if (ret == -ETXTBSY) { |
| 4907 | btrfs_warn(fs_info, |
| 4908 | "could not shrink block group %llu due to active swapfile", |
| 4909 | chunk_offset); |
| 4910 | } |
| 4911 | goto done; |
| 4912 | } |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4913 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4914 | |
| 4915 | if (failed && !retried) { |
| 4916 | failed = 0; |
| 4917 | retried = true; |
| 4918 | goto again; |
| 4919 | } else if (failed && retried) { |
| 4920 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4921 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4922 | } |
| 4923 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4924 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4925 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4926 | if (IS_ERR(trans)) { |
| 4927 | ret = PTR_ERR(trans); |
| 4928 | goto done; |
| 4929 | } |
| 4930 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4931 | mutex_lock(&fs_info->chunk_mutex); |
Qu Wenruo | c57dd1f | 2020-07-31 19:29:11 +0800 | [diff] [blame] | 4932 | /* Clear all state bits beyond the shrunk device size */ |
| 4933 | clear_extent_bits(&device->alloc_state, new_size, (u64)-1, |
| 4934 | CHUNK_STATE_MASK); |
| 4935 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4936 | btrfs_device_set_disk_total_bytes(device, new_size); |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 4937 | if (list_empty(&device->post_commit_list)) |
| 4938 | list_add_tail(&device->post_commit_list, |
| 4939 | &trans->transaction->dev_update_list); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4940 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4941 | WARN_ON(diff > old_total); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4942 | btrfs_set_super_total_bytes(super_copy, |
| 4943 | round_down(old_total - diff, fs_info->sectorsize)); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4944 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4945 | |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 4946 | btrfs_reserve_chunk_metadata(trans, false); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4947 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4948 | ret = btrfs_update_device(trans, device); |
Filipe Manana | 2bb2e00 | 2021-10-13 10:12:49 +0100 | [diff] [blame] | 4949 | btrfs_trans_release_chunk_metadata(trans); |
Anand Jain | 801660b | 2018-08-06 18:12:37 +0800 | [diff] [blame] | 4950 | if (ret < 0) { |
| 4951 | btrfs_abort_transaction(trans, ret); |
| 4952 | btrfs_end_transaction(trans); |
| 4953 | } else { |
| 4954 | ret = btrfs_commit_transaction(trans); |
| 4955 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4956 | done: |
| 4957 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4958 | if (ret) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4959 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4960 | btrfs_device_set_total_bytes(device, old_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4961 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4962 | device->fs_devices->total_rw_bytes += diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4963 | atomic64_add(diff, &fs_info->free_chunk_space); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4964 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4965 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4966 | return ret; |
| 4967 | } |
| 4968 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4969 | static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4970 | struct btrfs_key *key, |
| 4971 | struct btrfs_chunk *chunk, int item_size) |
| 4972 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4973 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4974 | struct btrfs_disk_key disk_key; |
| 4975 | u32 array_size; |
| 4976 | u8 *ptr; |
| 4977 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 4978 | lockdep_assert_held(&fs_info->chunk_mutex); |
| 4979 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4980 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4981 | if (array_size + item_size + sizeof(disk_key) |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 4982 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4983 | return -EFBIG; |
| 4984 | |
| 4985 | ptr = super_copy->sys_chunk_array + array_size; |
| 4986 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4987 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4988 | ptr += sizeof(disk_key); |
| 4989 | memcpy(ptr, chunk, item_size); |
| 4990 | item_size += sizeof(disk_key); |
| 4991 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4992 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4993 | return 0; |
| 4994 | } |
| 4995 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4996 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4997 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4998 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4999 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5000 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5001 | const struct btrfs_device_info *di_a = a; |
| 5002 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5003 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5004 | if (di_a->max_avail > di_b->max_avail) |
| 5005 | return -1; |
| 5006 | if (di_a->max_avail < di_b->max_avail) |
| 5007 | return 1; |
| 5008 | if (di_a->total_avail > di_b->total_avail) |
| 5009 | return -1; |
| 5010 | if (di_a->total_avail < di_b->total_avail) |
| 5011 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5012 | return 0; |
| 5013 | } |
| 5014 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5015 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 5016 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5017 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5018 | return; |
| 5019 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 5020 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5021 | } |
| 5022 | |
David Sterba | cfbb825 | 2018-07-10 18:15:05 +0200 | [diff] [blame] | 5023 | static void check_raid1c34_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 5024 | { |
| 5025 | if (!(type & (BTRFS_BLOCK_GROUP_RAID1C3 | BTRFS_BLOCK_GROUP_RAID1C4))) |
| 5026 | return; |
| 5027 | |
| 5028 | btrfs_set_fs_incompat(info, RAID1C34); |
| 5029 | } |
| 5030 | |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5031 | /* |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5032 | * Structure used internally for btrfs_create_chunk() function. |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5033 | * Wraps needed parameters. |
| 5034 | */ |
| 5035 | struct alloc_chunk_ctl { |
| 5036 | u64 start; |
| 5037 | u64 type; |
| 5038 | /* Total number of stripes to allocate */ |
| 5039 | int num_stripes; |
| 5040 | /* sub_stripes info for map */ |
| 5041 | int sub_stripes; |
| 5042 | /* Stripes per device */ |
| 5043 | int dev_stripes; |
| 5044 | /* Maximum number of devices to use */ |
| 5045 | int devs_max; |
| 5046 | /* Minimum number of devices to use */ |
| 5047 | int devs_min; |
| 5048 | /* ndevs has to be a multiple of this */ |
| 5049 | int devs_increment; |
| 5050 | /* Number of copies */ |
| 5051 | int ncopies; |
| 5052 | /* Number of stripes worth of bytes to store parity information */ |
| 5053 | int nparity; |
| 5054 | u64 max_stripe_size; |
| 5055 | u64 max_chunk_size; |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5056 | u64 dev_extent_min; |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5057 | u64 stripe_size; |
| 5058 | u64 chunk_size; |
| 5059 | int ndevs; |
| 5060 | }; |
| 5061 | |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5062 | static void init_alloc_chunk_ctl_policy_regular( |
| 5063 | struct btrfs_fs_devices *fs_devices, |
| 5064 | struct alloc_chunk_ctl *ctl) |
| 5065 | { |
| 5066 | u64 type = ctl->type; |
| 5067 | |
| 5068 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
| 5069 | ctl->max_stripe_size = SZ_1G; |
| 5070 | ctl->max_chunk_size = BTRFS_MAX_DATA_CHUNK_SIZE; |
| 5071 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
| 5072 | /* For larger filesystems, use larger metadata chunks */ |
| 5073 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 5074 | ctl->max_stripe_size = SZ_1G; |
| 5075 | else |
| 5076 | ctl->max_stripe_size = SZ_256M; |
| 5077 | ctl->max_chunk_size = ctl->max_stripe_size; |
| 5078 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5079 | ctl->max_stripe_size = SZ_32M; |
| 5080 | ctl->max_chunk_size = 2 * ctl->max_stripe_size; |
| 5081 | ctl->devs_max = min_t(int, ctl->devs_max, |
| 5082 | BTRFS_MAX_DEVS_SYS_CHUNK); |
| 5083 | } else { |
| 5084 | BUG(); |
| 5085 | } |
| 5086 | |
| 5087 | /* We don't want a chunk larger than 10% of writable space */ |
| 5088 | ctl->max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 5089 | ctl->max_chunk_size); |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5090 | ctl->dev_extent_min = BTRFS_STRIPE_LEN * ctl->dev_stripes; |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5091 | } |
| 5092 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5093 | static void init_alloc_chunk_ctl_policy_zoned( |
| 5094 | struct btrfs_fs_devices *fs_devices, |
| 5095 | struct alloc_chunk_ctl *ctl) |
| 5096 | { |
| 5097 | u64 zone_size = fs_devices->fs_info->zone_size; |
| 5098 | u64 limit; |
| 5099 | int min_num_stripes = ctl->devs_min * ctl->dev_stripes; |
| 5100 | int min_data_stripes = (min_num_stripes - ctl->nparity) / ctl->ncopies; |
| 5101 | u64 min_chunk_size = min_data_stripes * zone_size; |
| 5102 | u64 type = ctl->type; |
| 5103 | |
| 5104 | ctl->max_stripe_size = zone_size; |
| 5105 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
| 5106 | ctl->max_chunk_size = round_down(BTRFS_MAX_DATA_CHUNK_SIZE, |
| 5107 | zone_size); |
| 5108 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
| 5109 | ctl->max_chunk_size = ctl->max_stripe_size; |
| 5110 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5111 | ctl->max_chunk_size = 2 * ctl->max_stripe_size; |
| 5112 | ctl->devs_max = min_t(int, ctl->devs_max, |
| 5113 | BTRFS_MAX_DEVS_SYS_CHUNK); |
Arnd Bergmann | bb05b29 | 2021-03-23 15:31:19 +0100 | [diff] [blame] | 5114 | } else { |
| 5115 | BUG(); |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5116 | } |
| 5117 | |
| 5118 | /* We don't want a chunk larger than 10% of writable space */ |
| 5119 | limit = max(round_down(div_factor(fs_devices->total_rw_bytes, 1), |
| 5120 | zone_size), |
| 5121 | min_chunk_size); |
| 5122 | ctl->max_chunk_size = min(limit, ctl->max_chunk_size); |
| 5123 | ctl->dev_extent_min = zone_size * ctl->dev_stripes; |
| 5124 | } |
| 5125 | |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5126 | static void init_alloc_chunk_ctl(struct btrfs_fs_devices *fs_devices, |
| 5127 | struct alloc_chunk_ctl *ctl) |
| 5128 | { |
| 5129 | int index = btrfs_bg_flags_to_raid_index(ctl->type); |
| 5130 | |
| 5131 | ctl->sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 5132 | ctl->dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 5133 | ctl->devs_max = btrfs_raid_array[index].devs_max; |
| 5134 | if (!ctl->devs_max) |
| 5135 | ctl->devs_max = BTRFS_MAX_DEVS(fs_devices->fs_info); |
| 5136 | ctl->devs_min = btrfs_raid_array[index].devs_min; |
| 5137 | ctl->devs_increment = btrfs_raid_array[index].devs_increment; |
| 5138 | ctl->ncopies = btrfs_raid_array[index].ncopies; |
| 5139 | ctl->nparity = btrfs_raid_array[index].nparity; |
| 5140 | ctl->ndevs = 0; |
| 5141 | |
| 5142 | switch (fs_devices->chunk_alloc_policy) { |
| 5143 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 5144 | init_alloc_chunk_ctl_policy_regular(fs_devices, ctl); |
| 5145 | break; |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5146 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 5147 | init_alloc_chunk_ctl_policy_zoned(fs_devices, ctl); |
| 5148 | break; |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5149 | default: |
| 5150 | BUG(); |
| 5151 | } |
| 5152 | } |
| 5153 | |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5154 | static int gather_device_info(struct btrfs_fs_devices *fs_devices, |
| 5155 | struct alloc_chunk_ctl *ctl, |
| 5156 | struct btrfs_device_info *devices_info) |
| 5157 | { |
| 5158 | struct btrfs_fs_info *info = fs_devices->fs_info; |
| 5159 | struct btrfs_device *device; |
| 5160 | u64 total_avail; |
| 5161 | u64 dev_extent_want = ctl->max_stripe_size * ctl->dev_stripes; |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5162 | int ret; |
| 5163 | int ndevs = 0; |
| 5164 | u64 max_avail; |
| 5165 | u64 dev_offset; |
| 5166 | |
| 5167 | /* |
| 5168 | * in the first pass through the devices list, we gather information |
| 5169 | * about the available holes on each device. |
| 5170 | */ |
| 5171 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
| 5172 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
| 5173 | WARN(1, KERN_ERR |
| 5174 | "BTRFS: read-only device in alloc_list\n"); |
| 5175 | continue; |
| 5176 | } |
| 5177 | |
| 5178 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 5179 | &device->dev_state) || |
| 5180 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
| 5181 | continue; |
| 5182 | |
| 5183 | if (device->total_bytes > device->bytes_used) |
| 5184 | total_avail = device->total_bytes - device->bytes_used; |
| 5185 | else |
| 5186 | total_avail = 0; |
| 5187 | |
| 5188 | /* If there is no space on this device, skip it. */ |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5189 | if (total_avail < ctl->dev_extent_min) |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5190 | continue; |
| 5191 | |
| 5192 | ret = find_free_dev_extent(device, dev_extent_want, &dev_offset, |
| 5193 | &max_avail); |
| 5194 | if (ret && ret != -ENOSPC) |
| 5195 | return ret; |
| 5196 | |
| 5197 | if (ret == 0) |
| 5198 | max_avail = dev_extent_want; |
| 5199 | |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5200 | if (max_avail < ctl->dev_extent_min) { |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5201 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 5202 | btrfs_debug(info, |
| 5203 | "%s: devid %llu has no free space, have=%llu want=%llu", |
| 5204 | __func__, device->devid, max_avail, |
Naohiro Aota | 6aafb30 | 2020-02-25 12:56:15 +0900 | [diff] [blame] | 5205 | ctl->dev_extent_min); |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5206 | continue; |
| 5207 | } |
| 5208 | |
| 5209 | if (ndevs == fs_devices->rw_devices) { |
| 5210 | WARN(1, "%s: found more than %llu devices\n", |
| 5211 | __func__, fs_devices->rw_devices); |
| 5212 | break; |
| 5213 | } |
| 5214 | devices_info[ndevs].dev_offset = dev_offset; |
| 5215 | devices_info[ndevs].max_avail = max_avail; |
| 5216 | devices_info[ndevs].total_avail = total_avail; |
| 5217 | devices_info[ndevs].dev = device; |
| 5218 | ++ndevs; |
| 5219 | } |
| 5220 | ctl->ndevs = ndevs; |
| 5221 | |
| 5222 | /* |
| 5223 | * now sort the devices by hole size / available space |
| 5224 | */ |
| 5225 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 5226 | btrfs_cmp_device_info, NULL); |
| 5227 | |
| 5228 | return 0; |
| 5229 | } |
| 5230 | |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5231 | static int decide_stripe_size_regular(struct alloc_chunk_ctl *ctl, |
| 5232 | struct btrfs_device_info *devices_info) |
| 5233 | { |
| 5234 | /* Number of stripes that count for block group size */ |
| 5235 | int data_stripes; |
| 5236 | |
| 5237 | /* |
| 5238 | * The primary goal is to maximize the number of stripes, so use as |
| 5239 | * many devices as possible, even if the stripes are not maximum sized. |
| 5240 | * |
| 5241 | * The DUP profile stores more than one stripe per device, the |
| 5242 | * max_avail is the total size so we have to adjust. |
| 5243 | */ |
| 5244 | ctl->stripe_size = div_u64(devices_info[ctl->ndevs - 1].max_avail, |
| 5245 | ctl->dev_stripes); |
| 5246 | ctl->num_stripes = ctl->ndevs * ctl->dev_stripes; |
| 5247 | |
| 5248 | /* This will have to be fixed for RAID1 and RAID10 over more drives */ |
| 5249 | data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies; |
| 5250 | |
| 5251 | /* |
| 5252 | * Use the number of data stripes to figure out how big this chunk is |
| 5253 | * really going to be in terms of logical address space, and compare |
| 5254 | * that answer with the max chunk size. If it's higher, we try to |
| 5255 | * reduce stripe_size. |
| 5256 | */ |
| 5257 | if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) { |
| 5258 | /* |
| 5259 | * Reduce stripe_size, round it up to a 16MB boundary again and |
| 5260 | * then use it, unless it ends up being even bigger than the |
| 5261 | * previous value we had already. |
| 5262 | */ |
| 5263 | ctl->stripe_size = min(round_up(div_u64(ctl->max_chunk_size, |
| 5264 | data_stripes), SZ_16M), |
| 5265 | ctl->stripe_size); |
| 5266 | } |
| 5267 | |
| 5268 | /* Align to BTRFS_STRIPE_LEN */ |
| 5269 | ctl->stripe_size = round_down(ctl->stripe_size, BTRFS_STRIPE_LEN); |
| 5270 | ctl->chunk_size = ctl->stripe_size * data_stripes; |
| 5271 | |
| 5272 | return 0; |
| 5273 | } |
| 5274 | |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5275 | static int decide_stripe_size_zoned(struct alloc_chunk_ctl *ctl, |
| 5276 | struct btrfs_device_info *devices_info) |
| 5277 | { |
| 5278 | u64 zone_size = devices_info[0].dev->zone_info->zone_size; |
| 5279 | /* Number of stripes that count for block group size */ |
| 5280 | int data_stripes; |
| 5281 | |
| 5282 | /* |
| 5283 | * It should hold because: |
| 5284 | * dev_extent_min == dev_extent_want == zone_size * dev_stripes |
| 5285 | */ |
| 5286 | ASSERT(devices_info[ctl->ndevs - 1].max_avail == ctl->dev_extent_min); |
| 5287 | |
| 5288 | ctl->stripe_size = zone_size; |
| 5289 | ctl->num_stripes = ctl->ndevs * ctl->dev_stripes; |
| 5290 | data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies; |
| 5291 | |
| 5292 | /* stripe_size is fixed in zoned filesysmte. Reduce ndevs instead. */ |
| 5293 | if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) { |
| 5294 | ctl->ndevs = div_u64(div_u64(ctl->max_chunk_size * ctl->ncopies, |
| 5295 | ctl->stripe_size) + ctl->nparity, |
| 5296 | ctl->dev_stripes); |
| 5297 | ctl->num_stripes = ctl->ndevs * ctl->dev_stripes; |
| 5298 | data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies; |
| 5299 | ASSERT(ctl->stripe_size * data_stripes <= ctl->max_chunk_size); |
| 5300 | } |
| 5301 | |
| 5302 | ctl->chunk_size = ctl->stripe_size * data_stripes; |
| 5303 | |
| 5304 | return 0; |
| 5305 | } |
| 5306 | |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5307 | static int decide_stripe_size(struct btrfs_fs_devices *fs_devices, |
| 5308 | struct alloc_chunk_ctl *ctl, |
| 5309 | struct btrfs_device_info *devices_info) |
| 5310 | { |
| 5311 | struct btrfs_fs_info *info = fs_devices->fs_info; |
| 5312 | |
| 5313 | /* |
| 5314 | * Round down to number of usable stripes, devs_increment can be any |
| 5315 | * number so we can't use round_down() that requires power of 2, while |
| 5316 | * rounddown is safe. |
| 5317 | */ |
| 5318 | ctl->ndevs = rounddown(ctl->ndevs, ctl->devs_increment); |
| 5319 | |
| 5320 | if (ctl->ndevs < ctl->devs_min) { |
| 5321 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) { |
| 5322 | btrfs_debug(info, |
| 5323 | "%s: not enough devices with free space: have=%d minimum required=%d", |
| 5324 | __func__, ctl->ndevs, ctl->devs_min); |
| 5325 | } |
| 5326 | return -ENOSPC; |
| 5327 | } |
| 5328 | |
| 5329 | ctl->ndevs = min(ctl->ndevs, ctl->devs_max); |
| 5330 | |
| 5331 | switch (fs_devices->chunk_alloc_policy) { |
| 5332 | case BTRFS_CHUNK_ALLOC_REGULAR: |
| 5333 | return decide_stripe_size_regular(ctl, devices_info); |
Naohiro Aota | 1cd6121 | 2021-02-04 19:21:48 +0900 | [diff] [blame] | 5334 | case BTRFS_CHUNK_ALLOC_ZONED: |
| 5335 | return decide_stripe_size_zoned(ctl, devices_info); |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5336 | default: |
| 5337 | BUG(); |
| 5338 | } |
| 5339 | } |
| 5340 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5341 | static struct btrfs_block_group *create_chunk(struct btrfs_trans_handle *trans, |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5342 | struct alloc_chunk_ctl *ctl, |
| 5343 | struct btrfs_device_info *devices_info) |
| 5344 | { |
| 5345 | struct btrfs_fs_info *info = trans->fs_info; |
| 5346 | struct map_lookup *map = NULL; |
| 5347 | struct extent_map_tree *em_tree; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5348 | struct btrfs_block_group *block_group; |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5349 | struct extent_map *em; |
| 5350 | u64 start = ctl->start; |
| 5351 | u64 type = ctl->type; |
| 5352 | int ret; |
| 5353 | int i; |
| 5354 | int j; |
| 5355 | |
| 5356 | map = kmalloc(map_lookup_size(ctl->num_stripes), GFP_NOFS); |
| 5357 | if (!map) |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5358 | return ERR_PTR(-ENOMEM); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5359 | map->num_stripes = ctl->num_stripes; |
| 5360 | |
| 5361 | for (i = 0; i < ctl->ndevs; ++i) { |
| 5362 | for (j = 0; j < ctl->dev_stripes; ++j) { |
| 5363 | int s = i * ctl->dev_stripes + j; |
| 5364 | map->stripes[s].dev = devices_info[i].dev; |
| 5365 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 5366 | j * ctl->stripe_size; |
| 5367 | } |
| 5368 | } |
| 5369 | map->stripe_len = BTRFS_STRIPE_LEN; |
| 5370 | map->io_align = BTRFS_STRIPE_LEN; |
| 5371 | map->io_width = BTRFS_STRIPE_LEN; |
| 5372 | map->type = type; |
| 5373 | map->sub_stripes = ctl->sub_stripes; |
| 5374 | |
| 5375 | trace_btrfs_chunk_alloc(info, map, start, ctl->chunk_size); |
| 5376 | |
| 5377 | em = alloc_extent_map(); |
| 5378 | if (!em) { |
| 5379 | kfree(map); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5380 | return ERR_PTR(-ENOMEM); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5381 | } |
| 5382 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
| 5383 | em->map_lookup = map; |
| 5384 | em->start = start; |
| 5385 | em->len = ctl->chunk_size; |
| 5386 | em->block_start = 0; |
| 5387 | em->block_len = em->len; |
| 5388 | em->orig_block_len = ctl->stripe_size; |
| 5389 | |
| 5390 | em_tree = &info->mapping_tree; |
| 5391 | write_lock(&em_tree->lock); |
| 5392 | ret = add_extent_mapping(em_tree, em, 0); |
| 5393 | if (ret) { |
| 5394 | write_unlock(&em_tree->lock); |
| 5395 | free_extent_map(em); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5396 | return ERR_PTR(ret); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5397 | } |
| 5398 | write_unlock(&em_tree->lock); |
| 5399 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5400 | block_group = btrfs_make_block_group(trans, 0, type, start, ctl->chunk_size); |
| 5401 | if (IS_ERR(block_group)) |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5402 | goto error_del_extent; |
| 5403 | |
| 5404 | for (i = 0; i < map->num_stripes; i++) { |
| 5405 | struct btrfs_device *dev = map->stripes[i].dev; |
| 5406 | |
| 5407 | btrfs_device_set_bytes_used(dev, |
| 5408 | dev->bytes_used + ctl->stripe_size); |
| 5409 | if (list_empty(&dev->post_commit_list)) |
| 5410 | list_add_tail(&dev->post_commit_list, |
| 5411 | &trans->transaction->dev_update_list); |
| 5412 | } |
| 5413 | |
| 5414 | atomic64_sub(ctl->stripe_size * map->num_stripes, |
| 5415 | &info->free_chunk_space); |
| 5416 | |
| 5417 | free_extent_map(em); |
| 5418 | check_raid56_incompat_flag(info, type); |
| 5419 | check_raid1c34_incompat_flag(info, type); |
| 5420 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5421 | return block_group; |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5422 | |
| 5423 | error_del_extent: |
| 5424 | write_lock(&em_tree->lock); |
| 5425 | remove_extent_mapping(em_tree, em); |
| 5426 | write_unlock(&em_tree->lock); |
| 5427 | |
| 5428 | /* One for our allocation */ |
| 5429 | free_extent_map(em); |
| 5430 | /* One for the tree reference */ |
| 5431 | free_extent_map(em); |
| 5432 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5433 | return block_group; |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5434 | } |
| 5435 | |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5436 | struct btrfs_block_group *btrfs_create_chunk(struct btrfs_trans_handle *trans, |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5437 | u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5438 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5439 | struct btrfs_fs_info *info = trans->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5440 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5441 | struct btrfs_device_info *devices_info = NULL; |
Naohiro Aota | 4f2bafe | 2020-02-25 12:56:10 +0900 | [diff] [blame] | 5442 | struct alloc_chunk_ctl ctl; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5443 | struct btrfs_block_group *block_group; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5444 | int ret; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5445 | |
Nikolay Borisov | 11c67b1 | 2020-03-02 12:29:25 +0200 | [diff] [blame] | 5446 | lockdep_assert_held(&info->chunk_mutex); |
| 5447 | |
Naohiro Aota | b25c19f | 2020-02-25 12:56:07 +0900 | [diff] [blame] | 5448 | if (!alloc_profile_is_valid(type, 0)) { |
| 5449 | ASSERT(0); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5450 | return ERR_PTR(-EINVAL); |
Naohiro Aota | b25c19f | 2020-02-25 12:56:07 +0900 | [diff] [blame] | 5451 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5452 | |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 5453 | if (list_empty(&fs_devices->alloc_list)) { |
| 5454 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 5455 | btrfs_debug(info, "%s: no writable device", __func__); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5456 | return ERR_PTR(-ENOSPC); |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 5457 | } |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5458 | |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5459 | if (!(type & BTRFS_BLOCK_GROUP_TYPE_MASK)) { |
| 5460 | btrfs_err(info, "invalid chunk type 0x%llx requested", type); |
| 5461 | ASSERT(0); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5462 | return ERR_PTR(-EINVAL); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5463 | } |
| 5464 | |
Nikolay Borisov | 11c67b1 | 2020-03-02 12:29:25 +0200 | [diff] [blame] | 5465 | ctl.start = find_next_chunk(info); |
Naohiro Aota | 27c314d | 2020-02-25 12:56:11 +0900 | [diff] [blame] | 5466 | ctl.type = type; |
| 5467 | init_alloc_chunk_ctl(fs_devices, &ctl); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5468 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 5469 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5470 | GFP_NOFS); |
| 5471 | if (!devices_info) |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5472 | return ERR_PTR(-ENOMEM); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5473 | |
Naohiro Aota | 560156c | 2020-02-25 12:56:12 +0900 | [diff] [blame] | 5474 | ret = gather_device_info(fs_devices, &ctl, devices_info); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5475 | if (ret < 0) { |
| 5476 | block_group = ERR_PTR(ret); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5477 | goto out; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5478 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5479 | |
Naohiro Aota | 5badf51 | 2020-02-25 12:56:13 +0900 | [diff] [blame] | 5480 | ret = decide_stripe_size(fs_devices, &ctl, devices_info); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5481 | if (ret < 0) { |
| 5482 | block_group = ERR_PTR(ret); |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5483 | goto out; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5484 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 5485 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5486 | block_group = create_chunk(trans, &ctl, devices_info); |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 5487 | |
Naohiro Aota | dce580c | 2020-02-25 12:56:14 +0900 | [diff] [blame] | 5488 | out: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5489 | kfree(devices_info); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5490 | return block_group; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5491 | } |
| 5492 | |
Nikolay Borisov | 11c67b1 | 2020-03-02 12:29:25 +0200 | [diff] [blame] | 5493 | /* |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5494 | * This function, btrfs_chunk_alloc_add_chunk_item(), typically belongs to the |
| 5495 | * phase 1 of chunk allocation. It belongs to phase 2 only when allocating system |
| 5496 | * chunks. |
| 5497 | * |
| 5498 | * See the comment at btrfs_chunk_alloc() for details about the chunk allocation |
| 5499 | * phases. |
| 5500 | */ |
| 5501 | int btrfs_chunk_alloc_add_chunk_item(struct btrfs_trans_handle *trans, |
| 5502 | struct btrfs_block_group *bg) |
| 5503 | { |
| 5504 | struct btrfs_fs_info *fs_info = trans->fs_info; |
| 5505 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 5506 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 5507 | struct btrfs_key key; |
| 5508 | struct btrfs_chunk *chunk; |
| 5509 | struct btrfs_stripe *stripe; |
| 5510 | struct extent_map *em; |
| 5511 | struct map_lookup *map; |
| 5512 | size_t item_size; |
| 5513 | int i; |
| 5514 | int ret; |
| 5515 | |
| 5516 | /* |
| 5517 | * We take the chunk_mutex for 2 reasons: |
| 5518 | * |
| 5519 | * 1) Updates and insertions in the chunk btree must be done while holding |
| 5520 | * the chunk_mutex, as well as updating the system chunk array in the |
| 5521 | * superblock. See the comment on top of btrfs_chunk_alloc() for the |
| 5522 | * details; |
| 5523 | * |
| 5524 | * 2) To prevent races with the final phase of a device replace operation |
| 5525 | * that replaces the device object associated with the map's stripes, |
| 5526 | * because the device object's id can change at any time during that |
| 5527 | * final phase of the device replace operation |
| 5528 | * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the |
| 5529 | * replaced device and then see it with an ID of BTRFS_DEV_REPLACE_DEVID, |
| 5530 | * which would cause a failure when updating the device item, which does |
| 5531 | * not exists, or persisting a stripe of the chunk item with such ID. |
| 5532 | * Here we can't use the device_list_mutex because our caller already |
| 5533 | * has locked the chunk_mutex, and the final phase of device replace |
| 5534 | * acquires both mutexes - first the device_list_mutex and then the |
| 5535 | * chunk_mutex. Using any of those two mutexes protects us from a |
| 5536 | * concurrent device replace. |
| 5537 | */ |
| 5538 | lockdep_assert_held(&fs_info->chunk_mutex); |
| 5539 | |
| 5540 | em = btrfs_get_chunk_map(fs_info, bg->start, bg->length); |
| 5541 | if (IS_ERR(em)) { |
| 5542 | ret = PTR_ERR(em); |
| 5543 | btrfs_abort_transaction(trans, ret); |
| 5544 | return ret; |
| 5545 | } |
| 5546 | |
| 5547 | map = em->map_lookup; |
| 5548 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 5549 | |
| 5550 | chunk = kzalloc(item_size, GFP_NOFS); |
| 5551 | if (!chunk) { |
| 5552 | ret = -ENOMEM; |
| 5553 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5554 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5555 | } |
| 5556 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5557 | for (i = 0; i < map->num_stripes; i++) { |
| 5558 | struct btrfs_device *device = map->stripes[i].dev; |
| 5559 | |
| 5560 | ret = btrfs_update_device(trans, device); |
| 5561 | if (ret) |
| 5562 | goto out; |
| 5563 | } |
| 5564 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5565 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5566 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5567 | struct btrfs_device *device = map->stripes[i].dev; |
| 5568 | const u64 dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5569 | |
| 5570 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 5571 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 5572 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 5573 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5574 | } |
| 5575 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5576 | btrfs_set_stack_chunk_length(chunk, bg->length); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5577 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 5578 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 5579 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 5580 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 5581 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 5582 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5583 | btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5584 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 5585 | |
| 5586 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 5587 | key.type = BTRFS_CHUNK_ITEM_KEY; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5588 | key.offset = bg->start; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5589 | |
| 5590 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5591 | if (ret) |
| 5592 | goto out; |
| 5593 | |
| 5594 | bg->chunk_item_inserted = 1; |
| 5595 | |
| 5596 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5597 | ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5598 | if (ret) |
| 5599 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5600 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5601 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5602 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5603 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5604 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5605 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5606 | } |
| 5607 | |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 5608 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5609 | { |
David Sterba | 6f8e0fc | 2019-03-20 16:29:13 +0100 | [diff] [blame] | 5610 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5611 | u64 alloc_profile; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5612 | struct btrfs_block_group *meta_bg; |
| 5613 | struct btrfs_block_group *sys_bg; |
| 5614 | |
| 5615 | /* |
| 5616 | * When adding a new device for sprouting, the seed device is read-only |
| 5617 | * so we must first allocate a metadata and a system chunk. But before |
| 5618 | * adding the block group items to the extent, device and chunk btrees, |
| 5619 | * we must first: |
| 5620 | * |
| 5621 | * 1) Create both chunks without doing any changes to the btrees, as |
| 5622 | * otherwise we would get -ENOSPC since the block groups from the |
| 5623 | * seed device are read-only; |
| 5624 | * |
| 5625 | * 2) Add the device item for the new sprout device - finishing the setup |
| 5626 | * of a new block group requires updating the device item in the chunk |
| 5627 | * btree, so it must exist when we attempt to do it. The previous step |
| 5628 | * ensures this does not fail with -ENOSPC. |
| 5629 | * |
| 5630 | * After that we can add the block group items to their btrees: |
| 5631 | * update existing device item in the chunk btree, add a new block group |
| 5632 | * item to the extent btree, add a new chunk item to the chunk btree and |
| 5633 | * finally add the new device extent items to the devices btree. |
| 5634 | */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5635 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5636 | alloc_profile = btrfs_metadata_alloc_profile(fs_info); |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5637 | meta_bg = btrfs_create_chunk(trans, alloc_profile); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5638 | if (IS_ERR(meta_bg)) |
| 5639 | return PTR_ERR(meta_bg); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5640 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5641 | alloc_profile = btrfs_system_alloc_profile(fs_info); |
Nikolay Borisov | f6f39f7 | 2021-08-18 13:41:19 +0300 | [diff] [blame] | 5642 | sys_bg = btrfs_create_chunk(trans, alloc_profile); |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 5643 | if (IS_ERR(sys_bg)) |
| 5644 | return PTR_ERR(sys_bg); |
| 5645 | |
| 5646 | return 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5647 | } |
| 5648 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5649 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 5650 | { |
David Sterba | fc9a2ac | 2019-05-17 11:43:22 +0200 | [diff] [blame] | 5651 | const int index = btrfs_bg_flags_to_raid_index(map->type); |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5652 | |
David Sterba | fc9a2ac | 2019-05-17 11:43:22 +0200 | [diff] [blame] | 5653 | return btrfs_raid_array[index].tolerated_failures; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5654 | } |
| 5655 | |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5656 | 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] | 5657 | { |
| 5658 | struct extent_map *em; |
| 5659 | struct map_lookup *map; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5660 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5661 | int i; |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5662 | bool ret = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5663 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5664 | em = btrfs_get_chunk_map(fs_info, chunk_offset, 1); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5665 | if (IS_ERR(em)) |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5666 | return false; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5667 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5668 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5669 | for (i = 0; i < map->num_stripes; i++) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 5670 | if (test_bit(BTRFS_DEV_STATE_MISSING, |
| 5671 | &map->stripes[i].dev->dev_state)) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5672 | miss_ndevs++; |
| 5673 | continue; |
| 5674 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 5675 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, |
| 5676 | &map->stripes[i].dev->dev_state)) { |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5677 | ret = false; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5678 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5679 | } |
| 5680 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5681 | |
| 5682 | /* |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5683 | * If the number of missing devices is larger than max errors, we can |
| 5684 | * not write the data into that chunk successfully. |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5685 | */ |
| 5686 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5687 | ret = false; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5688 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5689 | free_extent_map(em); |
Anand Jain | a09f23c | 2021-08-24 13:27:42 +0800 | [diff] [blame] | 5690 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5691 | } |
| 5692 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 5693 | void btrfs_mapping_tree_free(struct extent_map_tree *tree) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5694 | { |
| 5695 | struct extent_map *em; |
| 5696 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5697 | while (1) { |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 5698 | write_lock(&tree->lock); |
| 5699 | em = lookup_extent_mapping(tree, 0, (u64)-1); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5700 | if (em) |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 5701 | remove_extent_mapping(tree, em); |
| 5702 | write_unlock(&tree->lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5703 | if (!em) |
| 5704 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5705 | /* once for us */ |
| 5706 | free_extent_map(em); |
| 5707 | /* once for the tree */ |
| 5708 | free_extent_map(em); |
| 5709 | } |
| 5710 | } |
| 5711 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5712 | 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] | 5713 | { |
| 5714 | struct extent_map *em; |
| 5715 | struct map_lookup *map; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5716 | int ret; |
| 5717 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5718 | em = btrfs_get_chunk_map(fs_info, logical, len); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5719 | if (IS_ERR(em)) |
| 5720 | /* |
| 5721 | * We could return errors for these cases, but that could get |
| 5722 | * ugly and we'd probably do the same thing which is just not do |
| 5723 | * anything else and exit, so return 1 so the callers don't try |
| 5724 | * to use other copies. |
| 5725 | */ |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5726 | return 1; |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5727 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5728 | map = em->map_lookup; |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 5729 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1_MASK)) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5730 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5731 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5732 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5733 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5734 | ret = 2; |
| 5735 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5736 | /* |
| 5737 | * There could be two corrupted data stripes, we need |
| 5738 | * to loop retry in order to rebuild the correct data. |
Nikolay Borisov | e7e0209 | 2018-06-20 15:48:55 +0300 | [diff] [blame] | 5739 | * |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5740 | * Fail a stripe at a time on every retry except the |
| 5741 | * stripe under reconstruction. |
| 5742 | */ |
| 5743 | ret = map->num_stripes; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5744 | else |
| 5745 | ret = 1; |
| 5746 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5747 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 5748 | down_read(&fs_info->dev_replace.rwsem); |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5749 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) && |
| 5750 | fs_info->dev_replace.tgtdev) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5751 | ret++; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 5752 | up_read(&fs_info->dev_replace.rwsem); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5753 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5754 | return ret; |
| 5755 | } |
| 5756 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5757 | unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5758 | u64 logical) |
| 5759 | { |
| 5760 | struct extent_map *em; |
| 5761 | struct map_lookup *map; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5762 | unsigned long len = fs_info->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5763 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5764 | em = btrfs_get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5765 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5766 | if (!WARN_ON(IS_ERR(em))) { |
| 5767 | map = em->map_lookup; |
| 5768 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5769 | len = map->stripe_len * nr_data_stripes(map); |
| 5770 | free_extent_map(em); |
| 5771 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5772 | return len; |
| 5773 | } |
| 5774 | |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 5775 | 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] | 5776 | { |
| 5777 | struct extent_map *em; |
| 5778 | struct map_lookup *map; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5779 | int ret = 0; |
| 5780 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5781 | em = btrfs_get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5782 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5783 | if(!WARN_ON(IS_ERR(em))) { |
| 5784 | map = em->map_lookup; |
| 5785 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5786 | ret = 1; |
| 5787 | free_extent_map(em); |
| 5788 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5789 | return ret; |
| 5790 | } |
| 5791 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5792 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5793 | struct map_lookup *map, int first, |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5794 | int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5795 | { |
| 5796 | int i; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5797 | int num_stripes; |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5798 | int preferred_mirror; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5799 | int tolerance; |
| 5800 | struct btrfs_device *srcdev; |
| 5801 | |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5802 | ASSERT((map->type & |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 5803 | (BTRFS_BLOCK_GROUP_RAID1_MASK | BTRFS_BLOCK_GROUP_RAID10))); |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5804 | |
| 5805 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5806 | num_stripes = map->sub_stripes; |
| 5807 | else |
| 5808 | num_stripes = map->num_stripes; |
| 5809 | |
Anand Jain | 33fd2f7 | 2020-10-28 21:14:46 +0800 | [diff] [blame] | 5810 | switch (fs_info->fs_devices->read_policy) { |
| 5811 | default: |
| 5812 | /* Shouldn't happen, just warn and use pid instead of failing */ |
| 5813 | btrfs_warn_rl(fs_info, |
| 5814 | "unknown read_policy type %u, reset to pid", |
| 5815 | fs_info->fs_devices->read_policy); |
| 5816 | fs_info->fs_devices->read_policy = BTRFS_READ_POLICY_PID; |
| 5817 | fallthrough; |
| 5818 | case BTRFS_READ_POLICY_PID: |
| 5819 | preferred_mirror = first + (current->pid % num_stripes); |
| 5820 | break; |
| 5821 | } |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5822 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5823 | if (dev_replace_is_ongoing && |
| 5824 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5825 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5826 | srcdev = fs_info->dev_replace.srcdev; |
| 5827 | else |
| 5828 | srcdev = NULL; |
| 5829 | |
| 5830 | /* |
| 5831 | * try to avoid the drive that is the source drive for a |
| 5832 | * dev-replace procedure, only choose it if no other non-missing |
| 5833 | * mirror is available |
| 5834 | */ |
| 5835 | for (tolerance = 0; tolerance < 2; tolerance++) { |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5836 | if (map->stripes[preferred_mirror].dev->bdev && |
| 5837 | (tolerance || map->stripes[preferred_mirror].dev != srcdev)) |
| 5838 | return preferred_mirror; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5839 | for (i = first; i < first + num_stripes; i++) { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5840 | if (map->stripes[i].dev->bdev && |
| 5841 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5842 | return i; |
| 5843 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5844 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5845 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5846 | /* we couldn't find one that doesn't fail. Just return something |
| 5847 | * and the io error handling code will clean up eventually |
| 5848 | */ |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5849 | return preferred_mirror; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5850 | } |
| 5851 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5852 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5853 | 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] | 5854 | { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5855 | int i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5856 | int again = 1; |
| 5857 | |
| 5858 | while (again) { |
| 5859 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5860 | for (i = 0; i < num_stripes - 1; i++) { |
David Sterba | eeb6f17 | 2019-11-28 15:31:17 +0100 | [diff] [blame] | 5861 | /* Swap if parity is on a smaller index */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5862 | if (bioc->raid_map[i] > bioc->raid_map[i + 1]) { |
| 5863 | swap(bioc->stripes[i], bioc->stripes[i + 1]); |
| 5864 | swap(bioc->raid_map[i], bioc->raid_map[i + 1]); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5865 | again = 1; |
| 5866 | } |
| 5867 | } |
| 5868 | } |
| 5869 | } |
| 5870 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 5871 | static struct btrfs_io_context *alloc_btrfs_io_context(struct btrfs_fs_info *fs_info, |
| 5872 | int total_stripes, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5873 | int real_stripes) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5874 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5875 | struct btrfs_io_context *bioc = kzalloc( |
| 5876 | /* The size of btrfs_io_context */ |
| 5877 | sizeof(struct btrfs_io_context) + |
| 5878 | /* Plus the variable array for the stripes */ |
| 5879 | sizeof(struct btrfs_io_stripe) * (total_stripes) + |
| 5880 | /* Plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5881 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5882 | /* |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5883 | * Plus the raid_map, which includes both the tgt dev |
| 5884 | * and the stripes. |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5885 | */ |
| 5886 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5887 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5888 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5889 | atomic_set(&bioc->error, 0); |
| 5890 | refcount_set(&bioc->refs, 1); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5891 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 5892 | bioc->fs_info = fs_info; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5893 | bioc->tgtdev_map = (int *)(bioc->stripes + total_stripes); |
| 5894 | bioc->raid_map = (u64 *)(bioc->tgtdev_map + real_stripes); |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 5895 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5896 | return bioc; |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5897 | } |
| 5898 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5899 | void btrfs_get_bioc(struct btrfs_io_context *bioc) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5900 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5901 | WARN_ON(!refcount_read(&bioc->refs)); |
| 5902 | refcount_inc(&bioc->refs); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5903 | } |
| 5904 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5905 | void btrfs_put_bioc(struct btrfs_io_context *bioc) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5906 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5907 | if (!bioc) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5908 | return; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5909 | if (refcount_dec_and_test(&bioc->refs)) |
| 5910 | kfree(bioc); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5911 | } |
| 5912 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5913 | /* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */ |
| 5914 | /* |
| 5915 | * Please note that, discard won't be sent to target device of device |
| 5916 | * replace. |
| 5917 | */ |
| 5918 | 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] | 5919 | u64 logical, u64 *length_ret, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5920 | struct btrfs_io_context **bioc_ret) |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5921 | { |
| 5922 | struct extent_map *em; |
| 5923 | struct map_lookup *map; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5924 | struct btrfs_io_context *bioc; |
Qu Wenruo | 6b7faad | 2019-10-23 21:57:27 +0800 | [diff] [blame] | 5925 | u64 length = *length_ret; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5926 | u64 offset; |
| 5927 | u64 stripe_nr; |
| 5928 | u64 stripe_nr_end; |
| 5929 | u64 stripe_end_offset; |
| 5930 | u64 stripe_cnt; |
| 5931 | u64 stripe_len; |
| 5932 | u64 stripe_offset; |
| 5933 | u64 num_stripes; |
| 5934 | u32 stripe_index; |
| 5935 | u32 factor = 0; |
| 5936 | u32 sub_stripes = 0; |
| 5937 | u64 stripes_per_dev = 0; |
| 5938 | u32 remaining_stripes = 0; |
| 5939 | u32 last_stripe = 0; |
| 5940 | int ret = 0; |
| 5941 | int i; |
| 5942 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 5943 | /* Discard always returns a bioc. */ |
| 5944 | ASSERT(bioc_ret); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5945 | |
Omar Sandoval | 60ca842 | 2018-05-16 16:34:31 -0700 | [diff] [blame] | 5946 | em = btrfs_get_chunk_map(fs_info, logical, length); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5947 | if (IS_ERR(em)) |
| 5948 | return PTR_ERR(em); |
| 5949 | |
| 5950 | map = em->map_lookup; |
| 5951 | /* we don't discard raid56 yet */ |
| 5952 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 5953 | ret = -EOPNOTSUPP; |
| 5954 | goto out; |
| 5955 | } |
| 5956 | |
| 5957 | offset = logical - em->start; |
Qu Wenruo | 2d97461 | 2019-10-23 21:57:26 +0800 | [diff] [blame] | 5958 | length = min_t(u64, em->start + em->len - logical, length); |
Qu Wenruo | 6b7faad | 2019-10-23 21:57:27 +0800 | [diff] [blame] | 5959 | *length_ret = length; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5960 | |
| 5961 | stripe_len = map->stripe_len; |
| 5962 | /* |
| 5963 | * stripe_nr counts the total number of stripes we have to stride |
| 5964 | * to get to this block |
| 5965 | */ |
| 5966 | stripe_nr = div64_u64(offset, stripe_len); |
| 5967 | |
| 5968 | /* stripe_offset is the offset of this block in its stripe */ |
| 5969 | stripe_offset = offset - stripe_nr * stripe_len; |
| 5970 | |
| 5971 | stripe_nr_end = round_up(offset + length, map->stripe_len); |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5972 | stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5973 | stripe_cnt = stripe_nr_end - stripe_nr; |
| 5974 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5975 | (offset + length); |
| 5976 | /* |
| 5977 | * after this, stripe_nr is the number of stripes on this |
| 5978 | * device we have to walk to find the data, and stripe_index is |
| 5979 | * the number of our device in the stripe array |
| 5980 | */ |
| 5981 | num_stripes = 1; |
| 5982 | stripe_index = 0; |
| 5983 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5984 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5985 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5986 | sub_stripes = 1; |
| 5987 | else |
| 5988 | sub_stripes = map->sub_stripes; |
| 5989 | |
| 5990 | factor = map->num_stripes / sub_stripes; |
| 5991 | num_stripes = min_t(u64, map->num_stripes, |
| 5992 | sub_stripes * stripe_cnt); |
| 5993 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
| 5994 | stripe_index *= sub_stripes; |
| 5995 | stripes_per_dev = div_u64_rem(stripe_cnt, factor, |
| 5996 | &remaining_stripes); |
| 5997 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5998 | last_stripe *= sub_stripes; |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 5999 | } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1_MASK | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6000 | BTRFS_BLOCK_GROUP_DUP)) { |
| 6001 | num_stripes = map->num_stripes; |
| 6002 | } else { |
| 6003 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 6004 | &stripe_index); |
| 6005 | } |
| 6006 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 6007 | bioc = alloc_btrfs_io_context(fs_info, num_stripes, 0); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6008 | if (!bioc) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6009 | ret = -ENOMEM; |
| 6010 | goto out; |
| 6011 | } |
| 6012 | |
| 6013 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6014 | bioc->stripes[i].physical = |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6015 | map->stripes[stripe_index].physical + |
| 6016 | stripe_offset + stripe_nr * map->stripe_len; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6017 | bioc->stripes[i].dev = map->stripes[stripe_index].dev; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6018 | |
| 6019 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 6020 | BTRFS_BLOCK_GROUP_RAID10)) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6021 | bioc->stripes[i].length = stripes_per_dev * |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6022 | map->stripe_len; |
| 6023 | |
| 6024 | if (i / sub_stripes < remaining_stripes) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6025 | bioc->stripes[i].length += map->stripe_len; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6026 | |
| 6027 | /* |
| 6028 | * Special for the first stripe and |
| 6029 | * the last stripe: |
| 6030 | * |
| 6031 | * |-------|...|-------| |
| 6032 | * |----------| |
| 6033 | * off end_off |
| 6034 | */ |
| 6035 | if (i < sub_stripes) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6036 | bioc->stripes[i].length -= stripe_offset; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6037 | |
| 6038 | if (stripe_index >= last_stripe && |
| 6039 | stripe_index <= (last_stripe + |
| 6040 | sub_stripes - 1)) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6041 | bioc->stripes[i].length -= stripe_end_offset; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6042 | |
| 6043 | if (i == sub_stripes - 1) |
| 6044 | stripe_offset = 0; |
| 6045 | } else { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6046 | bioc->stripes[i].length = length; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6047 | } |
| 6048 | |
| 6049 | stripe_index++; |
| 6050 | if (stripe_index == map->num_stripes) { |
| 6051 | stripe_index = 0; |
| 6052 | stripe_nr++; |
| 6053 | } |
| 6054 | } |
| 6055 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6056 | *bioc_ret = bioc; |
| 6057 | bioc->map_type = map->type; |
| 6058 | bioc->num_stripes = num_stripes; |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6059 | out: |
| 6060 | free_extent_map(em); |
| 6061 | return ret; |
| 6062 | } |
| 6063 | |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6064 | /* |
| 6065 | * In dev-replace case, for repair case (that's the only case where the mirror |
| 6066 | * is selected explicitly when calling btrfs_map_block), blocks left of the |
| 6067 | * left cursor can also be read from the target drive. |
| 6068 | * |
| 6069 | * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the |
| 6070 | * array of stripes. |
| 6071 | * For READ, it also needs to be supported using the same mirror number. |
| 6072 | * |
| 6073 | * If the requested block is not left of the left cursor, EIO is returned. This |
| 6074 | * can happen because btrfs_num_copies() returns one more in the dev-replace |
| 6075 | * case. |
| 6076 | */ |
| 6077 | static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info, |
| 6078 | u64 logical, u64 length, |
| 6079 | u64 srcdev_devid, int *mirror_num, |
| 6080 | u64 *physical) |
| 6081 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6082 | struct btrfs_io_context *bioc = NULL; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6083 | int num_stripes; |
| 6084 | int index_srcdev = 0; |
| 6085 | int found = 0; |
| 6086 | u64 physical_of_found = 0; |
| 6087 | int i; |
| 6088 | int ret = 0; |
| 6089 | |
| 6090 | ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6091 | logical, &length, &bioc, 0, 0); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6092 | if (ret) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6093 | ASSERT(bioc == NULL); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6094 | return ret; |
| 6095 | } |
| 6096 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6097 | num_stripes = bioc->num_stripes; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6098 | if (*mirror_num > num_stripes) { |
| 6099 | /* |
| 6100 | * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror, |
| 6101 | * that means that the requested area is not left of the left |
| 6102 | * cursor |
| 6103 | */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6104 | btrfs_put_bioc(bioc); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6105 | return -EIO; |
| 6106 | } |
| 6107 | |
| 6108 | /* |
| 6109 | * process the rest of the function using the mirror_num of the source |
| 6110 | * drive. Therefore look it up first. At the end, patch the device |
| 6111 | * pointer to the one of the target drive. |
| 6112 | */ |
| 6113 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6114 | if (bioc->stripes[i].dev->devid != srcdev_devid) |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6115 | continue; |
| 6116 | |
| 6117 | /* |
| 6118 | * In case of DUP, in order to keep it simple, only add the |
| 6119 | * mirror with the lowest physical address |
| 6120 | */ |
| 6121 | if (found && |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6122 | physical_of_found <= bioc->stripes[i].physical) |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6123 | continue; |
| 6124 | |
| 6125 | index_srcdev = i; |
| 6126 | found = 1; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6127 | physical_of_found = bioc->stripes[i].physical; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6128 | } |
| 6129 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6130 | btrfs_put_bioc(bioc); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6131 | |
| 6132 | ASSERT(found); |
| 6133 | if (!found) |
| 6134 | return -EIO; |
| 6135 | |
| 6136 | *mirror_num = index_srcdev + 1; |
| 6137 | *physical = physical_of_found; |
| 6138 | return ret; |
| 6139 | } |
| 6140 | |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6141 | static bool is_block_group_to_copy(struct btrfs_fs_info *fs_info, u64 logical) |
| 6142 | { |
| 6143 | struct btrfs_block_group *cache; |
| 6144 | bool ret; |
| 6145 | |
Naohiro Aota | de17add | 2021-02-04 19:22:13 +0900 | [diff] [blame] | 6146 | /* Non zoned filesystem does not use "to_copy" flag */ |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6147 | if (!btrfs_is_zoned(fs_info)) |
| 6148 | return false; |
| 6149 | |
| 6150 | cache = btrfs_lookup_block_group(fs_info, logical); |
| 6151 | |
| 6152 | spin_lock(&cache->lock); |
| 6153 | ret = cache->to_copy; |
| 6154 | spin_unlock(&cache->lock); |
| 6155 | |
| 6156 | btrfs_put_block_group(cache); |
| 6157 | return ret; |
| 6158 | } |
| 6159 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6160 | static void handle_ops_on_dev_replace(enum btrfs_map_op op, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6161 | struct btrfs_io_context **bioc_ret, |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6162 | struct btrfs_dev_replace *dev_replace, |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6163 | u64 logical, |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6164 | int *num_stripes_ret, int *max_errors_ret) |
| 6165 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6166 | struct btrfs_io_context *bioc = *bioc_ret; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6167 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 6168 | int tgtdev_indexes = 0; |
| 6169 | int num_stripes = *num_stripes_ret; |
| 6170 | int max_errors = *max_errors_ret; |
| 6171 | int i; |
| 6172 | |
| 6173 | if (op == BTRFS_MAP_WRITE) { |
| 6174 | int index_where_to_add; |
| 6175 | |
| 6176 | /* |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6177 | * A block group which have "to_copy" set will eventually |
| 6178 | * copied by dev-replace process. We can avoid cloning IO here. |
| 6179 | */ |
| 6180 | if (is_block_group_to_copy(dev_replace->srcdev->fs_info, logical)) |
| 6181 | return; |
| 6182 | |
| 6183 | /* |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6184 | * duplicate the write operations while the dev replace |
| 6185 | * procedure is running. Since the copying of the old disk to |
| 6186 | * the new disk takes place at run time while the filesystem is |
| 6187 | * mounted writable, the regular write operations to the old |
| 6188 | * disk have to be duplicated to go to the new disk as well. |
| 6189 | * |
| 6190 | * Note that device->missing is handled by the caller, and that |
| 6191 | * the write to the old disk is already set up in the stripes |
| 6192 | * array. |
| 6193 | */ |
| 6194 | index_where_to_add = num_stripes; |
| 6195 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6196 | if (bioc->stripes[i].dev->devid == srcdev_devid) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6197 | /* write to new disk, too */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6198 | struct btrfs_io_stripe *new = |
| 6199 | bioc->stripes + index_where_to_add; |
| 6200 | struct btrfs_io_stripe *old = |
| 6201 | bioc->stripes + i; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6202 | |
| 6203 | new->physical = old->physical; |
| 6204 | new->length = old->length; |
| 6205 | new->dev = dev_replace->tgtdev; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6206 | bioc->tgtdev_map[i] = index_where_to_add; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6207 | index_where_to_add++; |
| 6208 | max_errors++; |
| 6209 | tgtdev_indexes++; |
| 6210 | } |
| 6211 | } |
| 6212 | num_stripes = index_where_to_add; |
| 6213 | } else if (op == BTRFS_MAP_GET_READ_MIRRORS) { |
| 6214 | int index_srcdev = 0; |
| 6215 | int found = 0; |
| 6216 | u64 physical_of_found = 0; |
| 6217 | |
| 6218 | /* |
| 6219 | * During the dev-replace procedure, the target drive can also |
| 6220 | * be used to read data in case it is needed to repair a corrupt |
| 6221 | * block elsewhere. This is possible if the requested area is |
| 6222 | * left of the left cursor. In this area, the target drive is a |
| 6223 | * full copy of the source drive. |
| 6224 | */ |
| 6225 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6226 | if (bioc->stripes[i].dev->devid == srcdev_devid) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6227 | /* |
| 6228 | * In case of DUP, in order to keep it simple, |
| 6229 | * only add the mirror with the lowest physical |
| 6230 | * address |
| 6231 | */ |
| 6232 | if (found && |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6233 | physical_of_found <= bioc->stripes[i].physical) |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6234 | continue; |
| 6235 | index_srcdev = i; |
| 6236 | found = 1; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6237 | physical_of_found = bioc->stripes[i].physical; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6238 | } |
| 6239 | } |
| 6240 | if (found) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6241 | struct btrfs_io_stripe *tgtdev_stripe = |
| 6242 | bioc->stripes + num_stripes; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6243 | |
| 6244 | tgtdev_stripe->physical = physical_of_found; |
| 6245 | tgtdev_stripe->length = |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6246 | bioc->stripes[index_srcdev].length; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6247 | tgtdev_stripe->dev = dev_replace->tgtdev; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6248 | bioc->tgtdev_map[index_srcdev] = num_stripes; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6249 | |
| 6250 | tgtdev_indexes++; |
| 6251 | num_stripes++; |
| 6252 | } |
| 6253 | } |
| 6254 | |
| 6255 | *num_stripes_ret = num_stripes; |
| 6256 | *max_errors_ret = max_errors; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6257 | bioc->num_tgtdevs = tgtdev_indexes; |
| 6258 | *bioc_ret = bioc; |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6259 | } |
| 6260 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6261 | static bool need_full_stripe(enum btrfs_map_op op) |
| 6262 | { |
| 6263 | return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS); |
| 6264 | } |
| 6265 | |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6266 | /* |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6267 | * Calculate the geometry of a particular (address, len) tuple. This |
| 6268 | * information is used to calculate how big a particular bio can get before it |
| 6269 | * straddles a stripe. |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6270 | * |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6271 | * @fs_info: the filesystem |
| 6272 | * @em: mapping containing the logical extent |
| 6273 | * @op: type of operation - write or read |
| 6274 | * @logical: address that we want to figure out the geometry of |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6275 | * @io_geom: pointer used to return values |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6276 | * |
| 6277 | * Returns < 0 in case a chunk for the given logical address cannot be found, |
| 6278 | * usually shouldn't happen unless @logical is corrupted, 0 otherwise. |
| 6279 | */ |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6280 | 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] | 6281 | enum btrfs_map_op op, u64 logical, |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6282 | struct btrfs_io_geometry *io_geom) |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6283 | { |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6284 | struct map_lookup *map; |
Qu Wenruo | 43c0d1a | 2021-04-13 17:58:48 +0800 | [diff] [blame] | 6285 | u64 len; |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6286 | u64 offset; |
| 6287 | u64 stripe_offset; |
| 6288 | u64 stripe_nr; |
| 6289 | u64 stripe_len; |
| 6290 | u64 raid56_full_stripe_start = (u64)-1; |
| 6291 | int data_stripes; |
| 6292 | |
| 6293 | ASSERT(op != BTRFS_MAP_DISCARD); |
| 6294 | |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6295 | map = em->map_lookup; |
| 6296 | /* Offset of this logical address in the chunk */ |
| 6297 | offset = logical - em->start; |
| 6298 | /* Len of a stripe in a chunk */ |
| 6299 | stripe_len = map->stripe_len; |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 6300 | /* Stripe where this block falls in */ |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6301 | stripe_nr = div64_u64(offset, stripe_len); |
| 6302 | /* Offset of stripe in the chunk */ |
| 6303 | stripe_offset = stripe_nr * stripe_len; |
| 6304 | if (offset < stripe_offset) { |
| 6305 | btrfs_crit(fs_info, |
| 6306 | "stripe math has gone wrong, stripe_offset=%llu offset=%llu start=%llu logical=%llu stripe_len=%llu", |
| 6307 | stripe_offset, offset, em->start, logical, stripe_len); |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6308 | return -EINVAL; |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6309 | } |
| 6310 | |
| 6311 | /* stripe_offset is the offset of this block in its stripe */ |
| 6312 | stripe_offset = offset - stripe_offset; |
| 6313 | data_stripes = nr_data_stripes(map); |
| 6314 | |
| 6315 | if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
| 6316 | u64 max_len = stripe_len - stripe_offset; |
| 6317 | |
| 6318 | /* |
| 6319 | * In case of raid56, we need to know the stripe aligned start |
| 6320 | */ |
| 6321 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 6322 | unsigned long full_stripe_len = stripe_len * data_stripes; |
| 6323 | raid56_full_stripe_start = offset; |
| 6324 | |
| 6325 | /* |
| 6326 | * Allow a write of a full stripe, but make sure we |
| 6327 | * don't allow straddling of stripes |
| 6328 | */ |
| 6329 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 6330 | full_stripe_len); |
| 6331 | raid56_full_stripe_start *= full_stripe_len; |
| 6332 | |
| 6333 | /* |
| 6334 | * For writes to RAID[56], allow a full stripeset across |
| 6335 | * all disks. For other RAID types and for RAID[56] |
| 6336 | * reads, just allow a single stripe (on a single disk). |
| 6337 | */ |
| 6338 | if (op == BTRFS_MAP_WRITE) { |
| 6339 | max_len = stripe_len * data_stripes - |
| 6340 | (offset - raid56_full_stripe_start); |
| 6341 | } |
| 6342 | } |
| 6343 | len = min_t(u64, em->len - offset, max_len); |
| 6344 | } else { |
| 6345 | len = em->len - offset; |
| 6346 | } |
| 6347 | |
| 6348 | io_geom->len = len; |
| 6349 | io_geom->offset = offset; |
| 6350 | io_geom->stripe_len = stripe_len; |
| 6351 | io_geom->stripe_nr = stripe_nr; |
| 6352 | io_geom->stripe_offset = stripe_offset; |
| 6353 | io_geom->raid56_stripe_offset = raid56_full_stripe_start; |
| 6354 | |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6355 | return 0; |
Nikolay Borisov | 5f14112 | 2019-06-03 12:05:03 +0300 | [diff] [blame] | 6356 | } |
| 6357 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6358 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 6359 | enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6360 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6361 | struct btrfs_io_context **bioc_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6362 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6363 | { |
| 6364 | struct extent_map *em; |
| 6365 | struct map_lookup *map; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6366 | u64 stripe_offset; |
| 6367 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6368 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 6369 | u32 stripe_index; |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6370 | int data_stripes; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6371 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6372 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6373 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6374 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 6375 | int tgtdev_indexes = 0; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6376 | struct btrfs_io_context *bioc = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6377 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 6378 | int dev_replace_is_ongoing = 0; |
| 6379 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6380 | int patch_the_first_stripe_for_dev_replace = 0; |
| 6381 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6382 | u64 raid56_full_stripe_start = (u64)-1; |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6383 | struct btrfs_io_geometry geom; |
| 6384 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6385 | ASSERT(bioc_ret); |
David Sterba | 75fb2e9 | 2018-08-03 00:36:29 +0200 | [diff] [blame] | 6386 | ASSERT(op != BTRFS_MAP_DISCARD); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6387 | |
Michal Rostecki | 4203431 | 2021-01-27 14:57:27 +0100 | [diff] [blame] | 6388 | em = btrfs_get_chunk_map(fs_info, logical, *length); |
| 6389 | ASSERT(!IS_ERR(em)); |
| 6390 | |
Qu Wenruo | 43c0d1a | 2021-04-13 17:58:48 +0800 | [diff] [blame] | 6391 | ret = btrfs_get_io_geometry(fs_info, em, op, logical, &geom); |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6392 | if (ret < 0) |
| 6393 | return ret; |
| 6394 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6395 | map = em->map_lookup; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6396 | |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6397 | *length = geom.len; |
Nikolay Borisov | 89b798a | 2019-06-03 12:05:05 +0300 | [diff] [blame] | 6398 | stripe_len = geom.stripe_len; |
| 6399 | stripe_nr = geom.stripe_nr; |
| 6400 | stripe_offset = geom.stripe_offset; |
| 6401 | raid56_full_stripe_start = geom.raid56_stripe_offset; |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6402 | data_stripes = nr_data_stripes(map); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6403 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 6404 | down_read(&dev_replace->rwsem); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6405 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
David Sterba | 53176dd | 2018-04-05 01:41:06 +0200 | [diff] [blame] | 6406 | /* |
| 6407 | * Hold the semaphore for read during the whole operation, write is |
| 6408 | * requested at commit time but must wait. |
| 6409 | */ |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6410 | if (!dev_replace_is_ongoing) |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 6411 | up_read(&dev_replace->rwsem); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6412 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6413 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6414 | !need_full_stripe(op) && dev_replace->tgtdev != NULL) { |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6415 | ret = get_extra_mirror_from_replace(fs_info, logical, *length, |
| 6416 | dev_replace->srcdev->devid, |
| 6417 | &mirror_num, |
| 6418 | &physical_to_patch_in_first_stripe); |
| 6419 | if (ret) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6420 | goto out; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 6421 | else |
| 6422 | patch_the_first_stripe_for_dev_replace = 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6423 | } else if (mirror_num > map->num_stripes) { |
| 6424 | mirror_num = 0; |
| 6425 | } |
| 6426 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6427 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6428 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 6429 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6430 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 6431 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6432 | if (!need_full_stripe(op)) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 6433 | mirror_num = 1; |
David Sterba | c7369b3 | 2019-05-31 15:39:31 +0200 | [diff] [blame] | 6434 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6435 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6436 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 6437 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6438 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6439 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6440 | stripe_index = find_live_mirror(fs_info, map, 0, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6441 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6442 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6443 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 6444 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6445 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6446 | if (need_full_stripe(op)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6447 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6448 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6449 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6450 | } else { |
| 6451 | mirror_num = 1; |
| 6452 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 6453 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6454 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 6455 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6456 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6457 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6458 | stripe_index *= map->sub_stripes; |
| 6459 | |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6460 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6461 | num_stripes = map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6462 | else if (mirror_num) |
| 6463 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6464 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 6465 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6466 | stripe_index = find_live_mirror(fs_info, map, |
| 6467 | stripe_index, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 6468 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 6469 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6470 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6471 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 6472 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6473 | if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6474 | /* push stripe_nr back to the start of the full stripe */ |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 6475 | stripe_nr = div64_u64(raid56_full_stripe_start, |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6476 | stripe_len * data_stripes); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6477 | |
| 6478 | /* RAID[56] write or recovery. Return all stripes */ |
| 6479 | num_stripes = map->num_stripes; |
| 6480 | max_errors = nr_parity_stripes(map); |
| 6481 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6482 | *length = map->stripe_len; |
| 6483 | stripe_index = 0; |
| 6484 | stripe_offset = 0; |
| 6485 | } else { |
| 6486 | /* |
| 6487 | * Mirror #0 or #1 means the original data block. |
| 6488 | * Mirror #2 is RAID5 parity block. |
| 6489 | * Mirror #3 is RAID6 Q block. |
| 6490 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6491 | stripe_nr = div_u64_rem(stripe_nr, |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6492 | data_stripes, &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6493 | if (mirror_num > 1) |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6494 | stripe_index = data_stripes + mirror_num - 2; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6495 | |
| 6496 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6497 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 6498 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 6499 | if (!need_full_stripe(op) && mirror_num <= 1) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 6500 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6501 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6502 | } else { |
| 6503 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6504 | * after this, stripe_nr is the number of stripes on this |
| 6505 | * device we have to walk to find the data, and stripe_index is |
| 6506 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6507 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6508 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 6509 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6510 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6511 | } |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 6512 | if (stripe_index >= map->num_stripes) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6513 | btrfs_crit(fs_info, |
| 6514 | "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] | 6515 | stripe_index, map->num_stripes); |
| 6516 | ret = -EINVAL; |
| 6517 | goto out; |
| 6518 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6519 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6520 | num_alloc_stripes = num_stripes; |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 6521 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6522 | if (op == BTRFS_MAP_WRITE) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6523 | num_alloc_stripes <<= 1; |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6524 | if (op == BTRFS_MAP_GET_READ_MIRRORS) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6525 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 6526 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6527 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 6528 | |
Qu Wenruo | 731ccf1 | 2021-09-23 14:00:08 +0800 | [diff] [blame] | 6529 | bioc = alloc_btrfs_io_context(fs_info, num_alloc_stripes, tgtdev_indexes); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6530 | if (!bioc) { |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6531 | ret = -ENOMEM; |
| 6532 | goto out; |
| 6533 | } |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 6534 | |
| 6535 | for (i = 0; i < num_stripes; i++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6536 | bioc->stripes[i].physical = map->stripes[stripe_index].physical + |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 6537 | stripe_offset + stripe_nr * map->stripe_len; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6538 | bioc->stripes[i].dev = map->stripes[stripe_index].dev; |
Nikolay Borisov | 608769a | 2020-07-02 16:46:41 +0300 | [diff] [blame] | 6539 | stripe_index++; |
| 6540 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6541 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6542 | /* Build raid_map */ |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6543 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map && |
| 6544 | (need_full_stripe(op) || mirror_num > 1)) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6545 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 6546 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6547 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6548 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 6549 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6550 | |
| 6551 | /* Fill in the logical address of each stripe */ |
David Sterba | cff8267 | 2019-05-17 11:43:45 +0200 | [diff] [blame] | 6552 | tmp = stripe_nr * data_stripes; |
| 6553 | for (i = 0; i < data_stripes; i++) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6554 | bioc->raid_map[(i + rot) % num_stripes] = |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6555 | em->start + (tmp + i) * map->stripe_len; |
| 6556 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6557 | bioc->raid_map[(i + rot) % map->num_stripes] = RAID5_P_STRIPE; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6558 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6559 | bioc->raid_map[(i + rot + 1) % num_stripes] = |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6560 | RAID6_Q_STRIPE; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6561 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6562 | sort_parity_stripes(bioc, num_stripes); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6563 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6564 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6565 | if (need_full_stripe(op)) |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 6566 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6567 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6568 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6569 | need_full_stripe(op)) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6570 | handle_ops_on_dev_replace(op, &bioc, dev_replace, logical, |
Naohiro Aota | 6143c23 | 2021-02-04 19:22:12 +0900 | [diff] [blame] | 6571 | &num_stripes, &max_errors); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6572 | } |
| 6573 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6574 | *bioc_ret = bioc; |
| 6575 | bioc->map_type = map->type; |
| 6576 | bioc->num_stripes = num_stripes; |
| 6577 | bioc->max_errors = max_errors; |
| 6578 | bioc->mirror_num = mirror_num; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6579 | |
| 6580 | /* |
| 6581 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 6582 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 6583 | * available as a mirror |
| 6584 | */ |
| 6585 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 6586 | WARN_ON(num_stripes > 1); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6587 | bioc->stripes[0].dev = dev_replace->tgtdev; |
| 6588 | bioc->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 6589 | bioc->mirror_num = map->num_stripes + 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6590 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6591 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 6592 | if (dev_replace_is_ongoing) { |
David Sterba | 53176dd | 2018-04-05 01:41:06 +0200 | [diff] [blame] | 6593 | lockdep_assert_held(&dev_replace->rwsem); |
| 6594 | /* Unlock and let waiting writers proceed */ |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 6595 | up_read(&dev_replace->rwsem); |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 6596 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6597 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6598 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6599 | } |
| 6600 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6601 | 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] | 6602 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6603 | struct btrfs_io_context **bioc_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6604 | { |
David Sterba | 75fb2e9 | 2018-08-03 00:36:29 +0200 | [diff] [blame] | 6605 | if (op == BTRFS_MAP_DISCARD) |
| 6606 | return __btrfs_map_block_for_discard(fs_info, logical, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6607 | length, bioc_ret); |
David Sterba | 75fb2e9 | 2018-08-03 00:36:29 +0200 | [diff] [blame] | 6608 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6609 | return __btrfs_map_block(fs_info, op, logical, length, bioc_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6610 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6611 | } |
| 6612 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6613 | /* For Scrub/replace */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6614 | 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] | 6615 | u64 logical, u64 *length, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6616 | struct btrfs_io_context **bioc_ret) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6617 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6618 | 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] | 6619 | } |
| 6620 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6621 | 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] | 6622 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6623 | bio->bi_private = bioc->private; |
| 6624 | bio->bi_end_io = bioc->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6625 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6626 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6627 | btrfs_put_bioc(bioc); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6628 | } |
| 6629 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6630 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6631 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6632 | struct btrfs_io_context *bioc = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6633 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6634 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6635 | if (bio->bi_status) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6636 | atomic_inc(&bioc->error); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6637 | if (bio->bi_status == BLK_STS_IOERR || |
| 6638 | bio->bi_status == BLK_STS_TARGET) { |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6639 | struct btrfs_device *dev = btrfs_bio(bio)->device; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6640 | |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6641 | ASSERT(dev->bdev); |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6642 | if (btrfs_op(bio) == BTRFS_MAP_WRITE) |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6643 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6644 | BTRFS_DEV_STAT_WRITE_ERRS); |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6645 | else if (!(bio->bi_opf & REQ_RAHEAD)) |
| 6646 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6647 | BTRFS_DEV_STAT_READ_ERRS); |
Nikolay Borisov | 3eee86c | 2020-07-02 15:23:31 +0300 | [diff] [blame] | 6648 | if (bio->bi_opf & REQ_PREFLUSH) |
| 6649 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6650 | BTRFS_DEV_STAT_FLUSH_ERRS); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6651 | } |
| 6652 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6653 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6654 | if (bio == bioc->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6655 | is_orig_bio = 1; |
| 6656 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6657 | btrfs_bio_counter_dec(bioc->fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6658 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6659 | if (atomic_dec_and_test(&bioc->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6660 | if (!is_orig_bio) { |
| 6661 | bio_put(bio); |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6662 | bio = bioc->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6663 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 6664 | |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6665 | btrfs_bio(bio)->mirror_num = bioc->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6666 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6667 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6668 | */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6669 | if (atomic_read(&bioc->error) > bioc->max_errors) { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6670 | bio->bi_status = BLK_STS_IOERR; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 6671 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6672 | /* |
| 6673 | * this bio is actually up to date, we didn't |
| 6674 | * go over the max number of errors |
| 6675 | */ |
Anand Jain | 2dbe0c7 | 2017-10-14 08:35:56 +0800 | [diff] [blame] | 6676 | bio->bi_status = BLK_STS_OK; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6677 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 6678 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6679 | btrfs_end_bioc(bioc, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6680 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6681 | bio_put(bio); |
| 6682 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6683 | } |
| 6684 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6685 | 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] | 6686 | u64 physical, struct btrfs_device *dev) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6687 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6688 | struct btrfs_fs_info *fs_info = bioc->fs_info; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6689 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6690 | bio->bi_private = bioc; |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6691 | btrfs_bio(bio)->device = dev; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6692 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6693 | bio->bi_iter.bi_sector = physical >> 9; |
Naohiro Aota | d8e3fb1 | 2021-02-04 19:22:05 +0900 | [diff] [blame] | 6694 | /* |
| 6695 | * For zone append writing, bi_sector must point the beginning of the |
| 6696 | * zone |
| 6697 | */ |
| 6698 | if (bio_op(bio) == REQ_OP_ZONE_APPEND) { |
| 6699 | if (btrfs_dev_is_sequential(dev, physical)) { |
| 6700 | u64 zone_start = round_down(physical, fs_info->zone_size); |
| 6701 | |
| 6702 | bio->bi_iter.bi_sector = zone_start >> SECTOR_SHIFT; |
| 6703 | } else { |
| 6704 | bio->bi_opf &= ~REQ_OP_ZONE_APPEND; |
| 6705 | bio->bi_opf |= REQ_OP_WRITE; |
| 6706 | } |
| 6707 | } |
Misono Tomohiro | 672d599 | 2018-08-02 16:19:07 +0900 | [diff] [blame] | 6708 | btrfs_debug_in_rcu(fs_info, |
| 6709 | "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] | 6710 | bio_op(bio), bio->bi_opf, bio->bi_iter.bi_sector, |
David Sterba | 1db45a3 | 2019-11-28 15:31:46 +0100 | [diff] [blame] | 6711 | (unsigned long)dev->bdev->bd_dev, rcu_str_deref(dev->name), |
| 6712 | dev->devid, bio->bi_iter.bi_size); |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 6713 | bio_set_dev(bio, dev->bdev); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6714 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6715 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6716 | |
Chris Mason | 08635ba | 2019-07-10 12:28:14 -0700 | [diff] [blame] | 6717 | btrfsic_submit_bio(bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6718 | } |
| 6719 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6720 | 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] | 6721 | { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6722 | atomic_inc(&bioc->error); |
| 6723 | if (atomic_dec_and_test(&bioc->stripes_pending)) { |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6724 | /* Should be the original bio. */ |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6725 | WARN_ON(bio != bioc->orig_bio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6726 | |
Qu Wenruo | c3a3b19 | 2021-09-15 15:17:18 +0800 | [diff] [blame] | 6727 | btrfs_bio(bio)->mirror_num = bioc->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6728 | bio->bi_iter.bi_sector = logical >> 9; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6729 | if (atomic_read(&bioc->error) > bioc->max_errors) |
Anand Jain | 102ed2c | 2017-10-14 08:34:02 +0800 | [diff] [blame] | 6730 | bio->bi_status = BLK_STS_IOERR; |
| 6731 | else |
| 6732 | bio->bi_status = BLK_STS_OK; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6733 | btrfs_end_bioc(bioc, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6734 | } |
| 6735 | } |
| 6736 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6737 | 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] | 6738 | int mirror_num) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6739 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6740 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6741 | struct bio *first_bio = bio; |
David Sterba | 1201b58 | 2020-11-26 15:41:27 +0100 | [diff] [blame] | 6742 | u64 logical = bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6743 | u64 length = 0; |
| 6744 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6745 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6746 | int dev_nr; |
| 6747 | int total_devs; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6748 | struct btrfs_io_context *bioc = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6749 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6750 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6751 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6752 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6753 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Bo | bd7d63c | 2017-09-19 17:50:09 -0600 | [diff] [blame] | 6754 | ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical, |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6755 | &map_length, &bioc, mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6756 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6757 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6758 | return errno_to_blk_status(ret); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6759 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6760 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6761 | total_devs = bioc->num_stripes; |
| 6762 | bioc->orig_bio = first_bio; |
| 6763 | bioc->private = first_bio->bi_private; |
| 6764 | bioc->end_io = first_bio->bi_end_io; |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6765 | atomic_set(&bioc->stripes_pending, bioc->num_stripes); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6766 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6767 | if ((bioc->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6768 | ((btrfs_op(bio) == BTRFS_MAP_WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6769 | /* In this case, map_length has been set to the length of |
| 6770 | a single stripe; not the whole write */ |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6771 | if (btrfs_op(bio) == BTRFS_MAP_WRITE) { |
Qu Wenruo | 6a258d7 | 2021-09-23 14:00:09 +0800 | [diff] [blame] | 6772 | ret = raid56_parity_write(bio, bioc, map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6773 | } else { |
Qu Wenruo | 6a258d7 | 2021-09-23 14:00:09 +0800 | [diff] [blame] | 6774 | ret = raid56_parity_recover(bio, bioc, map_length, |
| 6775 | mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6776 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6777 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6778 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6779 | return errno_to_blk_status(ret); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6780 | } |
| 6781 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6782 | if (map_length < length) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6783 | btrfs_crit(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6784 | "mapping failed logical %llu bio len %llu len %llu", |
| 6785 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6786 | BUG(); |
| 6787 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6788 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6789 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6790 | dev = bioc->stripes[dev_nr].dev; |
Nikolay Borisov | fc8a168 | 2018-11-08 16:16:38 +0200 | [diff] [blame] | 6791 | if (!dev || !dev->bdev || test_bit(BTRFS_DEV_STATE_MISSING, |
| 6792 | &dev->dev_state) || |
Naohiro Aota | cfe9444 | 2021-02-04 19:21:59 +0900 | [diff] [blame] | 6793 | (btrfs_op(first_bio) == BTRFS_MAP_WRITE && |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6794 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) { |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6795 | bioc_error(bioc, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6796 | continue; |
| 6797 | } |
| 6798 | |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6799 | if (dev_nr < total_devs - 1) |
David Sterba | 8b6c1d5 | 2017-06-02 17:48:13 +0200 | [diff] [blame] | 6800 | bio = btrfs_bio_clone(first_bio); |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6801 | else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6802 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6803 | |
Qu Wenruo | 4c66461 | 2021-09-15 15:17:16 +0800 | [diff] [blame] | 6804 | submit_stripe_bio(bioc, bio, bioc->stripes[dev_nr].physical, dev); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6805 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6806 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6807 | return BLK_STS_OK; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6808 | } |
| 6809 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6810 | static bool dev_args_match_fs_devices(const struct btrfs_dev_lookup_args *args, |
| 6811 | const struct btrfs_fs_devices *fs_devices) |
| 6812 | { |
| 6813 | if (args->fsid == NULL) |
| 6814 | return true; |
| 6815 | if (memcmp(fs_devices->metadata_uuid, args->fsid, BTRFS_FSID_SIZE) == 0) |
| 6816 | return true; |
| 6817 | return false; |
| 6818 | } |
| 6819 | |
| 6820 | static bool dev_args_match_device(const struct btrfs_dev_lookup_args *args, |
| 6821 | const struct btrfs_device *device) |
| 6822 | { |
| 6823 | ASSERT((args->devid != (u64)-1) || args->missing); |
| 6824 | |
| 6825 | if ((args->devid != (u64)-1) && device->devid != args->devid) |
| 6826 | return false; |
| 6827 | if (args->uuid && memcmp(device->uuid, args->uuid, BTRFS_UUID_SIZE) != 0) |
| 6828 | return false; |
| 6829 | if (!args->missing) |
| 6830 | return true; |
| 6831 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state) && |
| 6832 | !device->bdev) |
| 6833 | return true; |
| 6834 | return false; |
| 6835 | } |
| 6836 | |
Anand Jain | 09ba3bc | 2019-01-19 14:48:55 +0800 | [diff] [blame] | 6837 | /* |
| 6838 | * Find a device specified by @devid or @uuid in the list of @fs_devices, or |
| 6839 | * return NULL. |
| 6840 | * |
| 6841 | * If devid and uuid are both specified, the match must be exact, otherwise |
| 6842 | * only devid is used. |
Anand Jain | 09ba3bc | 2019-01-19 14:48:55 +0800 | [diff] [blame] | 6843 | */ |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6844 | struct btrfs_device *btrfs_find_device(const struct btrfs_fs_devices *fs_devices, |
| 6845 | const struct btrfs_dev_lookup_args *args) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6846 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6847 | struct btrfs_device *device; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6848 | struct btrfs_fs_devices *seed_devs; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6849 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6850 | if (dev_args_match_fs_devices(args, fs_devices)) { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6851 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6852 | if (dev_args_match_device(args, device)) |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6853 | return device; |
| 6854 | } |
| 6855 | } |
| 6856 | |
| 6857 | list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 6858 | if (!dev_args_match_fs_devices(args, seed_devs)) |
| 6859 | continue; |
| 6860 | list_for_each_entry(device, &seed_devs->devices, dev_list) { |
| 6861 | if (dev_args_match_device(args, device)) |
| 6862 | return device; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6863 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6864 | } |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 6865 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6866 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6867 | } |
| 6868 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6869 | 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] | 6870 | u64 devid, u8 *dev_uuid) |
| 6871 | { |
| 6872 | struct btrfs_device *device; |
Josef Bacik | fccc000 | 2020-08-31 10:52:42 -0400 | [diff] [blame] | 6873 | unsigned int nofs_flag; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6874 | |
Josef Bacik | fccc000 | 2020-08-31 10:52:42 -0400 | [diff] [blame] | 6875 | /* |
| 6876 | * We call this under the chunk_mutex, so we want to use NOFS for this |
| 6877 | * allocation, however we don't want to change btrfs_alloc_device() to |
| 6878 | * always do NOFS because we use it in a lot of other GFP_KERNEL safe |
| 6879 | * places. |
| 6880 | */ |
| 6881 | nofs_flag = memalloc_nofs_save(); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6882 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
Josef Bacik | fccc000 | 2020-08-31 10:52:42 -0400 | [diff] [blame] | 6883 | memalloc_nofs_restore(nofs_flag); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6884 | if (IS_ERR(device)) |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6885 | return device; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6886 | |
| 6887 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6888 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6889 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6890 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6891 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6892 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6893 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6894 | return device; |
| 6895 | } |
| 6896 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6897 | /** |
| 6898 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6899 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6900 | * devid is provided (i.e. @devid != NULL). |
| 6901 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6902 | * is generated. |
| 6903 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6904 | * is generated. |
| 6905 | * |
| 6906 | * 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] | 6907 | * 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] | 6908 | * destroyed with btrfs_free_device. |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6909 | */ |
| 6910 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6911 | const u64 *devid, |
| 6912 | const u8 *uuid) |
| 6913 | { |
| 6914 | struct btrfs_device *dev; |
| 6915 | u64 tmp; |
| 6916 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6917 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6918 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6919 | |
David Sterba | fe4f46d | 2021-07-26 14:15:21 +0200 | [diff] [blame] | 6920 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
| 6921 | if (!dev) |
| 6922 | return ERR_PTR(-ENOMEM); |
| 6923 | |
| 6924 | /* |
| 6925 | * Preallocate a bio that's always going to be used for flushing device |
| 6926 | * barriers and matches the device lifespan |
| 6927 | */ |
| 6928 | dev->flush_bio = bio_kmalloc(GFP_KERNEL, 0); |
| 6929 | if (!dev->flush_bio) { |
| 6930 | kfree(dev); |
| 6931 | return ERR_PTR(-ENOMEM); |
| 6932 | } |
| 6933 | |
| 6934 | INIT_LIST_HEAD(&dev->dev_list); |
| 6935 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
| 6936 | INIT_LIST_HEAD(&dev->post_commit_list); |
| 6937 | |
| 6938 | atomic_set(&dev->reada_in_flight, 0); |
| 6939 | atomic_set(&dev->dev_stats_ccnt, 0); |
| 6940 | btrfs_device_data_ordered_init(dev); |
| 6941 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
| 6942 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
| 6943 | extent_io_tree_init(fs_info, &dev->alloc_state, |
| 6944 | IO_TREE_DEVICE_ALLOC_STATE, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6945 | |
| 6946 | if (devid) |
| 6947 | tmp = *devid; |
| 6948 | else { |
| 6949 | int ret; |
| 6950 | |
| 6951 | ret = find_next_devid(fs_info, &tmp); |
| 6952 | if (ret) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 6953 | btrfs_free_device(dev); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6954 | return ERR_PTR(ret); |
| 6955 | } |
| 6956 | } |
| 6957 | dev->devid = tmp; |
| 6958 | |
| 6959 | if (uuid) |
| 6960 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6961 | else |
| 6962 | generate_random_uuid(dev->uuid); |
| 6963 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6964 | return dev; |
| 6965 | } |
| 6966 | |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6967 | static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6968 | u64 devid, u8 *uuid, bool error) |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6969 | { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6970 | if (error) |
| 6971 | btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6972 | devid, uuid); |
| 6973 | else |
| 6974 | btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6975 | devid, uuid); |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6976 | } |
| 6977 | |
Nikolay Borisov | 39e264a | 2019-03-25 14:31:25 +0200 | [diff] [blame] | 6978 | static u64 calc_stripe_length(u64 type, u64 chunk_len, int num_stripes) |
| 6979 | { |
David Sterba | d58ede8 | 2021-07-26 14:15:24 +0200 | [diff] [blame] | 6980 | const int data_stripes = calc_data_stripes(type, num_stripes); |
David Sterba | e4f6c6b | 2019-05-14 01:59:54 +0200 | [diff] [blame] | 6981 | |
Nikolay Borisov | 39e264a | 2019-03-25 14:31:25 +0200 | [diff] [blame] | 6982 | return div_u64(chunk_len, data_stripes); |
| 6983 | } |
| 6984 | |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 6985 | #if BITS_PER_LONG == 32 |
| 6986 | /* |
| 6987 | * Due to page cache limit, metadata beyond BTRFS_32BIT_MAX_FILE_SIZE |
| 6988 | * can't be accessed on 32bit systems. |
| 6989 | * |
| 6990 | * This function do mount time check to reject the fs if it already has |
| 6991 | * metadata chunk beyond that limit. |
| 6992 | */ |
| 6993 | static int check_32bit_meta_chunk(struct btrfs_fs_info *fs_info, |
| 6994 | u64 logical, u64 length, u64 type) |
| 6995 | { |
| 6996 | if (!(type & BTRFS_BLOCK_GROUP_METADATA)) |
| 6997 | return 0; |
| 6998 | |
| 6999 | if (logical + length < MAX_LFS_FILESIZE) |
| 7000 | return 0; |
| 7001 | |
| 7002 | btrfs_err_32bit_limit(fs_info); |
| 7003 | return -EOVERFLOW; |
| 7004 | } |
| 7005 | |
| 7006 | /* |
| 7007 | * This is to give early warning for any metadata chunk reaching |
| 7008 | * BTRFS_32BIT_EARLY_WARN_THRESHOLD. |
| 7009 | * Although we can still access the metadata, it's not going to be possible |
| 7010 | * once the limit is reached. |
| 7011 | */ |
| 7012 | static void warn_32bit_meta_chunk(struct btrfs_fs_info *fs_info, |
| 7013 | u64 logical, u64 length, u64 type) |
| 7014 | { |
| 7015 | if (!(type & BTRFS_BLOCK_GROUP_METADATA)) |
| 7016 | return; |
| 7017 | |
| 7018 | if (logical + length < BTRFS_32BIT_EARLY_WARN_THRESHOLD) |
| 7019 | return; |
| 7020 | |
| 7021 | btrfs_warn_32bit_limit(fs_info); |
| 7022 | } |
| 7023 | #endif |
| 7024 | |
David Sterba | 9690ac0 | 2019-03-20 16:43:07 +0100 | [diff] [blame] | 7025 | 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] | 7026 | struct btrfs_chunk *chunk) |
| 7027 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7028 | BTRFS_DEV_LOOKUP_ARGS(args); |
David Sterba | 9690ac0 | 2019-03-20 16:43:07 +0100 | [diff] [blame] | 7029 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7030 | struct extent_map_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7031 | struct map_lookup *map; |
| 7032 | struct extent_map *em; |
| 7033 | u64 logical; |
| 7034 | u64 length; |
| 7035 | u64 devid; |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7036 | u64 type; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7037 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7038 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7039 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7040 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7041 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 7042 | logical = key->offset; |
| 7043 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7044 | type = btrfs_chunk_type(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 7045 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 7046 | |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7047 | #if BITS_PER_LONG == 32 |
| 7048 | ret = check_32bit_meta_chunk(fs_info, logical, length, type); |
| 7049 | if (ret < 0) |
| 7050 | return ret; |
| 7051 | warn_32bit_meta_chunk(fs_info, logical, length, type); |
| 7052 | #endif |
| 7053 | |
Qu Wenruo | 075cb3c | 2019-03-20 13:42:33 +0800 | [diff] [blame] | 7054 | /* |
| 7055 | * Only need to verify chunk item if we're reading from sys chunk array, |
| 7056 | * as chunk item in tree block is already verified by tree-checker. |
| 7057 | */ |
| 7058 | if (leaf->start == BTRFS_SUPER_INFO_OFFSET) { |
David Sterba | ddaf1d5 | 2019-03-20 16:40:48 +0100 | [diff] [blame] | 7059 | ret = btrfs_check_chunk_valid(leaf, chunk, logical); |
Qu Wenruo | 075cb3c | 2019-03-20 13:42:33 +0800 | [diff] [blame] | 7060 | if (ret) |
| 7061 | return ret; |
| 7062 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7063 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7064 | read_lock(&map_tree->lock); |
| 7065 | em = lookup_extent_mapping(map_tree, logical, 1); |
| 7066 | read_unlock(&map_tree->lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7067 | |
| 7068 | /* already mapped? */ |
| 7069 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 7070 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7071 | return 0; |
| 7072 | } else if (em) { |
| 7073 | free_extent_map(em); |
| 7074 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7075 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 7076 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7077 | if (!em) |
| 7078 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7079 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7080 | if (!map) { |
| 7081 | free_extent_map(em); |
| 7082 | return -ENOMEM; |
| 7083 | } |
| 7084 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 7085 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 7086 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7087 | em->start = logical; |
| 7088 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 7089 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7090 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 7091 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7092 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7093 | map->num_stripes = num_stripes; |
| 7094 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 7095 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7096 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7097 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 7098 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 7099 | map->verified_stripes = 0; |
Qu Wenruo | e9306ad | 2021-02-25 09:18:14 +0800 | [diff] [blame] | 7100 | em->orig_block_len = calc_stripe_length(type, em->len, |
Nikolay Borisov | 39e264a | 2019-03-25 14:31:25 +0200 | [diff] [blame] | 7101 | map->num_stripes); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7102 | for (i = 0; i < num_stripes; i++) { |
| 7103 | map->stripes[i].physical = |
| 7104 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 7105 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7106 | args.devid = devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7107 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 7108 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 7109 | BTRFS_UUID_SIZE); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7110 | args.uuid = uuid; |
| 7111 | map->stripes[i].dev = btrfs_find_device(fs_info->fs_devices, &args); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 7112 | if (!map->stripes[i].dev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7113 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7114 | free_extent_map(em); |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7115 | btrfs_report_missing_device(fs_info, devid, uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 7116 | return -ENOENT; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 7117 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7118 | if (!map->stripes[i].dev) { |
| 7119 | map->stripes[i].dev = |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7120 | add_missing_dev(fs_info->fs_devices, devid, |
| 7121 | uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 7122 | if (IS_ERR(map->stripes[i].dev)) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7123 | free_extent_map(em); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 7124 | btrfs_err(fs_info, |
| 7125 | "failed to init missing dev %llu: %ld", |
| 7126 | devid, PTR_ERR(map->stripes[i].dev)); |
| 7127 | return PTR_ERR(map->stripes[i].dev); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7128 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7129 | btrfs_report_missing_device(fs_info, devid, uuid, false); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 7130 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 7131 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 7132 | &(map->stripes[i].dev->dev_state)); |
| 7133 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7134 | } |
| 7135 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7136 | write_lock(&map_tree->lock); |
| 7137 | ret = add_extent_mapping(map_tree, em, 0); |
| 7138 | write_unlock(&map_tree->lock); |
Qu Wenruo | 64f64f4 | 2018-08-01 10:37:20 +0800 | [diff] [blame] | 7139 | if (ret < 0) { |
| 7140 | btrfs_err(fs_info, |
| 7141 | "failed to add chunk map, start=%llu len=%llu: %d", |
| 7142 | em->start, em->len, ret); |
| 7143 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7144 | free_extent_map(em); |
| 7145 | |
Qu Wenruo | 64f64f4 | 2018-08-01 10:37:20 +0800 | [diff] [blame] | 7146 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7147 | } |
| 7148 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 7149 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7150 | struct btrfs_dev_item *dev_item, |
| 7151 | struct btrfs_device *device) |
| 7152 | { |
| 7153 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7154 | |
| 7155 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 7156 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 7157 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7158 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7159 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7160 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7161 | device->type = btrfs_device_type(leaf, dev_item); |
| 7162 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 7163 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 7164 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 7165 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 7166 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7167 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 7168 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 7169 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7170 | } |
| 7171 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7172 | 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] | 7173 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7174 | { |
| 7175 | struct btrfs_fs_devices *fs_devices; |
| 7176 | int ret; |
| 7177 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 7178 | lockdep_assert_held(&uuid_mutex); |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 7179 | ASSERT(fsid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7180 | |
Nikolay Borisov | 427c8fd | 2020-08-12 17:04:36 +0300 | [diff] [blame] | 7181 | /* This will match only for multi-device seed fs */ |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7182 | 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] | 7183 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7184 | return fs_devices; |
| 7185 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7186 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 7187 | fs_devices = find_fsid(fsid, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7188 | if (!fs_devices) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7189 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7190 | return ERR_PTR(-ENOENT); |
| 7191 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 7192 | fs_devices = alloc_fs_devices(fsid, NULL); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7193 | if (IS_ERR(fs_devices)) |
| 7194 | return fs_devices; |
| 7195 | |
Johannes Thumshirn | 0395d84 | 2019-11-13 11:27:27 +0100 | [diff] [blame] | 7196 | fs_devices->seeding = true; |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7197 | fs_devices->opened = 1; |
| 7198 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7199 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 7200 | |
Nikolay Borisov | 427c8fd | 2020-08-12 17:04:36 +0300 | [diff] [blame] | 7201 | /* |
| 7202 | * Upon first call for a seed fs fsid, just create a private copy of the |
| 7203 | * respective fs_devices and anchor it at fs_info->fs_devices->seed_list |
| 7204 | */ |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 7205 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7206 | if (IS_ERR(fs_devices)) |
| 7207 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7208 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 7209 | ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 7210 | if (ret) { |
| 7211 | free_fs_devices(fs_devices); |
Anand Jain | c83b60c | 2020-09-05 01:34:35 +0800 | [diff] [blame] | 7212 | return ERR_PTR(ret); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 7213 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7214 | |
| 7215 | if (!fs_devices->seeding) { |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 7216 | close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 7217 | free_fs_devices(fs_devices); |
Anand Jain | c83b60c | 2020-09-05 01:34:35 +0800 | [diff] [blame] | 7218 | return ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7219 | } |
| 7220 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7221 | list_add(&fs_devices->seed_list, &fs_info->fs_devices->seed_list); |
Anand Jain | c83b60c | 2020-09-05 01:34:35 +0800 | [diff] [blame] | 7222 | |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7223 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7224 | } |
| 7225 | |
David Sterba | 1785075 | 2019-03-20 16:45:15 +0100 | [diff] [blame] | 7226 | static int read_one_dev(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7227 | struct btrfs_dev_item *dev_item) |
| 7228 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7229 | BTRFS_DEV_LOOKUP_ARGS(args); |
David Sterba | 1785075 | 2019-03-20 16:45:15 +0100 | [diff] [blame] | 7230 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7231 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7232 | struct btrfs_device *device; |
| 7233 | u64 devid; |
| 7234 | int ret; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 7235 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7236 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 7237 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7238 | devid = args.devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 7239 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 7240 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 7241 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 7242 | BTRFS_FSID_SIZE); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7243 | args.uuid = dev_uuid; |
| 7244 | args.fsid = fs_uuid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7245 | |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 7246 | if (memcmp(fs_uuid, fs_devices->metadata_uuid, BTRFS_FSID_SIZE)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7247 | fs_devices = open_seed_devices(fs_info, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7248 | if (IS_ERR(fs_devices)) |
| 7249 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7250 | } |
| 7251 | |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7252 | device = btrfs_find_device(fs_info->fs_devices, &args); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7253 | if (!device) { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7254 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7255 | btrfs_report_missing_device(fs_info, devid, |
| 7256 | dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 7257 | return -ENOENT; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7258 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7259 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7260 | device = add_missing_dev(fs_devices, devid, dev_uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 7261 | if (IS_ERR(device)) { |
| 7262 | btrfs_err(fs_info, |
| 7263 | "failed to add missing dev %llu: %ld", |
| 7264 | devid, PTR_ERR(device)); |
| 7265 | return PTR_ERR(device); |
| 7266 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7267 | btrfs_report_missing_device(fs_info, devid, dev_uuid, false); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7268 | } else { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7269 | if (!device->bdev) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7270 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
| 7271 | btrfs_report_missing_device(fs_info, |
| 7272 | devid, dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 7273 | return -ENOENT; |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 7274 | } |
| 7275 | btrfs_report_missing_device(fs_info, devid, |
| 7276 | dev_uuid, false); |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 7277 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7278 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7279 | if (!device->bdev && |
| 7280 | !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 7281 | /* |
| 7282 | * this happens when a device that was properly setup |
| 7283 | * in the device info lists suddenly goes bad. |
| 7284 | * device->bdev is NULL, and so we have to set |
| 7285 | * device->missing to one here |
| 7286 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7287 | device->fs_devices->missing_devices++; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7288 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7289 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7290 | |
| 7291 | /* Move the device to its own fs_devices */ |
| 7292 | if (device->fs_devices != fs_devices) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7293 | ASSERT(test_bit(BTRFS_DEV_STATE_MISSING, |
| 7294 | &device->dev_state)); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 7295 | |
| 7296 | list_move(&device->dev_list, &fs_devices->devices); |
| 7297 | device->fs_devices->num_devices--; |
| 7298 | fs_devices->num_devices++; |
| 7299 | |
| 7300 | device->fs_devices->missing_devices--; |
| 7301 | fs_devices->missing_devices++; |
| 7302 | |
| 7303 | device->fs_devices = fs_devices; |
| 7304 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7305 | } |
| 7306 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7307 | if (device->fs_devices != fs_info->fs_devices) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 7308 | BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7309 | if (device->generation != |
| 7310 | btrfs_device_generation(leaf, dev_item)) |
| 7311 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 7312 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7313 | |
| 7314 | fill_device_from_item(leaf, dev_item, device); |
Anand Jain | 3a160a9 | 2020-11-03 13:49:42 +0800 | [diff] [blame] | 7315 | if (device->bdev) { |
Christoph Hellwig | cda00eb | 2021-10-18 12:11:12 +0200 | [diff] [blame] | 7316 | u64 max_total_bytes = bdev_nr_bytes(device->bdev); |
Anand Jain | 3a160a9 | 2020-11-03 13:49:42 +0800 | [diff] [blame] | 7317 | |
| 7318 | if (device->total_bytes > max_total_bytes) { |
| 7319 | btrfs_err(fs_info, |
| 7320 | "device total_bytes should be at most %llu but found %llu", |
| 7321 | max_total_bytes, device->total_bytes); |
| 7322 | return -EINVAL; |
| 7323 | } |
| 7324 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 7325 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 7326 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 7327 | !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7328 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 7329 | atomic64_add(device->total_bytes - device->bytes_used, |
| 7330 | &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 7331 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7332 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7333 | return ret; |
| 7334 | } |
| 7335 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7336 | int btrfs_read_sys_array(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7337 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7338 | struct btrfs_root *root = fs_info->tree_root; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7339 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7340 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7341 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7342 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7343 | u8 *array_ptr; |
| 7344 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7345 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7346 | u32 num_stripes; |
| 7347 | u32 array_size; |
| 7348 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7349 | u32 cur_offset; |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 7350 | u64 type; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7351 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7352 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7353 | ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize); |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 7354 | /* |
| 7355 | * This will create extent buffer of nodesize, superblock size is |
| 7356 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 7357 | * overallocate but we can keep it as-is, only the first page is used. |
| 7358 | */ |
Josef Bacik | 3fbaf25 | 2020-11-05 10:45:20 -0500 | [diff] [blame] | 7359 | sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET, |
| 7360 | root->root_key.objectid, 0); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 7361 | if (IS_ERR(sb)) |
| 7362 | return PTR_ERR(sb); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 7363 | set_extent_buffer_uptodate(sb); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 7364 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 7365 | * 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] | 7366 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 7367 | * pages up-to-date when the page is larger: extent does not cover the |
| 7368 | * whole page and consequently check_page_uptodate does not find all |
| 7369 | * the page's extents up-to-date (the hole beyond sb), |
| 7370 | * write_extent_buffer then triggers a WARN_ON. |
| 7371 | * |
| 7372 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 7373 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 7374 | * to silence the warning eg. on PowerPC 64. |
| 7375 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 7376 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 7377 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 7378 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7379 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7380 | array_size = btrfs_super_sys_array_size(super_copy); |
| 7381 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7382 | array_ptr = super_copy->sys_chunk_array; |
| 7383 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 7384 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7385 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7386 | while (cur_offset < array_size) { |
| 7387 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 7388 | len = sizeof(*disk_key); |
| 7389 | if (cur_offset + len > array_size) |
| 7390 | goto out_short_read; |
| 7391 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7392 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 7393 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7394 | array_ptr += len; |
| 7395 | sb_array_offset += len; |
| 7396 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7397 | |
Johannes Thumshirn | 32ab3d1 | 2019-10-18 11:58:23 +0200 | [diff] [blame] | 7398 | if (key.type != BTRFS_CHUNK_ITEM_KEY) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7399 | btrfs_err(fs_info, |
| 7400 | "unexpected item type %u in sys_array at offset %u", |
| 7401 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7402 | ret = -EIO; |
| 7403 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7404 | } |
Johannes Thumshirn | 32ab3d1 | 2019-10-18 11:58:23 +0200 | [diff] [blame] | 7405 | |
| 7406 | chunk = (struct btrfs_chunk *)sb_array_offset; |
| 7407 | /* |
| 7408 | * At least one btrfs_chunk with one stripe must be present, |
| 7409 | * exact stripe count check comes afterwards |
| 7410 | */ |
| 7411 | len = btrfs_chunk_item_size(1); |
| 7412 | if (cur_offset + len > array_size) |
| 7413 | goto out_short_read; |
| 7414 | |
| 7415 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
| 7416 | if (!num_stripes) { |
| 7417 | btrfs_err(fs_info, |
| 7418 | "invalid number of stripes %u in sys_array at offset %u", |
| 7419 | num_stripes, cur_offset); |
| 7420 | ret = -EIO; |
| 7421 | break; |
| 7422 | } |
| 7423 | |
| 7424 | type = btrfs_chunk_type(sb, chunk); |
| 7425 | if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) { |
| 7426 | btrfs_err(fs_info, |
| 7427 | "invalid chunk type %llu in sys_array at offset %u", |
| 7428 | type, cur_offset); |
| 7429 | ret = -EIO; |
| 7430 | break; |
| 7431 | } |
| 7432 | |
| 7433 | len = btrfs_chunk_item_size(num_stripes); |
| 7434 | if (cur_offset + len > array_size) |
| 7435 | goto out_short_read; |
| 7436 | |
| 7437 | ret = read_one_chunk(&key, sb, chunk); |
| 7438 | if (ret) |
| 7439 | break; |
| 7440 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 7441 | array_ptr += len; |
| 7442 | sb_array_offset += len; |
| 7443 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7444 | } |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 7445 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 7446 | free_extent_buffer_stale(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 7447 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 7448 | |
| 7449 | out_short_read: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7450 | 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] | 7451 | len, cur_offset); |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 7452 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 7453 | free_extent_buffer_stale(sb); |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 7454 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7455 | } |
| 7456 | |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7457 | /* |
| 7458 | * Check if all chunks in the fs are OK for read-write degraded mount |
| 7459 | * |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7460 | * If the @failing_dev is specified, it's accounted as missing. |
| 7461 | * |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7462 | * Return true if all chunks meet the minimal RW mount requirements. |
| 7463 | * Return false if any chunk doesn't meet the minimal RW mount requirements. |
| 7464 | */ |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7465 | bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info, |
| 7466 | struct btrfs_device *failing_dev) |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7467 | { |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7468 | struct extent_map_tree *map_tree = &fs_info->mapping_tree; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7469 | struct extent_map *em; |
| 7470 | u64 next_start = 0; |
| 7471 | bool ret = true; |
| 7472 | |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7473 | read_lock(&map_tree->lock); |
| 7474 | em = lookup_extent_mapping(map_tree, 0, (u64)-1); |
| 7475 | read_unlock(&map_tree->lock); |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7476 | /* No chunk at all? Return false anyway */ |
| 7477 | if (!em) { |
| 7478 | ret = false; |
| 7479 | goto out; |
| 7480 | } |
| 7481 | while (em) { |
| 7482 | struct map_lookup *map; |
| 7483 | int missing = 0; |
| 7484 | int max_tolerated; |
| 7485 | int i; |
| 7486 | |
| 7487 | map = em->map_lookup; |
| 7488 | max_tolerated = |
| 7489 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 7490 | map->type); |
| 7491 | for (i = 0; i < map->num_stripes; i++) { |
| 7492 | struct btrfs_device *dev = map->stripes[i].dev; |
| 7493 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 7494 | if (!dev || !dev->bdev || |
| 7495 | test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) || |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7496 | dev->last_flush_error) |
| 7497 | missing++; |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7498 | else if (failing_dev && failing_dev == dev) |
| 7499 | missing++; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7500 | } |
| 7501 | if (missing > max_tolerated) { |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7502 | if (!failing_dev) |
| 7503 | btrfs_warn(fs_info, |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 7504 | "chunk %llu missing %d devices, max tolerance is %d for writable mount", |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7505 | em->start, missing, max_tolerated); |
| 7506 | free_extent_map(em); |
| 7507 | ret = false; |
| 7508 | goto out; |
| 7509 | } |
| 7510 | next_start = extent_map_end(em); |
| 7511 | free_extent_map(em); |
| 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, next_start, |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7515 | (u64)(-1) - next_start); |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 7516 | read_unlock(&map_tree->lock); |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7517 | } |
| 7518 | out: |
| 7519 | return ret; |
| 7520 | } |
| 7521 | |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7522 | static void readahead_tree_node_children(struct extent_buffer *node) |
| 7523 | { |
| 7524 | int i; |
| 7525 | const int nr_items = btrfs_header_nritems(node); |
| 7526 | |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 7527 | for (i = 0; i < nr_items; i++) |
| 7528 | btrfs_readahead_node_child(node, i); |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7529 | } |
| 7530 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7531 | int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7532 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7533 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7534 | struct btrfs_path *path; |
| 7535 | struct extent_buffer *leaf; |
| 7536 | struct btrfs_key key; |
| 7537 | struct btrfs_key found_key; |
| 7538 | int ret; |
| 7539 | int slot; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7540 | u64 total_dev = 0; |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7541 | u64 last_ra_node = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7542 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7543 | path = btrfs_alloc_path(); |
| 7544 | if (!path) |
| 7545 | return -ENOMEM; |
| 7546 | |
Anand Jain | 3dd0f7a | 2018-04-12 10:29:32 +0800 | [diff] [blame] | 7547 | /* |
| 7548 | * uuid_mutex is needed only if we are mounting a sprout FS |
| 7549 | * otherwise we don't need it. |
| 7550 | */ |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7551 | mutex_lock(&uuid_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7552 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7553 | /* |
Boris Burkov | 48cfa61 | 2020-07-16 13:29:46 -0700 | [diff] [blame] | 7554 | * It is possible for mount and umount to race in such a way that |
| 7555 | * we execute this code path, but open_fs_devices failed to clear |
| 7556 | * total_rw_bytes. We certainly want it cleared before reading the |
| 7557 | * device items, so clear it here. |
| 7558 | */ |
| 7559 | fs_info->fs_devices->total_rw_bytes = 0; |
| 7560 | |
| 7561 | /* |
Filipe Manana | 4d9380e | 2021-11-04 12:43:08 +0000 | [diff] [blame] | 7562 | * Lockdep complains about possible circular locking dependency between |
| 7563 | * a disk's open_mutex (struct gendisk.open_mutex), the rw semaphores |
| 7564 | * used for freeze procection of a fs (struct super_block.s_writers), |
| 7565 | * which we take when starting a transaction, and extent buffers of the |
| 7566 | * chunk tree if we call read_one_dev() while holding a lock on an |
| 7567 | * extent buffer of the chunk tree. Since we are mounting the filesystem |
| 7568 | * and at this point there can't be any concurrent task modifying the |
| 7569 | * chunk tree, to keep it simple, just skip locking on the chunk tree. |
| 7570 | */ |
| 7571 | ASSERT(!test_bit(BTRFS_FS_OPEN, &fs_info->flags)); |
| 7572 | path->skip_locking = 1; |
| 7573 | |
| 7574 | /* |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7575 | * Read all device items, and then all the chunk items. All |
| 7576 | * device items are found before any chunk item (their object id |
| 7577 | * is smaller than the lowest possible object id for a chunk |
| 7578 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7579 | */ |
| 7580 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 7581 | key.offset = 0; |
| 7582 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7583 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 7584 | if (ret < 0) |
| 7585 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7586 | while (1) { |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7587 | struct extent_buffer *node; |
| 7588 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7589 | leaf = path->nodes[0]; |
| 7590 | slot = path->slots[0]; |
| 7591 | if (slot >= btrfs_header_nritems(leaf)) { |
| 7592 | ret = btrfs_next_leaf(root, path); |
| 7593 | if (ret == 0) |
| 7594 | continue; |
| 7595 | if (ret < 0) |
| 7596 | goto error; |
| 7597 | break; |
| 7598 | } |
David Sterba | d85327b1 | 2020-07-08 22:55:14 +0200 | [diff] [blame] | 7599 | node = path->nodes[1]; |
| 7600 | if (node) { |
| 7601 | if (last_ra_node != node->start) { |
| 7602 | readahead_tree_node_children(node); |
| 7603 | last_ra_node = node->start; |
| 7604 | } |
| 7605 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7606 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7607 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 7608 | struct btrfs_dev_item *dev_item; |
| 7609 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7610 | struct btrfs_dev_item); |
David Sterba | 1785075 | 2019-03-20 16:45:15 +0100 | [diff] [blame] | 7611 | ret = read_one_dev(leaf, dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7612 | if (ret) |
| 7613 | goto error; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7614 | total_dev++; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7615 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 7616 | struct btrfs_chunk *chunk; |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 7617 | |
| 7618 | /* |
| 7619 | * We are only called at mount time, so no need to take |
| 7620 | * fs_info->chunk_mutex. Plus, to avoid lockdep warnings, |
| 7621 | * we always lock first fs_info->chunk_mutex before |
| 7622 | * acquiring any locks on the chunk tree. This is a |
| 7623 | * requirement for chunk allocation, see the comment on |
| 7624 | * top of btrfs_chunk_alloc() for details. |
| 7625 | */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7626 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 9690ac0 | 2019-03-20 16:43:07 +0100 | [diff] [blame] | 7627 | ret = read_one_chunk(&found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7628 | if (ret) |
| 7629 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7630 | } |
| 7631 | path->slots[0]++; |
| 7632 | } |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7633 | |
| 7634 | /* |
| 7635 | * After loading chunk tree, we've got all device information, |
| 7636 | * do another round of validation checks. |
| 7637 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7638 | if (total_dev != fs_info->fs_devices->total_devices) { |
| 7639 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7640 | "super_num_devices %llu mismatch with num_devices %llu found here", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7641 | btrfs_super_num_devices(fs_info->super_copy), |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7642 | total_dev); |
| 7643 | ret = -EINVAL; |
| 7644 | goto error; |
| 7645 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7646 | if (btrfs_super_total_bytes(fs_info->super_copy) < |
| 7647 | fs_info->fs_devices->total_rw_bytes) { |
| 7648 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7649 | "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7650 | btrfs_super_total_bytes(fs_info->super_copy), |
| 7651 | fs_info->fs_devices->total_rw_bytes); |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7652 | ret = -EINVAL; |
| 7653 | goto error; |
| 7654 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7655 | ret = 0; |
| 7656 | error: |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7657 | mutex_unlock(&uuid_mutex); |
| 7658 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7659 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7660 | return ret; |
| 7661 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7662 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7663 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 7664 | { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7665 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs; |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7666 | struct btrfs_device *device; |
| 7667 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7668 | fs_devices->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7669 | |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7670 | mutex_lock(&fs_devices->device_list_mutex); |
| 7671 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
| 7672 | device->fs_info = fs_info; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7673 | |
| 7674 | list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) { |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7675 | list_for_each_entry(device, &seed_devs->devices, dev_list) |
| 7676 | device->fs_info = fs_info; |
Nikolay Borisov | 944d3f9 | 2020-07-16 10:25:33 +0300 | [diff] [blame] | 7677 | |
| 7678 | seed_devs->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7679 | } |
Anand Jain | e17125b | 2020-09-05 01:34:31 +0800 | [diff] [blame] | 7680 | mutex_unlock(&fs_devices->device_list_mutex); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7681 | } |
| 7682 | |
David Sterba | 1dc990d | 2019-08-21 20:05:32 +0200 | [diff] [blame] | 7683 | static u64 btrfs_dev_stats_value(const struct extent_buffer *eb, |
| 7684 | const struct btrfs_dev_stats_item *ptr, |
| 7685 | int index) |
| 7686 | { |
| 7687 | u64 val; |
| 7688 | |
| 7689 | read_extent_buffer(eb, &val, |
| 7690 | offsetof(struct btrfs_dev_stats_item, values) + |
| 7691 | ((unsigned long)ptr) + (index * sizeof(u64)), |
| 7692 | sizeof(val)); |
| 7693 | return val; |
| 7694 | } |
| 7695 | |
| 7696 | static void btrfs_set_dev_stats_value(struct extent_buffer *eb, |
| 7697 | struct btrfs_dev_stats_item *ptr, |
| 7698 | int index, u64 val) |
| 7699 | { |
| 7700 | write_extent_buffer(eb, &val, |
| 7701 | offsetof(struct btrfs_dev_stats_item, values) + |
| 7702 | ((unsigned long)ptr) + (index * sizeof(u64)), |
| 7703 | sizeof(val)); |
| 7704 | } |
| 7705 | |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7706 | static int btrfs_device_init_dev_stats(struct btrfs_device *device, |
| 7707 | struct btrfs_path *path) |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7708 | { |
| 7709 | struct btrfs_dev_stats_item *ptr; |
| 7710 | struct extent_buffer *eb; |
| 7711 | struct btrfs_key key; |
| 7712 | int item_size; |
| 7713 | int i, ret, slot; |
| 7714 | |
Josef Bacik | 82d62d0 | 2021-03-11 11:23:15 -0500 | [diff] [blame] | 7715 | if (!device->fs_info->dev_root) |
| 7716 | return 0; |
| 7717 | |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7718 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7719 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
| 7720 | key.offset = device->devid; |
| 7721 | ret = btrfs_search_slot(NULL, device->fs_info->dev_root, &key, path, 0, 0); |
| 7722 | if (ret) { |
| 7723 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7724 | btrfs_dev_stat_set(device, i, 0); |
| 7725 | device->dev_stats_valid = 1; |
| 7726 | btrfs_release_path(path); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7727 | return ret < 0 ? ret : 0; |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7728 | } |
| 7729 | slot = path->slots[0]; |
| 7730 | eb = path->nodes[0]; |
| 7731 | item_size = btrfs_item_size_nr(eb, slot); |
| 7732 | |
| 7733 | ptr = btrfs_item_ptr(eb, slot, struct btrfs_dev_stats_item); |
| 7734 | |
| 7735 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7736 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 7737 | btrfs_dev_stat_set(device, i, |
| 7738 | btrfs_dev_stats_value(eb, ptr, i)); |
| 7739 | else |
| 7740 | btrfs_dev_stat_set(device, i, 0); |
| 7741 | } |
| 7742 | |
| 7743 | device->dev_stats_valid = 1; |
| 7744 | btrfs_dev_stat_print_on_load(device); |
| 7745 | btrfs_release_path(path); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7746 | |
| 7747 | return 0; |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7748 | } |
| 7749 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7750 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 7751 | { |
Josef Bacik | 124604e | 2020-09-18 16:44:32 -0400 | [diff] [blame] | 7752 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7753 | struct btrfs_device *device; |
| 7754 | struct btrfs_path *path = NULL; |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7755 | int ret = 0; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7756 | |
| 7757 | path = btrfs_alloc_path(); |
Anand Jain | 3b80a984 | 2019-08-21 17:26:32 +0800 | [diff] [blame] | 7758 | if (!path) |
| 7759 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7760 | |
| 7761 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7762 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 7763 | ret = btrfs_device_init_dev_stats(device, path); |
| 7764 | if (ret) |
| 7765 | goto out; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7766 | } |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7767 | list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) { |
| 7768 | list_for_each_entry(device, &seed_devs->devices, dev_list) { |
| 7769 | ret = btrfs_device_init_dev_stats(device, path); |
| 7770 | if (ret) |
| 7771 | goto out; |
| 7772 | } |
| 7773 | } |
| 7774 | out: |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7775 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7776 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7777 | btrfs_free_path(path); |
Josef Bacik | 92e26df | 2020-09-18 16:44:33 -0400 | [diff] [blame] | 7778 | return ret; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7779 | } |
| 7780 | |
| 7781 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7782 | struct btrfs_device *device) |
| 7783 | { |
Nikolay Borisov | 5495f19 | 2018-07-20 19:37:49 +0300 | [diff] [blame] | 7784 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7785 | struct btrfs_root *dev_root = fs_info->dev_root; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7786 | struct btrfs_path *path; |
| 7787 | struct btrfs_key key; |
| 7788 | struct extent_buffer *eb; |
| 7789 | struct btrfs_dev_stats_item *ptr; |
| 7790 | int ret; |
| 7791 | int i; |
| 7792 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7793 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7794 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7795 | key.offset = device->devid; |
| 7796 | |
| 7797 | path = btrfs_alloc_path(); |
David Sterba | fa25299 | 2017-02-15 09:35:01 +0100 | [diff] [blame] | 7798 | if (!path) |
| 7799 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7800 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 7801 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7802 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7803 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7804 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7805 | goto out; |
| 7806 | } |
| 7807 | |
| 7808 | if (ret == 0 && |
| 7809 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 7810 | /* need to delete old one and insert a new one */ |
| 7811 | ret = btrfs_del_item(trans, dev_root, path); |
| 7812 | if (ret != 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7813 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7814 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7815 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7816 | goto out; |
| 7817 | } |
| 7818 | ret = 1; |
| 7819 | } |
| 7820 | |
| 7821 | if (ret == 1) { |
| 7822 | /* need to insert a new item */ |
| 7823 | btrfs_release_path(path); |
| 7824 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 7825 | &key, sizeof(*ptr)); |
| 7826 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7827 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7828 | "insert dev_stats item for device %s failed %d", |
| 7829 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7830 | goto out; |
| 7831 | } |
| 7832 | } |
| 7833 | |
| 7834 | eb = path->nodes[0]; |
| 7835 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 7836 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7837 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 7838 | btrfs_dev_stat_read(device, i)); |
| 7839 | btrfs_mark_buffer_dirty(eb); |
| 7840 | |
| 7841 | out: |
| 7842 | btrfs_free_path(path); |
| 7843 | return ret; |
| 7844 | } |
| 7845 | |
| 7846 | /* |
| 7847 | * called from commit_transaction. Writes all changed device stats to disk. |
| 7848 | */ |
David Sterba | 196c9d8 | 2019-03-20 16:50:38 +0100 | [diff] [blame] | 7849 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7850 | { |
David Sterba | 196c9d8 | 2019-03-20 16:50:38 +0100 | [diff] [blame] | 7851 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7852 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7853 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7854 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7855 | int ret = 0; |
| 7856 | |
| 7857 | mutex_lock(&fs_devices->device_list_mutex); |
| 7858 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7859 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
| 7860 | if (!device->dev_stats_valid || stats_cnt == 0) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7861 | continue; |
| 7862 | |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7863 | |
| 7864 | /* |
| 7865 | * There is a LOAD-LOAD control dependency between the value of |
| 7866 | * dev_stats_ccnt and updating the on-disk values which requires |
| 7867 | * reading the in-memory counters. Such control dependencies |
| 7868 | * require explicit read memory barriers. |
| 7869 | * |
| 7870 | * This memory barriers pairs with smp_mb__before_atomic in |
| 7871 | * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full |
| 7872 | * barrier implied by atomic_xchg in |
| 7873 | * btrfs_dev_stats_read_and_reset |
| 7874 | */ |
| 7875 | smp_rmb(); |
| 7876 | |
Nikolay Borisov | 5495f19 | 2018-07-20 19:37:49 +0300 | [diff] [blame] | 7877 | ret = update_dev_stat_item(trans, device); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7878 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7879 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7880 | } |
| 7881 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7882 | |
| 7883 | return ret; |
| 7884 | } |
| 7885 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7886 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 7887 | { |
| 7888 | btrfs_dev_stat_inc(dev, index); |
| 7889 | btrfs_dev_stat_print_on_error(dev); |
| 7890 | } |
| 7891 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7892 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7893 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7894 | if (!dev->dev_stats_valid) |
| 7895 | return; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7896 | btrfs_err_rl_in_rcu(dev->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 7897 | "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] | 7898 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7899 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7900 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7901 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7902 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7903 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7904 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7905 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7906 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 7907 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 7908 | int i; |
| 7909 | |
| 7910 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7911 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 7912 | break; |
| 7913 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 7914 | return; /* all values == 0, suppress message */ |
| 7915 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7916 | btrfs_info_in_rcu(dev->fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7917 | "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] | 7918 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7919 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7920 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7921 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 7922 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7923 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 7924 | } |
| 7925 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7926 | int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7927 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7928 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7929 | BTRFS_DEV_LOOKUP_ARGS(args); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7930 | struct btrfs_device *dev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7931 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7932 | int i; |
| 7933 | |
| 7934 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 7935 | args.devid = stats->devid; |
| 7936 | dev = btrfs_find_device(fs_info->fs_devices, &args); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7937 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7938 | |
| 7939 | if (!dev) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7940 | btrfs_warn(fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7941 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7942 | } else if (!dev->dev_stats_valid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7943 | btrfs_warn(fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7944 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7945 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7946 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7947 | if (stats->nr_items > i) |
| 7948 | stats->values[i] = |
| 7949 | btrfs_dev_stat_read_and_reset(dev, i); |
| 7950 | else |
Anand Jain | 4e411a7 | 2019-08-07 16:21:19 +0800 | [diff] [blame] | 7951 | btrfs_dev_stat_set(dev, i, 0); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7952 | } |
Anand Jain | a69976b | 2020-01-10 12:26:34 +0800 | [diff] [blame] | 7953 | btrfs_info(fs_info, "device stats zeroed by %s (%d)", |
| 7954 | current->comm, task_pid_nr(current)); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7955 | } else { |
| 7956 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7957 | if (stats->nr_items > i) |
| 7958 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 7959 | } |
| 7960 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 7961 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 7962 | return 0; |
| 7963 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7964 | |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7965 | /* |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 7966 | * Update the size and bytes used for each device where it changed. This is |
| 7967 | * delayed since we would otherwise get errors while writing out the |
| 7968 | * superblocks. |
| 7969 | * |
| 7970 | * Must be invoked during transaction commit. |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7971 | */ |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 7972 | void btrfs_commit_device_sizes(struct btrfs_transaction *trans) |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7973 | { |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7974 | struct btrfs_device *curr, *next; |
| 7975 | |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 7976 | ASSERT(trans->state == TRANS_STATE_COMMIT_DOING); |
| 7977 | |
| 7978 | if (list_empty(&trans->dev_update_list)) |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7979 | return; |
| 7980 | |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 7981 | /* |
| 7982 | * We don't need the device_list_mutex here. This list is owned by the |
| 7983 | * transaction and the transaction must complete before the device is |
| 7984 | * released. |
| 7985 | */ |
| 7986 | mutex_lock(&trans->fs_info->chunk_mutex); |
| 7987 | list_for_each_entry_safe(curr, next, &trans->dev_update_list, |
| 7988 | post_commit_list) { |
| 7989 | list_del_init(&curr->post_commit_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7990 | curr->commit_total_bytes = curr->disk_total_bytes; |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 7991 | curr->commit_bytes_used = curr->bytes_used; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7992 | } |
Nikolay Borisov | bbbf724 | 2019-03-25 14:31:22 +0200 | [diff] [blame] | 7993 | mutex_unlock(&trans->fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7994 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 7995 | |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 7996 | /* |
| 7997 | * Multiplicity factor for simple profiles: DUP, RAID1-like and RAID10. |
| 7998 | */ |
| 7999 | int btrfs_bg_type_to_factor(u64 flags) |
| 8000 | { |
David Sterba | 44b28ad | 2019-05-17 11:43:31 +0200 | [diff] [blame] | 8001 | const int index = btrfs_bg_flags_to_raid_index(flags); |
| 8002 | |
| 8003 | return btrfs_raid_array[index].ncopies; |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 8004 | } |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8005 | |
| 8006 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8007 | |
| 8008 | static int verify_one_dev_extent(struct btrfs_fs_info *fs_info, |
| 8009 | u64 chunk_offset, u64 devid, |
| 8010 | u64 physical_offset, u64 physical_len) |
| 8011 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 8012 | struct btrfs_dev_lookup_args args = { .devid = devid }; |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 8013 | struct extent_map_tree *em_tree = &fs_info->mapping_tree; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8014 | struct extent_map *em; |
| 8015 | struct map_lookup *map; |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8016 | struct btrfs_device *dev; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8017 | u64 stripe_len; |
| 8018 | bool found = false; |
| 8019 | int ret = 0; |
| 8020 | int i; |
| 8021 | |
| 8022 | read_lock(&em_tree->lock); |
| 8023 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 8024 | read_unlock(&em_tree->lock); |
| 8025 | |
| 8026 | if (!em) { |
| 8027 | btrfs_err(fs_info, |
| 8028 | "dev extent physical offset %llu on devid %llu doesn't have corresponding chunk", |
| 8029 | physical_offset, devid); |
| 8030 | ret = -EUCLEAN; |
| 8031 | goto out; |
| 8032 | } |
| 8033 | |
| 8034 | map = em->map_lookup; |
| 8035 | stripe_len = calc_stripe_length(map->type, em->len, map->num_stripes); |
| 8036 | if (physical_len != stripe_len) { |
| 8037 | btrfs_err(fs_info, |
| 8038 | "dev extent physical offset %llu on devid %llu length doesn't match chunk %llu, have %llu expect %llu", |
| 8039 | physical_offset, devid, em->start, physical_len, |
| 8040 | stripe_len); |
| 8041 | ret = -EUCLEAN; |
| 8042 | goto out; |
| 8043 | } |
| 8044 | |
| 8045 | for (i = 0; i < map->num_stripes; i++) { |
| 8046 | if (map->stripes[i].dev->devid == devid && |
| 8047 | map->stripes[i].physical == physical_offset) { |
| 8048 | found = true; |
| 8049 | if (map->verified_stripes >= map->num_stripes) { |
| 8050 | btrfs_err(fs_info, |
| 8051 | "too many dev extents for chunk %llu found", |
| 8052 | em->start); |
| 8053 | ret = -EUCLEAN; |
| 8054 | goto out; |
| 8055 | } |
| 8056 | map->verified_stripes++; |
| 8057 | break; |
| 8058 | } |
| 8059 | } |
| 8060 | if (!found) { |
| 8061 | btrfs_err(fs_info, |
| 8062 | "dev extent physical offset %llu devid %llu has no corresponding chunk", |
| 8063 | physical_offset, devid); |
| 8064 | ret = -EUCLEAN; |
| 8065 | } |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8066 | |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 8067 | /* Make sure no dev extent is beyond device boundary */ |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 8068 | dev = btrfs_find_device(fs_info->fs_devices, &args); |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8069 | if (!dev) { |
| 8070 | btrfs_err(fs_info, "failed to find devid %llu", devid); |
| 8071 | ret = -EUCLEAN; |
| 8072 | goto out; |
| 8073 | } |
Qu Wenruo | 1b3922a | 2019-01-08 14:08:18 +0800 | [diff] [blame] | 8074 | |
Qu Wenruo | 05a37c4 | 2018-10-05 17:45:55 +0800 | [diff] [blame] | 8075 | if (physical_offset + physical_len > dev->disk_total_bytes) { |
| 8076 | btrfs_err(fs_info, |
| 8077 | "dev extent devid %llu physical offset %llu len %llu is beyond device boundary %llu", |
| 8078 | devid, physical_offset, physical_len, |
| 8079 | dev->disk_total_bytes); |
| 8080 | ret = -EUCLEAN; |
| 8081 | goto out; |
| 8082 | } |
Naohiro Aota | 381a696 | 2021-02-04 19:21:49 +0900 | [diff] [blame] | 8083 | |
| 8084 | if (dev->zone_info) { |
| 8085 | u64 zone_size = dev->zone_info->zone_size; |
| 8086 | |
| 8087 | if (!IS_ALIGNED(physical_offset, zone_size) || |
| 8088 | !IS_ALIGNED(physical_len, zone_size)) { |
| 8089 | btrfs_err(fs_info, |
| 8090 | "zoned: dev extent devid %llu physical offset %llu len %llu is not aligned to device zone", |
| 8091 | devid, physical_offset, physical_len); |
| 8092 | ret = -EUCLEAN; |
| 8093 | goto out; |
| 8094 | } |
| 8095 | } |
| 8096 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8097 | out: |
| 8098 | free_extent_map(em); |
| 8099 | return ret; |
| 8100 | } |
| 8101 | |
| 8102 | static int verify_chunk_dev_extent_mapping(struct btrfs_fs_info *fs_info) |
| 8103 | { |
David Sterba | c8bf1b6 | 2019-05-17 11:43:17 +0200 | [diff] [blame] | 8104 | struct extent_map_tree *em_tree = &fs_info->mapping_tree; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8105 | struct extent_map *em; |
| 8106 | struct rb_node *node; |
| 8107 | int ret = 0; |
| 8108 | |
| 8109 | read_lock(&em_tree->lock); |
Liu Bo | 07e1ce0 | 2018-08-23 03:51:52 +0800 | [diff] [blame] | 8110 | 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] | 8111 | em = rb_entry(node, struct extent_map, rb_node); |
| 8112 | if (em->map_lookup->num_stripes != |
| 8113 | em->map_lookup->verified_stripes) { |
| 8114 | btrfs_err(fs_info, |
| 8115 | "chunk %llu has missing dev extent, have %d expect %d", |
| 8116 | em->start, em->map_lookup->verified_stripes, |
| 8117 | em->map_lookup->num_stripes); |
| 8118 | ret = -EUCLEAN; |
| 8119 | goto out; |
| 8120 | } |
| 8121 | } |
| 8122 | out: |
| 8123 | read_unlock(&em_tree->lock); |
| 8124 | return ret; |
| 8125 | } |
| 8126 | |
| 8127 | /* |
| 8128 | * Ensure that all dev extents are mapped to correct chunk, otherwise |
| 8129 | * later chunk allocation/free would cause unexpected behavior. |
| 8130 | * |
| 8131 | * NOTE: This will iterate through the whole device tree, which should be of |
| 8132 | * the same size level as the chunk tree. This slightly increases mount time. |
| 8133 | */ |
| 8134 | int btrfs_verify_dev_extents(struct btrfs_fs_info *fs_info) |
| 8135 | { |
| 8136 | struct btrfs_path *path; |
| 8137 | struct btrfs_root *root = fs_info->dev_root; |
| 8138 | struct btrfs_key key; |
Qu Wenruo | 5eb1938 | 2018-10-05 17:45:54 +0800 | [diff] [blame] | 8139 | u64 prev_devid = 0; |
| 8140 | u64 prev_dev_ext_end = 0; |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8141 | int ret = 0; |
| 8142 | |
Josef Bacik | 42437a6 | 2020-10-16 11:29:18 -0400 | [diff] [blame] | 8143 | /* |
| 8144 | * We don't have a dev_root because we mounted with ignorebadroots and |
| 8145 | * failed to load the root, so we want to skip the verification in this |
| 8146 | * case for sure. |
| 8147 | * |
| 8148 | * However if the dev root is fine, but the tree itself is corrupted |
| 8149 | * we'd still fail to mount. This verification is only to make sure |
| 8150 | * writes can happen safely, so instead just bypass this check |
| 8151 | * completely in the case of IGNOREBADROOTS. |
| 8152 | */ |
| 8153 | if (btrfs_test_opt(fs_info, IGNOREBADROOTS)) |
| 8154 | return 0; |
| 8155 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8156 | key.objectid = 1; |
| 8157 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 8158 | key.offset = 0; |
| 8159 | |
| 8160 | path = btrfs_alloc_path(); |
| 8161 | if (!path) |
| 8162 | return -ENOMEM; |
| 8163 | |
| 8164 | path->reada = READA_FORWARD; |
| 8165 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 8166 | if (ret < 0) |
| 8167 | goto out; |
| 8168 | |
| 8169 | if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) { |
Marcos Paulo de Souza | ad9a937 | 2021-07-13 10:58:03 -0300 | [diff] [blame] | 8170 | ret = btrfs_next_leaf(root, path); |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8171 | if (ret < 0) |
| 8172 | goto out; |
| 8173 | /* No dev extents at all? Not good */ |
| 8174 | if (ret > 0) { |
| 8175 | ret = -EUCLEAN; |
| 8176 | goto out; |
| 8177 | } |
| 8178 | } |
| 8179 | while (1) { |
| 8180 | struct extent_buffer *leaf = path->nodes[0]; |
| 8181 | struct btrfs_dev_extent *dext; |
| 8182 | int slot = path->slots[0]; |
| 8183 | u64 chunk_offset; |
| 8184 | u64 physical_offset; |
| 8185 | u64 physical_len; |
| 8186 | u64 devid; |
| 8187 | |
| 8188 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 8189 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
| 8190 | break; |
| 8191 | devid = key.objectid; |
| 8192 | physical_offset = key.offset; |
| 8193 | |
| 8194 | dext = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent); |
| 8195 | chunk_offset = btrfs_dev_extent_chunk_offset(leaf, dext); |
| 8196 | physical_len = btrfs_dev_extent_length(leaf, dext); |
| 8197 | |
Qu Wenruo | 5eb1938 | 2018-10-05 17:45:54 +0800 | [diff] [blame] | 8198 | /* Check if this dev extent overlaps with the previous one */ |
| 8199 | if (devid == prev_devid && physical_offset < prev_dev_ext_end) { |
| 8200 | btrfs_err(fs_info, |
| 8201 | "dev extent devid %llu physical offset %llu overlap with previous dev extent end %llu", |
| 8202 | devid, physical_offset, prev_dev_ext_end); |
| 8203 | ret = -EUCLEAN; |
| 8204 | goto out; |
| 8205 | } |
| 8206 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8207 | ret = verify_one_dev_extent(fs_info, chunk_offset, devid, |
| 8208 | physical_offset, physical_len); |
| 8209 | if (ret < 0) |
| 8210 | goto out; |
Qu Wenruo | 5eb1938 | 2018-10-05 17:45:54 +0800 | [diff] [blame] | 8211 | prev_devid = devid; |
| 8212 | prev_dev_ext_end = physical_offset + physical_len; |
| 8213 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 8214 | ret = btrfs_next_item(root, path); |
| 8215 | if (ret < 0) |
| 8216 | goto out; |
| 8217 | if (ret > 0) { |
| 8218 | ret = 0; |
| 8219 | break; |
| 8220 | } |
| 8221 | } |
| 8222 | |
| 8223 | /* Ensure all chunks have corresponding dev extents */ |
| 8224 | ret = verify_chunk_dev_extent_mapping(fs_info); |
| 8225 | out: |
| 8226 | btrfs_free_path(path); |
| 8227 | return ret; |
| 8228 | } |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 8229 | |
| 8230 | /* |
| 8231 | * Check whether the given block group or device is pinned by any inode being |
| 8232 | * used as a swapfile. |
| 8233 | */ |
| 8234 | bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr) |
| 8235 | { |
| 8236 | struct btrfs_swapfile_pin *sp; |
| 8237 | struct rb_node *node; |
| 8238 | |
| 8239 | spin_lock(&fs_info->swapfile_pins_lock); |
| 8240 | node = fs_info->swapfile_pins.rb_node; |
| 8241 | while (node) { |
| 8242 | sp = rb_entry(node, struct btrfs_swapfile_pin, node); |
| 8243 | if (ptr < sp->ptr) |
| 8244 | node = node->rb_left; |
| 8245 | else if (ptr > sp->ptr) |
| 8246 | node = node->rb_right; |
| 8247 | else |
| 8248 | break; |
| 8249 | } |
| 8250 | spin_unlock(&fs_info->swapfile_pins_lock); |
| 8251 | return node != NULL; |
| 8252 | } |
Naohiro Aota | f7ef528 | 2021-02-04 19:22:16 +0900 | [diff] [blame] | 8253 | |
| 8254 | static int relocating_repair_kthread(void *data) |
| 8255 | { |
| 8256 | struct btrfs_block_group *cache = (struct btrfs_block_group *)data; |
| 8257 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 8258 | u64 target; |
| 8259 | int ret = 0; |
| 8260 | |
| 8261 | target = cache->start; |
| 8262 | btrfs_put_block_group(cache); |
| 8263 | |
| 8264 | if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) { |
| 8265 | btrfs_info(fs_info, |
| 8266 | "zoned: skip relocating block group %llu to repair: EBUSY", |
| 8267 | target); |
| 8268 | return -EBUSY; |
| 8269 | } |
| 8270 | |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 8271 | mutex_lock(&fs_info->reclaim_bgs_lock); |
Naohiro Aota | f7ef528 | 2021-02-04 19:22:16 +0900 | [diff] [blame] | 8272 | |
| 8273 | /* Ensure block group still exists */ |
| 8274 | cache = btrfs_lookup_block_group(fs_info, target); |
| 8275 | if (!cache) |
| 8276 | goto out; |
| 8277 | |
| 8278 | if (!cache->relocating_repair) |
| 8279 | goto out; |
| 8280 | |
| 8281 | ret = btrfs_may_alloc_data_chunk(fs_info, target); |
| 8282 | if (ret < 0) |
| 8283 | goto out; |
| 8284 | |
| 8285 | btrfs_info(fs_info, |
| 8286 | "zoned: relocating block group %llu to repair IO failure", |
| 8287 | target); |
| 8288 | ret = btrfs_relocate_chunk(fs_info, target); |
| 8289 | |
| 8290 | out: |
| 8291 | if (cache) |
| 8292 | btrfs_put_block_group(cache); |
Johannes Thumshirn | f337206 | 2021-04-19 16:41:01 +0900 | [diff] [blame] | 8293 | mutex_unlock(&fs_info->reclaim_bgs_lock); |
Naohiro Aota | f7ef528 | 2021-02-04 19:22:16 +0900 | [diff] [blame] | 8294 | btrfs_exclop_finish(fs_info); |
| 8295 | |
| 8296 | return ret; |
| 8297 | } |
| 8298 | |
| 8299 | int btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical) |
| 8300 | { |
| 8301 | struct btrfs_block_group *cache; |
| 8302 | |
| 8303 | /* Do not attempt to repair in degraded state */ |
| 8304 | if (btrfs_test_opt(fs_info, DEGRADED)) |
| 8305 | return 0; |
| 8306 | |
| 8307 | cache = btrfs_lookup_block_group(fs_info, logical); |
| 8308 | if (!cache) |
| 8309 | return 0; |
| 8310 | |
| 8311 | spin_lock(&cache->lock); |
| 8312 | if (cache->relocating_repair) { |
| 8313 | spin_unlock(&cache->lock); |
| 8314 | btrfs_put_block_group(cache); |
| 8315 | return 0; |
| 8316 | } |
| 8317 | cache->relocating_repair = 1; |
| 8318 | spin_unlock(&cache->lock); |
| 8319 | |
| 8320 | kthread_run(relocating_repair_kthread, cache, |
| 8321 | "btrfs-relocating-repair"); |
| 8322 | |
| 8323 | return 0; |
| 8324 | } |