blob: a5e29a3f56d21588dac6fe2b49fb62287cabaaee [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason0b86a832008-03-24 15:01:56 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason0b86a832008-03-24 15:01:56 -04004 */
David Sterbac1d7c512018-04-03 19:23:33 +02005
Chris Mason0b86a832008-03-24 15:01:56 -04006#include <linux/sched.h>
Josef Bacikfccc0002020-08-31 10:52:42 -04007#include <linux/sched/mm.h>
Chris Mason0b86a832008-03-24 15:01:56 -04008#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040010#include <linux/blkdev.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020011#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020012#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050013#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020014#include <linux/semaphore.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070015#include <linux/uuid.h>
Anand Jainf8e10cd2018-01-22 14:49:36 -080016#include <linux/list_sort.h>
David Sterba784352f2019-08-21 18:54:28 +020017#include "misc.h"
Chris Mason0b86a832008-03-24 15:01:56 -040018#include "ctree.h"
19#include "extent_map.h"
20#include "disk-io.h"
21#include "transaction.h"
22#include "print-tree.h"
23#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050024#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040025#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010026#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040027#include "rcu-string.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010028#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080029#include "sysfs.h"
Qu Wenruo82fc28f2019-03-20 13:16:42 +080030#include "tree-checker.h"
Josef Bacik8719aaa2019-06-18 16:09:16 -040031#include "space-info.h"
Josef Bacikaac00232019-06-20 15:37:44 -040032#include "block-group.h"
Dennis Zhoub0643e52019-12-13 16:22:14 -080033#include "discard.h"
Naohiro Aota5b316462020-11-10 20:26:07 +090034#include "zoned.h"
Chris Mason0b86a832008-03-24 15:01:56 -040035
Zhao Leiaf902042015-09-15 21:08:06 +080036const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
37 [BTRFS_RAID_RAID10] = {
38 .sub_stripes = 2,
39 .dev_stripes = 1,
40 .devs_max = 0, /* 0 == as many as possible */
David Sterbab2f78e82021-07-22 20:54:37 +020041 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080042 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080043 .devs_increment = 2,
44 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020045 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080046 .raid_name = "raid10",
Anand Jain41a6e892018-04-25 19:01:43 +080047 .bg_flag = BTRFS_BLOCK_GROUP_RAID10,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080048 .mindev_error = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080049 },
50 [BTRFS_RAID_RAID1] = {
51 .sub_stripes = 1,
52 .dev_stripes = 1,
53 .devs_max = 2,
54 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080055 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080056 .devs_increment = 2,
57 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020058 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080059 .raid_name = "raid1",
Anand Jain41a6e892018-04-25 19:01:43 +080060 .bg_flag = BTRFS_BLOCK_GROUP_RAID1,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080061 .mindev_error = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080062 },
David Sterba47e6f742018-03-02 22:56:53 +010063 [BTRFS_RAID_RAID1C3] = {
64 .sub_stripes = 1,
65 .dev_stripes = 1,
David Sterbacf93e152019-11-27 16:10:54 +010066 .devs_max = 3,
David Sterba47e6f742018-03-02 22:56:53 +010067 .devs_min = 3,
68 .tolerated_failures = 2,
69 .devs_increment = 3,
70 .ncopies = 3,
David Sterbadb26a022019-11-25 15:34:48 +010071 .nparity = 0,
David Sterba47e6f742018-03-02 22:56:53 +010072 .raid_name = "raid1c3",
73 .bg_flag = BTRFS_BLOCK_GROUP_RAID1C3,
74 .mindev_error = BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET,
75 },
David Sterba8d6fac02018-03-02 22:56:53 +010076 [BTRFS_RAID_RAID1C4] = {
77 .sub_stripes = 1,
78 .dev_stripes = 1,
David Sterbacf93e152019-11-27 16:10:54 +010079 .devs_max = 4,
David Sterba8d6fac02018-03-02 22:56:53 +010080 .devs_min = 4,
81 .tolerated_failures = 3,
82 .devs_increment = 4,
83 .ncopies = 4,
David Sterbadb26a022019-11-25 15:34:48 +010084 .nparity = 0,
David Sterba8d6fac02018-03-02 22:56:53 +010085 .raid_name = "raid1c4",
86 .bg_flag = BTRFS_BLOCK_GROUP_RAID1C4,
87 .mindev_error = BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET,
88 },
Zhao Leiaf902042015-09-15 21:08:06 +080089 [BTRFS_RAID_DUP] = {
90 .sub_stripes = 1,
91 .dev_stripes = 2,
92 .devs_max = 1,
93 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080094 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080095 .devs_increment = 1,
96 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020097 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080098 .raid_name = "dup",
Anand Jain41a6e892018-04-25 19:01:43 +080099 .bg_flag = BTRFS_BLOCK_GROUP_DUP,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800100 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800101 },
102 [BTRFS_RAID_RAID0] = {
103 .sub_stripes = 1,
104 .dev_stripes = 1,
105 .devs_max = 0,
David Sterbab2f78e82021-07-22 20:54:37 +0200106 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800107 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800108 .devs_increment = 1,
109 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200110 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +0800111 .raid_name = "raid0",
Anand Jain41a6e892018-04-25 19:01:43 +0800112 .bg_flag = BTRFS_BLOCK_GROUP_RAID0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800113 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800114 },
115 [BTRFS_RAID_SINGLE] = {
116 .sub_stripes = 1,
117 .dev_stripes = 1,
118 .devs_max = 1,
119 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800120 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800121 .devs_increment = 1,
122 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200123 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +0800124 .raid_name = "single",
Anand Jain41a6e892018-04-25 19:01:43 +0800125 .bg_flag = 0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800126 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800127 },
128 [BTRFS_RAID_RAID5] = {
129 .sub_stripes = 1,
130 .dev_stripes = 1,
131 .devs_max = 0,
132 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800133 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +0800134 .devs_increment = 1,
Hans van Kranenburgda612e32018-10-04 23:24:41 +0200135 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200136 .nparity = 1,
Anand Jained234672018-04-25 19:01:42 +0800137 .raid_name = "raid5",
Anand Jain41a6e892018-04-25 19:01:43 +0800138 .bg_flag = BTRFS_BLOCK_GROUP_RAID5,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800139 .mindev_error = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800140 },
141 [BTRFS_RAID_RAID6] = {
142 .sub_stripes = 1,
143 .dev_stripes = 1,
144 .devs_max = 0,
145 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800146 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800147 .devs_increment = 1,
Hans van Kranenburgda612e32018-10-04 23:24:41 +0200148 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200149 .nparity = 2,
Anand Jained234672018-04-25 19:01:42 +0800150 .raid_name = "raid6",
Anand Jain41a6e892018-04-25 19:01:43 +0800151 .bg_flag = BTRFS_BLOCK_GROUP_RAID6,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800152 .mindev_error = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800153 },
154};
155
David Sterba500a44c2021-07-26 14:15:19 +0200156/*
157 * Convert block group flags (BTRFS_BLOCK_GROUP_*) to btrfs_raid_types, which
158 * can be used as index to access btrfs_raid_array[].
159 */
160enum btrfs_raid_types __attribute_const__ btrfs_bg_flags_to_raid_index(u64 flags)
161{
162 if (flags & BTRFS_BLOCK_GROUP_RAID10)
163 return BTRFS_RAID_RAID10;
164 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
165 return BTRFS_RAID_RAID1;
166 else if (flags & BTRFS_BLOCK_GROUP_RAID1C3)
167 return BTRFS_RAID_RAID1C3;
168 else if (flags & BTRFS_BLOCK_GROUP_RAID1C4)
169 return BTRFS_RAID_RAID1C4;
170 else if (flags & BTRFS_BLOCK_GROUP_DUP)
171 return BTRFS_RAID_DUP;
172 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
173 return BTRFS_RAID_RAID0;
174 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
175 return BTRFS_RAID_RAID5;
176 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
177 return BTRFS_RAID_RAID6;
178
179 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
180}
181
David Sterba158da512019-05-17 11:43:41 +0200182const char *btrfs_bg_type_to_raid_name(u64 flags)
Anand Jained234672018-04-25 19:01:42 +0800183{
David Sterba158da512019-05-17 11:43:41 +0200184 const int index = btrfs_bg_flags_to_raid_index(flags);
185
186 if (index >= BTRFS_NR_RAID_TYPES)
Anand Jained234672018-04-25 19:01:42 +0800187 return NULL;
188
David Sterba158da512019-05-17 11:43:41 +0200189 return btrfs_raid_array[index].raid_name;
Anand Jained234672018-04-25 19:01:42 +0800190}
191
Anand Jainf89e09c2018-11-20 16:12:55 +0800192/*
193 * Fill @buf with textual description of @bg_flags, no more than @size_buf
194 * bytes including terminating null byte.
195 */
196void btrfs_describe_block_groups(u64 bg_flags, char *buf, u32 size_buf)
197{
198 int i;
199 int ret;
200 char *bp = buf;
201 u64 flags = bg_flags;
202 u32 size_bp = size_buf;
203
204 if (!flags) {
205 strcpy(bp, "NONE");
206 return;
207 }
208
209#define DESCRIBE_FLAG(flag, desc) \
210 do { \
211 if (flags & (flag)) { \
212 ret = snprintf(bp, size_bp, "%s|", (desc)); \
213 if (ret < 0 || ret >= size_bp) \
214 goto out_overflow; \
215 size_bp -= ret; \
216 bp += ret; \
217 flags &= ~(flag); \
218 } \
219 } while (0)
220
221 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_DATA, "data");
222 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_SYSTEM, "system");
223 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_METADATA, "metadata");
224
225 DESCRIBE_FLAG(BTRFS_AVAIL_ALLOC_BIT_SINGLE, "single");
226 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
227 DESCRIBE_FLAG(btrfs_raid_array[i].bg_flag,
228 btrfs_raid_array[i].raid_name);
229#undef DESCRIBE_FLAG
230
231 if (flags) {
232 ret = snprintf(bp, size_bp, "0x%llx|", flags);
233 size_bp -= ret;
234 }
235
236 if (size_bp < size_buf)
237 buf[size_buf - size_bp - 1] = '\0'; /* remove last | */
238
239 /*
240 * The text is trimmed, it's up to the caller to provide sufficiently
241 * large buffer
242 */
243out_overflow:;
244}
245
David Sterba6f8e0fc2019-03-20 16:29:13 +0100246static int init_first_rw_device(struct btrfs_trans_handle *trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400247static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000248static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200249static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700250static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
251 enum btrfs_map_op op,
252 u64 logical, u64 *length,
253 struct btrfs_bio **bbio_ret,
254 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500255
David Sterba9c6b1c42017-06-16 22:30:00 +0200256/*
257 * Device locking
258 * ==============
259 *
260 * There are several mutexes that protect manipulation of devices and low-level
261 * structures like chunks but not block groups, extents or files
262 *
263 * uuid_mutex (global lock)
264 * ------------------------
265 * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from
266 * the SCAN_DEV ioctl registration or from mount either implicitly (the first
267 * device) or requested by the device= mount option
268 *
269 * the mutex can be very coarse and can cover long-running operations
270 *
271 * protects: updates to fs_devices counters like missing devices, rw devices,
Andrea Gelmini52042d82018-11-28 12:05:13 +0100272 * seeding, structure cloning, opening/closing devices at mount/umount time
David Sterba9c6b1c42017-06-16 22:30:00 +0200273 *
274 * global::fs_devs - add, remove, updates to the global list
275 *
Josef Bacik18c850f2020-07-17 15:12:27 -0400276 * does not protect: manipulation of the fs_devices::devices list in general
277 * but in mount context it could be used to exclude list modifications by eg.
278 * scan ioctl
David Sterba9c6b1c42017-06-16 22:30:00 +0200279 *
280 * btrfs_device::name - renames (write side), read is RCU
281 *
282 * fs_devices::device_list_mutex (per-fs, with RCU)
283 * ------------------------------------------------
284 * protects updates to fs_devices::devices, ie. adding and deleting
285 *
286 * simple list traversal with read-only actions can be done with RCU protection
287 *
288 * may be used to exclude some operations from running concurrently without any
289 * modifications to the list (see write_all_supers)
290 *
Josef Bacik18c850f2020-07-17 15:12:27 -0400291 * Is not required at mount and close times, because our device list is
292 * protected by the uuid_mutex at that point.
293 *
David Sterba9c6b1c42017-06-16 22:30:00 +0200294 * balance_mutex
295 * -------------
296 * protects balance structures (status, state) and context accessed from
297 * several places (internally, ioctl)
298 *
299 * chunk_mutex
300 * -----------
301 * protects chunks, adding or removing during allocation, trim or when a new
Nikolay Borisov0b6f5d42019-05-09 18:11:11 +0300302 * device is added/removed. Additionally it also protects post_commit_list of
303 * individual devices, since they can be added to the transaction's
304 * post_commit_list only with chunk_mutex held.
David Sterba9c6b1c42017-06-16 22:30:00 +0200305 *
306 * cleaner_mutex
307 * -------------
308 * a big lock that is held by the cleaner thread and prevents running subvolume
309 * cleaning together with relocation or delayed iputs
310 *
311 *
312 * Lock nesting
313 * ============
314 *
315 * uuid_mutex
Anand Jainae3e7152020-05-14 01:42:45 +0800316 * device_list_mutex
317 * chunk_mutex
318 * balance_mutex
Anand Jain89595e82018-04-18 14:59:25 +0800319 *
320 *
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500321 * Exclusive operations
322 * ====================
Anand Jain89595e82018-04-18 14:59:25 +0800323 *
324 * Maintains the exclusivity of the following operations that apply to the
325 * whole filesystem and cannot run in parallel.
326 *
327 * - Balance (*)
328 * - Device add
329 * - Device remove
330 * - Device replace (*)
331 * - Resize
332 *
333 * The device operations (as above) can be in one of the following states:
334 *
335 * - Running state
336 * - Paused state
337 * - Completed state
338 *
339 * Only device operations marked with (*) can go into the Paused state for the
340 * following reasons:
341 *
342 * - ioctl (only Balance can be Paused through ioctl)
343 * - filesystem remounted as read-only
344 * - filesystem unmounted and mounted as read-only
345 * - system power-cycle and filesystem mounted as read-only
346 * - filesystem or device errors leading to forced read-only
347 *
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500348 * The status of exclusive operation is set and cleared atomically.
349 * During the course of Paused state, fs_info::exclusive_operation remains set.
Anand Jain89595e82018-04-18 14:59:25 +0800350 * A device operation in Paused or Running state can be canceled or resumed
351 * either by ioctl (Balance only) or when remounted as read-write.
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500352 * The exclusive status is cleared when the device operation is canceled or
Anand Jain89595e82018-04-18 14:59:25 +0800353 * completed.
David Sterba9c6b1c42017-06-16 22:30:00 +0200354 */
355
Miao Xie67a2c452014-09-03 21:35:43 +0800356DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400357static LIST_HEAD(fs_uuids);
David Sterba4143cb82019-10-01 19:57:37 +0200358struct list_head * __attribute_const__ btrfs_get_fs_uuids(void)
Anand Jainc73eccf2015-03-10 06:38:30 +0800359{
360 return &fs_uuids;
361}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400362
David Sterba2dfeca92017-06-14 02:48:07 +0200363/*
364 * alloc_fs_devices - allocate struct btrfs_fs_devices
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200365 * @fsid: if not NULL, copy the UUID to fs_devices::fsid
366 * @metadata_fsid: if not NULL, copy the UUID to fs_devices::metadata_fsid
David Sterba2dfeca92017-06-14 02:48:07 +0200367 *
368 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
369 * The returned struct is not linked onto any lists and can be destroyed with
370 * kfree() right away.
371 */
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200372static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid,
373 const u8 *metadata_fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300374{
375 struct btrfs_fs_devices *fs_devs;
376
David Sterba78f2c9e2016-02-11 14:25:38 +0100377 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300378 if (!fs_devs)
379 return ERR_PTR(-ENOMEM);
380
381 mutex_init(&fs_devs->device_list_mutex);
382
383 INIT_LIST_HEAD(&fs_devs->devices);
384 INIT_LIST_HEAD(&fs_devs->alloc_list);
Anand Jainc4babc52018-04-12 10:29:25 +0800385 INIT_LIST_HEAD(&fs_devs->fs_list);
Nikolay Borisov944d3f92020-07-16 10:25:33 +0300386 INIT_LIST_HEAD(&fs_devs->seed_list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300387 if (fsid)
388 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300389
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200390 if (metadata_fsid)
391 memcpy(fs_devs->metadata_uuid, metadata_fsid, BTRFS_FSID_SIZE);
392 else if (fsid)
393 memcpy(fs_devs->metadata_uuid, fsid, BTRFS_FSID_SIZE);
394
Ilya Dryomov2208a372013-08-12 14:33:03 +0300395 return fs_devs;
396}
397
David Sterbaa425f9d2018-03-20 15:47:33 +0100398void btrfs_free_device(struct btrfs_device *device)
David Sterba48dae9c2017-10-30 18:10:25 +0100399{
Nikolay Borisovbbbf7242019-03-25 14:31:22 +0200400 WARN_ON(!list_empty(&device->post_commit_list));
David Sterba48dae9c2017-10-30 18:10:25 +0100401 rcu_string_free(device->name);
Jeff Mahoney1c11b632019-03-27 14:24:12 +0200402 extent_io_tree_release(&device->alloc_state);
David Sterba48dae9c2017-10-30 18:10:25 +0100403 bio_put(device->flush_bio);
Naohiro Aota5b316462020-11-10 20:26:07 +0900404 btrfs_destroy_dev_zone_info(device);
David Sterba48dae9c2017-10-30 18:10:25 +0100405 kfree(device);
406}
407
Yan Zhenge4404d62008-12-12 10:03:26 -0500408static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
409{
410 struct btrfs_device *device;
411 WARN_ON(fs_devices->opened);
412 while (!list_empty(&fs_devices->devices)) {
413 device = list_entry(fs_devices->devices.next,
414 struct btrfs_device, dev_list);
415 list_del(&device->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100416 btrfs_free_device(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500417 }
418 kfree(fs_devices);
419}
420
David Sterbaffc5a372018-02-19 17:24:15 +0100421void __exit btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400422{
423 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400424
Yan Zheng2b820322008-11-17 21:11:30 -0500425 while (!list_empty(&fs_uuids)) {
426 fs_devices = list_entry(fs_uuids.next,
Anand Jainc4babc52018-04-12 10:29:25 +0800427 struct btrfs_fs_devices, fs_list);
428 list_del(&fs_devices->fs_list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500429 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400430 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400431}
432
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200433static noinline struct btrfs_fs_devices *find_fsid(
434 const u8 *fsid, const u8 *metadata_fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400435{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400436 struct btrfs_fs_devices *fs_devices;
437
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200438 ASSERT(fsid);
439
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200440 /* Handle non-split brain cases */
Anand Jainc4babc52018-04-12 10:29:25 +0800441 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200442 if (metadata_fsid) {
443 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0
444 && memcmp(metadata_fsid, fs_devices->metadata_uuid,
445 BTRFS_FSID_SIZE) == 0)
446 return fs_devices;
447 } else {
448 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
449 return fs_devices;
450 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400451 }
452 return NULL;
453}
454
Su Yuec6730a02020-01-10 14:11:33 +0200455static struct btrfs_fs_devices *find_fsid_with_metadata_uuid(
456 struct btrfs_super_block *disk_super)
457{
458
459 struct btrfs_fs_devices *fs_devices;
460
461 /*
462 * Handle scanned device having completed its fsid change but
463 * belonging to a fs_devices that was created by first scanning
464 * a device which didn't have its fsid/metadata_uuid changed
465 * at all and the CHANGING_FSID_V2 flag set.
466 */
467 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
468 if (fs_devices->fsid_change &&
469 memcmp(disk_super->metadata_uuid, fs_devices->fsid,
470 BTRFS_FSID_SIZE) == 0 &&
471 memcmp(fs_devices->fsid, fs_devices->metadata_uuid,
472 BTRFS_FSID_SIZE) == 0) {
473 return fs_devices;
474 }
475 }
476 /*
477 * Handle scanned device having completed its fsid change but
478 * belonging to a fs_devices that was created by a device that
479 * has an outdated pair of fsid/metadata_uuid and
480 * CHANGING_FSID_V2 flag set.
481 */
482 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
483 if (fs_devices->fsid_change &&
484 memcmp(fs_devices->metadata_uuid,
485 fs_devices->fsid, BTRFS_FSID_SIZE) != 0 &&
486 memcmp(disk_super->metadata_uuid, fs_devices->metadata_uuid,
487 BTRFS_FSID_SIZE) == 0) {
488 return fs_devices;
489 }
490 }
491
492 return find_fsid(disk_super->fsid, disk_super->metadata_uuid);
493}
494
495
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100496static int
497btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
498 int flush, struct block_device **bdev,
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900499 struct btrfs_super_block **disk_super)
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100500{
501 int ret;
502
503 *bdev = blkdev_get_by_path(device_path, flags, holder);
504
505 if (IS_ERR(*bdev)) {
506 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100507 goto error;
508 }
509
510 if (flush)
511 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
David Sterba9f6d2512017-06-16 01:48:05 +0200512 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100513 if (ret) {
514 blkdev_put(*bdev, flags);
515 goto error;
516 }
517 invalidate_bdev(*bdev);
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900518 *disk_super = btrfs_read_dev_super(*bdev);
519 if (IS_ERR(*disk_super)) {
520 ret = PTR_ERR(*disk_super);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100521 blkdev_put(*bdev, flags);
522 goto error;
523 }
524
525 return 0;
526
527error:
528 *bdev = NULL;
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100529 return ret;
530}
531
Anand Jain70bc7082019-01-04 13:31:53 +0800532static bool device_path_matched(const char *path, struct btrfs_device *device)
533{
534 int found;
535
536 rcu_read_lock();
537 found = strcmp(rcu_str_deref(device->name), path);
538 rcu_read_unlock();
539
540 return found == 0;
541}
542
Anand Jaind8367db2018-01-18 22:00:37 +0800543/*
544 * Search and remove all stale (devices which are not mounted) devices.
545 * When both inputs are NULL, it will search and release all stale devices.
546 * path: Optional. When provided will it release all unmounted devices
547 * matching this path only.
548 * skip_dev: Optional. Will skip this device when searching for the stale
549 * devices.
Anand Jain70bc7082019-01-04 13:31:53 +0800550 * Return: 0 for success or if @path is NULL.
551 * -EBUSY if @path is a mounted device.
552 * -ENOENT if @path does not match any device in the list.
Anand Jaind8367db2018-01-18 22:00:37 +0800553 */
Anand Jain70bc7082019-01-04 13:31:53 +0800554static int btrfs_free_stale_devices(const char *path,
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800555 struct btrfs_device *skip_device)
Anand Jain4fde46f2015-06-17 21:10:48 +0800556{
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800557 struct btrfs_fs_devices *fs_devices, *tmp_fs_devices;
558 struct btrfs_device *device, *tmp_device;
Anand Jain70bc7082019-01-04 13:31:53 +0800559 int ret = 0;
560
Anand Jainc1247062021-08-31 09:21:28 +0800561 lockdep_assert_held(&uuid_mutex);
562
Anand Jain70bc7082019-01-04 13:31:53 +0800563 if (path)
564 ret = -ENOENT;
Anand Jain4fde46f2015-06-17 21:10:48 +0800565
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800566 list_for_each_entry_safe(fs_devices, tmp_fs_devices, &fs_uuids, fs_list) {
Anand Jain4fde46f2015-06-17 21:10:48 +0800567
Anand Jain70bc7082019-01-04 13:31:53 +0800568 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800569 list_for_each_entry_safe(device, tmp_device,
570 &fs_devices->devices, dev_list) {
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800571 if (skip_device && skip_device == device)
Anand Jaind8367db2018-01-18 22:00:37 +0800572 continue;
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800573 if (path && !device->name)
Anand Jain4fde46f2015-06-17 21:10:48 +0800574 continue;
Anand Jain70bc7082019-01-04 13:31:53 +0800575 if (path && !device_path_matched(path, device))
Anand Jain38cf6652018-01-18 22:00:34 +0800576 continue;
Anand Jain70bc7082019-01-04 13:31:53 +0800577 if (fs_devices->opened) {
578 /* for an already deleted device return 0 */
579 if (path && ret != 0)
580 ret = -EBUSY;
581 break;
582 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800583
Anand Jain4fde46f2015-06-17 21:10:48 +0800584 /* delete the stale device */
Anand Jain7bcb8162018-05-29 17:23:20 +0800585 fs_devices->num_devices--;
586 list_del(&device->dev_list);
587 btrfs_free_device(device);
588
Anand Jain70bc7082019-01-04 13:31:53 +0800589 ret = 0;
Anand Jain7bcb8162018-05-29 17:23:20 +0800590 }
591 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain70bc7082019-01-04 13:31:53 +0800592
Anand Jain7bcb8162018-05-29 17:23:20 +0800593 if (fs_devices->num_devices == 0) {
594 btrfs_sysfs_remove_fsid(fs_devices);
595 list_del(&fs_devices->fs_list);
596 free_fs_devices(fs_devices);
Anand Jain4fde46f2015-06-17 21:10:48 +0800597 }
598 }
Anand Jain70bc7082019-01-04 13:31:53 +0800599
600 return ret;
Anand Jain4fde46f2015-06-17 21:10:48 +0800601}
602
Josef Bacik18c850f2020-07-17 15:12:27 -0400603/*
604 * This is only used on mount, and we are protected from competing things
605 * messing with our fs_devices by the uuid_mutex, thus we do not need the
606 * fs_devices->device_list_mutex here.
607 */
Anand Jain0fb08bc2017-11-09 23:45:24 +0800608static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
609 struct btrfs_device *device, fmode_t flags,
610 void *holder)
611{
612 struct request_queue *q;
613 struct block_device *bdev;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800614 struct btrfs_super_block *disk_super;
615 u64 devid;
616 int ret;
617
618 if (device->bdev)
619 return -EINVAL;
620 if (!device->name)
621 return -EINVAL;
622
623 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900624 &bdev, &disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800625 if (ret)
626 return ret;
627
Anand Jain0fb08bc2017-11-09 23:45:24 +0800628 devid = btrfs_stack_device_id(&disk_super->dev_item);
629 if (devid != device->devid)
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900630 goto error_free_page;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800631
632 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900633 goto error_free_page;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800634
635 device->generation = btrfs_super_generation(disk_super);
636
637 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200638 if (btrfs_super_incompat_flags(disk_super) &
639 BTRFS_FEATURE_INCOMPAT_METADATA_UUID) {
640 pr_err(
641 "BTRFS: Invalid seeding and uuid-changed device detected\n");
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900642 goto error_free_page;
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200643 }
644
Anand Jainebbede42017-12-04 12:54:52 +0800645 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Johannes Thumshirn0395d842019-11-13 11:27:27 +0100646 fs_devices->seeding = true;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800647 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800648 if (bdev_read_only(bdev))
649 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
650 else
651 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800652 }
653
654 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800655 if (!blk_queue_nonrot(q))
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +0100656 fs_devices->rotating = true;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800657
658 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800659 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800660 device->mode = flags;
661
662 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800663 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
664 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800665 fs_devices->rw_devices++;
Anand Jainb1b8e382018-01-22 14:49:37 -0800666 list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800667 }
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900668 btrfs_release_disk_super(disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800669
670 return 0;
671
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900672error_free_page:
673 btrfs_release_disk_super(disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800674 blkdev_put(bdev, flags);
675
676 return -EINVAL;
677}
678
David Sterba60999ca2014-03-26 18:26:36 +0100679/*
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200680 * Handle scanned device having its CHANGING_FSID_V2 flag set and the fs_devices
Su Yuec0d81c72020-01-10 14:11:32 +0200681 * being created with a disk that has already completed its fsid change. Such
682 * disk can belong to an fs which has its FSID changed or to one which doesn't.
683 * Handle both cases here.
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200684 */
685static struct btrfs_fs_devices *find_fsid_inprogress(
686 struct btrfs_super_block *disk_super)
687{
688 struct btrfs_fs_devices *fs_devices;
689
690 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
691 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
692 BTRFS_FSID_SIZE) != 0 &&
693 memcmp(fs_devices->metadata_uuid, disk_super->fsid,
694 BTRFS_FSID_SIZE) == 0 && !fs_devices->fsid_change) {
695 return fs_devices;
696 }
697 }
698
Su Yuec0d81c72020-01-10 14:11:32 +0200699 return find_fsid(disk_super->fsid, NULL);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200700}
701
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200702
703static struct btrfs_fs_devices *find_fsid_changed(
704 struct btrfs_super_block *disk_super)
705{
706 struct btrfs_fs_devices *fs_devices;
707
708 /*
709 * Handles the case where scanned device is part of an fs that had
David Sterba1a9fd412021-05-21 17:42:23 +0200710 * multiple successful changes of FSID but currently device didn't
Nikolay Borisov05840712020-01-10 14:11:34 +0200711 * observe it. Meaning our fsid will be different than theirs. We need
712 * to handle two subcases :
713 * 1 - The fs still continues to have different METADATA/FSID uuids.
714 * 2 - The fs is switched back to its original FSID (METADATA/FSID
715 * are equal).
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200716 */
717 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Nikolay Borisov05840712020-01-10 14:11:34 +0200718 /* Changed UUIDs */
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200719 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
720 BTRFS_FSID_SIZE) != 0 &&
721 memcmp(fs_devices->metadata_uuid, disk_super->metadata_uuid,
722 BTRFS_FSID_SIZE) == 0 &&
723 memcmp(fs_devices->fsid, disk_super->fsid,
Nikolay Borisov05840712020-01-10 14:11:34 +0200724 BTRFS_FSID_SIZE) != 0)
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200725 return fs_devices;
Nikolay Borisov05840712020-01-10 14:11:34 +0200726
727 /* Unchanged UUIDs */
728 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
729 BTRFS_FSID_SIZE) == 0 &&
730 memcmp(fs_devices->fsid, disk_super->metadata_uuid,
731 BTRFS_FSID_SIZE) == 0)
732 return fs_devices;
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200733 }
734
735 return NULL;
736}
Nikolay Borisov13620892020-01-10 14:11:35 +0200737
738static struct btrfs_fs_devices *find_fsid_reverted_metadata(
739 struct btrfs_super_block *disk_super)
740{
741 struct btrfs_fs_devices *fs_devices;
742
743 /*
744 * Handle the case where the scanned device is part of an fs whose last
745 * metadata UUID change reverted it to the original FSID. At the same
746 * time * fs_devices was first created by another constitutent device
747 * which didn't fully observe the operation. This results in an
748 * btrfs_fs_devices created with metadata/fsid different AND
749 * btrfs_fs_devices::fsid_change set AND the metadata_uuid of the
750 * fs_devices equal to the FSID of the disk.
751 */
752 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
753 if (memcmp(fs_devices->fsid, fs_devices->metadata_uuid,
754 BTRFS_FSID_SIZE) != 0 &&
755 memcmp(fs_devices->metadata_uuid, disk_super->fsid,
756 BTRFS_FSID_SIZE) == 0 &&
757 fs_devices->fsid_change)
758 return fs_devices;
759 }
760
761 return NULL;
762}
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200763/*
David Sterba60999ca2014-03-26 18:26:36 +0100764 * Add new device to list of registered devices
765 *
766 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800767 * device pointer which was just added or updated when successful
768 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100769 */
Anand Jaine124ece2018-01-18 22:02:35 +0800770static noinline struct btrfs_device *device_list_add(const char *path,
Anand Jain4306a972018-05-29 12:28:37 +0800771 struct btrfs_super_block *disk_super,
772 bool *new_device_added)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400773{
774 struct btrfs_device *device;
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200775 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik606686e2012-06-04 14:03:51 -0400776 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400777 u64 found_transid = btrfs_super_generation(disk_super);
Anand Jain3acbcbf2018-01-18 22:02:36 +0800778 u64 devid = btrfs_stack_device_id(&disk_super->dev_item);
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200779 bool has_metadata_uuid = (btrfs_super_incompat_flags(disk_super) &
780 BTRFS_FEATURE_INCOMPAT_METADATA_UUID);
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200781 bool fsid_change_in_progress = (btrfs_super_flags(disk_super) &
782 BTRFS_SUPER_FLAG_CHANGING_FSID_V2);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400783
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200784 if (fsid_change_in_progress) {
Su Yuec0d81c72020-01-10 14:11:32 +0200785 if (!has_metadata_uuid)
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200786 fs_devices = find_fsid_inprogress(disk_super);
Su Yuec0d81c72020-01-10 14:11:32 +0200787 else
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200788 fs_devices = find_fsid_changed(disk_super);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200789 } else if (has_metadata_uuid) {
Su Yuec6730a02020-01-10 14:11:33 +0200790 fs_devices = find_fsid_with_metadata_uuid(disk_super);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200791 } else {
Nikolay Borisov13620892020-01-10 14:11:35 +0200792 fs_devices = find_fsid_reverted_metadata(disk_super);
793 if (!fs_devices)
794 fs_devices = find_fsid(disk_super->fsid, NULL);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200795 }
796
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200797
Chris Mason8a4b83c2008-03-24 15:02:07 -0400798 if (!fs_devices) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200799 if (has_metadata_uuid)
800 fs_devices = alloc_fs_devices(disk_super->fsid,
801 disk_super->metadata_uuid);
802 else
803 fs_devices = alloc_fs_devices(disk_super->fsid, NULL);
804
Ilya Dryomov2208a372013-08-12 14:33:03 +0300805 if (IS_ERR(fs_devices))
Anand Jaine124ece2018-01-18 22:02:35 +0800806 return ERR_CAST(fs_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300807
Al Viro92900e52019-01-27 04:58:00 +0000808 fs_devices->fsid_change = fsid_change_in_progress;
809
Anand Jain9c6d1732018-05-29 14:10:20 +0800810 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainc4babc52018-04-12 10:29:25 +0800811 list_add(&fs_devices->fs_list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300812
Chris Mason8a4b83c2008-03-24 15:02:07 -0400813 device = NULL;
814 } else {
Anand Jain9c6d1732018-05-29 14:10:20 +0800815 mutex_lock(&fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +0800816 device = btrfs_find_device(fs_devices, devid,
Anand Jainb2598ed2020-11-03 13:49:43 +0800817 disk_super->dev_item.uuid, NULL);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200818
819 /*
820 * If this disk has been pulled into an fs devices created by
821 * a device which had the CHANGING_FSID_V2 flag then replace the
822 * metadata_uuid/fsid values of the fs_devices.
823 */
Nikolay Borisov13620892020-01-10 14:11:35 +0200824 if (fs_devices->fsid_change &&
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200825 found_transid > fs_devices->latest_generation) {
826 memcpy(fs_devices->fsid, disk_super->fsid,
827 BTRFS_FSID_SIZE);
Nikolay Borisov13620892020-01-10 14:11:35 +0200828
829 if (has_metadata_uuid)
830 memcpy(fs_devices->metadata_uuid,
831 disk_super->metadata_uuid,
832 BTRFS_FSID_SIZE);
833 else
834 memcpy(fs_devices->metadata_uuid,
835 disk_super->fsid, BTRFS_FSID_SIZE);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200836
837 fs_devices->fsid_change = false;
838 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400839 }
Miao Xie443f24f2014-07-24 11:37:15 +0800840
Chris Mason8a4b83c2008-03-24 15:02:07 -0400841 if (!device) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800842 if (fs_devices->opened) {
843 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800844 return ERR_PTR(-EBUSY);
Anand Jain9c6d1732018-05-29 14:10:20 +0800845 }
Yan Zheng2b820322008-11-17 21:11:30 -0500846
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300847 device = btrfs_alloc_device(NULL, &devid,
848 disk_super->dev_item.uuid);
849 if (IS_ERR(device)) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800850 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400851 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800852 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400853 }
Josef Bacik606686e2012-06-04 14:03:51 -0400854
855 name = rcu_string_strdup(path, GFP_NOFS);
856 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100857 btrfs_free_device(device);
Anand Jain9c6d1732018-05-29 14:10:20 +0800858 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800859 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400860 }
Josef Bacik606686e2012-06-04 14:03:51 -0400861 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200862
Xiao Guangrong1f781602011-04-20 10:09:16 +0000863 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100864 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400865
Yan Zheng2b820322008-11-17 21:11:30 -0500866 device->fs_devices = fs_devices;
Anand Jain4306a972018-05-29 12:28:37 +0800867 *new_device_added = true;
Anand Jain327f18c2018-01-18 22:02:33 +0800868
869 if (disk_super->label[0])
Anand Jainaa6c0df2019-10-02 18:30:48 +0800870 pr_info(
871 "BTRFS: device label %s devid %llu transid %llu %s scanned by %s (%d)\n",
872 disk_super->label, devid, found_transid, path,
873 current->comm, task_pid_nr(current));
Anand Jain327f18c2018-01-18 22:02:33 +0800874 else
Anand Jainaa6c0df2019-10-02 18:30:48 +0800875 pr_info(
876 "BTRFS: device fsid %pU devid %llu transid %llu %s scanned by %s (%d)\n",
877 disk_super->fsid, devid, found_transid, path,
878 current->comm, task_pid_nr(current));
Anand Jain327f18c2018-01-18 22:02:33 +0800879
Josef Bacik606686e2012-06-04 14:03:51 -0400880 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800881 /*
882 * When FS is already mounted.
883 * 1. If you are here and if the device->name is NULL that
884 * means this device was missing at time of FS mount.
885 * 2. If you are here and if the device->name is different
886 * from 'path' that means either
887 * a. The same device disappeared and reappeared with
888 * different name. or
889 * b. The missing-disk-which-was-replaced, has
890 * reappeared now.
891 *
892 * We must allow 1 and 2a above. But 2b would be a spurious
893 * and unintentional.
894 *
895 * Further in case of 1 and 2a above, the disk at 'path'
896 * would have missed some transaction when it was away and
897 * in case of 2a the stale bdev has to be updated as well.
898 * 2b must not be allowed at all time.
899 */
900
901 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700902 * For now, we do allow update to btrfs_fs_device through the
903 * btrfs dev scan cli after FS has been mounted. We're still
904 * tracking a problem where systems fail mount by subvolume id
905 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800906 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700907 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800908 /*
909 * That is if the FS is _not_ mounted and if you
910 * are here, that means there is more than one
911 * disk with same uuid and devid.We keep the one
912 * with larger generation number or the last-in if
913 * generation are equal.
914 */
Anand Jain9c6d1732018-05-29 14:10:20 +0800915 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800916 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800917 }
Anand Jainb96de002014-07-03 18:22:05 +0800918
Anand Jaina9261d42018-10-15 10:45:17 +0800919 /*
920 * We are going to replace the device path for a given devid,
921 * make sure it's the same device if the device is mounted
922 */
923 if (device->bdev) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100924 int error;
925 dev_t path_dev;
Anand Jaina9261d42018-10-15 10:45:17 +0800926
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100927 error = lookup_bdev(path, &path_dev);
928 if (error) {
Anand Jaina9261d42018-10-15 10:45:17 +0800929 mutex_unlock(&fs_devices->device_list_mutex);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100930 return ERR_PTR(error);
Anand Jaina9261d42018-10-15 10:45:17 +0800931 }
932
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100933 if (device->bdev->bd_dev != path_dev) {
Anand Jaina9261d42018-10-15 10:45:17 +0800934 mutex_unlock(&fs_devices->device_list_mutex);
Johannes Thumshirn0697d9a2020-11-18 18:03:26 +0900935 /*
936 * device->fs_info may not be reliable here, so
937 * pass in a NULL instead. This avoids a
938 * possible use-after-free when the fs_info and
939 * fs_info->sb are already torn down.
940 */
941 btrfs_warn_in_rcu(NULL,
Anand Jain79dae172020-09-03 21:30:12 +0800942 "duplicate device %s devid %llu generation %llu scanned by %s (%d)",
943 path, devid, found_transid,
944 current->comm,
945 task_pid_nr(current));
Anand Jaina9261d42018-10-15 10:45:17 +0800946 return ERR_PTR(-EEXIST);
947 }
Anand Jaina9261d42018-10-15 10:45:17 +0800948 btrfs_info_in_rcu(device->fs_info,
Anand Jain79dae172020-09-03 21:30:12 +0800949 "devid %llu device path %s changed to %s scanned by %s (%d)",
950 devid, rcu_str_deref(device->name),
951 path, current->comm,
952 task_pid_nr(current));
Anand Jaina9261d42018-10-15 10:45:17 +0800953 }
954
Josef Bacik606686e2012-06-04 14:03:51 -0400955 name = rcu_string_strdup(path, GFP_NOFS);
Anand Jain9c6d1732018-05-29 14:10:20 +0800956 if (!name) {
957 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800958 return ERR_PTR(-ENOMEM);
Anand Jain9c6d1732018-05-29 14:10:20 +0800959 }
Josef Bacik606686e2012-06-04 14:03:51 -0400960 rcu_string_free(device->name);
961 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800962 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500963 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800964 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500965 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400966 }
967
Anand Jain77bdae42014-07-03 18:22:06 +0800968 /*
969 * Unmount does not free the btrfs_device struct but would zero
970 * generation along with most of the other members. So just update
971 * it back. We need it to pick the disk with largest generation
972 * (as above).
973 */
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200974 if (!fs_devices->opened) {
Anand Jain77bdae42014-07-03 18:22:06 +0800975 device->generation = found_transid;
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200976 fs_devices->latest_generation = max_t(u64, found_transid,
977 fs_devices->latest_generation);
978 }
Anand Jain77bdae42014-07-03 18:22:06 +0800979
Anand Jainf2788d22018-01-18 22:02:34 +0800980 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
981
Anand Jain9c6d1732018-05-29 14:10:20 +0800982 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800983 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400984}
985
Yan Zhenge4404d62008-12-12 10:03:26 -0500986static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
987{
988 struct btrfs_fs_devices *fs_devices;
989 struct btrfs_device *device;
990 struct btrfs_device *orig_dev;
Anand Jaind2979aa2019-08-27 15:40:45 +0800991 int ret = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -0500992
Anand Jainc1247062021-08-31 09:21:28 +0800993 lockdep_assert_held(&uuid_mutex);
994
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200995 fs_devices = alloc_fs_devices(orig->fsid, NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300996 if (IS_ERR(fs_devices))
997 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500998
Josef Bacik02db0842012-06-21 16:03:58 -0400999 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001000
1001 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -04001002 struct rcu_string *name;
1003
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001004 device = btrfs_alloc_device(NULL, &orig_dev->devid,
1005 orig_dev->uuid);
Anand Jaind2979aa2019-08-27 15:40:45 +08001006 if (IS_ERR(device)) {
1007 ret = PTR_ERR(device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001008 goto error;
Anand Jaind2979aa2019-08-27 15:40:45 +08001009 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001010
Josef Bacik606686e2012-06-04 14:03:51 -04001011 /*
1012 * This is ok to do without rcu read locked because we hold the
1013 * uuid mutex so nothing we touch in here is going to disappear.
1014 */
Anand Jaine755f782014-06-30 17:12:47 +08001015 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +01001016 name = rcu_string_strdup(orig_dev->name->str,
1017 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +08001018 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +01001019 btrfs_free_device(device);
Anand Jaind2979aa2019-08-27 15:40:45 +08001020 ret = -ENOMEM;
Anand Jaine755f782014-06-30 17:12:47 +08001021 goto error;
1022 }
1023 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -04001024 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001025
Yan Zhenge4404d62008-12-12 10:03:26 -05001026 list_add(&device->dev_list, &fs_devices->devices);
1027 device->fs_devices = fs_devices;
1028 fs_devices->num_devices++;
1029 }
1030 return fs_devices;
1031error:
1032 free_fs_devices(fs_devices);
Anand Jaind2979aa2019-08-27 15:40:45 +08001033 return ERR_PTR(ret);
Yan Zhenge4404d62008-12-12 10:03:26 -05001034}
1035
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001036static void __btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices,
Anand Jainbacce862020-11-06 16:06:33 +08001037 struct btrfs_device **latest_dev)
Chris Masondfe25022008-05-13 13:46:40 -04001038{
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001039 struct btrfs_device *device, *next;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001040
Xiao Guangrong46224702011-04-20 10:08:47 +00001041 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001042 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001043 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +08001044 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001045 &device->dev_state) &&
Anand Jain998a0672020-05-05 02:58:25 +08001046 !test_bit(BTRFS_DEV_STATE_MISSING,
1047 &device->dev_state) &&
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001048 (!*latest_dev ||
1049 device->generation > (*latest_dev)->generation)) {
1050 *latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001051 }
Yan Zheng2b820322008-11-17 21:11:30 -05001052 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001053 }
Yan Zheng2b820322008-11-17 21:11:30 -05001054
Anand Jaincf89af12020-10-30 06:53:56 +08001055 /*
1056 * We have already validated the presence of BTRFS_DEV_REPLACE_DEVID,
1057 * in btrfs_init_dev_replace() so just continue.
1058 */
1059 if (device->devid == BTRFS_DEV_REPLACE_DEVID)
1060 continue;
1061
Yan Zheng2b820322008-11-17 21:11:30 -05001062 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +01001063 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -05001064 device->bdev = NULL;
1065 fs_devices->open_devices--;
1066 }
Anand Jainebbede42017-12-04 12:54:52 +08001067 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05001068 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +08001069 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Desmond Cheong Zhi Xib2a61662021-07-27 15:13:03 +08001070 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001071 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001072 list_del_init(&device->dev_list);
1073 fs_devices->num_devices--;
David Sterbaa425f9d2018-03-20 15:47:33 +01001074 btrfs_free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -04001075 }
Yan Zheng2b820322008-11-17 21:11:30 -05001076
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001077}
1078
1079/*
1080 * After we have read the system tree and know devids belonging to this
1081 * filesystem, remove the device which does not belong there.
1082 */
Anand Jainbacce862020-11-06 16:06:33 +08001083void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices)
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001084{
1085 struct btrfs_device *latest_dev = NULL;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001086 struct btrfs_fs_devices *seed_dev;
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001087
1088 mutex_lock(&uuid_mutex);
Anand Jainbacce862020-11-06 16:06:33 +08001089 __btrfs_free_extra_devids(fs_devices, &latest_dev);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001090
1091 list_for_each_entry(seed_dev, &fs_devices->seed_list, seed_list)
Anand Jainbacce862020-11-06 16:06:33 +08001092 __btrfs_free_extra_devids(seed_dev, &latest_dev);
Yan Zheng2b820322008-11-17 21:11:30 -05001093
Miao Xie443f24f2014-07-24 11:37:15 +08001094 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001095
Chris Masondfe25022008-05-13 13:46:40 -04001096 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -04001097}
Chris Masona0af4692008-05-13 16:03:06 -04001098
Anand Jain14238812016-07-22 06:04:53 +08001099static void btrfs_close_bdev(struct btrfs_device *device)
1100{
David Sterba08ffcae2017-06-19 16:55:35 +02001101 if (!device->bdev)
1102 return;
1103
Anand Jainebbede42017-12-04 12:54:52 +08001104 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +08001105 sync_blockdev(device->bdev);
1106 invalidate_bdev(device->bdev);
1107 }
1108
David Sterba08ffcae2017-06-19 16:55:35 +02001109 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +08001110}
1111
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001112static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +08001113{
1114 struct btrfs_fs_devices *fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +08001115
Anand Jainebbede42017-12-04 12:54:52 +08001116 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +08001117 device->devid != BTRFS_DEV_REPLACE_DEVID) {
1118 list_del_init(&device->dev_alloc_list);
1119 fs_devices->rw_devices--;
1120 }
1121
Desmond Cheong Zhi Xi0d977e02021-08-21 01:50:40 +08001122 if (device->devid == BTRFS_DEV_REPLACE_DEVID)
1123 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
1124
Anand Jaine6e674b2017-12-04 12:54:54 +08001125 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jainf448341a2016-06-14 18:55:25 +08001126 fs_devices->missing_devices--;
1127
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001128 btrfs_close_bdev(device);
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001129 if (device->bdev) {
Johannes Thumshirn3fff3972019-11-26 09:40:05 +01001130 fs_devices->open_devices--;
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001131 device->bdev = NULL;
Anand Jainf448341a2016-06-14 18:55:25 +08001132 }
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001133 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Naohiro Aota5b316462020-11-10 20:26:07 +09001134 btrfs_destroy_dev_zone_info(device);
Anand Jainf448341a2016-06-14 18:55:25 +08001135
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001136 device->fs_info = NULL;
1137 atomic_set(&device->dev_stats_ccnt, 0);
1138 extent_io_tree_release(&device->alloc_state);
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001139
Filipe Manana6b225ba2021-09-08 19:05:44 +01001140 /*
1141 * Reset the flush error record. We might have a transient flush error
1142 * in this mount, and if so we aborted the current transaction and set
1143 * the fs to an error state, guaranteeing no super blocks can be further
1144 * committed. However that error might be transient and if we unmount the
1145 * filesystem and mount it again, we should allow the mount to succeed
1146 * (btrfs_check_rw_degradable() should not fail) - if after mounting the
1147 * filesystem again we still get flush errors, then we will again abort
1148 * any transaction and set the error state, guaranteeing no commits of
1149 * unsafe super blocks.
1150 */
1151 device->last_flush_error = 0;
1152
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001153 /* Verify the device is back in a pristine state */
1154 ASSERT(!test_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state));
1155 ASSERT(!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
1156 ASSERT(list_empty(&device->dev_alloc_list));
1157 ASSERT(list_empty(&device->post_commit_list));
1158 ASSERT(atomic_read(&device->reada_in_flight) == 0);
Anand Jainf448341a2016-06-14 18:55:25 +08001159}
1160
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001161static void close_fs_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001162{
Sasha Levin2037a092015-05-12 19:31:37 -04001163 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -05001164
Josef Bacik425c6ed2020-08-10 11:42:28 -04001165 lockdep_assert_held(&uuid_mutex);
1166
Yan Zheng2b820322008-11-17 21:11:30 -05001167 if (--fs_devices->opened > 0)
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001168 return;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001169
Josef Bacik425c6ed2020-08-10 11:42:28 -04001170 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list)
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001171 btrfs_close_one_device(device);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001172
Yan Zhenge4404d62008-12-12 10:03:26 -05001173 WARN_ON(fs_devices->open_devices);
1174 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001175 fs_devices->opened = 0;
Johannes Thumshirn0395d842019-11-13 11:27:27 +01001176 fs_devices->seeding = false;
Nikolay Borisovc4989c2f2020-07-15 13:48:49 +03001177 fs_devices->fs_info = NULL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001178}
1179
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001180void btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001181{
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001182 LIST_HEAD(list);
1183 struct btrfs_fs_devices *tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05001184
1185 mutex_lock(&uuid_mutex);
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001186 close_fs_devices(fs_devices);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001187 if (!fs_devices->opened)
1188 list_splice_init(&fs_devices->seed_list, &list);
Yan Zhenge4404d62008-12-12 10:03:26 -05001189
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001190 list_for_each_entry_safe(fs_devices, tmp, &list, seed_list) {
Anand Jain0226e0e2018-04-12 10:29:27 +08001191 close_fs_devices(fs_devices);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001192 list_del(&fs_devices->seed_list);
Yan Zhenge4404d62008-12-12 10:03:26 -05001193 free_fs_devices(fs_devices);
1194 }
Josef Bacik425c6ed2020-08-10 11:42:28 -04001195 mutex_unlock(&uuid_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001196}
1197
Anand Jain897fb572018-04-12 10:29:28 +08001198static int open_fs_devices(struct btrfs_fs_devices *fs_devices,
Yan Zhenge4404d62008-12-12 10:03:26 -05001199 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001200{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001201 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001202 struct btrfs_device *latest_dev = NULL;
Anand Jain96c2e062020-09-30 21:09:52 +08001203 struct btrfs_device *tmp_device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001204
Tejun Heod4d77622010-11-13 11:55:18 +01001205 flags |= FMODE_EXCL;
1206
Anand Jain96c2e062020-09-30 21:09:52 +08001207 list_for_each_entry_safe(device, tmp_device, &fs_devices->devices,
1208 dev_list) {
1209 int ret;
Chris Masona0af4692008-05-13 16:03:06 -04001210
Anand Jain96c2e062020-09-30 21:09:52 +08001211 ret = btrfs_open_one_device(fs_devices, device, flags, holder);
1212 if (ret == 0 &&
1213 (!latest_dev || device->generation > latest_dev->generation)) {
Anand Jain9f050db2017-11-09 23:45:25 +08001214 latest_dev = device;
Anand Jain96c2e062020-09-30 21:09:52 +08001215 } else if (ret == -ENODATA) {
1216 fs_devices->num_devices--;
1217 list_del(&device->dev_list);
1218 btrfs_free_device(device);
1219 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001220 }
Anand Jain1ed802c2020-04-28 23:22:25 +08001221 if (fs_devices->open_devices == 0)
1222 return -EINVAL;
1223
Yan Zheng2b820322008-11-17 21:11:30 -05001224 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001225 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001226 fs_devices->total_rw_bytes = 0;
Naohiro Aotac4a816c2020-02-25 12:56:08 +09001227 fs_devices->chunk_alloc_policy = BTRFS_CHUNK_ALLOC_REGULAR;
Anand Jain33fd2f72020-10-28 21:14:46 +08001228 fs_devices->read_policy = BTRFS_READ_POLICY_PID;
Anand Jain1ed802c2020-04-28 23:22:25 +08001229
1230 return 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001231}
1232
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07001233static int devid_cmp(void *priv, const struct list_head *a,
1234 const struct list_head *b)
Anand Jainf8e10cd2018-01-22 14:49:36 -08001235{
David Sterba214cc182021-07-26 14:15:26 +02001236 const struct btrfs_device *dev1, *dev2;
Anand Jainf8e10cd2018-01-22 14:49:36 -08001237
1238 dev1 = list_entry(a, struct btrfs_device, dev_list);
1239 dev2 = list_entry(b, struct btrfs_device, dev_list);
1240
1241 if (dev1->devid < dev2->devid)
1242 return -1;
1243 else if (dev1->devid > dev2->devid)
1244 return 1;
1245 return 0;
1246}
1247
Yan Zheng2b820322008-11-17 21:11:30 -05001248int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001249 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001250{
1251 int ret;
1252
David Sterbaf5194e32018-06-19 17:09:47 +02001253 lockdep_assert_held(&uuid_mutex);
Josef Bacik18c850f2020-07-17 15:12:27 -04001254 /*
1255 * The device_list_mutex cannot be taken here in case opening the
Christoph Hellwiga8698702021-05-25 08:12:56 +02001256 * underlying device takes further locks like open_mutex.
Josef Bacik18c850f2020-07-17 15:12:27 -04001257 *
1258 * We also don't need the lock here as this is called during mount and
1259 * exclusion is provided by uuid_mutex
1260 */
David Sterbaf5194e32018-06-19 17:09:47 +02001261
Yan Zheng2b820322008-11-17 21:11:30 -05001262 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001263 fs_devices->opened++;
1264 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001265 } else {
Anand Jainf8e10cd2018-01-22 14:49:36 -08001266 list_sort(NULL, &fs_devices->devices, devid_cmp);
Anand Jain897fb572018-04-12 10:29:28 +08001267 ret = open_fs_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001268 }
Anand Jain542c5902018-04-12 10:29:34 +08001269
Chris Mason8a4b83c2008-03-24 15:02:07 -04001270 return ret;
1271}
1272
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001273void btrfs_release_disk_super(struct btrfs_super_block *super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001274{
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001275 struct page *page = virt_to_page(super);
1276
Anand Jain6cf86a002016-02-13 10:01:29 +08001277 put_page(page);
1278}
1279
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001280static struct btrfs_super_block *btrfs_read_disk_super(struct block_device *bdev,
Naohiro Aota12659252020-11-10 20:26:14 +09001281 u64 bytenr, u64 bytenr_orig)
Anand Jain6cf86a002016-02-13 10:01:29 +08001282{
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001283 struct btrfs_super_block *disk_super;
1284 struct page *page;
Anand Jain6cf86a002016-02-13 10:01:29 +08001285 void *p;
1286 pgoff_t index;
1287
1288 /* make sure our super fits in the device */
1289 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001290 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001291
1292 /* make sure our super fits in the page */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001293 if (sizeof(*disk_super) > PAGE_SIZE)
1294 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001295
1296 /* make sure our super doesn't straddle pages on disk */
1297 index = bytenr >> PAGE_SHIFT;
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001298 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_SHIFT != index)
1299 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001300
1301 /* pull in the page with our super */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001302 page = read_cache_page_gfp(bdev->bd_inode->i_mapping, index, GFP_KERNEL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001303
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001304 if (IS_ERR(page))
1305 return ERR_CAST(page);
Anand Jain6cf86a002016-02-13 10:01:29 +08001306
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001307 p = page_address(page);
Anand Jain6cf86a002016-02-13 10:01:29 +08001308
1309 /* align our pointer to the offset of the super block */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001310 disk_super = p + offset_in_page(bytenr);
Anand Jain6cf86a002016-02-13 10:01:29 +08001311
Naohiro Aota12659252020-11-10 20:26:14 +09001312 if (btrfs_super_bytenr(disk_super) != bytenr_orig ||
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001313 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001314 btrfs_release_disk_super(p);
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001315 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001316 }
1317
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001318 if (disk_super->label[0] && disk_super->label[BTRFS_LABEL_SIZE - 1])
1319 disk_super->label[BTRFS_LABEL_SIZE - 1] = 0;
Anand Jain6cf86a002016-02-13 10:01:29 +08001320
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001321 return disk_super;
Anand Jain6cf86a002016-02-13 10:01:29 +08001322}
1323
Anand Jain228a73a2019-01-04 13:31:54 +08001324int btrfs_forget_devices(const char *path)
1325{
1326 int ret;
1327
1328 mutex_lock(&uuid_mutex);
1329 ret = btrfs_free_stale_devices(strlen(path) ? path : NULL, NULL);
1330 mutex_unlock(&uuid_mutex);
1331
1332 return ret;
1333}
1334
David Sterba6f60cbd2013-02-15 11:31:02 -07001335/*
1336 * Look for a btrfs signature on a device. This may be called out of the mount path
1337 * and we are not allowed to call set_blocksize during the scan. The superblock
1338 * is read via pagecache
1339 */
Gu Jinxiang36350e92018-07-12 14:23:16 +08001340struct btrfs_device *btrfs_scan_one_device(const char *path, fmode_t flags,
1341 void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001342{
1343 struct btrfs_super_block *disk_super;
Anand Jain4306a972018-05-29 12:28:37 +08001344 bool new_device_added = false;
Gu Jinxiang36350e92018-07-12 14:23:16 +08001345 struct btrfs_device *device = NULL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001346 struct block_device *bdev;
Naohiro Aota12659252020-11-10 20:26:14 +09001347 u64 bytenr, bytenr_orig;
1348 int ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001349
David Sterba899f9302018-06-19 16:37:36 +02001350 lockdep_assert_held(&uuid_mutex);
1351
David Sterba6f60cbd2013-02-15 11:31:02 -07001352 /*
1353 * we would like to check all the supers, but that would make
1354 * a btrfs mount succeed after a mkfs from a different FS.
1355 * So, we need to add a special mount option to scan for
1356 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1357 */
Tejun Heod4d77622010-11-13 11:55:18 +01001358 flags |= FMODE_EXCL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001359
1360 bdev = blkdev_get_by_path(path, flags, holder);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001361 if (IS_ERR(bdev))
Gu Jinxiang36350e92018-07-12 14:23:16 +08001362 return ERR_CAST(bdev);
David Sterba6f60cbd2013-02-15 11:31:02 -07001363
Naohiro Aota12659252020-11-10 20:26:14 +09001364 bytenr_orig = btrfs_sb_offset(0);
1365 ret = btrfs_sb_log_location_bdev(bdev, 0, READ, &bytenr);
1366 if (ret)
1367 return ERR_PTR(ret);
1368
1369 disk_super = btrfs_read_disk_super(bdev, bytenr, bytenr_orig);
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001370 if (IS_ERR(disk_super)) {
1371 device = ERR_CAST(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001372 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001373 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001374
Anand Jain4306a972018-05-29 12:28:37 +08001375 device = device_list_add(path, disk_super, &new_device_added);
Gu Jinxiang36350e92018-07-12 14:23:16 +08001376 if (!IS_ERR(device)) {
Anand Jain4306a972018-05-29 12:28:37 +08001377 if (new_device_added)
1378 btrfs_free_stale_devices(path, device);
1379 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001380
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001381 btrfs_release_disk_super(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001382
1383error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001384 blkdev_put(bdev, flags);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001385
Gu Jinxiang36350e92018-07-12 14:23:16 +08001386 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001387}
Chris Mason0b86a832008-03-24 15:01:56 -04001388
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001389/*
1390 * Try to find a chunk that intersects [start, start + len] range and when one
1391 * such is found, record the end of it in *start
1392 */
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001393static bool contains_pending_extent(struct btrfs_device *device, u64 *start,
1394 u64 len)
Josef Bacik6df9a952013-06-27 13:22:46 -04001395{
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001396 u64 physical_start, physical_end;
Josef Bacik6df9a952013-06-27 13:22:46 -04001397
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001398 lockdep_assert_held(&device->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04001399
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001400 if (!find_first_extent_bit(&device->alloc_state, *start,
1401 &physical_start, &physical_end,
1402 CHUNK_ALLOCATED, NULL)) {
Filipe Mananac152b632015-05-14 10:46:03 +01001403
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001404 if (in_range(physical_start, *start, len) ||
1405 in_range(*start, physical_start,
1406 physical_end - physical_start)) {
1407 *start = physical_end + 1;
1408 return true;
Josef Bacik6df9a952013-06-27 13:22:46 -04001409 }
1410 }
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001411 return false;
Josef Bacik6df9a952013-06-27 13:22:46 -04001412}
1413
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001414static u64 dev_extent_search_start(struct btrfs_device *device, u64 start)
1415{
1416 switch (device->fs_devices->chunk_alloc_policy) {
1417 case BTRFS_CHUNK_ALLOC_REGULAR:
1418 /*
1419 * We don't want to overwrite the superblock on the drive nor
1420 * any area used by the boot loader (grub for example), so we
1421 * make sure to start at an offset of at least 1MB.
1422 */
1423 return max_t(u64, start, SZ_1M);
Naohiro Aota1cd61212021-02-04 19:21:48 +09001424 case BTRFS_CHUNK_ALLOC_ZONED:
1425 /*
1426 * We don't care about the starting region like regular
1427 * allocator, because we anyway use/reserve the first two zones
1428 * for superblock logging.
1429 */
1430 return ALIGN(start, device->zone_info->zone_size);
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001431 default:
1432 BUG();
1433 }
1434}
1435
Naohiro Aota1cd61212021-02-04 19:21:48 +09001436static bool dev_extent_hole_check_zoned(struct btrfs_device *device,
1437 u64 *hole_start, u64 *hole_size,
1438 u64 num_bytes)
1439{
1440 u64 zone_size = device->zone_info->zone_size;
1441 u64 pos;
1442 int ret;
1443 bool changed = false;
1444
1445 ASSERT(IS_ALIGNED(*hole_start, zone_size));
1446
1447 while (*hole_size > 0) {
1448 pos = btrfs_find_allocatable_zones(device, *hole_start,
1449 *hole_start + *hole_size,
1450 num_bytes);
1451 if (pos != *hole_start) {
1452 *hole_size = *hole_start + *hole_size - pos;
1453 *hole_start = pos;
1454 changed = true;
1455 if (*hole_size < num_bytes)
1456 break;
1457 }
1458
1459 ret = btrfs_ensure_empty_zones(device, pos, num_bytes);
1460
1461 /* Range is ensured to be empty */
1462 if (!ret)
1463 return changed;
1464
1465 /* Given hole range was invalid (outside of device) */
1466 if (ret == -ERANGE) {
1467 *hole_start += *hole_size;
Johannes Thumshirnd6f67af2021-05-10 22:39:38 +09001468 *hole_size = 0;
Jiapeng Chong7000bab2021-03-03 17:45:28 +08001469 return true;
Naohiro Aota1cd61212021-02-04 19:21:48 +09001470 }
1471
1472 *hole_start += zone_size;
1473 *hole_size -= zone_size;
1474 changed = true;
1475 }
1476
1477 return changed;
1478}
1479
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001480/**
1481 * dev_extent_hole_check - check if specified hole is suitable for allocation
1482 * @device: the device which we have the hole
1483 * @hole_start: starting position of the hole
1484 * @hole_size: the size of the hole
1485 * @num_bytes: the size of the free space that we need
1486 *
Naohiro Aota1cd61212021-02-04 19:21:48 +09001487 * This function may modify @hole_start and @hole_size to reflect the suitable
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001488 * position for allocation. Returns 1 if hole position is updated, 0 otherwise.
1489 */
1490static bool dev_extent_hole_check(struct btrfs_device *device, u64 *hole_start,
1491 u64 *hole_size, u64 num_bytes)
1492{
1493 bool changed = false;
1494 u64 hole_end = *hole_start + *hole_size;
1495
Naohiro Aota1cd61212021-02-04 19:21:48 +09001496 for (;;) {
1497 /*
1498 * Check before we set max_hole_start, otherwise we could end up
1499 * sending back this offset anyway.
1500 */
1501 if (contains_pending_extent(device, hole_start, *hole_size)) {
1502 if (hole_end >= *hole_start)
1503 *hole_size = hole_end - *hole_start;
1504 else
1505 *hole_size = 0;
1506 changed = true;
1507 }
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001508
Naohiro Aota1cd61212021-02-04 19:21:48 +09001509 switch (device->fs_devices->chunk_alloc_policy) {
1510 case BTRFS_CHUNK_ALLOC_REGULAR:
1511 /* No extra check */
1512 break;
1513 case BTRFS_CHUNK_ALLOC_ZONED:
1514 if (dev_extent_hole_check_zoned(device, hole_start,
1515 hole_size, num_bytes)) {
1516 changed = true;
1517 /*
1518 * The changed hole can contain pending extent.
1519 * Loop again to check that.
1520 */
1521 continue;
1522 }
1523 break;
1524 default:
1525 BUG();
1526 }
1527
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001528 break;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001529 }
1530
1531 return changed;
1532}
Josef Bacik6df9a952013-06-27 13:22:46 -04001533
Chris Mason0b86a832008-03-24 15:01:56 -04001534/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001535 * find_free_dev_extent_start - find free space in the specified device
1536 * @device: the device which we search the free space in
1537 * @num_bytes: the size of the free space that we need
1538 * @search_start: the position from which to begin the search
1539 * @start: store the start of the free space.
1540 * @len: the size of the free space. that we find, or the size
1541 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001542 *
Chris Mason0b86a832008-03-24 15:01:56 -04001543 * this uses a pretty simple search, the expectation is that it is
1544 * called very infrequently and that a given device has a small number
1545 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001546 *
1547 * @start is used to store the start of the free space if we find. But if we
1548 * don't find suitable free space, it will be used to store the start position
1549 * of the max free space.
1550 *
1551 * @len is used to store the size of the free space that we find.
1552 * But if we don't find suitable free space, it is used to store the size of
1553 * the max free space.
Qu Wenruo135da972019-07-19 14:51:42 +08001554 *
1555 * NOTE: This function will search *commit* root of device tree, and does extra
1556 * check to ensure dev extents are not double allocated.
1557 * This makes the function safe to allocate dev extents but may not report
1558 * correct usable device space, as device extent freed in current transaction
David Sterba1a9fd412021-05-21 17:42:23 +02001559 * is not reported as available.
Chris Mason0b86a832008-03-24 15:01:56 -04001560 */
Qu Wenruo9e3246a2019-07-19 14:51:41 +08001561static int find_free_dev_extent_start(struct btrfs_device *device,
1562 u64 num_bytes, u64 search_start, u64 *start,
1563 u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001564{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001565 struct btrfs_fs_info *fs_info = device->fs_info;
1566 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001567 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001568 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001569 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001570 u64 hole_size;
1571 u64 max_hole_start;
1572 u64 max_hole_size;
1573 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001574 u64 search_end = device->total_bytes;
1575 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001576 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001577 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001578
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001579 search_start = dev_extent_search_start(device, search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001580
Naohiro Aota1cd61212021-02-04 19:21:48 +09001581 WARN_ON(device->zone_info &&
1582 !IS_ALIGNED(num_bytes, device->zone_info->zone_size));
1583
Josef Bacik6df9a952013-06-27 13:22:46 -04001584 path = btrfs_alloc_path();
1585 if (!path)
1586 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001587
Miao Xie7bfc8372011-01-05 10:07:26 +00001588 max_hole_start = search_start;
1589 max_hole_size = 0;
1590
Zhao Leif2ab7612015-02-16 18:52:17 +08001591again:
Anand Jain401e29c2017-12-04 12:54:55 +08001592 if (search_start >= search_end ||
1593 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001594 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001595 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001596 }
1597
David Sterbae4058b52015-11-27 16:31:35 +01001598 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001599 path->search_commit_root = 1;
1600 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001601
Chris Mason0b86a832008-03-24 15:01:56 -04001602 key.objectid = device->devid;
1603 key.offset = search_start;
1604 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001605
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03001606 ret = btrfs_search_backwards(root, &key, path);
Chris Mason0b86a832008-03-24 15:01:56 -04001607 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001608 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001609
Chris Mason0b86a832008-03-24 15:01:56 -04001610 while (1) {
1611 l = path->nodes[0];
1612 slot = path->slots[0];
1613 if (slot >= btrfs_header_nritems(l)) {
1614 ret = btrfs_next_leaf(root, path);
1615 if (ret == 0)
1616 continue;
1617 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001618 goto out;
1619
1620 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001621 }
1622 btrfs_item_key_to_cpu(l, &key, slot);
1623
1624 if (key.objectid < device->devid)
1625 goto next;
1626
1627 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001628 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001629
David Sterba962a2982014-06-04 18:41:45 +02001630 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001631 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001632
Miao Xie7bfc8372011-01-05 10:07:26 +00001633 if (key.offset > search_start) {
1634 hole_size = key.offset - search_start;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001635 dev_extent_hole_check(device, &search_start, &hole_size,
1636 num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04001637
Miao Xie7bfc8372011-01-05 10:07:26 +00001638 if (hole_size > max_hole_size) {
1639 max_hole_start = search_start;
1640 max_hole_size = hole_size;
1641 }
1642
1643 /*
1644 * If this free space is greater than which we need,
1645 * it must be the max free space that we have found
1646 * until now, so max_hole_start must point to the start
1647 * of this free space and the length of this free space
1648 * is stored in max_hole_size. Thus, we return
1649 * max_hole_start and max_hole_size and go back to the
1650 * caller.
1651 */
1652 if (hole_size >= num_bytes) {
1653 ret = 0;
1654 goto out;
1655 }
1656 }
1657
Chris Mason0b86a832008-03-24 15:01:56 -04001658 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001659 extent_end = key.offset + btrfs_dev_extent_length(l,
1660 dev_extent);
1661 if (extent_end > search_start)
1662 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001663next:
1664 path->slots[0]++;
1665 cond_resched();
1666 }
Chris Mason0b86a832008-03-24 15:01:56 -04001667
liubo38c01b92011-08-02 02:39:03 +00001668 /*
1669 * At this point, search_start should be the end of
1670 * allocated dev extents, and when shrinking the device,
1671 * search_end may be smaller than search_start.
1672 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001673 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001674 hole_size = search_end - search_start;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001675 if (dev_extent_hole_check(device, &search_start, &hole_size,
1676 num_bytes)) {
Zhao Leif2ab7612015-02-16 18:52:17 +08001677 btrfs_release_path(path);
1678 goto again;
1679 }
Chris Mason0b86a832008-03-24 15:01:56 -04001680
Zhao Leif2ab7612015-02-16 18:52:17 +08001681 if (hole_size > max_hole_size) {
1682 max_hole_start = search_start;
1683 max_hole_size = hole_size;
1684 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001685 }
1686
Miao Xie7bfc8372011-01-05 10:07:26 +00001687 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001688 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001689 ret = -ENOSPC;
1690 else
1691 ret = 0;
1692
1693out:
Yan Zheng2b820322008-11-17 21:11:30 -05001694 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001695 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001696 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001697 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001698 return ret;
1699}
1700
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02001701int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes,
Jeff Mahoney499f3772015-06-15 09:41:17 -04001702 u64 *start, u64 *len)
1703{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001704 /* FIXME use last free of some kind */
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02001705 return find_free_dev_extent_start(device, num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001706}
1707
Christoph Hellwigb2950862008-12-02 09:54:17 -05001708static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001709 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001710 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001711{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001712 struct btrfs_fs_info *fs_info = device->fs_info;
1713 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001714 int ret;
1715 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001716 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001717 struct btrfs_key found_key;
1718 struct extent_buffer *leaf = NULL;
1719 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001720
1721 path = btrfs_alloc_path();
1722 if (!path)
1723 return -ENOMEM;
1724
1725 key.objectid = device->devid;
1726 key.offset = start;
1727 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001728again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001729 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001730 if (ret > 0) {
1731 ret = btrfs_previous_item(root, path, key.objectid,
1732 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001733 if (ret)
1734 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001735 leaf = path->nodes[0];
1736 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1737 extent = btrfs_item_ptr(leaf, path->slots[0],
1738 struct btrfs_dev_extent);
1739 BUG_ON(found_key.offset > start || found_key.offset +
1740 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001741 key = found_key;
1742 btrfs_release_path(path);
1743 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001744 } else if (ret == 0) {
1745 leaf = path->nodes[0];
1746 extent = btrfs_item_ptr(leaf, path->slots[0],
1747 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001748 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001749 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001750 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001751
Miao Xie2196d6e2014-09-03 21:35:41 +08001752 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1753
Chris Mason8f18cf12008-04-25 16:53:30 -04001754 ret = btrfs_del_item(trans, root, path);
Filipe Manana79bd3712021-06-29 14:43:06 +01001755 if (ret == 0)
Josef Bacik3204d332015-09-24 10:46:10 -04001756 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001757out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001758 btrfs_free_path(path);
1759 return ret;
1760}
1761
Josef Bacik6df9a952013-06-27 13:22:46 -04001762static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001763{
Josef Bacik6df9a952013-06-27 13:22:46 -04001764 struct extent_map_tree *em_tree;
1765 struct extent_map *em;
1766 struct rb_node *n;
1767 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001768
David Sterbac8bf1b62019-05-17 11:43:17 +02001769 em_tree = &fs_info->mapping_tree;
Josef Bacik6df9a952013-06-27 13:22:46 -04001770 read_lock(&em_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08001771 n = rb_last(&em_tree->map.rb_root);
Josef Bacik6df9a952013-06-27 13:22:46 -04001772 if (n) {
1773 em = rb_entry(n, struct extent_map, rb_node);
1774 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001775 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001776 read_unlock(&em_tree->lock);
1777
Chris Mason0b86a832008-03-24 15:01:56 -04001778 return ret;
1779}
1780
Ilya Dryomov53f10652013-08-12 14:33:01 +03001781static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1782 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001783{
1784 int ret;
1785 struct btrfs_key key;
1786 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001787 struct btrfs_path *path;
1788
Yan Zheng2b820322008-11-17 21:11:30 -05001789 path = btrfs_alloc_path();
1790 if (!path)
1791 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001792
1793 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1794 key.type = BTRFS_DEV_ITEM_KEY;
1795 key.offset = (u64)-1;
1796
Ilya Dryomov53f10652013-08-12 14:33:01 +03001797 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001798 if (ret < 0)
1799 goto error;
1800
Anand Jaina06dee4d2019-08-27 15:40:44 +08001801 if (ret == 0) {
1802 /* Corruption */
1803 btrfs_err(fs_info, "corrupted chunk tree devid -1 matched");
1804 ret = -EUCLEAN;
1805 goto error;
1806 }
Chris Mason0b86a832008-03-24 15:01:56 -04001807
Ilya Dryomov53f10652013-08-12 14:33:01 +03001808 ret = btrfs_previous_item(fs_info->chunk_root, path,
1809 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001810 BTRFS_DEV_ITEM_KEY);
1811 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001812 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001813 } else {
1814 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1815 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001816 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001817 }
1818 ret = 0;
1819error:
Yan Zheng2b820322008-11-17 21:11:30 -05001820 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001821 return ret;
1822}
1823
1824/*
1825 * the device information is stored in the chunk root
1826 * the btrfs_device struct should be fully filled in
1827 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001828static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001829 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001830{
1831 int ret;
1832 struct btrfs_path *path;
1833 struct btrfs_dev_item *dev_item;
1834 struct extent_buffer *leaf;
1835 struct btrfs_key key;
1836 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001837
Chris Mason0b86a832008-03-24 15:01:56 -04001838 path = btrfs_alloc_path();
1839 if (!path)
1840 return -ENOMEM;
1841
Chris Mason0b86a832008-03-24 15:01:56 -04001842 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1843 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001844 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001845
Nikolay Borisov8e87e852018-07-20 19:37:47 +03001846 ret = btrfs_insert_empty_item(trans, trans->fs_info->chunk_root, path,
1847 &key, sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001848 if (ret)
1849 goto out;
1850
1851 leaf = path->nodes[0];
1852 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1853
1854 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001855 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001856 btrfs_set_device_type(leaf, dev_item, device->type);
1857 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1858 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1859 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001860 btrfs_set_device_total_bytes(leaf, dev_item,
1861 btrfs_device_get_disk_total_bytes(device));
1862 btrfs_set_device_bytes_used(leaf, dev_item,
1863 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001864 btrfs_set_device_group(leaf, dev_item, 0);
1865 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1866 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001867 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001868
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001869 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001870 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001871 ptr = btrfs_device_fsid(dev_item);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02001872 write_extent_buffer(leaf, trans->fs_info->fs_devices->metadata_uuid,
1873 ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001874 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001875
Yan Zheng2b820322008-11-17 21:11:30 -05001876 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001877out:
1878 btrfs_free_path(path);
1879 return ret;
1880}
Chris Mason8f18cf12008-04-25 16:53:30 -04001881
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001882/*
1883 * Function to update ctime/mtime for a given device path.
1884 * Mainly used for ctime/mtime based probe like libblkid.
1885 */
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001886static void update_dev_time(struct block_device *bdev)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001887{
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001888 struct inode *inode = bdev->bd_inode;
1889 struct timespec64 now;
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001890
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001891 /* Shouldn't happen but just in case. */
1892 if (!inode)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001893 return;
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001894
1895 now = current_time(inode);
1896 generic_update_time(inode, &now, S_MTIME | S_CTIME);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001897}
1898
David Sterbaf331a952019-03-20 16:31:53 +01001899static int btrfs_rm_dev_item(struct btrfs_device *device)
Chris Masona061fc82008-05-07 11:43:44 -04001900{
David Sterbaf331a952019-03-20 16:31:53 +01001901 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001902 int ret;
1903 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001904 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001905 struct btrfs_trans_handle *trans;
1906
Chris Masona061fc82008-05-07 11:43:44 -04001907 path = btrfs_alloc_path();
1908 if (!path)
1909 return -ENOMEM;
1910
Yan, Zhenga22285a2010-05-16 10:48:46 -04001911 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001912 if (IS_ERR(trans)) {
1913 btrfs_free_path(path);
1914 return PTR_ERR(trans);
1915 }
Chris Masona061fc82008-05-07 11:43:44 -04001916 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1917 key.type = BTRFS_DEV_ITEM_KEY;
1918 key.offset = device->devid;
1919
1920 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001921 if (ret) {
1922 if (ret > 0)
1923 ret = -ENOENT;
1924 btrfs_abort_transaction(trans, ret);
1925 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001926 goto out;
1927 }
1928
1929 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001930 if (ret) {
1931 btrfs_abort_transaction(trans, ret);
1932 btrfs_end_transaction(trans);
1933 }
1934
Chris Masona061fc82008-05-07 11:43:44 -04001935out:
1936 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001937 if (!ret)
1938 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001939 return ret;
1940}
1941
David Sterba3cc31a02016-02-15 16:00:26 +01001942/*
1943 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1944 * filesystem. It's up to the caller to adjust that number regarding eg. device
1945 * replace.
1946 */
1947static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1948 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001949{
Chris Masona061fc82008-05-07 11:43:44 -04001950 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001951 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001952 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001953
Miao Xiede98ced2013-01-29 10:13:12 +00001954 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001955 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001956
Anand Jainbd45ffb2016-02-13 10:01:34 +08001957 all_avail = fs_info->avail_data_alloc_bits |
1958 fs_info->avail_system_alloc_bits |
1959 fs_info->avail_metadata_alloc_bits;
1960 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001961
David Sterba418775a2016-02-15 16:28:14 +01001962 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
Anand Jain41a6e892018-04-25 19:01:43 +08001963 if (!(all_avail & btrfs_raid_array[i].bg_flag))
David Sterba418775a2016-02-15 16:28:14 +01001964 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001965
Anand Jainefc222f2021-07-28 07:03:05 +08001966 if (num_devices < btrfs_raid_array[i].devs_min)
1967 return btrfs_raid_array[i].mindev_error;
Anand Jainbd45ffb2016-02-13 10:01:34 +08001968 }
1969
1970 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001971}
1972
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001973static struct btrfs_device * btrfs_find_next_active_device(
1974 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001975{
1976 struct btrfs_device *next_device;
1977
1978 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1979 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08001980 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
1981 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08001982 return next_device;
1983 }
1984
1985 return NULL;
1986}
1987
1988/*
1989 * Helper function to check if the given device is part of s_bdev / latest_bdev
1990 * and replace it with the provided or the next active device, in the context
1991 * where this function called, there should be always be another device (or
1992 * this_dev) which is active.
1993 */
David Sterbab105e922019-10-01 19:57:35 +02001994void __cold btrfs_assign_next_active_device(struct btrfs_device *device,
Anand Jaine493e8f2020-09-05 01:34:34 +08001995 struct btrfs_device *next_device)
Anand Jain88acff62016-05-03 17:44:43 +08001996{
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03001997 struct btrfs_fs_info *fs_info = device->fs_info;
Anand Jain88acff62016-05-03 17:44:43 +08001998
Anand Jaine493e8f2020-09-05 01:34:34 +08001999 if (!next_device)
Anand Jain88acff62016-05-03 17:44:43 +08002000 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
Anand Jaine493e8f2020-09-05 01:34:34 +08002001 device);
Anand Jain88acff62016-05-03 17:44:43 +08002002 ASSERT(next_device);
2003
2004 if (fs_info->sb->s_bdev &&
2005 (fs_info->sb->s_bdev == device->bdev))
2006 fs_info->sb->s_bdev = next_device->bdev;
2007
2008 if (fs_info->fs_devices->latest_bdev == device->bdev)
2009 fs_info->fs_devices->latest_bdev = next_device->bdev;
2010}
2011
Anand Jain1da73962018-08-10 13:53:21 +08002012/*
2013 * Return btrfs_fs_devices::num_devices excluding the device that's being
2014 * currently replaced.
2015 */
2016static u64 btrfs_num_devices(struct btrfs_fs_info *fs_info)
2017{
2018 u64 num_devices = fs_info->fs_devices->num_devices;
2019
David Sterbacb5583d2018-09-07 16:11:23 +02002020 down_read(&fs_info->dev_replace.rwsem);
Anand Jain1da73962018-08-10 13:53:21 +08002021 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
2022 ASSERT(num_devices > 1);
2023 num_devices--;
2024 }
David Sterbacb5583d2018-09-07 16:11:23 +02002025 up_read(&fs_info->dev_replace.rwsem);
Anand Jain1da73962018-08-10 13:53:21 +08002026
2027 return num_devices;
2028}
2029
Josef Bacik313b0852020-08-20 11:18:26 -04002030void btrfs_scratch_superblocks(struct btrfs_fs_info *fs_info,
2031 struct block_device *bdev,
2032 const char *device_path)
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002033{
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002034 struct btrfs_super_block *disk_super;
2035 int copy_num;
2036
2037 if (!bdev)
2038 return;
2039
2040 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; copy_num++) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002041 struct page *page;
2042 int ret;
2043
2044 disk_super = btrfs_read_dev_one_super(bdev, copy_num);
2045 if (IS_ERR(disk_super))
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002046 continue;
2047
Naohiro Aota12659252020-11-10 20:26:14 +09002048 if (bdev_is_zoned(bdev)) {
2049 btrfs_reset_sb_log_zones(bdev, copy_num);
2050 continue;
2051 }
2052
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002053 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002054
2055 page = virt_to_page(disk_super);
2056 set_page_dirty(page);
2057 lock_page(page);
2058 /* write_on_page() unlocks the page */
2059 ret = write_one_page(page);
2060 if (ret)
2061 btrfs_warn(fs_info,
2062 "error clearing superblock number %d (%d)",
2063 copy_num, ret);
2064 btrfs_release_disk_super(disk_super);
2065
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002066 }
2067
2068 /* Notify udev that device has changed */
2069 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
2070
2071 /* Update ctime/mtime for device path for libblkid */
Josef Bacik8f96a5b2021-07-27 17:01:16 -04002072 update_dev_time(bdev);
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002073}
2074
David Sterbada353f62017-02-14 17:55:53 +01002075int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
Josef Bacik3fa421d2021-07-27 17:01:17 -04002076 u64 devid, struct block_device **bdev, fmode_t *mode)
Anand Jainf1fa7f22016-02-13 10:01:33 +08002077{
2078 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002079 struct btrfs_fs_devices *cur_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002080 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002081 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002082 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002083
2084 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002085
Anand Jain1da73962018-08-10 13:53:21 +08002086 num_devices = btrfs_num_devices(fs_info);
Chris Masona061fc82008-05-07 11:43:44 -04002087
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002088 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08002089 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04002090 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002091
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002092 device = btrfs_find_device_by_devspec(fs_info, devid, device_path);
2093
2094 if (IS_ERR(device)) {
2095 if (PTR_ERR(device) == -ENOENT &&
Qu Wenruoe4571b82021-08-06 18:24:15 +08002096 device_path && strcmp(device_path, "missing") == 0)
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002097 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
2098 else
2099 ret = PTR_ERR(device);
Chris Masona061fc82008-05-07 11:43:44 -04002100 goto out;
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002101 }
Yan Zheng2b820322008-11-17 21:11:30 -05002102
Omar Sandovaleede2bf2016-11-03 10:28:12 -07002103 if (btrfs_pinned_by_swapfile(fs_info, device)) {
2104 btrfs_warn_in_rcu(fs_info,
2105 "cannot remove device %s (devid %llu) due to active swapfile",
2106 rcu_str_deref(device->name), device->devid);
2107 ret = -ETXTBSY;
2108 goto out;
2109 }
2110
Anand Jain401e29c2017-12-04 12:54:55 +08002111 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00002112 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08002113 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002114 }
2115
Anand Jainebbede42017-12-04 12:54:52 +08002116 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
2117 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00002118 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08002119 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05002120 }
2121
Anand Jainebbede42017-12-04 12:54:52 +08002122 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002123 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002124 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002125 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02002126 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002127 }
Chris Masona061fc82008-05-07 11:43:44 -04002128
Carey Underwoodd7901552013-03-04 16:37:06 -06002129 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002130 ret = btrfs_shrink_device(device, 0);
Filipe Manana66d204a2020-10-12 11:55:24 +01002131 if (!ret)
2132 btrfs_reada_remove_dev(device);
Carey Underwoodd7901552013-03-04 16:37:06 -06002133 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002134 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002135 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002136
Stefan Behrens63a212a2012-11-05 18:29:28 +01002137 /*
2138 * TODO: the superblock still includes this device in its num_devices
2139 * counter although write_all_supers() is not locked out. This
2140 * could give a filesystem state which requires a degraded mount.
2141 */
David Sterbaf331a952019-03-20 16:31:53 +01002142 ret = btrfs_rm_dev_item(device);
Chris Masona061fc82008-05-07 11:43:44 -04002143 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002144 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002145
Anand Jaine12c9622017-12-04 12:54:53 +08002146 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
David Sterba163e97e2019-03-20 16:32:55 +01002147 btrfs_scrub_cancel_dev(device);
Chris Masone5e9a522009-06-10 15:17:02 -04002148
2149 /*
2150 * the device list mutex makes sure that we don't change
2151 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01002152 * the device supers. Whoever is writing all supers, should
2153 * lock the device list mutex before getting the number of
2154 * devices in the super block (super_copy). Conversely,
2155 * whoever updates the number of devices in the super block
2156 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04002157 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002158
Anand Jain41a52a02018-04-12 10:29:31 +08002159 /*
2160 * In normal cases the cur_devices == fs_devices. But in case
2161 * of deleting a seed device, the cur_devices should point to
Su Yue9675ea82021-08-18 12:15:48 +08002162 * its own fs_devices listed under the fs_devices->seed_list.
Anand Jain41a52a02018-04-12 10:29:31 +08002163 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002164 cur_devices = device->fs_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002165 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002166 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002167
Anand Jain41a52a02018-04-12 10:29:31 +08002168 cur_devices->num_devices--;
2169 cur_devices->total_devices--;
Anand Jainb4993e62018-07-03 17:07:23 +08002170 /* Update total_devices of the parent fs_devices if it's seed */
2171 if (cur_devices != fs_devices)
2172 fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05002173
Anand Jaine6e674b2017-12-04 12:54:54 +08002174 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jain41a52a02018-04-12 10:29:31 +08002175 cur_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05002176
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002177 btrfs_assign_next_active_device(device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05002178
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002179 if (device->bdev) {
Anand Jain41a52a02018-04-12 10:29:31 +08002180 cur_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002181 /* remove sysfs entry */
Anand Jain53f8a742020-09-05 01:34:27 +08002182 btrfs_sysfs_remove_device(device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002183 }
Anand Jain99994cd2014-06-03 11:36:00 +08002184
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002185 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
2186 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
Anand Jainb5185192018-04-12 10:29:30 +08002187 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002188
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002189 /*
Josef Bacik3fa421d2021-07-27 17:01:17 -04002190 * At this point, the device is zero sized and detached from the
2191 * devices list. All that's left is to zero out the old supers and
2192 * free the device.
2193 *
2194 * We cannot call btrfs_close_bdev() here because we're holding the sb
2195 * write lock, and blkdev_put() will pull in the ->open_mutex on the
2196 * block device and it's dependencies. Instead just flush the device
2197 * and let the caller do the final blkdev_put.
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002198 */
Josef Bacik3fa421d2021-07-27 17:01:17 -04002199 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002200 btrfs_scratch_superblocks(fs_info, device->bdev,
2201 device->name->str);
Josef Bacik3fa421d2021-07-27 17:01:17 -04002202 if (device->bdev) {
2203 sync_blockdev(device->bdev);
2204 invalidate_bdev(device->bdev);
2205 }
2206 }
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002207
Josef Bacik3fa421d2021-07-27 17:01:17 -04002208 *bdev = device->bdev;
2209 *mode = device->mode;
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002210 synchronize_rcu();
2211 btrfs_free_device(device);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002212
Xiao Guangrong1f781602011-04-20 10:09:16 +00002213 if (cur_devices->open_devices == 0) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002214 list_del_init(&cur_devices->seed_list);
Anand Jain0226e0e2018-04-12 10:29:27 +08002215 close_fs_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002216 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002217 }
2218
Chris Masona061fc82008-05-07 11:43:44 -04002219out:
2220 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002221 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08002222
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002223error_undo:
Filipe Manana66d204a2020-10-12 11:55:24 +01002224 btrfs_reada_undo_remove_dev(device);
Anand Jainebbede42017-12-04 12:54:52 +08002225 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002226 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002227 list_add(&device->dev_alloc_list,
Anand Jainb5185192018-04-12 10:29:30 +08002228 &fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002229 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002230 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002231 }
Anand Jain24fc5722016-02-13 10:01:36 +08002232 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002233}
2234
Nikolay Borisov68a9db52018-07-20 19:37:48 +03002235void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002236{
Anand Jaind51908c2014-08-13 14:24:19 +08002237 struct btrfs_fs_devices *fs_devices;
2238
Nikolay Borisov68a9db52018-07-20 19:37:48 +03002239 lockdep_assert_held(&srcdev->fs_info->fs_devices->device_list_mutex);
Ilya Dryomov13572722013-10-02 20:41:01 +03002240
Anand Jain25e8e912014-08-20 10:56:56 +08002241 /*
2242 * in case of fs with no seed, srcdev->fs_devices will point
2243 * to fs_devices of fs_info. However when the dev being replaced is
2244 * a seed dev it will point to the seed's local fs_devices. In short
2245 * srcdev will have its correct fs_devices in both the cases.
2246 */
2247 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002248
Stefan Behrense93c89c2012-11-05 17:33:06 +01002249 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002250 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002251 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002252 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002253 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002254
Anand Jainebbede42017-12-04 12:54:52 +08002255 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002256 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002257
Miao Xie82372bc2014-09-03 21:35:44 +08002258 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002259 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002260}
2261
David Sterba65237ee2019-03-20 16:34:54 +01002262void btrfs_rm_dev_replace_free_srcdev(struct btrfs_device *srcdev)
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002263{
2264 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002265
Josef Bacika466c852020-08-20 11:18:27 -04002266 mutex_lock(&uuid_mutex);
2267
Anand Jain14238812016-07-22 06:04:53 +08002268 btrfs_close_bdev(srcdev);
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002269 synchronize_rcu();
2270 btrfs_free_device(srcdev);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002271
Anand Jain94d5f0c2014-08-13 14:24:22 +08002272 /* if this is no devs we rather delete the fs_devices */
2273 if (!fs_devices->num_devices) {
Anand Jain6dd38f82017-10-17 06:53:50 +08002274 /*
2275 * On a mounted FS, num_devices can't be zero unless it's a
2276 * seed. In case of a seed device being replaced, the replace
2277 * target added to the sprout FS, so there will be no more
2278 * device left under the seed FS.
2279 */
2280 ASSERT(fs_devices->seeding);
2281
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002282 list_del_init(&fs_devices->seed_list);
Anand Jain0226e0e2018-04-12 10:29:27 +08002283 close_fs_devices(fs_devices);
Anand Jain8bef8402014-08-13 14:24:23 +08002284 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002285 }
Josef Bacika466c852020-08-20 11:18:27 -04002286 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002287}
2288
Nikolay Borisov4f5ad7b2018-07-20 19:37:51 +03002289void btrfs_destroy_dev_replace_tgtdev(struct btrfs_device *tgtdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002290{
Nikolay Borisov4f5ad7b2018-07-20 19:37:51 +03002291 struct btrfs_fs_devices *fs_devices = tgtdev->fs_info->fs_devices;
Anand Jaind2ff1b22015-03-10 06:38:42 +08002292
Anand Jaind9a071f2018-04-12 10:29:38 +08002293 mutex_lock(&fs_devices->device_list_mutex);
2294
Anand Jain53f8a742020-09-05 01:34:27 +08002295 btrfs_sysfs_remove_device(tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002296
Anand Jain779bf3fe2016-04-18 16:51:23 +08002297 if (tgtdev->bdev)
Anand Jaind9a071f2018-04-12 10:29:38 +08002298 fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002299
Anand Jaind9a071f2018-04-12 10:29:38 +08002300 fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002301
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002302 btrfs_assign_next_active_device(tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002303
Stefan Behrense93c89c2012-11-05 17:33:06 +01002304 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002305
Anand Jaind9a071f2018-04-12 10:29:38 +08002306 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002307
2308 /*
2309 * The update_dev_time() with in btrfs_scratch_superblocks()
2310 * may lead to a call to btrfs_show_devname() which will try
2311 * to hold device_list_mutex. And here this device
2312 * is already out of device list, so we don't have to hold
2313 * the device_list_mutex lock.
2314 */
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002315 btrfs_scratch_superblocks(tgtdev->fs_info, tgtdev->bdev,
2316 tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002317
2318 btrfs_close_bdev(tgtdev);
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002319 synchronize_rcu();
2320 btrfs_free_device(tgtdev);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002321}
2322
Nikolay Borisovb444ad42018-09-03 12:46:12 +03002323static struct btrfs_device *btrfs_find_device_by_path(
2324 struct btrfs_fs_info *fs_info, const char *device_path)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002325{
2326 int ret = 0;
2327 struct btrfs_super_block *disk_super;
2328 u64 devid;
2329 u8 *dev_uuid;
2330 struct block_device *bdev;
Nikolay Borisovb444ad42018-09-03 12:46:12 +03002331 struct btrfs_device *device;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002332
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002333 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002334 fs_info->bdev_holder, 0, &bdev, &disk_super);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002335 if (ret)
Nikolay Borisovb444ad42018-09-03 12:46:12 +03002336 return ERR_PTR(ret);
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002337
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002338 devid = btrfs_stack_device_id(&disk_super->dev_item);
2339 dev_uuid = disk_super->dev_item.uuid;
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002340 if (btrfs_fs_incompat(fs_info, METADATA_UUID))
Anand Jaine4319cd2019-01-17 23:32:31 +08002341 device = btrfs_find_device(fs_info->fs_devices, devid, dev_uuid,
Anand Jainb2598ed2020-11-03 13:49:43 +08002342 disk_super->metadata_uuid);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002343 else
Anand Jaine4319cd2019-01-17 23:32:31 +08002344 device = btrfs_find_device(fs_info->fs_devices, devid, dev_uuid,
Anand Jainb2598ed2020-11-03 13:49:43 +08002345 disk_super->fsid);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002346
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002347 btrfs_release_disk_super(disk_super);
Nikolay Borisovb444ad42018-09-03 12:46:12 +03002348 if (!device)
2349 device = ERR_PTR(-ENOENT);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002350 blkdev_put(bdev, FMODE_READ);
Nikolay Borisovb444ad42018-09-03 12:46:12 +03002351 return device;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002352}
2353
Yan Zheng2b820322008-11-17 21:11:30 -05002354/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002355 * Lookup a device given by device id, or the path if the id is 0.
2356 */
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002357struct btrfs_device *btrfs_find_device_by_devspec(
Anand Jain6e927ce2019-01-17 23:32:29 +08002358 struct btrfs_fs_info *fs_info, u64 devid,
2359 const char *device_path)
Anand Jain24e04742016-02-13 10:01:35 +08002360{
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002361 struct btrfs_device *device;
Anand Jain24e04742016-02-13 10:01:35 +08002362
David Sterba5c5c0df2016-02-15 16:39:55 +01002363 if (devid) {
Anand Jaine4319cd2019-01-17 23:32:31 +08002364 device = btrfs_find_device(fs_info->fs_devices, devid, NULL,
Anand Jainb2598ed2020-11-03 13:49:43 +08002365 NULL);
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002366 if (!device)
2367 return ERR_PTR(-ENOENT);
Anand Jain6e927ce2019-01-17 23:32:29 +08002368 return device;
Anand Jain24e04742016-02-13 10:01:35 +08002369 }
Anand Jain6e927ce2019-01-17 23:32:29 +08002370
2371 if (!device_path || !device_path[0])
2372 return ERR_PTR(-EINVAL);
2373
2374 if (strcmp(device_path, "missing") == 0) {
2375 /* Find first missing device */
2376 list_for_each_entry(device, &fs_info->fs_devices->devices,
2377 dev_list) {
2378 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
2379 &device->dev_state) && !device->bdev)
2380 return device;
2381 }
2382 return ERR_PTR(-ENOENT);
2383 }
2384
2385 return btrfs_find_device_by_path(fs_info, device_path);
Anand Jain24e04742016-02-13 10:01:35 +08002386}
2387
Yan Zheng2b820322008-11-17 21:11:30 -05002388/*
2389 * does all the dirty work required for changing file system's UUID.
2390 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002391static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002392{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002393 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002394 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002395 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002396 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002397 struct btrfs_device *device;
2398 u64 super_flags;
2399
David Sterbaa32bf9a2018-03-16 02:21:22 +01002400 lockdep_assert_held(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002401 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002402 return -EINVAL;
2403
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03002404 /*
2405 * Private copy of the seed devices, anchored at
2406 * fs_info->fs_devices->seed_list
2407 */
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002408 seed_devices = alloc_fs_devices(NULL, NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002409 if (IS_ERR(seed_devices))
2410 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002411
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03002412 /*
2413 * It's necessary to retain a copy of the original seed fs_devices in
2414 * fs_uuids so that filesystems which have been seeded can successfully
2415 * reference the seed device from open_seed_devices. This also supports
2416 * multiple fs seed.
2417 */
Yan Zhenge4404d62008-12-12 10:03:26 -05002418 old_devices = clone_fs_devices(fs_devices);
2419 if (IS_ERR(old_devices)) {
2420 kfree(seed_devices);
2421 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002422 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002423
Anand Jainc4babc52018-04-12 10:29:25 +08002424 list_add(&old_devices->fs_list, &fs_uuids);
Yan Zheng2b820322008-11-17 21:11:30 -05002425
Yan Zhenge4404d62008-12-12 10:03:26 -05002426 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2427 seed_devices->opened = 1;
2428 INIT_LIST_HEAD(&seed_devices->devices);
2429 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002430 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002431
Anand Jain321a4bf2018-07-16 22:58:09 +08002432 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002433 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2434 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002435 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002436 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002437
Johannes Thumshirn0395d842019-11-13 11:27:27 +01002438 fs_devices->seeding = false;
Yan Zheng2b820322008-11-17 21:11:30 -05002439 fs_devices->num_devices = 0;
2440 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002441 fs_devices->missing_devices = 0;
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +01002442 fs_devices->rotating = false;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002443 list_add(&seed_devices->seed_list, &fs_devices->seed_list);
Yan Zheng2b820322008-11-17 21:11:30 -05002444
2445 generate_random_uuid(fs_devices->fsid);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002446 memcpy(fs_devices->metadata_uuid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002447 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Anand Jain321a4bf2018-07-16 22:58:09 +08002448 mutex_unlock(&fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002449
Yan Zheng2b820322008-11-17 21:11:30 -05002450 super_flags = btrfs_super_flags(disk_super) &
2451 ~BTRFS_SUPER_FLAG_SEEDING;
2452 btrfs_set_super_flags(disk_super, super_flags);
2453
2454 return 0;
2455}
2456
2457/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002458 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002459 */
David Sterba5c4666292019-03-20 16:36:39 +01002460static int btrfs_finish_sprout(struct btrfs_trans_handle *trans)
Yan Zheng2b820322008-11-17 21:11:30 -05002461{
David Sterba5c4666292019-03-20 16:36:39 +01002462 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002463 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002464 struct btrfs_path *path;
2465 struct extent_buffer *leaf;
2466 struct btrfs_dev_item *dev_item;
2467 struct btrfs_device *device;
2468 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002469 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002470 u8 dev_uuid[BTRFS_UUID_SIZE];
2471 u64 devid;
2472 int ret;
2473
2474 path = btrfs_alloc_path();
2475 if (!path)
2476 return -ENOMEM;
2477
Yan Zheng2b820322008-11-17 21:11:30 -05002478 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2479 key.offset = 0;
2480 key.type = BTRFS_DEV_ITEM_KEY;
2481
2482 while (1) {
2483 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2484 if (ret < 0)
2485 goto error;
2486
2487 leaf = path->nodes[0];
2488next_slot:
2489 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2490 ret = btrfs_next_leaf(root, path);
2491 if (ret > 0)
2492 break;
2493 if (ret < 0)
2494 goto error;
2495 leaf = path->nodes[0];
2496 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002497 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002498 continue;
2499 }
2500
2501 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2502 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2503 key.type != BTRFS_DEV_ITEM_KEY)
2504 break;
2505
2506 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2507 struct btrfs_dev_item);
2508 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002509 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002510 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002511 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002512 BTRFS_FSID_SIZE);
Anand Jaine4319cd2019-01-17 23:32:31 +08002513 device = btrfs_find_device(fs_info->fs_devices, devid, dev_uuid,
Anand Jainb2598ed2020-11-03 13:49:43 +08002514 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002515 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002516
2517 if (device->fs_devices->seeding) {
2518 btrfs_set_device_generation(leaf, dev_item,
2519 device->generation);
2520 btrfs_mark_buffer_dirty(leaf);
2521 }
2522
2523 path->slots[0]++;
2524 goto next_slot;
2525 }
2526 ret = 0;
2527error:
2528 btrfs_free_path(path);
2529 return ret;
2530}
2531
David Sterbada353f62017-02-14 17:55:53 +01002532int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002533{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002534 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002535 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002536 struct btrfs_trans_handle *trans;
2537 struct btrfs_device *device;
2538 struct block_device *bdev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002539 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002540 struct rcu_string *name;
Anand Jain5da54bc2018-07-03 13:14:50 +08002541 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Naohiro Aota39379fa2018-07-27 09:04:55 +09002542 u64 orig_super_total_bytes;
2543 u64 orig_super_num_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002544 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002545 int ret = 0;
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002546 bool locked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002547
Anand Jain5da54bc2018-07-03 13:14:50 +08002548 if (sb_rdonly(sb) && !fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002549 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002550
Li Zefana5d163332011-12-07 20:08:40 -05002551 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002552 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002553 if (IS_ERR(bdev))
2554 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002555
Naohiro Aotab70f5092020-11-10 20:26:08 +09002556 if (!btrfs_check_device_zone_type(fs_info, bdev)) {
2557 ret = -EINVAL;
2558 goto error;
2559 }
2560
Anand Jain5da54bc2018-07-03 13:14:50 +08002561 if (fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002562 seeding_dev = 1;
2563 down_write(&sb->s_umount);
2564 mutex_lock(&uuid_mutex);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002565 locked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002566 }
2567
Nikolay Borisovb9ba0172020-07-22 11:09:25 +03002568 sync_blockdev(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002569
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002570 rcu_read_lock();
2571 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002572 if (device->bdev == bdev) {
2573 ret = -EEXIST;
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002574 rcu_read_unlock();
Yan Zheng2b820322008-11-17 21:11:30 -05002575 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002576 }
2577 }
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002578 rcu_read_unlock();
Chris Mason788f20e2008-04-28 15:29:42 -04002579
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002580 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002581 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002582 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002583 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002584 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002585 }
2586
David Sterba78f2c9e2016-02-11 14:25:38 +01002587 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002588 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002589 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002590 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002591 }
Josef Bacik606686e2012-06-04 14:03:51 -04002592 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002593
Naohiro Aota5b316462020-11-10 20:26:07 +09002594 device->fs_info = fs_info;
2595 device->bdev = bdev;
2596
2597 ret = btrfs_get_dev_zone_info(device);
2598 if (ret)
2599 goto error_free_device;
2600
Yan, Zhenga22285a2010-05-16 10:48:46 -04002601 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002602 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002603 ret = PTR_ERR(trans);
Naohiro Aota5b316462020-11-10 20:26:07 +09002604 goto error_free_zone;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002605 }
2606
Josef Bacikd5e20032011-08-04 14:52:27 +00002607 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002608 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002609 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002610 device->io_width = fs_info->sectorsize;
2611 device->io_align = fs_info->sectorsize;
2612 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002613 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2614 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002615 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002616 device->commit_total_bytes = device->total_bytes;
Anand Jaine12c9622017-12-04 12:54:53 +08002617 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002618 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002619 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002620 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002621 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002622
Yan Zheng2b820322008-11-17 21:11:30 -05002623 if (seeding_dev) {
Filipe Mananaa0a1db72020-12-14 10:10:47 +00002624 btrfs_clear_sb_rdonly(sb);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002625 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002626 if (ret) {
2627 btrfs_abort_transaction(trans, ret);
2628 goto error_trans;
2629 }
Yan Zheng2b820322008-11-17 21:11:30 -05002630 }
2631
Anand Jain5da54bc2018-07-03 13:14:50 +08002632 device->fs_devices = fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002633
Anand Jain5da54bc2018-07-03 13:14:50 +08002634 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002635 mutex_lock(&fs_info->chunk_mutex);
Anand Jain5da54bc2018-07-03 13:14:50 +08002636 list_add_rcu(&device->dev_list, &fs_devices->devices);
2637 list_add(&device->dev_alloc_list, &fs_devices->alloc_list);
2638 fs_devices->num_devices++;
2639 fs_devices->open_devices++;
2640 fs_devices->rw_devices++;
2641 fs_devices->total_devices++;
2642 fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002643
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002644 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002645
Anand Jaine884f4f2017-04-04 18:40:19 +08002646 if (!blk_queue_nonrot(q))
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +01002647 fs_devices->rotating = true;
Chris Masonc2898112009-06-10 09:51:32 -04002648
Naohiro Aota39379fa2018-07-27 09:04:55 +09002649 orig_super_total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002650 btrfs_set_super_total_bytes(fs_info->super_copy,
Naohiro Aota39379fa2018-07-27 09:04:55 +09002651 round_down(orig_super_total_bytes + device->total_bytes,
2652 fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002653
Naohiro Aota39379fa2018-07-27 09:04:55 +09002654 orig_super_num_devices = btrfs_super_num_devices(fs_info->super_copy);
2655 btrfs_set_super_num_devices(fs_info->super_copy,
2656 orig_super_num_devices + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002657
Miao Xie2196d6e2014-09-03 21:35:41 +08002658 /*
2659 * we've got more storage, clear any full flags on the space
2660 * infos
2661 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002662 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002663
David Sterba34441362016-10-04 19:34:27 +02002664 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacikca108452020-09-01 08:09:01 -04002665
2666 /* Add sysfs device entry */
Anand Jaincd36da22020-09-05 01:34:26 +08002667 btrfs_sysfs_add_device(device);
Josef Bacikca108452020-09-01 08:09:01 -04002668
Anand Jain5da54bc2018-07-03 13:14:50 +08002669 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002670
Yan Zheng2b820322008-11-17 21:11:30 -05002671 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002672 mutex_lock(&fs_info->chunk_mutex);
David Sterba6f8e0fc2019-03-20 16:29:13 +01002673 ret = init_first_rw_device(trans);
David Sterba34441362016-10-04 19:34:27 +02002674 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002675 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002676 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002677 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002678 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002679 }
2680
Nikolay Borisov8e87e852018-07-20 19:37:47 +03002681 ret = btrfs_add_dev_item(trans, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002682 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002683 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002684 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002685 }
2686
2687 if (seeding_dev) {
David Sterba5c4666292019-03-20 16:36:39 +01002688 ret = btrfs_finish_sprout(trans);
David Sterba005d6422012-09-18 07:52:32 -06002689 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002690 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002691 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002692 }
Anand Jainb2373f22014-06-03 11:36:03 +08002693
Nikolay Borisov8e560082020-08-12 16:18:51 +03002694 /*
2695 * fs_devices now represents the newly sprouted filesystem and
2696 * its fsid has been changed by btrfs_prepare_sprout
2697 */
2698 btrfs_sysfs_update_sprout_fsid(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002699 }
2700
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002701 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002702
2703 if (seeding_dev) {
2704 mutex_unlock(&uuid_mutex);
2705 up_write(&sb->s_umount);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002706 locked = false;
Yan Zheng2b820322008-11-17 21:11:30 -05002707
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002708 if (ret) /* transaction commit */
2709 return ret;
2710
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002711 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002712 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002713 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002714 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002715 trans = btrfs_attach_transaction(root);
2716 if (IS_ERR(trans)) {
2717 if (PTR_ERR(trans) == -ENOENT)
2718 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002719 ret = PTR_ERR(trans);
2720 trans = NULL;
2721 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002722 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002723 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002724 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002725
Anand Jain7f551d92020-05-05 02:58:26 +08002726 /*
2727 * Now that we have written a new super block to this device, check all
2728 * other fs_devices list if device_path alienates any other scanned
2729 * device.
2730 * We can ignore the return value as it typically returns -EINVAL and
2731 * only succeeds if the device was an alien.
2732 */
2733 btrfs_forget_devices(device_path);
2734
2735 /* Update ctime/mtime for blkid or udev */
Josef Bacik8f96a5b2021-07-27 17:01:16 -04002736 update_dev_time(bdev);
Anand Jain7f551d92020-05-05 02:58:26 +08002737
Chris Mason788f20e2008-04-28 15:29:42 -04002738 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002739
Anand Jaind31c32f2017-09-28 14:51:10 +08002740error_sysfs:
Anand Jain53f8a742020-09-05 01:34:27 +08002741 btrfs_sysfs_remove_device(device);
Naohiro Aota39379fa2018-07-27 09:04:55 +09002742 mutex_lock(&fs_info->fs_devices->device_list_mutex);
2743 mutex_lock(&fs_info->chunk_mutex);
2744 list_del_rcu(&device->dev_list);
2745 list_del(&device->dev_alloc_list);
2746 fs_info->fs_devices->num_devices--;
2747 fs_info->fs_devices->open_devices--;
2748 fs_info->fs_devices->rw_devices--;
2749 fs_info->fs_devices->total_devices--;
2750 fs_info->fs_devices->total_rw_bytes -= device->total_bytes;
2751 atomic64_sub(device->total_bytes, &fs_info->free_chunk_space);
2752 btrfs_set_super_total_bytes(fs_info->super_copy,
2753 orig_super_total_bytes);
2754 btrfs_set_super_num_devices(fs_info->super_copy,
2755 orig_super_num_devices);
2756 mutex_unlock(&fs_info->chunk_mutex);
2757 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002758error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002759 if (seeding_dev)
Filipe Mananaa0a1db72020-12-14 10:10:47 +00002760 btrfs_set_sb_rdonly(sb);
Anand Jain7132a262017-09-28 14:51:11 +08002761 if (trans)
2762 btrfs_end_transaction(trans);
Naohiro Aota5b316462020-11-10 20:26:07 +09002763error_free_zone:
2764 btrfs_destroy_dev_zone_info(device);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002765error_free_device:
David Sterbaa425f9d2018-03-20 15:47:33 +01002766 btrfs_free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002767error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002768 blkdev_put(bdev, FMODE_EXCL);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002769 if (locked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002770 mutex_unlock(&uuid_mutex);
2771 up_write(&sb->s_umount);
2772 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002773 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002774}
2775
Chris Masond3977122009-01-05 21:25:51 -05002776static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2777 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002778{
2779 int ret;
2780 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002781 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002782 struct btrfs_dev_item *dev_item;
2783 struct extent_buffer *leaf;
2784 struct btrfs_key key;
2785
Chris Mason0b86a832008-03-24 15:01:56 -04002786 path = btrfs_alloc_path();
2787 if (!path)
2788 return -ENOMEM;
2789
2790 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2791 key.type = BTRFS_DEV_ITEM_KEY;
2792 key.offset = device->devid;
2793
2794 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2795 if (ret < 0)
2796 goto out;
2797
2798 if (ret > 0) {
2799 ret = -ENOENT;
2800 goto out;
2801 }
2802
2803 leaf = path->nodes[0];
2804 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2805
2806 btrfs_set_device_id(leaf, dev_item, device->devid);
2807 btrfs_set_device_type(leaf, dev_item, device->type);
2808 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2809 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2810 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002811 btrfs_set_device_total_bytes(leaf, dev_item,
2812 btrfs_device_get_disk_total_bytes(device));
2813 btrfs_set_device_bytes_used(leaf, dev_item,
2814 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002815 btrfs_mark_buffer_dirty(leaf);
2816
2817out:
2818 btrfs_free_path(path);
2819 return ret;
2820}
2821
Miao Xie2196d6e2014-09-03 21:35:41 +08002822int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002823 struct btrfs_device *device, u64 new_size)
2824{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002825 struct btrfs_fs_info *fs_info = device->fs_info;
2826 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie2196d6e2014-09-03 21:35:41 +08002827 u64 old_total;
2828 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002829
Anand Jainebbede42017-12-04 12:54:52 +08002830 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002831 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002832
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002833 new_size = round_down(new_size, fs_info->sectorsize);
2834
David Sterba34441362016-10-04 19:34:27 +02002835 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002836 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002837 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002838
Stefan Behrens63a212a2012-11-05 18:29:28 +01002839 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002840 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002841 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002842 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002843 }
Yan Zheng2b820322008-11-17 21:11:30 -05002844
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002845 btrfs_set_super_total_bytes(super_copy,
2846 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002847 device->fs_devices->total_rw_bytes += diff;
2848
Miao Xie7cc8e582014-09-03 21:35:38 +08002849 btrfs_device_set_total_bytes(device, new_size);
2850 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002851 btrfs_clear_space_info_full(device->fs_info);
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02002852 if (list_empty(&device->post_commit_list))
2853 list_add_tail(&device->post_commit_list,
2854 &trans->transaction->dev_update_list);
David Sterba34441362016-10-04 19:34:27 +02002855 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002856
Chris Mason8f18cf12008-04-25 16:53:30 -04002857 return btrfs_update_device(trans, device);
2858}
2859
Nikolay Borisovf4208792018-07-20 19:37:52 +03002860static int btrfs_free_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002861{
Nikolay Borisovf4208792018-07-20 19:37:52 +03002862 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002863 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002864 int ret;
2865 struct btrfs_path *path;
2866 struct btrfs_key key;
2867
Chris Mason8f18cf12008-04-25 16:53:30 -04002868 path = btrfs_alloc_path();
2869 if (!path)
2870 return -ENOMEM;
2871
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002872 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002873 key.offset = chunk_offset;
2874 key.type = BTRFS_CHUNK_ITEM_KEY;
2875
2876 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002877 if (ret < 0)
2878 goto out;
2879 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002880 btrfs_handle_fs_error(fs_info, -ENOENT,
2881 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002882 ret = -ENOENT;
2883 goto out;
2884 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002885
2886 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002887 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002888 btrfs_handle_fs_error(fs_info, ret,
2889 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002890out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002891 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002892 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002893}
2894
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002895static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002896{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002897 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002898 struct btrfs_disk_key *disk_key;
2899 struct btrfs_chunk *chunk;
2900 u8 *ptr;
2901 int ret = 0;
2902 u32 num_stripes;
2903 u32 array_size;
2904 u32 len = 0;
2905 u32 cur;
2906 struct btrfs_key key;
2907
Filipe Manana79bd3712021-06-29 14:43:06 +01002908 lockdep_assert_held(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002909 array_size = btrfs_super_sys_array_size(super_copy);
2910
2911 ptr = super_copy->sys_chunk_array;
2912 cur = 0;
2913
2914 while (cur < array_size) {
2915 disk_key = (struct btrfs_disk_key *)ptr;
2916 btrfs_disk_key_to_cpu(&key, disk_key);
2917
2918 len = sizeof(*disk_key);
2919
2920 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2921 chunk = (struct btrfs_chunk *)(ptr + len);
2922 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2923 len += btrfs_chunk_item_size(num_stripes);
2924 } else {
2925 ret = -EIO;
2926 break;
2927 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002928 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002929 key.offset == chunk_offset) {
2930 memmove(ptr, ptr + len, array_size - (cur + len));
2931 array_size -= len;
2932 btrfs_set_super_sys_array_size(super_copy, array_size);
2933 } else {
2934 ptr += len;
2935 cur += len;
2936 }
2937 }
2938 return ret;
2939}
2940
Omar Sandoval60ca8422018-05-16 16:34:31 -07002941/*
2942 * btrfs_get_chunk_map() - Find the mapping containing the given logical extent.
2943 * @logical: Logical block offset in bytes.
2944 * @length: Length of extent in bytes.
2945 *
2946 * Return: Chunk mapping or ERR_PTR.
2947 */
2948struct extent_map *btrfs_get_chunk_map(struct btrfs_fs_info *fs_info,
2949 u64 logical, u64 length)
Liu Bo592d92e2017-03-14 13:33:55 -07002950{
2951 struct extent_map_tree *em_tree;
2952 struct extent_map *em;
2953
David Sterbac8bf1b62019-05-17 11:43:17 +02002954 em_tree = &fs_info->mapping_tree;
Liu Bo592d92e2017-03-14 13:33:55 -07002955 read_lock(&em_tree->lock);
2956 em = lookup_extent_mapping(em_tree, logical, length);
2957 read_unlock(&em_tree->lock);
2958
2959 if (!em) {
2960 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2961 logical, length);
2962 return ERR_PTR(-EINVAL);
2963 }
2964
2965 if (em->start > logical || em->start + em->len < logical) {
2966 btrfs_crit(fs_info,
2967 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2968 logical, length, em->start, em->start + em->len);
2969 free_extent_map(em);
2970 return ERR_PTR(-EINVAL);
2971 }
2972
2973 /* callers are responsible for dropping em's ref. */
2974 return em;
2975}
2976
Filipe Manana79bd3712021-06-29 14:43:06 +01002977static int remove_chunk_item(struct btrfs_trans_handle *trans,
2978 struct map_lookup *map, u64 chunk_offset)
2979{
2980 int i;
2981
2982 /*
2983 * Removing chunk items and updating the device items in the chunks btree
2984 * requires holding the chunk_mutex.
2985 * See the comment at btrfs_chunk_alloc() for the details.
2986 */
2987 lockdep_assert_held(&trans->fs_info->chunk_mutex);
2988
2989 for (i = 0; i < map->num_stripes; i++) {
2990 int ret;
2991
2992 ret = btrfs_update_device(trans, map->stripes[i].dev);
2993 if (ret)
2994 return ret;
2995 }
2996
2997 return btrfs_free_chunk(trans, chunk_offset);
2998}
2999
Nikolay Borisov97aff912018-07-20 19:37:53 +03003000int btrfs_remove_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04003001{
Nikolay Borisov97aff912018-07-20 19:37:53 +03003002 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003003 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003004 struct map_lookup *map;
3005 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003006 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003007 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003008
Omar Sandoval60ca8422018-05-16 16:34:31 -07003009 em = btrfs_get_chunk_map(fs_info, chunk_offset, 1);
Liu Bo592d92e2017-03-14 13:33:55 -07003010 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04003011 /*
3012 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08003013 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04003014 * do anything we still error out.
3015 */
3016 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07003017 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003018 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04003019 map = em->map_lookup;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003020
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003021 /*
Filipe Manana79bd3712021-06-29 14:43:06 +01003022 * First delete the device extent items from the devices btree.
3023 * We take the device_list_mutex to avoid racing with the finishing phase
3024 * of a device replace operation. See the comment below before acquiring
3025 * fs_info->chunk_mutex. Note that here we do not acquire the chunk_mutex
3026 * because that can result in a deadlock when deleting the device extent
3027 * items from the devices btree - COWing an extent buffer from the btree
3028 * may result in allocating a new metadata chunk, which would attempt to
3029 * lock again fs_info->chunk_mutex.
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003030 */
3031 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003032 for (i = 0; i < map->num_stripes; i++) {
3033 struct btrfs_device *device = map->stripes[i].dev;
3034 ret = btrfs_free_dev_extent(trans, device,
3035 map->stripes[i].physical,
3036 &dev_extent_len);
3037 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003038 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04003039 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003040 goto out;
3041 }
3042
3043 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02003044 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003045 btrfs_device_set_bytes_used(device,
3046 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03003047 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003048 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02003049 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003050 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04003051 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003052 mutex_unlock(&fs_devices->device_list_mutex);
3053
Filipe Manana79bd3712021-06-29 14:43:06 +01003054 /*
3055 * We acquire fs_info->chunk_mutex for 2 reasons:
3056 *
3057 * 1) Just like with the first phase of the chunk allocation, we must
3058 * reserve system space, do all chunk btree updates and deletions, and
3059 * update the system chunk array in the superblock while holding this
3060 * mutex. This is for similar reasons as explained on the comment at
3061 * the top of btrfs_chunk_alloc();
3062 *
3063 * 2) Prevent races with the final phase of a device replace operation
3064 * that replaces the device object associated with the map's stripes,
3065 * because the device object's id can change at any time during that
3066 * final phase of the device replace operation
3067 * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the
3068 * replaced device and then see it with an ID of
3069 * BTRFS_DEV_REPLACE_DEVID, which would cause a failure when updating
3070 * the device item, which does not exists on the chunk btree.
3071 * The finishing phase of device replace acquires both the
3072 * device_list_mutex and the chunk_mutex, in that order, so we are
3073 * safe by just acquiring the chunk_mutex.
3074 */
3075 trans->removing_chunk = true;
3076 mutex_lock(&fs_info->chunk_mutex);
3077
3078 check_system_chunk(trans, map->type);
3079
3080 ret = remove_chunk_item(trans, map, chunk_offset);
3081 /*
3082 * Normally we should not get -ENOSPC since we reserved space before
3083 * through the call to check_system_chunk().
3084 *
3085 * Despite our system space_info having enough free space, we may not
3086 * be able to allocate extents from its block groups, because all have
3087 * an incompatible profile, which will force us to allocate a new system
3088 * block group with the right profile, or right after we called
3089 * check_system_space() above, a scrub turned the only system block group
3090 * with enough free space into RO mode.
3091 * This is explained with more detail at do_chunk_alloc().
3092 *
3093 * So if we get -ENOSPC, allocate a new system chunk and retry once.
3094 */
3095 if (ret == -ENOSPC) {
3096 const u64 sys_flags = btrfs_system_alloc_profile(fs_info);
3097 struct btrfs_block_group *sys_bg;
3098
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03003099 sys_bg = btrfs_create_chunk(trans, sys_flags);
Filipe Manana79bd3712021-06-29 14:43:06 +01003100 if (IS_ERR(sys_bg)) {
3101 ret = PTR_ERR(sys_bg);
3102 btrfs_abort_transaction(trans, ret);
3103 goto out;
3104 }
3105
3106 ret = btrfs_chunk_alloc_add_chunk_item(trans, sys_bg);
3107 if (ret) {
3108 btrfs_abort_transaction(trans, ret);
3109 goto out;
3110 }
3111
3112 ret = remove_chunk_item(trans, map, chunk_offset);
3113 if (ret) {
3114 btrfs_abort_transaction(trans, ret);
3115 goto out;
3116 }
3117 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003118 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003119 goto out;
3120 }
3121
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003122 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003123
3124 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03003125 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003126 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003127 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003128 goto out;
3129 }
3130 }
3131
Filipe Manana79bd3712021-06-29 14:43:06 +01003132 mutex_unlock(&fs_info->chunk_mutex);
3133 trans->removing_chunk = false;
3134
3135 /*
3136 * We are done with chunk btree updates and deletions, so release the
3137 * system space we previously reserved (with check_system_chunk()).
3138 */
3139 btrfs_trans_release_chunk_metadata(trans);
3140
Nikolay Borisov5a98ec02018-06-20 15:48:56 +03003141 ret = btrfs_remove_block_group(trans, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003142 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003143 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003144 goto out;
3145 }
3146
Josef Bacik47ab2a62014-09-18 11:20:02 -04003147out:
Filipe Manana79bd3712021-06-29 14:43:06 +01003148 if (trans->removing_chunk) {
3149 mutex_unlock(&fs_info->chunk_mutex);
3150 trans->removing_chunk = false;
3151 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04003152 /* once for us */
3153 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04003154 return ret;
3155}
3156
Johannes Thumshirn18bb8bb2021-04-19 16:41:02 +09003157int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04003158{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003159 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07003160 struct btrfs_trans_handle *trans;
Dennis Zhoub0643e52019-12-13 16:22:14 -08003161 struct btrfs_block_group *block_group;
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003162 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04003163 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003164
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003165 /*
3166 * Prevent races with automatic removal of unused block groups.
3167 * After we relocate and before we remove the chunk with offset
3168 * chunk_offset, automatic removal of the block group can kick in,
3169 * resulting in a failure when calling btrfs_remove_chunk() below.
3170 *
3171 * Make sure to acquire this mutex before doing a tree search (dev
3172 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
3173 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
3174 * we release the path used to search the chunk/dev tree and before
3175 * the current task acquires this mutex and calls us.
3176 */
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003177 lockdep_assert_held(&fs_info->reclaim_bgs_lock);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003178
Chris Mason8f18cf12008-04-25 16:53:30 -04003179 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003180 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003181 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003182 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003183 if (ret)
3184 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003185
Dennis Zhoub0643e52019-12-13 16:22:14 -08003186 block_group = btrfs_lookup_block_group(fs_info, chunk_offset);
3187 if (!block_group)
3188 return -ENOENT;
3189 btrfs_discard_cancel_work(&fs_info->discard_ctl, block_group);
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003190 length = block_group->length;
Dennis Zhoub0643e52019-12-13 16:22:14 -08003191 btrfs_put_block_group(block_group);
3192
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003193 /*
3194 * On a zoned file system, discard the whole block group, this will
3195 * trigger a REQ_OP_ZONE_RESET operation on the device zone. If
3196 * resetting the zone fails, don't treat it as a fatal problem from the
3197 * filesystem's point of view.
3198 */
3199 if (btrfs_is_zoned(fs_info)) {
3200 ret = btrfs_discard_extent(fs_info, chunk_offset, length, NULL);
3201 if (ret)
3202 btrfs_info(fs_info,
3203 "failed to reset zone %llu after relocation",
3204 chunk_offset);
3205 }
3206
Chris Mason19c4d2f2016-10-10 13:43:31 -07003207 trans = btrfs_start_trans_remove_block_group(root->fs_info,
3208 chunk_offset);
3209 if (IS_ERR(trans)) {
3210 ret = PTR_ERR(trans);
3211 btrfs_handle_fs_error(root->fs_info, ret, NULL);
3212 return ret;
3213 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09003214
Chris Mason19c4d2f2016-10-10 13:43:31 -07003215 /*
3216 * step two, delete the device extents and the
3217 * chunk tree entries
3218 */
Nikolay Borisov97aff912018-07-20 19:37:53 +03003219 ret = btrfs_remove_chunk(trans, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003220 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07003221 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003222}
3223
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003224static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05003225{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003226 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05003227 struct btrfs_path *path;
3228 struct extent_buffer *leaf;
3229 struct btrfs_chunk *chunk;
3230 struct btrfs_key key;
3231 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05003232 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04003233 bool retried = false;
3234 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05003235 int ret;
3236
3237 path = btrfs_alloc_path();
3238 if (!path)
3239 return -ENOMEM;
3240
Josef Bacikba1bf482009-09-11 16:11:19 -04003241again:
Yan Zheng2b820322008-11-17 21:11:30 -05003242 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3243 key.offset = (u64)-1;
3244 key.type = BTRFS_CHUNK_ITEM_KEY;
3245
3246 while (1) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003247 mutex_lock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003248 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003249 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003250 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003251 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003252 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003253 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05003254
3255 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3256 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003257 if (ret)
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003258 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003259 if (ret < 0)
3260 goto error;
3261 if (ret > 0)
3262 break;
3263
3264 leaf = path->nodes[0];
3265 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3266
3267 chunk = btrfs_item_ptr(leaf, path->slots[0],
3268 struct btrfs_chunk);
3269 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003270 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003271
3272 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003273 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003274 if (ret == -ENOSPC)
3275 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303276 else
3277 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003278 }
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003279 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003280
3281 if (found_key.offset == 0)
3282 break;
3283 key.offset = found_key.offset - 1;
3284 }
3285 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003286 if (failed && !retried) {
3287 failed = 0;
3288 retried = true;
3289 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303290 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003291 ret = -ENOSPC;
3292 }
Yan Zheng2b820322008-11-17 21:11:30 -05003293error:
3294 btrfs_free_path(path);
3295 return ret;
3296}
3297
Liu Boa6f93c72017-11-15 16:28:11 -07003298/*
3299 * return 1 : allocate a data chunk successfully,
3300 * return <0: errors during allocating a data chunk,
3301 * return 0 : no need to allocate a data chunk.
3302 */
3303static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
3304 u64 chunk_offset)
3305{
David Sterba32da53862019-10-29 19:20:18 +01003306 struct btrfs_block_group *cache;
Liu Boa6f93c72017-11-15 16:28:11 -07003307 u64 bytes_used;
3308 u64 chunk_type;
3309
3310 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3311 ASSERT(cache);
3312 chunk_type = cache->flags;
3313 btrfs_put_block_group(cache);
3314
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003315 if (!(chunk_type & BTRFS_BLOCK_GROUP_DATA))
3316 return 0;
Liu Boa6f93c72017-11-15 16:28:11 -07003317
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003318 spin_lock(&fs_info->data_sinfo->lock);
3319 bytes_used = fs_info->data_sinfo->bytes_used;
3320 spin_unlock(&fs_info->data_sinfo->lock);
Liu Boa6f93c72017-11-15 16:28:11 -07003321
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003322 if (!bytes_used) {
3323 struct btrfs_trans_handle *trans;
3324 int ret;
Liu Boa6f93c72017-11-15 16:28:11 -07003325
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003326 trans = btrfs_join_transaction(fs_info->tree_root);
3327 if (IS_ERR(trans))
3328 return PTR_ERR(trans);
3329
3330 ret = btrfs_force_chunk_alloc(trans, BTRFS_BLOCK_GROUP_DATA);
3331 btrfs_end_transaction(trans);
3332 if (ret < 0)
3333 return ret;
3334 return 1;
Liu Boa6f93c72017-11-15 16:28:11 -07003335 }
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003336
Liu Boa6f93c72017-11-15 16:28:11 -07003337 return 0;
3338}
3339
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003340static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003341 struct btrfs_balance_control *bctl)
3342{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003343 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003344 struct btrfs_trans_handle *trans;
3345 struct btrfs_balance_item *item;
3346 struct btrfs_disk_balance_args disk_bargs;
3347 struct btrfs_path *path;
3348 struct extent_buffer *leaf;
3349 struct btrfs_key key;
3350 int ret, err;
3351
3352 path = btrfs_alloc_path();
3353 if (!path)
3354 return -ENOMEM;
3355
3356 trans = btrfs_start_transaction(root, 0);
3357 if (IS_ERR(trans)) {
3358 btrfs_free_path(path);
3359 return PTR_ERR(trans);
3360 }
3361
3362 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003363 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003364 key.offset = 0;
3365
3366 ret = btrfs_insert_empty_item(trans, root, path, &key,
3367 sizeof(*item));
3368 if (ret)
3369 goto out;
3370
3371 leaf = path->nodes[0];
3372 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3373
David Sterbab159fa22016-11-08 18:09:03 +01003374 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003375
3376 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3377 btrfs_set_balance_data(leaf, item, &disk_bargs);
3378 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3379 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3380 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3381 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3382
3383 btrfs_set_balance_flags(leaf, item, bctl->flags);
3384
3385 btrfs_mark_buffer_dirty(leaf);
3386out:
3387 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003388 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003389 if (err && !ret)
3390 ret = err;
3391 return ret;
3392}
3393
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003394static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003395{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003396 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003397 struct btrfs_trans_handle *trans;
3398 struct btrfs_path *path;
3399 struct btrfs_key key;
3400 int ret, err;
3401
3402 path = btrfs_alloc_path();
3403 if (!path)
3404 return -ENOMEM;
3405
David Sterba3502a8c2020-06-25 12:35:28 +02003406 trans = btrfs_start_transaction_fallback_global_rsv(root, 0);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003407 if (IS_ERR(trans)) {
3408 btrfs_free_path(path);
3409 return PTR_ERR(trans);
3410 }
3411
3412 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003413 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003414 key.offset = 0;
3415
3416 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3417 if (ret < 0)
3418 goto out;
3419 if (ret > 0) {
3420 ret = -ENOENT;
3421 goto out;
3422 }
3423
3424 ret = btrfs_del_item(trans, root, path);
3425out:
3426 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003427 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003428 if (err && !ret)
3429 ret = err;
3430 return ret;
3431}
3432
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003433/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003434 * This is a heuristic used to reduce the number of chunks balanced on
3435 * resume after balance was interrupted.
3436 */
3437static void update_balance_args(struct btrfs_balance_control *bctl)
3438{
3439 /*
3440 * Turn on soft mode for chunk types that were being converted.
3441 */
3442 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3443 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3444 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3445 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3446 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3447 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3448
3449 /*
3450 * Turn on usage filter if is not already used. The idea is
3451 * that chunks that we have already balanced should be
3452 * reasonably full. Don't do it for chunks that are being
3453 * converted - that will keep us from relocating unconverted
3454 * (albeit full) chunks.
3455 */
3456 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003457 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003458 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3459 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3460 bctl->data.usage = 90;
3461 }
3462 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003463 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003464 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3465 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3466 bctl->sys.usage = 90;
3467 }
3468 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003469 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003470 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3471 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3472 bctl->meta.usage = 90;
3473 }
3474}
3475
3476/*
David Sterba149196a2018-03-20 20:23:09 +01003477 * Clear the balance status in fs_info and delete the balance item from disk.
3478 */
3479static void reset_balance_state(struct btrfs_fs_info *fs_info)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003480{
3481 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
David Sterba149196a2018-03-20 20:23:09 +01003482 int ret;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003483
3484 BUG_ON(!fs_info->balance_ctl);
3485
3486 spin_lock(&fs_info->balance_lock);
3487 fs_info->balance_ctl = NULL;
3488 spin_unlock(&fs_info->balance_lock);
3489
3490 kfree(bctl);
David Sterba149196a2018-03-20 20:23:09 +01003491 ret = del_balance_item(fs_info);
3492 if (ret)
3493 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003494}
3495
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003496/*
3497 * Balance filters. Return 1 if chunk should be filtered out
3498 * (should not be balanced).
3499 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003500static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003501 struct btrfs_balance_args *bargs)
3502{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003503 chunk_type = chunk_to_extended(chunk_type) &
3504 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003505
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003506 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003507 return 0;
3508
3509 return 1;
3510}
3511
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003512static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003513 struct btrfs_balance_args *bargs)
3514{
David Sterba32da53862019-10-29 19:20:18 +01003515 struct btrfs_block_group *cache;
David Sterbabc309462015-10-20 18:22:13 +02003516 u64 chunk_used;
3517 u64 user_thresh_min;
3518 u64 user_thresh_max;
3519 int ret = 1;
3520
3521 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
David Sterbabf38be62019-10-23 18:48:11 +02003522 chunk_used = cache->used;
David Sterbabc309462015-10-20 18:22:13 +02003523
3524 if (bargs->usage_min == 0)
3525 user_thresh_min = 0;
3526 else
David Sterbab3470b52019-10-23 18:48:22 +02003527 user_thresh_min = div_factor_fine(cache->length,
3528 bargs->usage_min);
David Sterbabc309462015-10-20 18:22:13 +02003529
3530 if (bargs->usage_max == 0)
3531 user_thresh_max = 1;
3532 else if (bargs->usage_max > 100)
David Sterbab3470b52019-10-23 18:48:22 +02003533 user_thresh_max = cache->length;
David Sterbabc309462015-10-20 18:22:13 +02003534 else
David Sterbab3470b52019-10-23 18:48:22 +02003535 user_thresh_max = div_factor_fine(cache->length,
3536 bargs->usage_max);
David Sterbabc309462015-10-20 18:22:13 +02003537
3538 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3539 ret = 0;
3540
3541 btrfs_put_block_group(cache);
3542 return ret;
3543}
3544
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003545static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003546 u64 chunk_offset, struct btrfs_balance_args *bargs)
3547{
David Sterba32da53862019-10-29 19:20:18 +01003548 struct btrfs_block_group *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003549 u64 chunk_used, user_thresh;
3550 int ret = 1;
3551
3552 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
David Sterbabf38be62019-10-23 18:48:11 +02003553 chunk_used = cache->used;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003554
David Sterbabc309462015-10-20 18:22:13 +02003555 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003556 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003557 else if (bargs->usage > 100)
David Sterbab3470b52019-10-23 18:48:22 +02003558 user_thresh = cache->length;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003559 else
David Sterbab3470b52019-10-23 18:48:22 +02003560 user_thresh = div_factor_fine(cache->length, bargs->usage);
Ilya Dryomova105bb82013-01-21 15:15:56 +02003561
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003562 if (chunk_used < user_thresh)
3563 ret = 0;
3564
3565 btrfs_put_block_group(cache);
3566 return ret;
3567}
3568
Ilya Dryomov409d4042012-01-16 22:04:47 +02003569static int chunk_devid_filter(struct extent_buffer *leaf,
3570 struct btrfs_chunk *chunk,
3571 struct btrfs_balance_args *bargs)
3572{
3573 struct btrfs_stripe *stripe;
3574 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3575 int i;
3576
3577 for (i = 0; i < num_stripes; i++) {
3578 stripe = btrfs_stripe_nr(chunk, i);
3579 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3580 return 0;
3581 }
3582
3583 return 1;
3584}
3585
David Sterba946c9252019-05-17 11:43:34 +02003586static u64 calc_data_stripes(u64 type, int num_stripes)
3587{
3588 const int index = btrfs_bg_flags_to_raid_index(type);
3589 const int ncopies = btrfs_raid_array[index].ncopies;
3590 const int nparity = btrfs_raid_array[index].nparity;
3591
David Sterbad58ede82021-07-26 14:15:24 +02003592 return (num_stripes - nparity) / ncopies;
David Sterba946c9252019-05-17 11:43:34 +02003593}
3594
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003595/* [pstart, pend) */
3596static int chunk_drange_filter(struct extent_buffer *leaf,
3597 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003598 struct btrfs_balance_args *bargs)
3599{
3600 struct btrfs_stripe *stripe;
3601 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3602 u64 stripe_offset;
3603 u64 stripe_length;
David Sterba946c9252019-05-17 11:43:34 +02003604 u64 type;
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003605 int factor;
3606 int i;
3607
3608 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3609 return 0;
3610
David Sterba946c9252019-05-17 11:43:34 +02003611 type = btrfs_chunk_type(leaf, chunk);
3612 factor = calc_data_stripes(type, num_stripes);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003613
3614 for (i = 0; i < num_stripes; i++) {
3615 stripe = btrfs_stripe_nr(chunk, i);
3616 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3617 continue;
3618
3619 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3620 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003621 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003622
3623 if (stripe_offset < bargs->pend &&
3624 stripe_offset + stripe_length > bargs->pstart)
3625 return 0;
3626 }
3627
3628 return 1;
3629}
3630
Ilya Dryomovea671762012-01-16 22:04:48 +02003631/* [vstart, vend) */
3632static int chunk_vrange_filter(struct extent_buffer *leaf,
3633 struct btrfs_chunk *chunk,
3634 u64 chunk_offset,
3635 struct btrfs_balance_args *bargs)
3636{
3637 if (chunk_offset < bargs->vend &&
3638 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3639 /* at least part of the chunk is inside this vrange */
3640 return 0;
3641
3642 return 1;
3643}
3644
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003645static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3646 struct btrfs_chunk *chunk,
3647 struct btrfs_balance_args *bargs)
3648{
3649 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3650
3651 if (bargs->stripes_min <= num_stripes
3652 && num_stripes <= bargs->stripes_max)
3653 return 0;
3654
3655 return 1;
3656}
3657
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003658static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003659 struct btrfs_balance_args *bargs)
3660{
3661 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3662 return 0;
3663
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003664 chunk_type = chunk_to_extended(chunk_type) &
3665 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003666
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003667 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003668 return 1;
3669
3670 return 0;
3671}
3672
David Sterba6ec08962019-03-20 16:38:52 +01003673static int should_balance_chunk(struct extent_buffer *leaf,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003674 struct btrfs_chunk *chunk, u64 chunk_offset)
3675{
David Sterba6ec08962019-03-20 16:38:52 +01003676 struct btrfs_fs_info *fs_info = leaf->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003677 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003678 struct btrfs_balance_args *bargs = NULL;
3679 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3680
3681 /* type filter */
3682 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3683 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3684 return 0;
3685 }
3686
3687 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3688 bargs = &bctl->data;
3689 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3690 bargs = &bctl->sys;
3691 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3692 bargs = &bctl->meta;
3693
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003694 /* profiles filter */
3695 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3696 chunk_profiles_filter(chunk_type, bargs)) {
3697 return 0;
3698 }
3699
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003700 /* usage filter */
3701 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003702 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003703 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003704 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003705 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003706 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003707 }
3708
Ilya Dryomov409d4042012-01-16 22:04:47 +02003709 /* devid filter */
3710 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3711 chunk_devid_filter(leaf, chunk, bargs)) {
3712 return 0;
3713 }
3714
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003715 /* drange filter, makes sense only with devid filter */
3716 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003717 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003718 return 0;
3719 }
3720
Ilya Dryomovea671762012-01-16 22:04:48 +02003721 /* vrange filter */
3722 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3723 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3724 return 0;
3725 }
3726
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003727 /* stripes filter */
3728 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3729 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3730 return 0;
3731 }
3732
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003733 /* soft profile changing mode */
3734 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3735 chunk_soft_convert_filter(chunk_type, bargs)) {
3736 return 0;
3737 }
3738
David Sterba7d824b62014-05-07 17:37:51 +02003739 /*
3740 * limited by count, must be the last filter
3741 */
3742 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3743 if (bargs->limit == 0)
3744 return 0;
3745 else
3746 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003747 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3748 /*
3749 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003750 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003751 * about the count of all chunks that satisfy the filters.
3752 */
3753 if (bargs->limit_max == 0)
3754 return 0;
3755 else
3756 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003757 }
3758
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003759 return 1;
3760}
3761
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003762static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003763{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003764 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003765 struct btrfs_root *chunk_root = fs_info->chunk_root;
David Sterba12907fc2015-10-10 17:16:50 +02003766 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003767 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003768 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003769 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003770 struct btrfs_key found_key;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003771 struct extent_buffer *leaf;
3772 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003773 int ret;
3774 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003775 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003776 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003777 u64 limit_data = bctl->data.limit;
3778 u64 limit_meta = bctl->meta.limit;
3779 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003780 u32 count_data = 0;
3781 u32 count_meta = 0;
3782 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003783 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003784
Chris Masonec44a352008-04-28 15:29:52 -04003785 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003786 if (!path) {
3787 ret = -ENOMEM;
3788 goto error;
3789 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003790
3791 /* zero out stat counters */
3792 spin_lock(&fs_info->balance_lock);
3793 memset(&bctl->stat, 0, sizeof(bctl->stat));
3794 spin_unlock(&fs_info->balance_lock);
3795again:
David Sterba7d824b62014-05-07 17:37:51 +02003796 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003797 /*
3798 * The single value limit and min/max limits use the same bytes
3799 * in the
3800 */
David Sterba7d824b62014-05-07 17:37:51 +02003801 bctl->data.limit = limit_data;
3802 bctl->meta.limit = limit_meta;
3803 bctl->sys.limit = limit_sys;
3804 }
Chris Masonec44a352008-04-28 15:29:52 -04003805 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3806 key.offset = (u64)-1;
3807 key.type = BTRFS_CHUNK_ITEM_KEY;
3808
Chris Masond3977122009-01-05 21:25:51 -05003809 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003810 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003811 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003812 ret = -ECANCELED;
3813 goto error;
3814 }
3815
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003816 mutex_lock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003817 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003818 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003819 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003820 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003821 }
Chris Masonec44a352008-04-28 15:29:52 -04003822
3823 /*
3824 * this shouldn't happen, it means the last relocate
3825 * failed
3826 */
3827 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003828 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003829
3830 ret = btrfs_previous_item(chunk_root, path, 0,
3831 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003832 if (ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003833 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003834 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003835 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003836 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003837
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003838 leaf = path->nodes[0];
3839 slot = path->slots[0];
3840 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3841
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003842 if (found_key.objectid != key.objectid) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003843 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003844 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003845 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003846
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003847 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003848 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003849
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003850 if (!counting) {
3851 spin_lock(&fs_info->balance_lock);
3852 bctl->stat.considered++;
3853 spin_unlock(&fs_info->balance_lock);
3854 }
3855
David Sterba6ec08962019-03-20 16:38:52 +01003856 ret = should_balance_chunk(leaf, chunk, found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003857
David Sterbab3b4aa72011-04-21 01:20:15 +02003858 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003859 if (!ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003860 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003861 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003862 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003863
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003864 if (counting) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003865 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003866 spin_lock(&fs_info->balance_lock);
3867 bctl->stat.expected++;
3868 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003869
3870 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3871 count_data++;
3872 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3873 count_sys++;
3874 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3875 count_meta++;
3876
3877 goto loop;
3878 }
3879
3880 /*
3881 * Apply limit_min filter, no need to check if the LIMITS
3882 * filter is used, limit_min is 0 by default
3883 */
3884 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3885 count_data < bctl->data.limit_min)
3886 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3887 count_meta < bctl->meta.limit_min)
3888 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3889 count_sys < bctl->sys.limit_min)) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003890 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003891 goto loop;
3892 }
3893
Liu Boa6f93c72017-11-15 16:28:11 -07003894 if (!chunk_reserved) {
3895 /*
3896 * We may be relocating the only data chunk we have,
3897 * which could potentially end up with losing data's
3898 * raid profile, so lets allocate an empty one in
3899 * advance.
3900 */
3901 ret = btrfs_may_alloc_data_chunk(fs_info,
3902 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003903 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003904 mutex_unlock(&fs_info->reclaim_bgs_lock);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003905 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003906 } else if (ret == 1) {
3907 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003908 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003909 }
3910
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003911 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003912 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003913 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003914 enospc_errors++;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07003915 } else if (ret == -ETXTBSY) {
3916 btrfs_info(fs_info,
3917 "skipping relocation of block group %llu due to active swapfile",
3918 found_key.offset);
3919 ret = 0;
3920 } else if (ret) {
3921 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003922 } else {
3923 spin_lock(&fs_info->balance_lock);
3924 bctl->stat.completed++;
3925 spin_unlock(&fs_info->balance_lock);
3926 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003927loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003928 if (found_key.offset == 0)
3929 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003930 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003931 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003932
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003933 if (counting) {
3934 btrfs_release_path(path);
3935 counting = false;
3936 goto again;
3937 }
Chris Masonec44a352008-04-28 15:29:52 -04003938error:
3939 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003940 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003941 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003942 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003943 if (!ret)
3944 ret = -ENOSPC;
3945 }
3946
Chris Masonec44a352008-04-28 15:29:52 -04003947 return ret;
3948}
3949
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003950/**
3951 * alloc_profile_is_valid - see if a given profile is valid and reduced
3952 * @flags: profile to validate
3953 * @extended: if true @flags is treated as an extended profile
3954 */
3955static int alloc_profile_is_valid(u64 flags, int extended)
3956{
3957 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3958 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3959
3960 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3961
3962 /* 1) check that all other bits are zeroed */
3963 if (flags & ~mask)
3964 return 0;
3965
3966 /* 2) see if profile is reduced */
3967 if (flags == 0)
3968 return !extended; /* "0" is valid for usual profiles */
3969
David Sterbac1499162019-10-01 19:44:42 +02003970 return has_single_bit_set(flags);
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003971}
3972
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003973static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3974{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003975 /* cancel requested || normal exit path */
3976 return atomic_read(&fs_info->balance_cancel_req) ||
3977 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3978 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003979}
3980
David Sterba5ba366c2020-02-27 21:00:52 +01003981/*
3982 * Validate target profile against allowed profiles and return true if it's OK.
3983 * Otherwise print the error message and return false.
3984 */
3985static inline int validate_convert_profile(struct btrfs_fs_info *fs_info,
3986 const struct btrfs_balance_args *bargs,
3987 u64 allowed, const char *type)
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003988{
David Sterba5ba366c2020-02-27 21:00:52 +01003989 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3990 return true;
3991
Qu Wenruoc8050b32021-07-26 14:35:01 +08003992 if (fs_info->sectorsize < PAGE_SIZE &&
3993 bargs->target & BTRFS_BLOCK_GROUP_RAID56_MASK) {
3994 btrfs_err(fs_info,
3995 "RAID56 is not yet supported for sectorsize %u with page size %lu",
3996 fs_info->sectorsize, PAGE_SIZE);
3997 return false;
3998 }
David Sterba5ba366c2020-02-27 21:00:52 +01003999 /* Profile is valid and does not have bits outside of the allowed set */
4000 if (alloc_profile_is_valid(bargs->target, 1) &&
4001 (bargs->target & ~allowed) == 0)
4002 return true;
4003
4004 btrfs_err(fs_info, "balance: invalid convert %s profile %s",
4005 type, btrfs_bg_type_to_raid_name(bargs->target));
4006 return false;
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00004007}
4008
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004009/*
Anand Jain56fc37d2018-11-20 16:12:56 +08004010 * Fill @buf with textual description of balance filter flags @bargs, up to
4011 * @size_buf including the terminating null. The output may be trimmed if it
4012 * does not fit into the provided buffer.
4013 */
4014static void describe_balance_args(struct btrfs_balance_args *bargs, char *buf,
4015 u32 size_buf)
4016{
4017 int ret;
4018 u32 size_bp = size_buf;
4019 char *bp = buf;
4020 u64 flags = bargs->flags;
4021 char tmp_buf[128] = {'\0'};
4022
4023 if (!flags)
4024 return;
4025
4026#define CHECK_APPEND_NOARG(a) \
4027 do { \
4028 ret = snprintf(bp, size_bp, (a)); \
4029 if (ret < 0 || ret >= size_bp) \
4030 goto out_overflow; \
4031 size_bp -= ret; \
4032 bp += ret; \
4033 } while (0)
4034
4035#define CHECK_APPEND_1ARG(a, v1) \
4036 do { \
4037 ret = snprintf(bp, size_bp, (a), (v1)); \
4038 if (ret < 0 || ret >= size_bp) \
4039 goto out_overflow; \
4040 size_bp -= ret; \
4041 bp += ret; \
4042 } while (0)
4043
4044#define CHECK_APPEND_2ARG(a, v1, v2) \
4045 do { \
4046 ret = snprintf(bp, size_bp, (a), (v1), (v2)); \
4047 if (ret < 0 || ret >= size_bp) \
4048 goto out_overflow; \
4049 size_bp -= ret; \
4050 bp += ret; \
4051 } while (0)
4052
David Sterba158da512019-05-17 11:43:41 +02004053 if (flags & BTRFS_BALANCE_ARGS_CONVERT)
4054 CHECK_APPEND_1ARG("convert=%s,",
4055 btrfs_bg_type_to_raid_name(bargs->target));
Anand Jain56fc37d2018-11-20 16:12:56 +08004056
4057 if (flags & BTRFS_BALANCE_ARGS_SOFT)
4058 CHECK_APPEND_NOARG("soft,");
4059
4060 if (flags & BTRFS_BALANCE_ARGS_PROFILES) {
4061 btrfs_describe_block_groups(bargs->profiles, tmp_buf,
4062 sizeof(tmp_buf));
4063 CHECK_APPEND_1ARG("profiles=%s,", tmp_buf);
4064 }
4065
4066 if (flags & BTRFS_BALANCE_ARGS_USAGE)
4067 CHECK_APPEND_1ARG("usage=%llu,", bargs->usage);
4068
4069 if (flags & BTRFS_BALANCE_ARGS_USAGE_RANGE)
4070 CHECK_APPEND_2ARG("usage=%u..%u,",
4071 bargs->usage_min, bargs->usage_max);
4072
4073 if (flags & BTRFS_BALANCE_ARGS_DEVID)
4074 CHECK_APPEND_1ARG("devid=%llu,", bargs->devid);
4075
4076 if (flags & BTRFS_BALANCE_ARGS_DRANGE)
4077 CHECK_APPEND_2ARG("drange=%llu..%llu,",
4078 bargs->pstart, bargs->pend);
4079
4080 if (flags & BTRFS_BALANCE_ARGS_VRANGE)
4081 CHECK_APPEND_2ARG("vrange=%llu..%llu,",
4082 bargs->vstart, bargs->vend);
4083
4084 if (flags & BTRFS_BALANCE_ARGS_LIMIT)
4085 CHECK_APPEND_1ARG("limit=%llu,", bargs->limit);
4086
4087 if (flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)
4088 CHECK_APPEND_2ARG("limit=%u..%u,",
4089 bargs->limit_min, bargs->limit_max);
4090
4091 if (flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE)
4092 CHECK_APPEND_2ARG("stripes=%u..%u,",
4093 bargs->stripes_min, bargs->stripes_max);
4094
4095#undef CHECK_APPEND_2ARG
4096#undef CHECK_APPEND_1ARG
4097#undef CHECK_APPEND_NOARG
4098
4099out_overflow:
4100
4101 if (size_bp < size_buf)
4102 buf[size_buf - size_bp - 1] = '\0'; /* remove last , */
4103 else
4104 buf[0] = '\0';
4105}
4106
4107static void describe_balance_start_or_resume(struct btrfs_fs_info *fs_info)
4108{
4109 u32 size_buf = 1024;
4110 char tmp_buf[192] = {'\0'};
4111 char *buf;
4112 char *bp;
4113 u32 size_bp = size_buf;
4114 int ret;
4115 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4116
4117 buf = kzalloc(size_buf, GFP_KERNEL);
4118 if (!buf)
4119 return;
4120
4121 bp = buf;
4122
4123#define CHECK_APPEND_1ARG(a, v1) \
4124 do { \
4125 ret = snprintf(bp, size_bp, (a), (v1)); \
4126 if (ret < 0 || ret >= size_bp) \
4127 goto out_overflow; \
4128 size_bp -= ret; \
4129 bp += ret; \
4130 } while (0)
4131
4132 if (bctl->flags & BTRFS_BALANCE_FORCE)
4133 CHECK_APPEND_1ARG("%s", "-f ");
4134
4135 if (bctl->flags & BTRFS_BALANCE_DATA) {
4136 describe_balance_args(&bctl->data, tmp_buf, sizeof(tmp_buf));
4137 CHECK_APPEND_1ARG("-d%s ", tmp_buf);
4138 }
4139
4140 if (bctl->flags & BTRFS_BALANCE_METADATA) {
4141 describe_balance_args(&bctl->meta, tmp_buf, sizeof(tmp_buf));
4142 CHECK_APPEND_1ARG("-m%s ", tmp_buf);
4143 }
4144
4145 if (bctl->flags & BTRFS_BALANCE_SYSTEM) {
4146 describe_balance_args(&bctl->sys, tmp_buf, sizeof(tmp_buf));
4147 CHECK_APPEND_1ARG("-s%s ", tmp_buf);
4148 }
4149
4150#undef CHECK_APPEND_1ARG
4151
4152out_overflow:
4153
4154 if (size_bp < size_buf)
4155 buf[size_buf - size_bp - 1] = '\0'; /* remove last " " */
4156 btrfs_info(fs_info, "balance: %s %s",
4157 (bctl->flags & BTRFS_BALANCE_RESUME) ?
4158 "resume" : "start", buf);
4159
4160 kfree(buf);
4161}
4162
4163/*
David Sterbadccdb072018-03-21 00:20:05 +01004164 * Should be called with balance mutexe held
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004165 */
David Sterba6fcf6e22018-05-07 17:44:03 +02004166int btrfs_balance(struct btrfs_fs_info *fs_info,
4167 struct btrfs_balance_control *bctl,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004168 struct btrfs_ioctl_balance_args *bargs)
4169{
Adam Borowski14506122017-03-07 23:34:44 +01004170 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004171 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03004172 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004173 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01004174 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00004175 unsigned seq;
Anand Jaine62869b2019-09-25 14:29:28 +08004176 bool reducing_redundancy;
David Sterba081db892019-05-17 11:43:27 +02004177 int i;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004178
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004179 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004180 atomic_read(&fs_info->balance_pause_req) ||
Qu Wenruo726a3422020-02-17 14:16:52 +08004181 btrfs_should_cancel_balance(fs_info)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004182 ret = -EINVAL;
4183 goto out;
4184 }
4185
Ilya Dryomove4837f82012-03-27 17:09:17 +03004186 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
4187 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
4188 mixed = 1;
4189
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004190 /*
4191 * In case of mixed groups both data and meta should be picked,
4192 * and identical options should be given for both of them.
4193 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03004194 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
4195 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004196 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
4197 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
4198 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004199 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004200 "balance: mixed groups data and metadata options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004201 ret = -EINVAL;
4202 goto out;
4203 }
4204 }
4205
Josef Bacikb35cf1f2020-01-10 11:11:24 -05004206 /*
4207 * rw_devices will not change at the moment, device add/delete/replace
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004208 * are exclusive
Josef Bacikb35cf1f2020-01-10 11:11:24 -05004209 */
4210 num_devices = fs_info->fs_devices->rw_devices;
Qu Wenruofab27352019-09-25 10:13:27 +08004211
4212 /*
4213 * SINGLE profile on-disk has no profile bit, but in-memory we have a
4214 * special bit for it, to make it easier to distinguish. Thus we need
4215 * to set it manually, or balance would refuse the profile.
4216 */
4217 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
David Sterba081db892019-05-17 11:43:27 +02004218 for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++)
4219 if (num_devices >= btrfs_raid_array[i].devs_min)
4220 allowed |= btrfs_raid_array[i].bg_flag;
Anand Jain1da73962018-08-10 13:53:21 +08004221
David Sterba5ba366c2020-02-27 21:00:52 +01004222 if (!validate_convert_profile(fs_info, &bctl->data, allowed, "data") ||
4223 !validate_convert_profile(fs_info, &bctl->meta, allowed, "metadata") ||
4224 !validate_convert_profile(fs_info, &bctl->sys, allowed, "system")) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004225 ret = -EINVAL;
4226 goto out;
4227 }
4228
David Sterba6079e122019-05-17 11:43:29 +02004229 /*
4230 * Allow to reduce metadata or system integrity only if force set for
4231 * profiles with redundancy (copies, parity)
4232 */
4233 allowed = 0;
4234 for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++) {
4235 if (btrfs_raid_array[i].ncopies >= 2 ||
4236 btrfs_raid_array[i].tolerated_failures >= 1)
4237 allowed |= btrfs_raid_array[i].bg_flag;
4238 }
Miao Xiede98ced2013-01-29 10:13:12 +00004239 do {
4240 seq = read_seqbegin(&fs_info->profiles_lock);
4241
4242 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
4243 (fs_info->avail_system_alloc_bits & allowed) &&
4244 !(bctl->sys.target & allowed)) ||
4245 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
4246 (fs_info->avail_metadata_alloc_bits & allowed) &&
Filipe Manana5a8067c2018-11-19 09:48:12 +00004247 !(bctl->meta.target & allowed)))
Anand Jaine62869b2019-09-25 14:29:28 +08004248 reducing_redundancy = true;
Filipe Manana5a8067c2018-11-19 09:48:12 +00004249 else
Anand Jaine62869b2019-09-25 14:29:28 +08004250 reducing_redundancy = false;
Filipe Manana5a8067c2018-11-19 09:48:12 +00004251
4252 /* if we're not converting, the target field is uninitialized */
4253 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
4254 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
4255 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
4256 bctl->data.target : fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004257 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004258
Anand Jaine62869b2019-09-25 14:29:28 +08004259 if (reducing_redundancy) {
Filipe Manana5a8067c2018-11-19 09:48:12 +00004260 if (bctl->flags & BTRFS_BALANCE_FORCE) {
4261 btrfs_info(fs_info,
Anand Jaine62869b2019-09-25 14:29:28 +08004262 "balance: force reducing metadata redundancy");
Filipe Manana5a8067c2018-11-19 09:48:12 +00004263 } else {
4264 btrfs_err(fs_info,
Anand Jaine62869b2019-09-25 14:29:28 +08004265 "balance: reduces metadata redundancy, use --force if you want this");
Filipe Manana5a8067c2018-11-19 09:48:12 +00004266 ret = -EINVAL;
4267 goto out;
4268 }
4269 }
4270
Adam Borowski14506122017-03-07 23:34:44 +01004271 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
4272 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00004273 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004274 "balance: metadata profile %s has lower redundancy than data profile %s",
David Sterba158da512019-05-17 11:43:41 +02004275 btrfs_bg_type_to_raid_name(meta_target),
4276 btrfs_bg_type_to_raid_name(data_target));
Sam Tygieree592d02016-01-06 08:46:12 +00004277 }
4278
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004279 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02004280 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02004281 goto out;
4282
Ilya Dryomov59641012012-01-16 22:04:48 +02004283 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
4284 BUG_ON(ret == -EEXIST);
David Sterba833aae12018-03-21 02:41:30 +01004285 BUG_ON(fs_info->balance_ctl);
4286 spin_lock(&fs_info->balance_lock);
4287 fs_info->balance_ctl = bctl;
4288 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov59641012012-01-16 22:04:48 +02004289 } else {
4290 BUG_ON(ret != -EEXIST);
4291 spin_lock(&fs_info->balance_lock);
4292 update_balance_args(bctl);
4293 spin_unlock(&fs_info->balance_lock);
4294 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004295
David Sterba3009a622018-03-21 01:31:04 +01004296 ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
4297 set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Anand Jain56fc37d2018-11-20 16:12:56 +08004298 describe_balance_start_or_resume(fs_info);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004299 mutex_unlock(&fs_info->balance_mutex);
4300
4301 ret = __btrfs_balance(fs_info);
4302
4303 mutex_lock(&fs_info->balance_mutex);
Anand Jain7333bd02018-11-20 16:12:57 +08004304 if (ret == -ECANCELED && atomic_read(&fs_info->balance_pause_req))
4305 btrfs_info(fs_info, "balance: paused");
Qu Wenruo44d354a2020-07-13 09:03:21 +08004306 /*
4307 * Balance can be canceled by:
4308 *
4309 * - Regular cancel request
4310 * Then ret == -ECANCELED and balance_cancel_req > 0
4311 *
4312 * - Fatal signal to "btrfs" process
4313 * Either the signal caught by wait_reserve_ticket() and callers
4314 * got -EINTR, or caught by btrfs_should_cancel_balance() and
4315 * got -ECANCELED.
4316 * Either way, in this case balance_cancel_req = 0, and
4317 * ret == -EINTR or ret == -ECANCELED.
4318 *
4319 * So here we only check the return value to catch canceled balance.
4320 */
4321 else if (ret == -ECANCELED || ret == -EINTR)
Anand Jain7333bd02018-11-20 16:12:57 +08004322 btrfs_info(fs_info, "balance: canceled");
4323 else
4324 btrfs_info(fs_info, "balance: ended with status: %d", ret);
4325
David Sterba3009a622018-03-21 01:31:04 +01004326 clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004327
4328 if (bargs) {
4329 memset(bargs, 0, sizeof(*bargs));
David Sterba008ef092018-03-21 02:05:27 +01004330 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004331 }
4332
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07004333 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
4334 balance_need_close(fs_info)) {
David Sterba149196a2018-03-20 20:23:09 +01004335 reset_balance_state(fs_info);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004336 btrfs_exclop_finish(fs_info);
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07004337 }
4338
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004339 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004340
4341 return ret;
4342out:
Ilya Dryomov59641012012-01-16 22:04:48 +02004343 if (bctl->flags & BTRFS_BALANCE_RESUME)
David Sterba149196a2018-03-20 20:23:09 +01004344 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004345 else
Ilya Dryomov59641012012-01-16 22:04:48 +02004346 kfree(bctl);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004347 btrfs_exclop_finish(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004348
Ilya Dryomov59641012012-01-16 22:04:48 +02004349 return ret;
4350}
4351
4352static int balance_kthread(void *data)
4353{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004354 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02004355 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02004356
Ilya Dryomov59641012012-01-16 22:04:48 +02004357 mutex_lock(&fs_info->balance_mutex);
Anand Jain56fc37d2018-11-20 16:12:56 +08004358 if (fs_info->balance_ctl)
David Sterba6fcf6e22018-05-07 17:44:03 +02004359 ret = btrfs_balance(fs_info, fs_info->balance_ctl, NULL);
Ilya Dryomov59641012012-01-16 22:04:48 +02004360 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004361
Ilya Dryomov59641012012-01-16 22:04:48 +02004362 return ret;
4363}
4364
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004365int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
4366{
4367 struct task_struct *tsk;
4368
David Sterba1354e1a2018-03-21 02:29:13 +01004369 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004370 if (!fs_info->balance_ctl) {
David Sterba1354e1a2018-03-21 02:29:13 +01004371 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004372 return 0;
4373 }
David Sterba1354e1a2018-03-21 02:29:13 +01004374 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004375
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004376 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08004377 btrfs_info(fs_info, "balance: resume skipped");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004378 return 0;
4379 }
4380
Anand Jain02ee6542018-05-17 15:16:51 +08004381 /*
4382 * A ro->rw remount sequence should continue with the paused balance
4383 * regardless of who pauses it, system or the user as of now, so set
4384 * the resume flag.
4385 */
4386 spin_lock(&fs_info->balance_lock);
4387 fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME;
4388 spin_unlock(&fs_info->balance_lock);
4389
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004390 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05304391 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004392}
4393
Ilya Dryomov68310a52012-06-22 12:24:12 -06004394int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02004395{
Ilya Dryomov59641012012-01-16 22:04:48 +02004396 struct btrfs_balance_control *bctl;
4397 struct btrfs_balance_item *item;
4398 struct btrfs_disk_balance_args disk_bargs;
4399 struct btrfs_path *path;
4400 struct extent_buffer *leaf;
4401 struct btrfs_key key;
4402 int ret;
4403
4404 path = btrfs_alloc_path();
4405 if (!path)
4406 return -ENOMEM;
4407
Ilya Dryomov68310a52012-06-22 12:24:12 -06004408 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01004409 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06004410 key.offset = 0;
4411
4412 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4413 if (ret < 0)
4414 goto out;
4415 if (ret > 0) { /* ret = -ENOENT; */
4416 ret = 0;
4417 goto out;
4418 }
4419
Ilya Dryomov59641012012-01-16 22:04:48 +02004420 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4421 if (!bctl) {
4422 ret = -ENOMEM;
4423 goto out;
4424 }
4425
Ilya Dryomov59641012012-01-16 22:04:48 +02004426 leaf = path->nodes[0];
4427 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4428
Ilya Dryomov68310a52012-06-22 12:24:12 -06004429 bctl->flags = btrfs_balance_flags(leaf, item);
4430 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004431
4432 btrfs_balance_data(leaf, item, &disk_bargs);
4433 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4434 btrfs_balance_meta(leaf, item, &disk_bargs);
4435 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4436 btrfs_balance_sys(leaf, item, &disk_bargs);
4437 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4438
David Sterbaeee95e32018-03-20 20:07:58 +01004439 /*
4440 * This should never happen, as the paused balance state is recovered
4441 * during mount without any chance of other exclusive ops to collide.
4442 *
4443 * This gives the exclusive op status to balance and keeps in paused
4444 * state until user intervention (cancel or umount). If the ownership
4445 * cannot be assigned, show a message but do not fail. The balance
4446 * is in a paused state and must have fs_info::balance_ctl properly
4447 * set up.
4448 */
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004449 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE))
David Sterbaeee95e32018-03-20 20:07:58 +01004450 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004451 "balance: cannot set exclusive op status, resume manually");
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004452
Josef Bacikfb286102020-12-16 11:22:14 -05004453 btrfs_release_path(path);
4454
Ilya Dryomov68310a52012-06-22 12:24:12 -06004455 mutex_lock(&fs_info->balance_mutex);
David Sterba833aae12018-03-21 02:41:30 +01004456 BUG_ON(fs_info->balance_ctl);
4457 spin_lock(&fs_info->balance_lock);
4458 fs_info->balance_ctl = bctl;
4459 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov68310a52012-06-22 12:24:12 -06004460 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004461out:
4462 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004463 return ret;
4464}
4465
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004466int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4467{
4468 int ret = 0;
4469
4470 mutex_lock(&fs_info->balance_mutex);
4471 if (!fs_info->balance_ctl) {
4472 mutex_unlock(&fs_info->balance_mutex);
4473 return -ENOTCONN;
4474 }
4475
David Sterba3009a622018-03-21 01:31:04 +01004476 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004477 atomic_inc(&fs_info->balance_pause_req);
4478 mutex_unlock(&fs_info->balance_mutex);
4479
4480 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004481 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004482
4483 mutex_lock(&fs_info->balance_mutex);
4484 /* we are good with balance_ctl ripped off from under us */
David Sterba3009a622018-03-21 01:31:04 +01004485 BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004486 atomic_dec(&fs_info->balance_pause_req);
4487 } else {
4488 ret = -ENOTCONN;
4489 }
4490
4491 mutex_unlock(&fs_info->balance_mutex);
4492 return ret;
4493}
4494
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004495int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4496{
4497 mutex_lock(&fs_info->balance_mutex);
4498 if (!fs_info->balance_ctl) {
4499 mutex_unlock(&fs_info->balance_mutex);
4500 return -ENOTCONN;
4501 }
4502
David Sterbacf7d20f2018-03-21 01:45:32 +01004503 /*
4504 * A paused balance with the item stored on disk can be resumed at
4505 * mount time if the mount is read-write. Otherwise it's still paused
4506 * and we must not allow cancelling as it deletes the item.
4507 */
4508 if (sb_rdonly(fs_info->sb)) {
4509 mutex_unlock(&fs_info->balance_mutex);
4510 return -EROFS;
4511 }
4512
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004513 atomic_inc(&fs_info->balance_cancel_req);
4514 /*
4515 * if we are running just wait and return, balance item is
4516 * deleted in btrfs_balance in this case
4517 */
David Sterba3009a622018-03-21 01:31:04 +01004518 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004519 mutex_unlock(&fs_info->balance_mutex);
4520 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004521 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004522 mutex_lock(&fs_info->balance_mutex);
4523 } else {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004524 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004525 /*
4526 * Lock released to allow other waiters to continue, we'll
4527 * reexamine the status again.
4528 */
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004529 mutex_lock(&fs_info->balance_mutex);
4530
David Sterbaa17c95d2018-03-20 17:28:05 +01004531 if (fs_info->balance_ctl) {
David Sterba149196a2018-03-20 20:23:09 +01004532 reset_balance_state(fs_info);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004533 btrfs_exclop_finish(fs_info);
Anand Jain6dac13f2018-05-16 10:51:26 +08004534 btrfs_info(fs_info, "balance: canceled");
David Sterbaa17c95d2018-03-20 17:28:05 +01004535 }
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004536 }
4537
David Sterba3009a622018-03-21 01:31:04 +01004538 BUG_ON(fs_info->balance_ctl ||
4539 test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004540 atomic_dec(&fs_info->balance_cancel_req);
4541 mutex_unlock(&fs_info->balance_mutex);
4542 return 0;
4543}
4544
Nikolay Borisov97f4dd02020-02-18 16:56:08 +02004545int btrfs_uuid_scan_kthread(void *data)
Stefan Behrens803b2f52013-08-15 17:11:21 +02004546{
4547 struct btrfs_fs_info *fs_info = data;
4548 struct btrfs_root *root = fs_info->tree_root;
4549 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004550 struct btrfs_path *path = NULL;
4551 int ret = 0;
4552 struct extent_buffer *eb;
4553 int slot;
4554 struct btrfs_root_item root_item;
4555 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004556 struct btrfs_trans_handle *trans = NULL;
Josef Bacikc94bec22020-02-14 15:05:01 -05004557 bool closing = false;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004558
4559 path = btrfs_alloc_path();
4560 if (!path) {
4561 ret = -ENOMEM;
4562 goto out;
4563 }
4564
4565 key.objectid = 0;
4566 key.type = BTRFS_ROOT_ITEM_KEY;
4567 key.offset = 0;
4568
Stefan Behrens803b2f52013-08-15 17:11:21 +02004569 while (1) {
Josef Bacikc94bec22020-02-14 15:05:01 -05004570 if (btrfs_fs_closing(fs_info)) {
4571 closing = true;
4572 break;
4573 }
Anand Jain7c829b72018-03-07 17:29:18 +08004574 ret = btrfs_search_forward(root, &key, path,
4575 BTRFS_OLDEST_GENERATION);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004576 if (ret) {
4577 if (ret > 0)
4578 ret = 0;
4579 break;
4580 }
4581
4582 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4583 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4584 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4585 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4586 goto skip;
4587
4588 eb = path->nodes[0];
4589 slot = path->slots[0];
4590 item_size = btrfs_item_size_nr(eb, slot);
4591 if (item_size < sizeof(root_item))
4592 goto skip;
4593
Stefan Behrens803b2f52013-08-15 17:11:21 +02004594 read_extent_buffer(eb, &root_item,
4595 btrfs_item_ptr_offset(eb, slot),
4596 (int)sizeof(root_item));
4597 if (btrfs_root_refs(&root_item) == 0)
4598 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004599
4600 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4601 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4602 if (trans)
4603 goto update_tree;
4604
4605 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004606 /*
4607 * 1 - subvol uuid item
4608 * 1 - received_subvol uuid item
4609 */
4610 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4611 if (IS_ERR(trans)) {
4612 ret = PTR_ERR(trans);
4613 break;
4614 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004615 continue;
4616 } else {
4617 goto skip;
4618 }
4619update_tree:
Josef Bacik9771a5cf2020-08-10 11:42:26 -04004620 btrfs_release_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004621 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004622 ret = btrfs_uuid_tree_add(trans, root_item.uuid,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004623 BTRFS_UUID_KEY_SUBVOL,
4624 key.objectid);
4625 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004626 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004627 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004628 break;
4629 }
4630 }
4631
4632 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004633 ret = btrfs_uuid_tree_add(trans,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004634 root_item.received_uuid,
4635 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4636 key.objectid);
4637 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004638 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004639 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004640 break;
4641 }
4642 }
4643
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004644skip:
Josef Bacik9771a5cf2020-08-10 11:42:26 -04004645 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004646 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004647 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004648 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004649 if (ret)
4650 break;
4651 }
4652
Stefan Behrens803b2f52013-08-15 17:11:21 +02004653 if (key.offset < (u64)-1) {
4654 key.offset++;
4655 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4656 key.offset = 0;
4657 key.type = BTRFS_ROOT_ITEM_KEY;
4658 } else if (key.objectid < (u64)-1) {
4659 key.offset = 0;
4660 key.type = BTRFS_ROOT_ITEM_KEY;
4661 key.objectid++;
4662 } else {
4663 break;
4664 }
4665 cond_resched();
4666 }
4667
4668out:
4669 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004670 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004671 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004672 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004673 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Josef Bacikc94bec22020-02-14 15:05:01 -05004674 else if (!closing)
Josef Bacikafcdd122016-09-02 15:40:02 -04004675 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004676 up(&fs_info->uuid_tree_rescan_sem);
4677 return 0;
4678}
4679
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004680int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4681{
4682 struct btrfs_trans_handle *trans;
4683 struct btrfs_root *tree_root = fs_info->tree_root;
4684 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004685 struct task_struct *task;
4686 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004687
4688 /*
4689 * 1 - root node
4690 * 1 - root item
4691 */
4692 trans = btrfs_start_transaction(tree_root, 2);
4693 if (IS_ERR(trans))
4694 return PTR_ERR(trans);
4695
David Sterba9b7a2442019-03-20 13:20:49 +01004696 uuid_root = btrfs_create_tree(trans, BTRFS_UUID_TREE_OBJECTID);
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004697 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004698 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004699 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004700 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004701 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004702 }
4703
4704 fs_info->uuid_root = uuid_root;
4705
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004706 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004707 if (ret)
4708 return ret;
4709
4710 down(&fs_info->uuid_tree_rescan_sem);
4711 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4712 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004713 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004714 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004715 up(&fs_info->uuid_tree_rescan_sem);
4716 return PTR_ERR(task);
4717 }
4718
4719 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004720}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004721
Chris Mason8f18cf12008-04-25 16:53:30 -04004722/*
4723 * shrinking a device means finding all of the device extents past
4724 * the new size, and then following the back refs to the chunks.
4725 * The chunk relocation code actually frees the device extent
4726 */
4727int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4728{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004729 struct btrfs_fs_info *fs_info = device->fs_info;
4730 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004731 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004732 struct btrfs_dev_extent *dev_extent = NULL;
4733 struct btrfs_path *path;
4734 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004735 u64 chunk_offset;
4736 int ret;
4737 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004738 int failed = 0;
4739 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004740 struct extent_buffer *l;
4741 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004742 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004743 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004744 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004745 u64 diff;
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004746 u64 start;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004747
4748 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004749 start = new_size;
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004750 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004751
Anand Jain401e29c2017-12-04 12:54:55 +08004752 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004753 return -EINVAL;
4754
Chris Mason8f18cf12008-04-25 16:53:30 -04004755 path = btrfs_alloc_path();
4756 if (!path)
4757 return -ENOMEM;
4758
Gu Jinxiang0338dff2018-04-27 16:22:07 +08004759 path->reada = READA_BACK;
Chris Mason8f18cf12008-04-25 16:53:30 -04004760
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004761 trans = btrfs_start_transaction(root, 0);
4762 if (IS_ERR(trans)) {
4763 btrfs_free_path(path);
4764 return PTR_ERR(trans);
4765 }
4766
David Sterba34441362016-10-04 19:34:27 +02004767 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004768
Miao Xie7cc8e582014-09-03 21:35:38 +08004769 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004770 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004771 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004772 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004773 }
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004774
4775 /*
4776 * Once the device's size has been set to the new size, ensure all
4777 * in-memory chunks are synced to disk so that the loop below sees them
4778 * and relocates them accordingly.
4779 */
Jeff Mahoney1c11b632019-03-27 14:24:12 +02004780 if (contains_pending_extent(device, &start, diff)) {
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004781 mutex_unlock(&fs_info->chunk_mutex);
4782 ret = btrfs_commit_transaction(trans);
4783 if (ret)
4784 goto done;
4785 } else {
4786 mutex_unlock(&fs_info->chunk_mutex);
4787 btrfs_end_transaction(trans);
4788 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004789
Josef Bacikba1bf482009-09-11 16:11:19 -04004790again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004791 key.objectid = device->devid;
4792 key.offset = (u64)-1;
4793 key.type = BTRFS_DEV_EXTENT_KEY;
4794
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004795 do {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004796 mutex_lock(&fs_info->reclaim_bgs_lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04004797 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004798 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004799 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04004800 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004801 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004802
4803 ret = btrfs_previous_item(root, path, 0, key.type);
Chris Mason8f18cf12008-04-25 16:53:30 -04004804 if (ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004805 mutex_unlock(&fs_info->reclaim_bgs_lock);
Nikolay Borisov7056bf62020-12-17 15:21:16 +02004806 if (ret < 0)
4807 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004808 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004809 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004810 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004811 }
4812
4813 l = path->nodes[0];
4814 slot = path->slots[0];
4815 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4816
Josef Bacikba1bf482009-09-11 16:11:19 -04004817 if (key.objectid != device->devid) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004818 mutex_unlock(&fs_info->reclaim_bgs_lock);
David Sterbab3b4aa72011-04-21 01:20:15 +02004819 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004820 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004821 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004822
4823 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4824 length = btrfs_dev_extent_length(l, dev_extent);
4825
Josef Bacikba1bf482009-09-11 16:11:19 -04004826 if (key.offset + length <= new_size) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004827 mutex_unlock(&fs_info->reclaim_bgs_lock);
David Sterbab3b4aa72011-04-21 01:20:15 +02004828 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004829 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004830 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004831
Chris Mason8f18cf12008-04-25 16:53:30 -04004832 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004833 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004834
Liu Boa6f93c72017-11-15 16:28:11 -07004835 /*
4836 * We may be relocating the only data chunk we have,
4837 * which could potentially end up with losing data's
4838 * raid profile, so lets allocate an empty one in
4839 * advance.
4840 */
4841 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4842 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004843 mutex_unlock(&fs_info->reclaim_bgs_lock);
Liu Boa6f93c72017-11-15 16:28:11 -07004844 goto done;
4845 }
4846
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004847 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004848 mutex_unlock(&fs_info->reclaim_bgs_lock);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004849 if (ret == -ENOSPC) {
Josef Bacikba1bf482009-09-11 16:11:19 -04004850 failed++;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004851 } else if (ret) {
4852 if (ret == -ETXTBSY) {
4853 btrfs_warn(fs_info,
4854 "could not shrink block group %llu due to active swapfile",
4855 chunk_offset);
4856 }
4857 goto done;
4858 }
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004859 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004860
4861 if (failed && !retried) {
4862 failed = 0;
4863 retried = true;
4864 goto again;
4865 } else if (failed && retried) {
4866 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004867 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004868 }
4869
Chris Balld6397ba2009-04-27 07:29:03 -04004870 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004871 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004872 if (IS_ERR(trans)) {
4873 ret = PTR_ERR(trans);
4874 goto done;
4875 }
4876
David Sterba34441362016-10-04 19:34:27 +02004877 mutex_lock(&fs_info->chunk_mutex);
Qu Wenruoc57dd1f2020-07-31 19:29:11 +08004878 /* Clear all state bits beyond the shrunk device size */
4879 clear_extent_bits(&device->alloc_state, new_size, (u64)-1,
4880 CHUNK_STATE_MASK);
4881
Miao Xie7cc8e582014-09-03 21:35:38 +08004882 btrfs_device_set_disk_total_bytes(device, new_size);
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02004883 if (list_empty(&device->post_commit_list))
4884 list_add_tail(&device->post_commit_list,
4885 &trans->transaction->dev_update_list);
Chris Balld6397ba2009-04-27 07:29:03 -04004886
Chris Balld6397ba2009-04-27 07:29:03 -04004887 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004888 btrfs_set_super_total_bytes(super_copy,
4889 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004890 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004891
4892 /* Now btrfs_update_device() will change the on-disk size. */
4893 ret = btrfs_update_device(trans, device);
Anand Jain801660b2018-08-06 18:12:37 +08004894 if (ret < 0) {
4895 btrfs_abort_transaction(trans, ret);
4896 btrfs_end_transaction(trans);
4897 } else {
4898 ret = btrfs_commit_transaction(trans);
4899 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004900done:
4901 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004902 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004903 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004904 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08004905 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01004906 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004907 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004908 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004909 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004910 return ret;
4911}
4912
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004913static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004914 struct btrfs_key *key,
4915 struct btrfs_chunk *chunk, int item_size)
4916{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004917 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004918 struct btrfs_disk_key disk_key;
4919 u32 array_size;
4920 u8 *ptr;
4921
Filipe Manana79bd3712021-06-29 14:43:06 +01004922 lockdep_assert_held(&fs_info->chunk_mutex);
4923
Chris Mason0b86a832008-03-24 15:01:56 -04004924 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004925 if (array_size + item_size + sizeof(disk_key)
Filipe Manana79bd3712021-06-29 14:43:06 +01004926 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
Chris Mason0b86a832008-03-24 15:01:56 -04004927 return -EFBIG;
4928
4929 ptr = super_copy->sys_chunk_array + array_size;
4930 btrfs_cpu_key_to_disk(&disk_key, key);
4931 memcpy(ptr, &disk_key, sizeof(disk_key));
4932 ptr += sizeof(disk_key);
4933 memcpy(ptr, chunk, item_size);
4934 item_size += sizeof(disk_key);
4935 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004936
Chris Mason0b86a832008-03-24 15:01:56 -04004937 return 0;
4938}
4939
Miao Xieb2117a32011-01-05 10:07:28 +00004940/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004941 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004942 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004943static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004944{
Arne Jansen73c5de02011-04-12 12:07:57 +02004945 const struct btrfs_device_info *di_a = a;
4946 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004947
Arne Jansen73c5de02011-04-12 12:07:57 +02004948 if (di_a->max_avail > di_b->max_avail)
4949 return -1;
4950 if (di_a->max_avail < di_b->max_avail)
4951 return 1;
4952 if (di_a->total_avail > di_b->total_avail)
4953 return -1;
4954 if (di_a->total_avail < di_b->total_avail)
4955 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004956 return 0;
4957}
4958
David Woodhouse53b381b2013-01-29 18:40:14 -05004959static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4960{
Zhao Leiffe2d202015-01-20 15:11:44 +08004961 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004962 return;
4963
Miao Xieceda0862013-04-11 10:30:16 +00004964 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004965}
4966
David Sterbacfbb8252018-07-10 18:15:05 +02004967static void check_raid1c34_incompat_flag(struct btrfs_fs_info *info, u64 type)
4968{
4969 if (!(type & (BTRFS_BLOCK_GROUP_RAID1C3 | BTRFS_BLOCK_GROUP_RAID1C4)))
4970 return;
4971
4972 btrfs_set_fs_incompat(info, RAID1C34);
4973}
4974
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09004975/*
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03004976 * Structure used internally for btrfs_create_chunk() function.
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09004977 * Wraps needed parameters.
4978 */
4979struct alloc_chunk_ctl {
4980 u64 start;
4981 u64 type;
4982 /* Total number of stripes to allocate */
4983 int num_stripes;
4984 /* sub_stripes info for map */
4985 int sub_stripes;
4986 /* Stripes per device */
4987 int dev_stripes;
4988 /* Maximum number of devices to use */
4989 int devs_max;
4990 /* Minimum number of devices to use */
4991 int devs_min;
4992 /* ndevs has to be a multiple of this */
4993 int devs_increment;
4994 /* Number of copies */
4995 int ncopies;
4996 /* Number of stripes worth of bytes to store parity information */
4997 int nparity;
4998 u64 max_stripe_size;
4999 u64 max_chunk_size;
Naohiro Aota6aafb302020-02-25 12:56:15 +09005000 u64 dev_extent_min;
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005001 u64 stripe_size;
5002 u64 chunk_size;
5003 int ndevs;
5004};
5005
Naohiro Aota27c314d2020-02-25 12:56:11 +09005006static void init_alloc_chunk_ctl_policy_regular(
5007 struct btrfs_fs_devices *fs_devices,
5008 struct alloc_chunk_ctl *ctl)
5009{
5010 u64 type = ctl->type;
5011
5012 if (type & BTRFS_BLOCK_GROUP_DATA) {
5013 ctl->max_stripe_size = SZ_1G;
5014 ctl->max_chunk_size = BTRFS_MAX_DATA_CHUNK_SIZE;
5015 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
5016 /* For larger filesystems, use larger metadata chunks */
5017 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
5018 ctl->max_stripe_size = SZ_1G;
5019 else
5020 ctl->max_stripe_size = SZ_256M;
5021 ctl->max_chunk_size = ctl->max_stripe_size;
5022 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
5023 ctl->max_stripe_size = SZ_32M;
5024 ctl->max_chunk_size = 2 * ctl->max_stripe_size;
5025 ctl->devs_max = min_t(int, ctl->devs_max,
5026 BTRFS_MAX_DEVS_SYS_CHUNK);
5027 } else {
5028 BUG();
5029 }
5030
5031 /* We don't want a chunk larger than 10% of writable space */
5032 ctl->max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
5033 ctl->max_chunk_size);
Naohiro Aota6aafb302020-02-25 12:56:15 +09005034 ctl->dev_extent_min = BTRFS_STRIPE_LEN * ctl->dev_stripes;
Naohiro Aota27c314d2020-02-25 12:56:11 +09005035}
5036
Naohiro Aota1cd61212021-02-04 19:21:48 +09005037static void init_alloc_chunk_ctl_policy_zoned(
5038 struct btrfs_fs_devices *fs_devices,
5039 struct alloc_chunk_ctl *ctl)
5040{
5041 u64 zone_size = fs_devices->fs_info->zone_size;
5042 u64 limit;
5043 int min_num_stripes = ctl->devs_min * ctl->dev_stripes;
5044 int min_data_stripes = (min_num_stripes - ctl->nparity) / ctl->ncopies;
5045 u64 min_chunk_size = min_data_stripes * zone_size;
5046 u64 type = ctl->type;
5047
5048 ctl->max_stripe_size = zone_size;
5049 if (type & BTRFS_BLOCK_GROUP_DATA) {
5050 ctl->max_chunk_size = round_down(BTRFS_MAX_DATA_CHUNK_SIZE,
5051 zone_size);
5052 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
5053 ctl->max_chunk_size = ctl->max_stripe_size;
5054 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
5055 ctl->max_chunk_size = 2 * ctl->max_stripe_size;
5056 ctl->devs_max = min_t(int, ctl->devs_max,
5057 BTRFS_MAX_DEVS_SYS_CHUNK);
Arnd Bergmannbb05b292021-03-23 15:31:19 +01005058 } else {
5059 BUG();
Naohiro Aota1cd61212021-02-04 19:21:48 +09005060 }
5061
5062 /* We don't want a chunk larger than 10% of writable space */
5063 limit = max(round_down(div_factor(fs_devices->total_rw_bytes, 1),
5064 zone_size),
5065 min_chunk_size);
5066 ctl->max_chunk_size = min(limit, ctl->max_chunk_size);
5067 ctl->dev_extent_min = zone_size * ctl->dev_stripes;
5068}
5069
Naohiro Aota27c314d2020-02-25 12:56:11 +09005070static void init_alloc_chunk_ctl(struct btrfs_fs_devices *fs_devices,
5071 struct alloc_chunk_ctl *ctl)
5072{
5073 int index = btrfs_bg_flags_to_raid_index(ctl->type);
5074
5075 ctl->sub_stripes = btrfs_raid_array[index].sub_stripes;
5076 ctl->dev_stripes = btrfs_raid_array[index].dev_stripes;
5077 ctl->devs_max = btrfs_raid_array[index].devs_max;
5078 if (!ctl->devs_max)
5079 ctl->devs_max = BTRFS_MAX_DEVS(fs_devices->fs_info);
5080 ctl->devs_min = btrfs_raid_array[index].devs_min;
5081 ctl->devs_increment = btrfs_raid_array[index].devs_increment;
5082 ctl->ncopies = btrfs_raid_array[index].ncopies;
5083 ctl->nparity = btrfs_raid_array[index].nparity;
5084 ctl->ndevs = 0;
5085
5086 switch (fs_devices->chunk_alloc_policy) {
5087 case BTRFS_CHUNK_ALLOC_REGULAR:
5088 init_alloc_chunk_ctl_policy_regular(fs_devices, ctl);
5089 break;
Naohiro Aota1cd61212021-02-04 19:21:48 +09005090 case BTRFS_CHUNK_ALLOC_ZONED:
5091 init_alloc_chunk_ctl_policy_zoned(fs_devices, ctl);
5092 break;
Naohiro Aota27c314d2020-02-25 12:56:11 +09005093 default:
5094 BUG();
5095 }
5096}
5097
Naohiro Aota560156c2020-02-25 12:56:12 +09005098static int gather_device_info(struct btrfs_fs_devices *fs_devices,
5099 struct alloc_chunk_ctl *ctl,
5100 struct btrfs_device_info *devices_info)
5101{
5102 struct btrfs_fs_info *info = fs_devices->fs_info;
5103 struct btrfs_device *device;
5104 u64 total_avail;
5105 u64 dev_extent_want = ctl->max_stripe_size * ctl->dev_stripes;
Naohiro Aota560156c2020-02-25 12:56:12 +09005106 int ret;
5107 int ndevs = 0;
5108 u64 max_avail;
5109 u64 dev_offset;
5110
5111 /*
5112 * in the first pass through the devices list, we gather information
5113 * about the available holes on each device.
5114 */
5115 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
5116 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
5117 WARN(1, KERN_ERR
5118 "BTRFS: read-only device in alloc_list\n");
5119 continue;
5120 }
5121
5122 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
5123 &device->dev_state) ||
5124 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
5125 continue;
5126
5127 if (device->total_bytes > device->bytes_used)
5128 total_avail = device->total_bytes - device->bytes_used;
5129 else
5130 total_avail = 0;
5131
5132 /* If there is no space on this device, skip it. */
Naohiro Aota6aafb302020-02-25 12:56:15 +09005133 if (total_avail < ctl->dev_extent_min)
Naohiro Aota560156c2020-02-25 12:56:12 +09005134 continue;
5135
5136 ret = find_free_dev_extent(device, dev_extent_want, &dev_offset,
5137 &max_avail);
5138 if (ret && ret != -ENOSPC)
5139 return ret;
5140
5141 if (ret == 0)
5142 max_avail = dev_extent_want;
5143
Naohiro Aota6aafb302020-02-25 12:56:15 +09005144 if (max_avail < ctl->dev_extent_min) {
Naohiro Aota560156c2020-02-25 12:56:12 +09005145 if (btrfs_test_opt(info, ENOSPC_DEBUG))
5146 btrfs_debug(info,
5147 "%s: devid %llu has no free space, have=%llu want=%llu",
5148 __func__, device->devid, max_avail,
Naohiro Aota6aafb302020-02-25 12:56:15 +09005149 ctl->dev_extent_min);
Naohiro Aota560156c2020-02-25 12:56:12 +09005150 continue;
5151 }
5152
5153 if (ndevs == fs_devices->rw_devices) {
5154 WARN(1, "%s: found more than %llu devices\n",
5155 __func__, fs_devices->rw_devices);
5156 break;
5157 }
5158 devices_info[ndevs].dev_offset = dev_offset;
5159 devices_info[ndevs].max_avail = max_avail;
5160 devices_info[ndevs].total_avail = total_avail;
5161 devices_info[ndevs].dev = device;
5162 ++ndevs;
5163 }
5164 ctl->ndevs = ndevs;
5165
5166 /*
5167 * now sort the devices by hole size / available space
5168 */
5169 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
5170 btrfs_cmp_device_info, NULL);
5171
5172 return 0;
5173}
5174
Naohiro Aota5badf512020-02-25 12:56:13 +09005175static int decide_stripe_size_regular(struct alloc_chunk_ctl *ctl,
5176 struct btrfs_device_info *devices_info)
5177{
5178 /* Number of stripes that count for block group size */
5179 int data_stripes;
5180
5181 /*
5182 * The primary goal is to maximize the number of stripes, so use as
5183 * many devices as possible, even if the stripes are not maximum sized.
5184 *
5185 * The DUP profile stores more than one stripe per device, the
5186 * max_avail is the total size so we have to adjust.
5187 */
5188 ctl->stripe_size = div_u64(devices_info[ctl->ndevs - 1].max_avail,
5189 ctl->dev_stripes);
5190 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5191
5192 /* This will have to be fixed for RAID1 and RAID10 over more drives */
5193 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5194
5195 /*
5196 * Use the number of data stripes to figure out how big this chunk is
5197 * really going to be in terms of logical address space, and compare
5198 * that answer with the max chunk size. If it's higher, we try to
5199 * reduce stripe_size.
5200 */
5201 if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) {
5202 /*
5203 * Reduce stripe_size, round it up to a 16MB boundary again and
5204 * then use it, unless it ends up being even bigger than the
5205 * previous value we had already.
5206 */
5207 ctl->stripe_size = min(round_up(div_u64(ctl->max_chunk_size,
5208 data_stripes), SZ_16M),
5209 ctl->stripe_size);
5210 }
5211
5212 /* Align to BTRFS_STRIPE_LEN */
5213 ctl->stripe_size = round_down(ctl->stripe_size, BTRFS_STRIPE_LEN);
5214 ctl->chunk_size = ctl->stripe_size * data_stripes;
5215
5216 return 0;
5217}
5218
Naohiro Aota1cd61212021-02-04 19:21:48 +09005219static int decide_stripe_size_zoned(struct alloc_chunk_ctl *ctl,
5220 struct btrfs_device_info *devices_info)
5221{
5222 u64 zone_size = devices_info[0].dev->zone_info->zone_size;
5223 /* Number of stripes that count for block group size */
5224 int data_stripes;
5225
5226 /*
5227 * It should hold because:
5228 * dev_extent_min == dev_extent_want == zone_size * dev_stripes
5229 */
5230 ASSERT(devices_info[ctl->ndevs - 1].max_avail == ctl->dev_extent_min);
5231
5232 ctl->stripe_size = zone_size;
5233 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5234 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5235
5236 /* stripe_size is fixed in zoned filesysmte. Reduce ndevs instead. */
5237 if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) {
5238 ctl->ndevs = div_u64(div_u64(ctl->max_chunk_size * ctl->ncopies,
5239 ctl->stripe_size) + ctl->nparity,
5240 ctl->dev_stripes);
5241 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5242 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5243 ASSERT(ctl->stripe_size * data_stripes <= ctl->max_chunk_size);
5244 }
5245
5246 ctl->chunk_size = ctl->stripe_size * data_stripes;
5247
5248 return 0;
5249}
5250
Naohiro Aota5badf512020-02-25 12:56:13 +09005251static int decide_stripe_size(struct btrfs_fs_devices *fs_devices,
5252 struct alloc_chunk_ctl *ctl,
5253 struct btrfs_device_info *devices_info)
5254{
5255 struct btrfs_fs_info *info = fs_devices->fs_info;
5256
5257 /*
5258 * Round down to number of usable stripes, devs_increment can be any
5259 * number so we can't use round_down() that requires power of 2, while
5260 * rounddown is safe.
5261 */
5262 ctl->ndevs = rounddown(ctl->ndevs, ctl->devs_increment);
5263
5264 if (ctl->ndevs < ctl->devs_min) {
5265 if (btrfs_test_opt(info, ENOSPC_DEBUG)) {
5266 btrfs_debug(info,
5267 "%s: not enough devices with free space: have=%d minimum required=%d",
5268 __func__, ctl->ndevs, ctl->devs_min);
5269 }
5270 return -ENOSPC;
5271 }
5272
5273 ctl->ndevs = min(ctl->ndevs, ctl->devs_max);
5274
5275 switch (fs_devices->chunk_alloc_policy) {
5276 case BTRFS_CHUNK_ALLOC_REGULAR:
5277 return decide_stripe_size_regular(ctl, devices_info);
Naohiro Aota1cd61212021-02-04 19:21:48 +09005278 case BTRFS_CHUNK_ALLOC_ZONED:
5279 return decide_stripe_size_zoned(ctl, devices_info);
Naohiro Aota5badf512020-02-25 12:56:13 +09005280 default:
5281 BUG();
5282 }
5283}
5284
Filipe Manana79bd3712021-06-29 14:43:06 +01005285static struct btrfs_block_group *create_chunk(struct btrfs_trans_handle *trans,
Naohiro Aotadce580c2020-02-25 12:56:14 +09005286 struct alloc_chunk_ctl *ctl,
5287 struct btrfs_device_info *devices_info)
5288{
5289 struct btrfs_fs_info *info = trans->fs_info;
5290 struct map_lookup *map = NULL;
5291 struct extent_map_tree *em_tree;
Filipe Manana79bd3712021-06-29 14:43:06 +01005292 struct btrfs_block_group *block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005293 struct extent_map *em;
5294 u64 start = ctl->start;
5295 u64 type = ctl->type;
5296 int ret;
5297 int i;
5298 int j;
5299
5300 map = kmalloc(map_lookup_size(ctl->num_stripes), GFP_NOFS);
5301 if (!map)
Filipe Manana79bd3712021-06-29 14:43:06 +01005302 return ERR_PTR(-ENOMEM);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005303 map->num_stripes = ctl->num_stripes;
5304
5305 for (i = 0; i < ctl->ndevs; ++i) {
5306 for (j = 0; j < ctl->dev_stripes; ++j) {
5307 int s = i * ctl->dev_stripes + j;
5308 map->stripes[s].dev = devices_info[i].dev;
5309 map->stripes[s].physical = devices_info[i].dev_offset +
5310 j * ctl->stripe_size;
5311 }
5312 }
5313 map->stripe_len = BTRFS_STRIPE_LEN;
5314 map->io_align = BTRFS_STRIPE_LEN;
5315 map->io_width = BTRFS_STRIPE_LEN;
5316 map->type = type;
5317 map->sub_stripes = ctl->sub_stripes;
5318
5319 trace_btrfs_chunk_alloc(info, map, start, ctl->chunk_size);
5320
5321 em = alloc_extent_map();
5322 if (!em) {
5323 kfree(map);
Filipe Manana79bd3712021-06-29 14:43:06 +01005324 return ERR_PTR(-ENOMEM);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005325 }
5326 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
5327 em->map_lookup = map;
5328 em->start = start;
5329 em->len = ctl->chunk_size;
5330 em->block_start = 0;
5331 em->block_len = em->len;
5332 em->orig_block_len = ctl->stripe_size;
5333
5334 em_tree = &info->mapping_tree;
5335 write_lock(&em_tree->lock);
5336 ret = add_extent_mapping(em_tree, em, 0);
5337 if (ret) {
5338 write_unlock(&em_tree->lock);
5339 free_extent_map(em);
Filipe Manana79bd3712021-06-29 14:43:06 +01005340 return ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005341 }
5342 write_unlock(&em_tree->lock);
5343
Filipe Manana79bd3712021-06-29 14:43:06 +01005344 block_group = btrfs_make_block_group(trans, 0, type, start, ctl->chunk_size);
5345 if (IS_ERR(block_group))
Naohiro Aotadce580c2020-02-25 12:56:14 +09005346 goto error_del_extent;
5347
5348 for (i = 0; i < map->num_stripes; i++) {
5349 struct btrfs_device *dev = map->stripes[i].dev;
5350
5351 btrfs_device_set_bytes_used(dev,
5352 dev->bytes_used + ctl->stripe_size);
5353 if (list_empty(&dev->post_commit_list))
5354 list_add_tail(&dev->post_commit_list,
5355 &trans->transaction->dev_update_list);
5356 }
5357
5358 atomic64_sub(ctl->stripe_size * map->num_stripes,
5359 &info->free_chunk_space);
5360
5361 free_extent_map(em);
5362 check_raid56_incompat_flag(info, type);
5363 check_raid1c34_incompat_flag(info, type);
5364
Filipe Manana79bd3712021-06-29 14:43:06 +01005365 return block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005366
5367error_del_extent:
5368 write_lock(&em_tree->lock);
5369 remove_extent_mapping(em_tree, em);
5370 write_unlock(&em_tree->lock);
5371
5372 /* One for our allocation */
5373 free_extent_map(em);
5374 /* One for the tree reference */
5375 free_extent_map(em);
5376
Filipe Manana79bd3712021-06-29 14:43:06 +01005377 return block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005378}
5379
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005380struct btrfs_block_group *btrfs_create_chunk(struct btrfs_trans_handle *trans,
Filipe Manana79bd3712021-06-29 14:43:06 +01005381 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00005382{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005383 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00005384 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Arne Jansen73c5de02011-04-12 12:07:57 +02005385 struct btrfs_device_info *devices_info = NULL;
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005386 struct alloc_chunk_ctl ctl;
Filipe Manana79bd3712021-06-29 14:43:06 +01005387 struct btrfs_block_group *block_group;
Miao Xieb2117a32011-01-05 10:07:28 +00005388 int ret;
Miao Xieb2117a32011-01-05 10:07:28 +00005389
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005390 lockdep_assert_held(&info->chunk_mutex);
5391
Naohiro Aotab25c19f2020-02-25 12:56:07 +09005392 if (!alloc_profile_is_valid(type, 0)) {
5393 ASSERT(0);
Filipe Manana79bd3712021-06-29 14:43:06 +01005394 return ERR_PTR(-EINVAL);
Naohiro Aotab25c19f2020-02-25 12:56:07 +09005395 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005396
Qu Wenruo4117f202018-01-22 13:50:54 +08005397 if (list_empty(&fs_devices->alloc_list)) {
5398 if (btrfs_test_opt(info, ENOSPC_DEBUG))
5399 btrfs_debug(info, "%s: no writable device", __func__);
Filipe Manana79bd3712021-06-29 14:43:06 +01005400 return ERR_PTR(-ENOSPC);
Qu Wenruo4117f202018-01-22 13:50:54 +08005401 }
Miao Xieb2117a32011-01-05 10:07:28 +00005402
Naohiro Aota27c314d2020-02-25 12:56:11 +09005403 if (!(type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
5404 btrfs_err(info, "invalid chunk type 0x%llx requested", type);
5405 ASSERT(0);
Filipe Manana79bd3712021-06-29 14:43:06 +01005406 return ERR_PTR(-EINVAL);
Arne Jansen73c5de02011-04-12 12:07:57 +02005407 }
5408
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005409 ctl.start = find_next_chunk(info);
Naohiro Aota27c314d2020-02-25 12:56:11 +09005410 ctl.type = type;
5411 init_alloc_chunk_ctl(fs_devices, &ctl);
Miao Xieb2117a32011-01-05 10:07:28 +00005412
David Sterba31e818f2015-02-20 18:00:26 +01005413 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00005414 GFP_NOFS);
5415 if (!devices_info)
Filipe Manana79bd3712021-06-29 14:43:06 +01005416 return ERR_PTR(-ENOMEM);
Miao Xieb2117a32011-01-05 10:07:28 +00005417
Naohiro Aota560156c2020-02-25 12:56:12 +09005418 ret = gather_device_info(fs_devices, &ctl, devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005419 if (ret < 0) {
5420 block_group = ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005421 goto out;
Filipe Manana79bd3712021-06-29 14:43:06 +01005422 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005423
Naohiro Aota5badf512020-02-25 12:56:13 +09005424 ret = decide_stripe_size(fs_devices, &ctl, devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005425 if (ret < 0) {
5426 block_group = ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005427 goto out;
Filipe Manana79bd3712021-06-29 14:43:06 +01005428 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005429
Filipe Manana79bd3712021-06-29 14:43:06 +01005430 block_group = create_chunk(trans, &ctl, devices_info);
Chris Mason9b3f68b2008-04-18 10:29:51 -04005431
Naohiro Aotadce580c2020-02-25 12:56:14 +09005432out:
Miao Xieb2117a32011-01-05 10:07:28 +00005433 kfree(devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005434 return block_group;
Yan Zheng2b820322008-11-17 21:11:30 -05005435}
5436
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005437/*
Filipe Manana79bd3712021-06-29 14:43:06 +01005438 * This function, btrfs_chunk_alloc_add_chunk_item(), typically belongs to the
5439 * phase 1 of chunk allocation. It belongs to phase 2 only when allocating system
5440 * chunks.
5441 *
5442 * See the comment at btrfs_chunk_alloc() for details about the chunk allocation
5443 * phases.
5444 */
5445int btrfs_chunk_alloc_add_chunk_item(struct btrfs_trans_handle *trans,
5446 struct btrfs_block_group *bg)
5447{
5448 struct btrfs_fs_info *fs_info = trans->fs_info;
5449 struct btrfs_root *extent_root = fs_info->extent_root;
5450 struct btrfs_root *chunk_root = fs_info->chunk_root;
5451 struct btrfs_key key;
5452 struct btrfs_chunk *chunk;
5453 struct btrfs_stripe *stripe;
5454 struct extent_map *em;
5455 struct map_lookup *map;
5456 size_t item_size;
5457 int i;
5458 int ret;
5459
5460 /*
5461 * We take the chunk_mutex for 2 reasons:
5462 *
5463 * 1) Updates and insertions in the chunk btree must be done while holding
5464 * the chunk_mutex, as well as updating the system chunk array in the
5465 * superblock. See the comment on top of btrfs_chunk_alloc() for the
5466 * details;
5467 *
5468 * 2) To prevent races with the final phase of a device replace operation
5469 * that replaces the device object associated with the map's stripes,
5470 * because the device object's id can change at any time during that
5471 * final phase of the device replace operation
5472 * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the
5473 * replaced device and then see it with an ID of BTRFS_DEV_REPLACE_DEVID,
5474 * which would cause a failure when updating the device item, which does
5475 * not exists, or persisting a stripe of the chunk item with such ID.
5476 * Here we can't use the device_list_mutex because our caller already
5477 * has locked the chunk_mutex, and the final phase of device replace
5478 * acquires both mutexes - first the device_list_mutex and then the
5479 * chunk_mutex. Using any of those two mutexes protects us from a
5480 * concurrent device replace.
5481 */
5482 lockdep_assert_held(&fs_info->chunk_mutex);
5483
5484 em = btrfs_get_chunk_map(fs_info, bg->start, bg->length);
5485 if (IS_ERR(em)) {
5486 ret = PTR_ERR(em);
5487 btrfs_abort_transaction(trans, ret);
5488 return ret;
5489 }
5490
5491 map = em->map_lookup;
5492 item_size = btrfs_chunk_item_size(map->num_stripes);
5493
5494 chunk = kzalloc(item_size, GFP_NOFS);
5495 if (!chunk) {
5496 ret = -ENOMEM;
5497 btrfs_abort_transaction(trans, ret);
Filipe Manana50460e32015-11-20 10:42:47 +00005498 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005499 }
5500
Filipe Manana79bd3712021-06-29 14:43:06 +01005501 for (i = 0; i < map->num_stripes; i++) {
5502 struct btrfs_device *device = map->stripes[i].dev;
5503
5504 ret = btrfs_update_device(trans, device);
5505 if (ret)
5506 goto out;
5507 }
5508
Yan Zheng2b820322008-11-17 21:11:30 -05005509 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04005510 for (i = 0; i < map->num_stripes; i++) {
Filipe Manana79bd3712021-06-29 14:43:06 +01005511 struct btrfs_device *device = map->stripes[i].dev;
5512 const u64 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05005513
5514 btrfs_set_stack_stripe_devid(stripe, device->devid);
5515 btrfs_set_stack_stripe_offset(stripe, dev_offset);
5516 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
5517 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05005518 }
5519
Filipe Manana79bd3712021-06-29 14:43:06 +01005520 btrfs_set_stack_chunk_length(chunk, bg->length);
Yan Zheng2b820322008-11-17 21:11:30 -05005521 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
5522 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
5523 btrfs_set_stack_chunk_type(chunk, map->type);
5524 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
5525 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
5526 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005527 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05005528 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
5529
5530 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
5531 key.type = BTRFS_CHUNK_ITEM_KEY;
Filipe Manana79bd3712021-06-29 14:43:06 +01005532 key.offset = bg->start;
Yan Zheng2b820322008-11-17 21:11:30 -05005533
5534 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Filipe Manana79bd3712021-06-29 14:43:06 +01005535 if (ret)
5536 goto out;
5537
5538 bg->chunk_item_inserted = 1;
5539
5540 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005541 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Filipe Manana79bd3712021-06-29 14:43:06 +01005542 if (ret)
5543 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005544 }
liubo1abe9b82011-03-24 11:18:59 +00005545
Josef Bacik6df9a952013-06-27 13:22:46 -04005546out:
Yan Zheng2b820322008-11-17 21:11:30 -05005547 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005548 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005549 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005550}
5551
David Sterba6f8e0fc2019-03-20 16:29:13 +01005552static noinline int init_first_rw_device(struct btrfs_trans_handle *trans)
Yan Zheng2b820322008-11-17 21:11:30 -05005553{
David Sterba6f8e0fc2019-03-20 16:29:13 +01005554 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng2b820322008-11-17 21:11:30 -05005555 u64 alloc_profile;
Filipe Manana79bd3712021-06-29 14:43:06 +01005556 struct btrfs_block_group *meta_bg;
5557 struct btrfs_block_group *sys_bg;
5558
5559 /*
5560 * When adding a new device for sprouting, the seed device is read-only
5561 * so we must first allocate a metadata and a system chunk. But before
5562 * adding the block group items to the extent, device and chunk btrees,
5563 * we must first:
5564 *
5565 * 1) Create both chunks without doing any changes to the btrees, as
5566 * otherwise we would get -ENOSPC since the block groups from the
5567 * seed device are read-only;
5568 *
5569 * 2) Add the device item for the new sprout device - finishing the setup
5570 * of a new block group requires updating the device item in the chunk
5571 * btree, so it must exist when we attempt to do it. The previous step
5572 * ensures this does not fail with -ENOSPC.
5573 *
5574 * After that we can add the block group items to their btrees:
5575 * update existing device item in the chunk btree, add a new block group
5576 * item to the extent btree, add a new chunk item to the chunk btree and
5577 * finally add the new device extent items to the devices btree.
5578 */
Yan Zheng2b820322008-11-17 21:11:30 -05005579
Jeff Mahoney1b868262017-05-17 11:38:35 -04005580 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005581 meta_bg = btrfs_create_chunk(trans, alloc_profile);
Filipe Manana79bd3712021-06-29 14:43:06 +01005582 if (IS_ERR(meta_bg))
5583 return PTR_ERR(meta_bg);
Yan Zheng2b820322008-11-17 21:11:30 -05005584
Jeff Mahoney1b868262017-05-17 11:38:35 -04005585 alloc_profile = btrfs_system_alloc_profile(fs_info);
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005586 sys_bg = btrfs_create_chunk(trans, alloc_profile);
Filipe Manana79bd3712021-06-29 14:43:06 +01005587 if (IS_ERR(sys_bg))
5588 return PTR_ERR(sys_bg);
5589
5590 return 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005591}
5592
Miao Xied20983b2014-07-03 18:22:13 +08005593static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5594{
David Sterbafc9a2ac2019-05-17 11:43:22 +02005595 const int index = btrfs_bg_flags_to_raid_index(map->type);
Miao Xied20983b2014-07-03 18:22:13 +08005596
David Sterbafc9a2ac2019-05-17 11:43:22 +02005597 return btrfs_raid_array[index].tolerated_failures;
Yan Zheng2b820322008-11-17 21:11:30 -05005598}
5599
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005600int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005601{
5602 struct extent_map *em;
5603 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005604 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005605 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005606 int i;
5607
Omar Sandoval60ca8422018-05-16 16:34:31 -07005608 em = btrfs_get_chunk_map(fs_info, chunk_offset, 1);
Liu Bo592d92e2017-03-14 13:33:55 -07005609 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005610 return 1;
5611
Jeff Mahoney95617d62015-06-03 10:55:48 -04005612 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005613 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005614 if (test_bit(BTRFS_DEV_STATE_MISSING,
5615 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005616 miss_ndevs++;
5617 continue;
5618 }
Anand Jainebbede42017-12-04 12:54:52 +08005619 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5620 &map->stripes[i].dev->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05005621 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005622 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005623 }
5624 }
Miao Xied20983b2014-07-03 18:22:13 +08005625
5626 /*
5627 * If the number of missing devices is larger than max errors,
5628 * we can not write the data into that chunk successfully, so
5629 * set it readonly.
5630 */
5631 if (miss_ndevs > btrfs_chunk_max_errors(map))
5632 readonly = 1;
5633end:
Yan Zheng2b820322008-11-17 21:11:30 -05005634 free_extent_map(em);
5635 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005636}
5637
David Sterbac8bf1b62019-05-17 11:43:17 +02005638void btrfs_mapping_tree_free(struct extent_map_tree *tree)
Chris Mason0b86a832008-03-24 15:01:56 -04005639{
5640 struct extent_map *em;
5641
Chris Masond3977122009-01-05 21:25:51 -05005642 while (1) {
David Sterbac8bf1b62019-05-17 11:43:17 +02005643 write_lock(&tree->lock);
5644 em = lookup_extent_mapping(tree, 0, (u64)-1);
Chris Mason0b86a832008-03-24 15:01:56 -04005645 if (em)
David Sterbac8bf1b62019-05-17 11:43:17 +02005646 remove_extent_mapping(tree, em);
5647 write_unlock(&tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005648 if (!em)
5649 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005650 /* once for us */
5651 free_extent_map(em);
5652 /* once for the tree */
5653 free_extent_map(em);
5654 }
5655}
5656
Stefan Behrens5d964052012-11-05 14:59:07 +01005657int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005658{
5659 struct extent_map *em;
5660 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005661 int ret;
5662
Omar Sandoval60ca8422018-05-16 16:34:31 -07005663 em = btrfs_get_chunk_map(fs_info, logical, len);
Liu Bo592d92e2017-03-14 13:33:55 -07005664 if (IS_ERR(em))
5665 /*
5666 * We could return errors for these cases, but that could get
5667 * ugly and we'd probably do the same thing which is just not do
5668 * anything else and exit, so return 1 so the callers don't try
5669 * to use other copies.
5670 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005671 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005672
Jeff Mahoney95617d62015-06-03 10:55:48 -04005673 map = em->map_lookup;
David Sterbac7369b32019-05-31 15:39:31 +02005674 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1_MASK))
Chris Masonf1885912008-04-09 16:28:12 -04005675 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005676 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5677 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005678 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5679 ret = 2;
5680 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005681 /*
5682 * There could be two corrupted data stripes, we need
5683 * to loop retry in order to rebuild the correct data.
Nikolay Borisove7e02092018-06-20 15:48:55 +03005684 *
Liu Bo8810f752018-01-02 13:36:41 -07005685 * Fail a stripe at a time on every retry except the
5686 * stripe under reconstruction.
5687 */
5688 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005689 else
5690 ret = 1;
5691 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005692
David Sterbacb5583d2018-09-07 16:11:23 +02005693 down_read(&fs_info->dev_replace.rwsem);
Liu Bo6fad8232017-03-14 13:33:59 -07005694 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5695 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005696 ret++;
David Sterbacb5583d2018-09-07 16:11:23 +02005697 up_read(&fs_info->dev_replace.rwsem);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005698
Chris Masonf1885912008-04-09 16:28:12 -04005699 return ret;
5700}
5701
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005702unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005703 u64 logical)
5704{
5705 struct extent_map *em;
5706 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005707 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005708
Omar Sandoval60ca8422018-05-16 16:34:31 -07005709 em = btrfs_get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005710
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005711 if (!WARN_ON(IS_ERR(em))) {
5712 map = em->map_lookup;
5713 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5714 len = map->stripe_len * nr_data_stripes(map);
5715 free_extent_map(em);
5716 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005717 return len;
5718}
5719
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005720int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005721{
5722 struct extent_map *em;
5723 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005724 int ret = 0;
5725
Omar Sandoval60ca8422018-05-16 16:34:31 -07005726 em = btrfs_get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005727
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005728 if(!WARN_ON(IS_ERR(em))) {
5729 map = em->map_lookup;
5730 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5731 ret = 1;
5732 free_extent_map(em);
5733 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005734 return ret;
5735}
5736
Stefan Behrens30d98612012-11-06 14:52:18 +01005737static int find_live_mirror(struct btrfs_fs_info *fs_info,
Anand Jain99f92a72018-03-14 16:29:12 +08005738 struct map_lookup *map, int first,
Anand Jain8ba0ae72018-03-14 16:29:13 +08005739 int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005740{
5741 int i;
Anand Jain99f92a72018-03-14 16:29:12 +08005742 int num_stripes;
Anand Jain8ba0ae72018-03-14 16:29:13 +08005743 int preferred_mirror;
Stefan Behrens30d98612012-11-06 14:52:18 +01005744 int tolerance;
5745 struct btrfs_device *srcdev;
5746
Anand Jain99f92a72018-03-14 16:29:12 +08005747 ASSERT((map->type &
David Sterbac7369b32019-05-31 15:39:31 +02005748 (BTRFS_BLOCK_GROUP_RAID1_MASK | BTRFS_BLOCK_GROUP_RAID10)));
Anand Jain99f92a72018-03-14 16:29:12 +08005749
5750 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5751 num_stripes = map->sub_stripes;
5752 else
5753 num_stripes = map->num_stripes;
5754
Anand Jain33fd2f72020-10-28 21:14:46 +08005755 switch (fs_info->fs_devices->read_policy) {
5756 default:
5757 /* Shouldn't happen, just warn and use pid instead of failing */
5758 btrfs_warn_rl(fs_info,
5759 "unknown read_policy type %u, reset to pid",
5760 fs_info->fs_devices->read_policy);
5761 fs_info->fs_devices->read_policy = BTRFS_READ_POLICY_PID;
5762 fallthrough;
5763 case BTRFS_READ_POLICY_PID:
5764 preferred_mirror = first + (current->pid % num_stripes);
5765 break;
5766 }
Anand Jain8ba0ae72018-03-14 16:29:13 +08005767
Stefan Behrens30d98612012-11-06 14:52:18 +01005768 if (dev_replace_is_ongoing &&
5769 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5770 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5771 srcdev = fs_info->dev_replace.srcdev;
5772 else
5773 srcdev = NULL;
5774
5775 /*
5776 * try to avoid the drive that is the source drive for a
5777 * dev-replace procedure, only choose it if no other non-missing
5778 * mirror is available
5779 */
5780 for (tolerance = 0; tolerance < 2; tolerance++) {
Anand Jain8ba0ae72018-03-14 16:29:13 +08005781 if (map->stripes[preferred_mirror].dev->bdev &&
5782 (tolerance || map->stripes[preferred_mirror].dev != srcdev))
5783 return preferred_mirror;
Anand Jain99f92a72018-03-14 16:29:12 +08005784 for (i = first; i < first + num_stripes; i++) {
Stefan Behrens30d98612012-11-06 14:52:18 +01005785 if (map->stripes[i].dev->bdev &&
5786 (tolerance || map->stripes[i].dev != srcdev))
5787 return i;
5788 }
Chris Masondfe25022008-05-13 13:46:40 -04005789 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005790
Chris Masondfe25022008-05-13 13:46:40 -04005791 /* we couldn't find one that doesn't fail. Just return something
5792 * and the io error handling code will clean up eventually
5793 */
Anand Jain8ba0ae72018-03-14 16:29:13 +08005794 return preferred_mirror;
Chris Masondfe25022008-05-13 13:46:40 -04005795}
5796
David Woodhouse53b381b2013-01-29 18:40:14 -05005797/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005798static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005799{
David Woodhouse53b381b2013-01-29 18:40:14 -05005800 int i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005801 int again = 1;
5802
5803 while (again) {
5804 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005805 for (i = 0; i < num_stripes - 1; i++) {
David Sterbaeeb6f172019-11-28 15:31:17 +01005806 /* Swap if parity is on a smaller index */
5807 if (bbio->raid_map[i] > bbio->raid_map[i + 1]) {
5808 swap(bbio->stripes[i], bbio->stripes[i + 1]);
5809 swap(bbio->raid_map[i], bbio->raid_map[i + 1]);
David Woodhouse53b381b2013-01-29 18:40:14 -05005810 again = 1;
5811 }
5812 }
5813 }
5814}
5815
Zhao Lei6e9606d2015-01-20 15:11:34 +08005816static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5817{
5818 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005819 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005820 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005821 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005822 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005823 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005824 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005825 /*
5826 * plus the raid_map, which includes both the tgt dev
5827 * and the stripes
5828 */
5829 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005830 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005831
5832 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005833 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005834
Nikolay Borisov608769a2020-07-02 16:46:41 +03005835 bbio->tgtdev_map = (int *)(bbio->stripes + total_stripes);
5836 bbio->raid_map = (u64 *)(bbio->tgtdev_map + real_stripes);
5837
Zhao Lei6e9606d2015-01-20 15:11:34 +08005838 return bbio;
5839}
5840
5841void btrfs_get_bbio(struct btrfs_bio *bbio)
5842{
Elena Reshetova140475a2017-03-03 10:55:10 +02005843 WARN_ON(!refcount_read(&bbio->refs));
5844 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005845}
5846
5847void btrfs_put_bbio(struct btrfs_bio *bbio)
5848{
5849 if (!bbio)
5850 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005851 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005852 kfree(bbio);
5853}
5854
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005855/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5856/*
5857 * Please note that, discard won't be sent to target device of device
5858 * replace.
5859 */
5860static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005861 u64 logical, u64 *length_ret,
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005862 struct btrfs_bio **bbio_ret)
5863{
5864 struct extent_map *em;
5865 struct map_lookup *map;
5866 struct btrfs_bio *bbio;
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005867 u64 length = *length_ret;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005868 u64 offset;
5869 u64 stripe_nr;
5870 u64 stripe_nr_end;
5871 u64 stripe_end_offset;
5872 u64 stripe_cnt;
5873 u64 stripe_len;
5874 u64 stripe_offset;
5875 u64 num_stripes;
5876 u32 stripe_index;
5877 u32 factor = 0;
5878 u32 sub_stripes = 0;
5879 u64 stripes_per_dev = 0;
5880 u32 remaining_stripes = 0;
5881 u32 last_stripe = 0;
5882 int ret = 0;
5883 int i;
5884
5885 /* discard always return a bbio */
5886 ASSERT(bbio_ret);
5887
Omar Sandoval60ca8422018-05-16 16:34:31 -07005888 em = btrfs_get_chunk_map(fs_info, logical, length);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005889 if (IS_ERR(em))
5890 return PTR_ERR(em);
5891
5892 map = em->map_lookup;
5893 /* we don't discard raid56 yet */
5894 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5895 ret = -EOPNOTSUPP;
5896 goto out;
5897 }
5898
5899 offset = logical - em->start;
Qu Wenruo2d974612019-10-23 21:57:26 +08005900 length = min_t(u64, em->start + em->len - logical, length);
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005901 *length_ret = length;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005902
5903 stripe_len = map->stripe_len;
5904 /*
5905 * stripe_nr counts the total number of stripes we have to stride
5906 * to get to this block
5907 */
5908 stripe_nr = div64_u64(offset, stripe_len);
5909
5910 /* stripe_offset is the offset of this block in its stripe */
5911 stripe_offset = offset - stripe_nr * stripe_len;
5912
5913 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005914 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005915 stripe_cnt = stripe_nr_end - stripe_nr;
5916 stripe_end_offset = stripe_nr_end * map->stripe_len -
5917 (offset + length);
5918 /*
5919 * after this, stripe_nr is the number of stripes on this
5920 * device we have to walk to find the data, and stripe_index is
5921 * the number of our device in the stripe array
5922 */
5923 num_stripes = 1;
5924 stripe_index = 0;
5925 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5926 BTRFS_BLOCK_GROUP_RAID10)) {
5927 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5928 sub_stripes = 1;
5929 else
5930 sub_stripes = map->sub_stripes;
5931
5932 factor = map->num_stripes / sub_stripes;
5933 num_stripes = min_t(u64, map->num_stripes,
5934 sub_stripes * stripe_cnt);
5935 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5936 stripe_index *= sub_stripes;
5937 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5938 &remaining_stripes);
5939 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5940 last_stripe *= sub_stripes;
David Sterbac7369b32019-05-31 15:39:31 +02005941 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1_MASK |
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005942 BTRFS_BLOCK_GROUP_DUP)) {
5943 num_stripes = map->num_stripes;
5944 } else {
5945 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5946 &stripe_index);
5947 }
5948
5949 bbio = alloc_btrfs_bio(num_stripes, 0);
5950 if (!bbio) {
5951 ret = -ENOMEM;
5952 goto out;
5953 }
5954
5955 for (i = 0; i < num_stripes; i++) {
5956 bbio->stripes[i].physical =
5957 map->stripes[stripe_index].physical +
5958 stripe_offset + stripe_nr * map->stripe_len;
5959 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5960
5961 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5962 BTRFS_BLOCK_GROUP_RAID10)) {
5963 bbio->stripes[i].length = stripes_per_dev *
5964 map->stripe_len;
5965
5966 if (i / sub_stripes < remaining_stripes)
5967 bbio->stripes[i].length +=
5968 map->stripe_len;
5969
5970 /*
5971 * Special for the first stripe and
5972 * the last stripe:
5973 *
5974 * |-------|...|-------|
5975 * |----------|
5976 * off end_off
5977 */
5978 if (i < sub_stripes)
5979 bbio->stripes[i].length -=
5980 stripe_offset;
5981
5982 if (stripe_index >= last_stripe &&
5983 stripe_index <= (last_stripe +
5984 sub_stripes - 1))
5985 bbio->stripes[i].length -=
5986 stripe_end_offset;
5987
5988 if (i == sub_stripes - 1)
5989 stripe_offset = 0;
5990 } else {
5991 bbio->stripes[i].length = length;
5992 }
5993
5994 stripe_index++;
5995 if (stripe_index == map->num_stripes) {
5996 stripe_index = 0;
5997 stripe_nr++;
5998 }
5999 }
6000
6001 *bbio_ret = bbio;
6002 bbio->map_type = map->type;
6003 bbio->num_stripes = num_stripes;
6004out:
6005 free_extent_map(em);
6006 return ret;
6007}
6008
Liu Bo5ab56092017-03-14 13:33:57 -07006009/*
6010 * In dev-replace case, for repair case (that's the only case where the mirror
6011 * is selected explicitly when calling btrfs_map_block), blocks left of the
6012 * left cursor can also be read from the target drive.
6013 *
6014 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
6015 * array of stripes.
6016 * For READ, it also needs to be supported using the same mirror number.
6017 *
6018 * If the requested block is not left of the left cursor, EIO is returned. This
6019 * can happen because btrfs_num_copies() returns one more in the dev-replace
6020 * case.
6021 */
6022static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
6023 u64 logical, u64 length,
6024 u64 srcdev_devid, int *mirror_num,
6025 u64 *physical)
6026{
6027 struct btrfs_bio *bbio = NULL;
6028 int num_stripes;
6029 int index_srcdev = 0;
6030 int found = 0;
6031 u64 physical_of_found = 0;
6032 int i;
6033 int ret = 0;
6034
6035 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
6036 logical, &length, &bbio, 0, 0);
6037 if (ret) {
6038 ASSERT(bbio == NULL);
6039 return ret;
6040 }
6041
6042 num_stripes = bbio->num_stripes;
6043 if (*mirror_num > num_stripes) {
6044 /*
6045 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
6046 * that means that the requested area is not left of the left
6047 * cursor
6048 */
6049 btrfs_put_bbio(bbio);
6050 return -EIO;
6051 }
6052
6053 /*
6054 * process the rest of the function using the mirror_num of the source
6055 * drive. Therefore look it up first. At the end, patch the device
6056 * pointer to the one of the target drive.
6057 */
6058 for (i = 0; i < num_stripes; i++) {
6059 if (bbio->stripes[i].dev->devid != srcdev_devid)
6060 continue;
6061
6062 /*
6063 * In case of DUP, in order to keep it simple, only add the
6064 * mirror with the lowest physical address
6065 */
6066 if (found &&
6067 physical_of_found <= bbio->stripes[i].physical)
6068 continue;
6069
6070 index_srcdev = i;
6071 found = 1;
6072 physical_of_found = bbio->stripes[i].physical;
6073 }
6074
6075 btrfs_put_bbio(bbio);
6076
6077 ASSERT(found);
6078 if (!found)
6079 return -EIO;
6080
6081 *mirror_num = index_srcdev + 1;
6082 *physical = physical_of_found;
6083 return ret;
6084}
6085
Naohiro Aota6143c232021-02-04 19:22:12 +09006086static bool is_block_group_to_copy(struct btrfs_fs_info *fs_info, u64 logical)
6087{
6088 struct btrfs_block_group *cache;
6089 bool ret;
6090
Naohiro Aotade17add2021-02-04 19:22:13 +09006091 /* Non zoned filesystem does not use "to_copy" flag */
Naohiro Aota6143c232021-02-04 19:22:12 +09006092 if (!btrfs_is_zoned(fs_info))
6093 return false;
6094
6095 cache = btrfs_lookup_block_group(fs_info, logical);
6096
6097 spin_lock(&cache->lock);
6098 ret = cache->to_copy;
6099 spin_unlock(&cache->lock);
6100
6101 btrfs_put_block_group(cache);
6102 return ret;
6103}
6104
Liu Bo73c0f222017-03-14 13:33:58 -07006105static void handle_ops_on_dev_replace(enum btrfs_map_op op,
6106 struct btrfs_bio **bbio_ret,
6107 struct btrfs_dev_replace *dev_replace,
Naohiro Aota6143c232021-02-04 19:22:12 +09006108 u64 logical,
Liu Bo73c0f222017-03-14 13:33:58 -07006109 int *num_stripes_ret, int *max_errors_ret)
6110{
6111 struct btrfs_bio *bbio = *bbio_ret;
6112 u64 srcdev_devid = dev_replace->srcdev->devid;
6113 int tgtdev_indexes = 0;
6114 int num_stripes = *num_stripes_ret;
6115 int max_errors = *max_errors_ret;
6116 int i;
6117
6118 if (op == BTRFS_MAP_WRITE) {
6119 int index_where_to_add;
6120
6121 /*
Naohiro Aota6143c232021-02-04 19:22:12 +09006122 * A block group which have "to_copy" set will eventually
6123 * copied by dev-replace process. We can avoid cloning IO here.
6124 */
6125 if (is_block_group_to_copy(dev_replace->srcdev->fs_info, logical))
6126 return;
6127
6128 /*
Liu Bo73c0f222017-03-14 13:33:58 -07006129 * duplicate the write operations while the dev replace
6130 * procedure is running. Since the copying of the old disk to
6131 * the new disk takes place at run time while the filesystem is
6132 * mounted writable, the regular write operations to the old
6133 * disk have to be duplicated to go to the new disk as well.
6134 *
6135 * Note that device->missing is handled by the caller, and that
6136 * the write to the old disk is already set up in the stripes
6137 * array.
6138 */
6139 index_where_to_add = num_stripes;
6140 for (i = 0; i < num_stripes; i++) {
6141 if (bbio->stripes[i].dev->devid == srcdev_devid) {
6142 /* write to new disk, too */
6143 struct btrfs_bio_stripe *new =
6144 bbio->stripes + index_where_to_add;
6145 struct btrfs_bio_stripe *old =
6146 bbio->stripes + i;
6147
6148 new->physical = old->physical;
6149 new->length = old->length;
6150 new->dev = dev_replace->tgtdev;
6151 bbio->tgtdev_map[i] = index_where_to_add;
6152 index_where_to_add++;
6153 max_errors++;
6154 tgtdev_indexes++;
6155 }
6156 }
6157 num_stripes = index_where_to_add;
6158 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
6159 int index_srcdev = 0;
6160 int found = 0;
6161 u64 physical_of_found = 0;
6162
6163 /*
6164 * During the dev-replace procedure, the target drive can also
6165 * be used to read data in case it is needed to repair a corrupt
6166 * block elsewhere. This is possible if the requested area is
6167 * left of the left cursor. In this area, the target drive is a
6168 * full copy of the source drive.
6169 */
6170 for (i = 0; i < num_stripes; i++) {
6171 if (bbio->stripes[i].dev->devid == srcdev_devid) {
6172 /*
6173 * In case of DUP, in order to keep it simple,
6174 * only add the mirror with the lowest physical
6175 * address
6176 */
6177 if (found &&
6178 physical_of_found <=
6179 bbio->stripes[i].physical)
6180 continue;
6181 index_srcdev = i;
6182 found = 1;
6183 physical_of_found = bbio->stripes[i].physical;
6184 }
6185 }
6186 if (found) {
6187 struct btrfs_bio_stripe *tgtdev_stripe =
6188 bbio->stripes + num_stripes;
6189
6190 tgtdev_stripe->physical = physical_of_found;
6191 tgtdev_stripe->length =
6192 bbio->stripes[index_srcdev].length;
6193 tgtdev_stripe->dev = dev_replace->tgtdev;
6194 bbio->tgtdev_map[index_srcdev] = num_stripes;
6195
6196 tgtdev_indexes++;
6197 num_stripes++;
6198 }
6199 }
6200
6201 *num_stripes_ret = num_stripes;
6202 *max_errors_ret = max_errors;
6203 bbio->num_tgtdevs = tgtdev_indexes;
6204 *bbio_ret = bbio;
6205}
6206
Liu Bo2b19a1f2017-03-14 13:34:00 -07006207static bool need_full_stripe(enum btrfs_map_op op)
6208{
6209 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
6210}
6211
Nikolay Borisov5f141122019-06-03 12:05:03 +03006212/*
Michal Rostecki42034312021-01-27 14:57:27 +01006213 * Calculate the geometry of a particular (address, len) tuple. This
6214 * information is used to calculate how big a particular bio can get before it
6215 * straddles a stripe.
Nikolay Borisov5f141122019-06-03 12:05:03 +03006216 *
Michal Rostecki42034312021-01-27 14:57:27 +01006217 * @fs_info: the filesystem
6218 * @em: mapping containing the logical extent
6219 * @op: type of operation - write or read
6220 * @logical: address that we want to figure out the geometry of
Michal Rostecki42034312021-01-27 14:57:27 +01006221 * @io_geom: pointer used to return values
Nikolay Borisov5f141122019-06-03 12:05:03 +03006222 *
6223 * Returns < 0 in case a chunk for the given logical address cannot be found,
6224 * usually shouldn't happen unless @logical is corrupted, 0 otherwise.
6225 */
Michal Rostecki42034312021-01-27 14:57:27 +01006226int btrfs_get_io_geometry(struct btrfs_fs_info *fs_info, struct extent_map *em,
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006227 enum btrfs_map_op op, u64 logical,
Michal Rostecki42034312021-01-27 14:57:27 +01006228 struct btrfs_io_geometry *io_geom)
Nikolay Borisov5f141122019-06-03 12:05:03 +03006229{
Nikolay Borisov5f141122019-06-03 12:05:03 +03006230 struct map_lookup *map;
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006231 u64 len;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006232 u64 offset;
6233 u64 stripe_offset;
6234 u64 stripe_nr;
6235 u64 stripe_len;
6236 u64 raid56_full_stripe_start = (u64)-1;
6237 int data_stripes;
6238
6239 ASSERT(op != BTRFS_MAP_DISCARD);
6240
Nikolay Borisov5f141122019-06-03 12:05:03 +03006241 map = em->map_lookup;
6242 /* Offset of this logical address in the chunk */
6243 offset = logical - em->start;
6244 /* Len of a stripe in a chunk */
6245 stripe_len = map->stripe_len;
David Sterba1a9fd412021-05-21 17:42:23 +02006246 /* Stripe where this block falls in */
Nikolay Borisov5f141122019-06-03 12:05:03 +03006247 stripe_nr = div64_u64(offset, stripe_len);
6248 /* Offset of stripe in the chunk */
6249 stripe_offset = stripe_nr * stripe_len;
6250 if (offset < stripe_offset) {
6251 btrfs_crit(fs_info,
6252"stripe math has gone wrong, stripe_offset=%llu offset=%llu start=%llu logical=%llu stripe_len=%llu",
6253 stripe_offset, offset, em->start, logical, stripe_len);
Michal Rostecki42034312021-01-27 14:57:27 +01006254 return -EINVAL;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006255 }
6256
6257 /* stripe_offset is the offset of this block in its stripe */
6258 stripe_offset = offset - stripe_offset;
6259 data_stripes = nr_data_stripes(map);
6260
6261 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
6262 u64 max_len = stripe_len - stripe_offset;
6263
6264 /*
6265 * In case of raid56, we need to know the stripe aligned start
6266 */
6267 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
6268 unsigned long full_stripe_len = stripe_len * data_stripes;
6269 raid56_full_stripe_start = offset;
6270
6271 /*
6272 * Allow a write of a full stripe, but make sure we
6273 * don't allow straddling of stripes
6274 */
6275 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
6276 full_stripe_len);
6277 raid56_full_stripe_start *= full_stripe_len;
6278
6279 /*
6280 * For writes to RAID[56], allow a full stripeset across
6281 * all disks. For other RAID types and for RAID[56]
6282 * reads, just allow a single stripe (on a single disk).
6283 */
6284 if (op == BTRFS_MAP_WRITE) {
6285 max_len = stripe_len * data_stripes -
6286 (offset - raid56_full_stripe_start);
6287 }
6288 }
6289 len = min_t(u64, em->len - offset, max_len);
6290 } else {
6291 len = em->len - offset;
6292 }
6293
6294 io_geom->len = len;
6295 io_geom->offset = offset;
6296 io_geom->stripe_len = stripe_len;
6297 io_geom->stripe_nr = stripe_nr;
6298 io_geom->stripe_offset = stripe_offset;
6299 io_geom->raid56_stripe_offset = raid56_full_stripe_start;
6300
Michal Rostecki42034312021-01-27 14:57:27 +01006301 return 0;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006302}
6303
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006304static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
6305 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04006306 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02006307 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006308 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04006309{
6310 struct extent_map *em;
6311 struct map_lookup *map;
Chris Mason593060d2008-03-25 16:50:33 -04006312 u64 stripe_offset;
6313 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006314 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01006315 u32 stripe_index;
David Sterbacff82672019-05-17 11:43:45 +02006316 int data_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04006317 int i;
Li Zefande11cc12011-12-01 12:55:47 +08006318 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04006319 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04006320 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08006321 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006322 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01006323 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
6324 int dev_replace_is_ongoing = 0;
6325 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006326 int patch_the_first_stripe_for_dev_replace = 0;
6327 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006328 u64 raid56_full_stripe_start = (u64)-1;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006329 struct btrfs_io_geometry geom;
6330
6331 ASSERT(bbio_ret);
David Sterba75fb2e92018-08-03 00:36:29 +02006332 ASSERT(op != BTRFS_MAP_DISCARD);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006333
Michal Rostecki42034312021-01-27 14:57:27 +01006334 em = btrfs_get_chunk_map(fs_info, logical, *length);
6335 ASSERT(!IS_ERR(em));
6336
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006337 ret = btrfs_get_io_geometry(fs_info, em, op, logical, &geom);
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006338 if (ret < 0)
6339 return ret;
6340
Jeff Mahoney95617d62015-06-03 10:55:48 -04006341 map = em->map_lookup;
Chris Mason593060d2008-03-25 16:50:33 -04006342
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006343 *length = geom.len;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006344 stripe_len = geom.stripe_len;
6345 stripe_nr = geom.stripe_nr;
6346 stripe_offset = geom.stripe_offset;
6347 raid56_full_stripe_start = geom.raid56_stripe_offset;
David Sterbacff82672019-05-17 11:43:45 +02006348 data_stripes = nr_data_stripes(map);
Chris Mason593060d2008-03-25 16:50:33 -04006349
David Sterbacb5583d2018-09-07 16:11:23 +02006350 down_read(&dev_replace->rwsem);
Stefan Behrens472262f2012-11-06 14:43:46 +01006351 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
David Sterba53176dd2018-04-05 01:41:06 +02006352 /*
6353 * Hold the semaphore for read during the whole operation, write is
6354 * requested at commit time but must wait.
6355 */
Stefan Behrens472262f2012-11-06 14:43:46 +01006356 if (!dev_replace_is_ongoing)
David Sterbacb5583d2018-09-07 16:11:23 +02006357 up_read(&dev_replace->rwsem);
Stefan Behrens472262f2012-11-06 14:43:46 +01006358
Stefan Behrensad6d6202012-11-06 15:06:47 +01006359 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07006360 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07006361 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
6362 dev_replace->srcdev->devid,
6363 &mirror_num,
6364 &physical_to_patch_in_first_stripe);
6365 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006366 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07006367 else
6368 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006369 } else if (mirror_num > map->num_stripes) {
6370 mirror_num = 0;
6371 }
6372
Chris Masonf2d8d742008-04-21 10:03:05 -04006373 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04006374 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00006375 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01006376 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6377 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08006378 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08006379 mirror_num = 1;
David Sterbac7369b32019-05-31 15:39:31 +02006380 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08006381 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04006382 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04006383 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04006384 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04006385 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01006386 stripe_index = find_live_mirror(fs_info, map, 0,
Stefan Behrens30d98612012-11-06 14:52:18 +01006387 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006388 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04006389 }
Chris Mason2fff7342008-04-29 14:12:09 -04006390
Chris Mason611f0e02008-04-03 16:29:03 -04006391 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08006392 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04006393 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006394 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04006395 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006396 } else {
6397 mirror_num = 1;
6398 }
Chris Mason2fff7342008-04-29 14:12:09 -04006399
Chris Mason321aecc2008-04-16 10:49:51 -04006400 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01006401 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04006402
David Sterba47c57132015-02-20 18:43:47 +01006403 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04006404 stripe_index *= map->sub_stripes;
6405
Anand Jainde483732017-10-12 16:43:00 +08006406 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04006407 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04006408 else if (mirror_num)
6409 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04006410 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04006411 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01006412 stripe_index = find_live_mirror(fs_info, map,
6413 stripe_index,
Stefan Behrens30d98612012-11-06 14:52:18 +01006414 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04006415 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04006416 }
David Woodhouse53b381b2013-01-29 18:40:14 -05006417
Zhao Leiffe2d202015-01-20 15:11:44 +08006418 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08006419 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006420 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07006421 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbacff82672019-05-17 11:43:45 +02006422 stripe_len * data_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05006423
6424 /* RAID[56] write or recovery. Return all stripes */
6425 num_stripes = map->num_stripes;
6426 max_errors = nr_parity_stripes(map);
6427
David Woodhouse53b381b2013-01-29 18:40:14 -05006428 *length = map->stripe_len;
6429 stripe_index = 0;
6430 stripe_offset = 0;
6431 } else {
6432 /*
6433 * Mirror #0 or #1 means the original data block.
6434 * Mirror #2 is RAID5 parity block.
6435 * Mirror #3 is RAID6 Q block.
6436 */
David Sterba47c57132015-02-20 18:43:47 +01006437 stripe_nr = div_u64_rem(stripe_nr,
David Sterbacff82672019-05-17 11:43:45 +02006438 data_stripes, &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05006439 if (mirror_num > 1)
David Sterbacff82672019-05-17 11:43:45 +02006440 stripe_index = data_stripes + mirror_num - 2;
David Woodhouse53b381b2013-01-29 18:40:14 -05006441
6442 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01006443 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
6444 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08006445 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08006446 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05006447 }
Chris Mason8790d502008-04-03 16:29:03 -04006448 } else {
6449 /*
David Sterba47c57132015-02-20 18:43:47 +01006450 * after this, stripe_nr is the number of stripes on this
6451 * device we have to walk to find the data, and stripe_index is
6452 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04006453 */
David Sterba47c57132015-02-20 18:43:47 +01006454 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6455 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006456 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04006457 }
Josef Bacike042d1e2016-04-12 12:54:40 -04006458 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006459 btrfs_crit(fs_info,
6460 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04006461 stripe_index, map->num_stripes);
6462 ret = -EINVAL;
6463 goto out;
6464 }
Chris Mason593060d2008-03-25 16:50:33 -04006465
Stefan Behrens472262f2012-11-06 14:43:46 +01006466 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07006467 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006468 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006469 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006470 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006471 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08006472 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006473 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08006474
Zhao Lei6e9606d2015-01-20 15:11:34 +08006475 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08006476 if (!bbio) {
6477 ret = -ENOMEM;
6478 goto out;
6479 }
Nikolay Borisov608769a2020-07-02 16:46:41 +03006480
6481 for (i = 0; i < num_stripes; i++) {
6482 bbio->stripes[i].physical = map->stripes[stripe_index].physical +
6483 stripe_offset + stripe_nr * map->stripe_len;
6484 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
6485 stripe_index++;
6486 }
Li Zefande11cc12011-12-01 12:55:47 +08006487
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006488 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07006489 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
6490 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006491 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01006492 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006493
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006494 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01006495 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006496
6497 /* Fill in the logical address of each stripe */
David Sterbacff82672019-05-17 11:43:45 +02006498 tmp = stripe_nr * data_stripes;
6499 for (i = 0; i < data_stripes; i++)
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006500 bbio->raid_map[(i+rot) % num_stripes] =
6501 em->start + (tmp + i) * map->stripe_len;
6502
6503 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
6504 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
6505 bbio->raid_map[(i+rot+1) % num_stripes] =
6506 RAID6_Q_STRIPE;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006507
Nikolay Borisov608769a2020-07-02 16:46:41 +03006508 sort_parity_stripes(bbio, num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04006509 }
Li Zefande11cc12011-12-01 12:55:47 +08006510
Liu Bo2b19a1f2017-03-14 13:34:00 -07006511 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08006512 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08006513
Liu Bo73c0f222017-03-14 13:33:58 -07006514 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07006515 need_full_stripe(op)) {
Naohiro Aota6143c232021-02-04 19:22:12 +09006516 handle_ops_on_dev_replace(op, &bbio, dev_replace, logical,
6517 &num_stripes, &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01006518 }
6519
Li Zefande11cc12011-12-01 12:55:47 +08006520 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08006521 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08006522 bbio->num_stripes = num_stripes;
6523 bbio->max_errors = max_errors;
6524 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006525
6526 /*
6527 * this is the case that REQ_READ && dev_replace_is_ongoing &&
6528 * mirror_num == num_stripes + 1 && dev_replace target drive is
6529 * available as a mirror
6530 */
6531 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
6532 WARN_ON(num_stripes > 1);
6533 bbio->stripes[0].dev = dev_replace->tgtdev;
6534 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
6535 bbio->mirror_num = map->num_stripes + 1;
6536 }
Chris Masoncea9e442008-04-09 16:28:12 -04006537out:
Liu Bo73beece2015-07-17 16:49:19 +08006538 if (dev_replace_is_ongoing) {
David Sterba53176dd2018-04-05 01:41:06 +02006539 lockdep_assert_held(&dev_replace->rwsem);
6540 /* Unlock and let waiting writers proceed */
David Sterbacb5583d2018-09-07 16:11:23 +02006541 up_read(&dev_replace->rwsem);
Liu Bo73beece2015-07-17 16:49:19 +08006542 }
Chris Mason0b86a832008-03-24 15:01:56 -04006543 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08006544 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04006545}
6546
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006547int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04006548 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02006549 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04006550{
David Sterba75fb2e92018-08-03 00:36:29 +02006551 if (op == BTRFS_MAP_DISCARD)
6552 return __btrfs_map_block_for_discard(fs_info, logical,
6553 length, bbio_ret);
6554
Mike Christieb3d3fa52016-06-05 14:31:53 -05006555 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006556 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04006557}
6558
Miao Xieaf8e2d12014-10-23 14:42:50 +08006559/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006560int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08006561 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02006562 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08006563{
David Sterba825ad4c2017-03-28 14:45:22 +02006564 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08006565}
6566
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006567static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006568{
Mike Snitzer326e1db2015-05-22 09:14:03 -04006569 bio->bi_private = bbio->private;
6570 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006571 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006572
Zhao Lei6e9606d2015-01-20 15:11:34 +08006573 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08006574}
6575
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006576static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006577{
Chris Mason9be33952013-05-17 18:30:14 -04006578 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006579 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006580
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006581 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006582 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006583 if (bio->bi_status == BLK_STS_IOERR ||
6584 bio->bi_status == BLK_STS_TARGET) {
Nikolay Borisovc31efbd2020-07-03 11:14:27 +03006585 struct btrfs_device *dev = btrfs_io_bio(bio)->device;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006586
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006587 ASSERT(dev->bdev);
Naohiro Aotacfe94442021-02-04 19:21:59 +09006588 if (btrfs_op(bio) == BTRFS_MAP_WRITE)
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006589 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006590 BTRFS_DEV_STAT_WRITE_ERRS);
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006591 else if (!(bio->bi_opf & REQ_RAHEAD))
6592 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006593 BTRFS_DEV_STAT_READ_ERRS);
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006594 if (bio->bi_opf & REQ_PREFLUSH)
6595 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006596 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens442a4f62012-05-25 16:06:08 +02006597 }
6598 }
Chris Mason8790d502008-04-03 16:29:03 -04006599
Jan Schmidta1d3c472011-08-04 17:15:33 +02006600 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006601 is_orig_bio = 1;
6602
Miao Xiec404e0d2014-01-30 16:46:55 +08006603 btrfs_bio_counter_dec(bbio->fs_info);
6604
Jan Schmidta1d3c472011-08-04 17:15:33 +02006605 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006606 if (!is_orig_bio) {
6607 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006608 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006609 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006610
Chris Mason9be33952013-05-17 18:30:14 -04006611 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006612 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006613 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006614 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006615 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006616 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006617 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006618 /*
6619 * this bio is actually up to date, we didn't
6620 * go over the max number of errors
6621 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006622 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006623 }
Miao Xiec55f1392014-06-19 10:42:54 +08006624
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006625 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006626 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006627 bio_put(bio);
6628 }
Chris Mason8790d502008-04-03 16:29:03 -04006629}
6630
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006631static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
Nikolay Borisovc31efbd2020-07-03 11:14:27 +03006632 u64 physical, struct btrfs_device *dev)
Josef Bacikde1ee922012-10-19 16:50:56 -04006633{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006634 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006635
6636 bio->bi_private = bbio;
Nikolay Borisovc31efbd2020-07-03 11:14:27 +03006637 btrfs_io_bio(bio)->device = dev;
Josef Bacikde1ee922012-10-19 16:50:56 -04006638 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006639 bio->bi_iter.bi_sector = physical >> 9;
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09006640 /*
6641 * For zone append writing, bi_sector must point the beginning of the
6642 * zone
6643 */
6644 if (bio_op(bio) == REQ_OP_ZONE_APPEND) {
6645 if (btrfs_dev_is_sequential(dev, physical)) {
6646 u64 zone_start = round_down(physical, fs_info->zone_size);
6647
6648 bio->bi_iter.bi_sector = zone_start >> SECTOR_SHIFT;
6649 } else {
6650 bio->bi_opf &= ~REQ_OP_ZONE_APPEND;
6651 bio->bi_opf |= REQ_OP_WRITE;
6652 }
6653 }
Misono Tomohiro672d5992018-08-02 16:19:07 +09006654 btrfs_debug_in_rcu(fs_info,
6655 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
David Sterba1201b582020-11-26 15:41:27 +01006656 bio_op(bio), bio->bi_opf, bio->bi_iter.bi_sector,
David Sterba1db45a32019-11-28 15:31:46 +01006657 (unsigned long)dev->bdev->bd_dev, rcu_str_deref(dev->name),
6658 dev->devid, bio->bi_iter.bi_size);
Christoph Hellwig74d46992017-08-23 19:10:32 +02006659 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006660
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006661 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006662
Chris Mason08635ba2019-07-10 12:28:14 -07006663 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006664}
6665
Josef Bacikde1ee922012-10-19 16:50:56 -04006666static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6667{
6668 atomic_inc(&bbio->error);
6669 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006670 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006671 WARN_ON(bio != bbio->orig_bio);
6672
Chris Mason9be33952013-05-17 18:30:14 -04006673 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006674 bio->bi_iter.bi_sector = logical >> 9;
Anand Jain102ed2c2017-10-14 08:34:02 +08006675 if (atomic_read(&bbio->error) > bbio->max_errors)
6676 bio->bi_status = BLK_STS_IOERR;
6677 else
6678 bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006679 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006680 }
6681}
6682
Omar Sandoval58efbc92017-08-22 23:45:59 -07006683blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
Chris Mason08635ba2019-07-10 12:28:14 -07006684 int mirror_num)
Chris Mason0b86a832008-03-24 15:01:56 -04006685{
Chris Mason0b86a832008-03-24 15:01:56 -04006686 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006687 struct bio *first_bio = bio;
David Sterba1201b582020-11-26 15:41:27 +01006688 u64 logical = bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006689 u64 length = 0;
6690 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006691 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006692 int dev_nr;
6693 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006694 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006695
Kent Overstreet4f024f32013-10-11 15:44:27 -07006696 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006697 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006698
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006699 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006700 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006701 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006702 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006703 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006704 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006705 }
Chris Masoncea9e442008-04-09 16:28:12 -04006706
Jan Schmidta1d3c472011-08-04 17:15:33 +02006707 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006708 bbio->orig_bio = first_bio;
6709 bbio->private = first_bio->bi_private;
6710 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006711 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006712 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6713
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006714 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Naohiro Aotacfe94442021-02-04 19:21:59 +09006715 ((btrfs_op(bio) == BTRFS_MAP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006716 /* In this case, map_length has been set to the length of
6717 a single stripe; not the whole write */
Naohiro Aotacfe94442021-02-04 19:21:59 +09006718 if (btrfs_op(bio) == BTRFS_MAP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006719 ret = raid56_parity_write(fs_info, bio, bbio,
6720 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006721 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006722 ret = raid56_parity_recover(fs_info, bio, bbio,
6723 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006724 }
Miao Xie42452152014-11-25 16:39:28 +08006725
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006726 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006727 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006728 }
6729
Chris Masoncea9e442008-04-09 16:28:12 -04006730 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006731 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006732 "mapping failed logical %llu bio len %llu len %llu",
6733 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006734 BUG();
6735 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006736
Zhao Lei08da7572015-02-12 15:42:16 +08006737 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006738 dev = bbio->stripes[dev_nr].dev;
Nikolay Borisovfc8a1682018-11-08 16:16:38 +02006739 if (!dev || !dev->bdev || test_bit(BTRFS_DEV_STATE_MISSING,
6740 &dev->dev_state) ||
Naohiro Aotacfe94442021-02-04 19:21:59 +09006741 (btrfs_op(first_bio) == BTRFS_MAP_WRITE &&
Anand Jainebbede42017-12-04 12:54:52 +08006742 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006743 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006744 continue;
6745 }
6746
David Sterba3aa8e072017-06-02 17:38:30 +02006747 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006748 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006749 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006750 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006751
Nikolay Borisovc31efbd2020-07-03 11:14:27 +03006752 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical, dev);
Chris Mason239b14b2008-03-24 15:02:07 -04006753 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006754 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006755 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006756}
6757
Anand Jain09ba3bc2019-01-19 14:48:55 +08006758/*
6759 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
6760 * return NULL.
6761 *
6762 * If devid and uuid are both specified, the match must be exact, otherwise
6763 * only devid is used.
Anand Jain09ba3bc2019-01-19 14:48:55 +08006764 */
Anand Jaine4319cd2019-01-17 23:32:31 +08006765struct btrfs_device *btrfs_find_device(struct btrfs_fs_devices *fs_devices,
Anand Jainb2598ed2020-11-03 13:49:43 +08006766 u64 devid, u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006767{
Yan Zheng2b820322008-11-17 21:11:30 -05006768 struct btrfs_device *device;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006769 struct btrfs_fs_devices *seed_devs;
Chris Mason0b86a832008-03-24 15:01:56 -04006770
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006771 if (!fsid || !memcmp(fs_devices->metadata_uuid, fsid, BTRFS_FSID_SIZE)) {
6772 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6773 if (device->devid == devid &&
6774 (!uuid || memcmp(device->uuid, uuid,
6775 BTRFS_UUID_SIZE) == 0))
6776 return device;
6777 }
6778 }
6779
6780 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
Yan Zheng2b820322008-11-17 21:11:30 -05006781 if (!fsid ||
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006782 !memcmp(seed_devs->metadata_uuid, fsid, BTRFS_FSID_SIZE)) {
6783 list_for_each_entry(device, &seed_devs->devices,
Anand Jain09ba3bc2019-01-19 14:48:55 +08006784 dev_list) {
6785 if (device->devid == devid &&
6786 (!uuid || memcmp(device->uuid, uuid,
6787 BTRFS_UUID_SIZE) == 0))
6788 return device;
6789 }
Yan Zheng2b820322008-11-17 21:11:30 -05006790 }
Yan Zheng2b820322008-11-17 21:11:30 -05006791 }
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006792
Yan Zheng2b820322008-11-17 21:11:30 -05006793 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006794}
6795
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006796static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006797 u64 devid, u8 *dev_uuid)
6798{
6799 struct btrfs_device *device;
Josef Bacikfccc0002020-08-31 10:52:42 -04006800 unsigned int nofs_flag;
Chris Masondfe25022008-05-13 13:46:40 -04006801
Josef Bacikfccc0002020-08-31 10:52:42 -04006802 /*
6803 * We call this under the chunk_mutex, so we want to use NOFS for this
6804 * allocation, however we don't want to change btrfs_alloc_device() to
6805 * always do NOFS because we use it in a lot of other GFP_KERNEL safe
6806 * places.
6807 */
6808 nofs_flag = memalloc_nofs_save();
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006809 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
Josef Bacikfccc0002020-08-31 10:52:42 -04006810 memalloc_nofs_restore(nofs_flag);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006811 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006812 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006813
6814 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006815 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006816 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006817
Anand Jaine6e674b2017-12-04 12:54:54 +08006818 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006819 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006820
Chris Masondfe25022008-05-13 13:46:40 -04006821 return device;
6822}
6823
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006824/**
6825 * btrfs_alloc_device - allocate struct btrfs_device
6826 * @fs_info: used only for generating a new devid, can be NULL if
6827 * devid is provided (i.e. @devid != NULL).
6828 * @devid: a pointer to devid for this device. If NULL a new devid
6829 * is generated.
6830 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6831 * is generated.
6832 *
6833 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006834 * on error. Returned struct is not linked onto any lists and must be
David Sterbaa425f9d2018-03-20 15:47:33 +01006835 * destroyed with btrfs_free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006836 */
6837struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6838 const u64 *devid,
6839 const u8 *uuid)
6840{
6841 struct btrfs_device *dev;
6842 u64 tmp;
6843
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306844 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006845 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006846
David Sterbafe4f46d2021-07-26 14:15:21 +02006847 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
6848 if (!dev)
6849 return ERR_PTR(-ENOMEM);
6850
6851 /*
6852 * Preallocate a bio that's always going to be used for flushing device
6853 * barriers and matches the device lifespan
6854 */
6855 dev->flush_bio = bio_kmalloc(GFP_KERNEL, 0);
6856 if (!dev->flush_bio) {
6857 kfree(dev);
6858 return ERR_PTR(-ENOMEM);
6859 }
6860
6861 INIT_LIST_HEAD(&dev->dev_list);
6862 INIT_LIST_HEAD(&dev->dev_alloc_list);
6863 INIT_LIST_HEAD(&dev->post_commit_list);
6864
6865 atomic_set(&dev->reada_in_flight, 0);
6866 atomic_set(&dev->dev_stats_ccnt, 0);
6867 btrfs_device_data_ordered_init(dev);
6868 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
6869 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
6870 extent_io_tree_init(fs_info, &dev->alloc_state,
6871 IO_TREE_DEVICE_ALLOC_STATE, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006872
6873 if (devid)
6874 tmp = *devid;
6875 else {
6876 int ret;
6877
6878 ret = find_next_devid(fs_info, &tmp);
6879 if (ret) {
David Sterbaa425f9d2018-03-20 15:47:33 +01006880 btrfs_free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006881 return ERR_PTR(ret);
6882 }
6883 }
6884 dev->devid = tmp;
6885
6886 if (uuid)
6887 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6888 else
6889 generate_random_uuid(dev->uuid);
6890
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006891 return dev;
6892}
6893
Anand Jain5a2b8e62017-10-09 11:07:45 +08006894static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08006895 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08006896{
Anand Jain2b902df2017-10-09 11:07:46 +08006897 if (error)
6898 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
6899 devid, uuid);
6900 else
6901 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
6902 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08006903}
6904
Nikolay Borisov39e264a2019-03-25 14:31:25 +02006905static u64 calc_stripe_length(u64 type, u64 chunk_len, int num_stripes)
6906{
David Sterbad58ede82021-07-26 14:15:24 +02006907 const int data_stripes = calc_data_stripes(type, num_stripes);
David Sterbae4f6c6b2019-05-14 01:59:54 +02006908
Nikolay Borisov39e264a2019-03-25 14:31:25 +02006909 return div_u64(chunk_len, data_stripes);
6910}
6911
Qu Wenruoe9306ad2021-02-25 09:18:14 +08006912#if BITS_PER_LONG == 32
6913/*
6914 * Due to page cache limit, metadata beyond BTRFS_32BIT_MAX_FILE_SIZE
6915 * can't be accessed on 32bit systems.
6916 *
6917 * This function do mount time check to reject the fs if it already has
6918 * metadata chunk beyond that limit.
6919 */
6920static int check_32bit_meta_chunk(struct btrfs_fs_info *fs_info,
6921 u64 logical, u64 length, u64 type)
6922{
6923 if (!(type & BTRFS_BLOCK_GROUP_METADATA))
6924 return 0;
6925
6926 if (logical + length < MAX_LFS_FILESIZE)
6927 return 0;
6928
6929 btrfs_err_32bit_limit(fs_info);
6930 return -EOVERFLOW;
6931}
6932
6933/*
6934 * This is to give early warning for any metadata chunk reaching
6935 * BTRFS_32BIT_EARLY_WARN_THRESHOLD.
6936 * Although we can still access the metadata, it's not going to be possible
6937 * once the limit is reached.
6938 */
6939static void warn_32bit_meta_chunk(struct btrfs_fs_info *fs_info,
6940 u64 logical, u64 length, u64 type)
6941{
6942 if (!(type & BTRFS_BLOCK_GROUP_METADATA))
6943 return;
6944
6945 if (logical + length < BTRFS_32BIT_EARLY_WARN_THRESHOLD)
6946 return;
6947
6948 btrfs_warn_32bit_limit(fs_info);
6949}
6950#endif
6951
David Sterba9690ac02019-03-20 16:43:07 +01006952static int read_one_chunk(struct btrfs_key *key, struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006953 struct btrfs_chunk *chunk)
6954{
David Sterba9690ac02019-03-20 16:43:07 +01006955 struct btrfs_fs_info *fs_info = leaf->fs_info;
David Sterbac8bf1b62019-05-17 11:43:17 +02006956 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006957 struct map_lookup *map;
6958 struct extent_map *em;
6959 u64 logical;
6960 u64 length;
6961 u64 devid;
Qu Wenruoe9306ad2021-02-25 09:18:14 +08006962 u64 type;
Chris Masona4437552008-04-18 10:29:38 -04006963 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006964 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006965 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006966 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006967
Chris Masone17cade2008-04-15 15:41:47 -04006968 logical = key->offset;
6969 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruoe9306ad2021-02-25 09:18:14 +08006970 type = btrfs_chunk_type(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006971 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006972
Qu Wenruoe9306ad2021-02-25 09:18:14 +08006973#if BITS_PER_LONG == 32
6974 ret = check_32bit_meta_chunk(fs_info, logical, length, type);
6975 if (ret < 0)
6976 return ret;
6977 warn_32bit_meta_chunk(fs_info, logical, length, type);
6978#endif
6979
Qu Wenruo075cb3c2019-03-20 13:42:33 +08006980 /*
6981 * Only need to verify chunk item if we're reading from sys chunk array,
6982 * as chunk item in tree block is already verified by tree-checker.
6983 */
6984 if (leaf->start == BTRFS_SUPER_INFO_OFFSET) {
David Sterbaddaf1d52019-03-20 16:40:48 +01006985 ret = btrfs_check_chunk_valid(leaf, chunk, logical);
Qu Wenruo075cb3c2019-03-20 13:42:33 +08006986 if (ret)
6987 return ret;
6988 }
Chris Masona061fc82008-05-07 11:43:44 -04006989
David Sterbac8bf1b62019-05-17 11:43:17 +02006990 read_lock(&map_tree->lock);
6991 em = lookup_extent_mapping(map_tree, logical, 1);
6992 read_unlock(&map_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006993
6994 /* already mapped? */
6995 if (em && em->start <= logical && em->start + em->len > logical) {
6996 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006997 return 0;
6998 } else if (em) {
6999 free_extent_map(em);
7000 }
Chris Mason0b86a832008-03-24 15:01:56 -04007001
David Sterba172ddd62011-04-21 00:48:27 +02007002 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04007003 if (!em)
7004 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04007005 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04007006 if (!map) {
7007 free_extent_map(em);
7008 return -ENOMEM;
7009 }
7010
Wang Shilong298a8f92014-06-19 10:42:52 +08007011 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04007012 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04007013 em->start = logical;
7014 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04007015 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007016 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04007017 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04007018
Chris Mason593060d2008-03-25 16:50:33 -04007019 map->num_stripes = num_stripes;
7020 map->io_width = btrfs_chunk_io_width(leaf, chunk);
7021 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04007022 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007023 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04007024 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Qu Wenruocf90d882018-08-01 10:37:19 +08007025 map->verified_stripes = 0;
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007026 em->orig_block_len = calc_stripe_length(type, em->len,
Nikolay Borisov39e264a2019-03-25 14:31:25 +02007027 map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04007028 for (i = 0; i < num_stripes; i++) {
7029 map->stripes[i].physical =
7030 btrfs_stripe_offset_nr(leaf, chunk, i);
7031 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04007032 read_extent_buffer(leaf, uuid, (unsigned long)
7033 btrfs_stripe_dev_uuid_nr(chunk, i),
7034 BTRFS_UUID_SIZE);
Anand Jaine4319cd2019-01-17 23:32:31 +08007035 map->stripes[i].dev = btrfs_find_device(fs_info->fs_devices,
Anand Jainb2598ed2020-11-03 13:49:43 +08007036 devid, uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04007037 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007038 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04007039 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08007040 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007041 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04007042 }
Chris Masondfe25022008-05-13 13:46:40 -04007043 if (!map->stripes[i].dev) {
7044 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007045 add_missing_dev(fs_info->fs_devices, devid,
7046 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08007047 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04007048 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08007049 btrfs_err(fs_info,
7050 "failed to init missing dev %llu: %ld",
7051 devid, PTR_ERR(map->stripes[i].dev));
7052 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04007053 }
Anand Jain2b902df2017-10-09 11:07:46 +08007054 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04007055 }
Anand Jaine12c9622017-12-04 12:54:53 +08007056 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
7057 &(map->stripes[i].dev->dev_state));
7058
Chris Mason0b86a832008-03-24 15:01:56 -04007059 }
7060
David Sterbac8bf1b62019-05-17 11:43:17 +02007061 write_lock(&map_tree->lock);
7062 ret = add_extent_mapping(map_tree, em, 0);
7063 write_unlock(&map_tree->lock);
Qu Wenruo64f64f42018-08-01 10:37:20 +08007064 if (ret < 0) {
7065 btrfs_err(fs_info,
7066 "failed to add chunk map, start=%llu len=%llu: %d",
7067 em->start, em->len, ret);
7068 }
Chris Mason0b86a832008-03-24 15:01:56 -04007069 free_extent_map(em);
7070
Qu Wenruo64f64f42018-08-01 10:37:20 +08007071 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04007072}
7073
Jeff Mahoney143bede2012-03-01 14:56:26 +01007074static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007075 struct btrfs_dev_item *dev_item,
7076 struct btrfs_device *device)
7077{
7078 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04007079
7080 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04007081 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
7082 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08007083 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04007084 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08007085 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04007086 device->type = btrfs_device_type(leaf, dev_item);
7087 device->io_align = btrfs_device_io_align(leaf, dev_item);
7088 device->io_width = btrfs_device_io_width(leaf, dev_item);
7089 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01007090 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08007091 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04007092
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02007093 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04007094 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04007095}
7096
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007097static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08007098 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05007099{
7100 struct btrfs_fs_devices *fs_devices;
7101 int ret;
7102
David Sterbaa32bf9a2018-03-16 02:21:22 +01007103 lockdep_assert_held(&uuid_mutex);
David Sterba2dfeca92017-06-14 02:48:07 +02007104 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05007105
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03007106 /* This will match only for multi-device seed fs */
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007107 list_for_each_entry(fs_devices, &fs_info->fs_devices->seed_list, seed_list)
Anand Jain44880fd2017-07-29 17:50:09 +08007108 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08007109 return fs_devices;
7110
Yan Zheng2b820322008-11-17 21:11:30 -05007111
Nikolay Borisov7239ff42018-10-30 16:43:23 +02007112 fs_devices = find_fsid(fsid, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05007113 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007114 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08007115 return ERR_PTR(-ENOENT);
7116
Nikolay Borisov7239ff42018-10-30 16:43:23 +02007117 fs_devices = alloc_fs_devices(fsid, NULL);
Miao Xie5f375832014-09-03 21:35:46 +08007118 if (IS_ERR(fs_devices))
7119 return fs_devices;
7120
Johannes Thumshirn0395d842019-11-13 11:27:27 +01007121 fs_devices->seeding = true;
Miao Xie5f375832014-09-03 21:35:46 +08007122 fs_devices->opened = 1;
7123 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007124 }
Yan Zhenge4404d62008-12-12 10:03:26 -05007125
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03007126 /*
7127 * Upon first call for a seed fs fsid, just create a private copy of the
7128 * respective fs_devices and anchor it at fs_info->fs_devices->seed_list
7129 */
Yan Zhenge4404d62008-12-12 10:03:26 -05007130 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08007131 if (IS_ERR(fs_devices))
7132 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007133
Anand Jain897fb572018-04-12 10:29:28 +08007134 ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02007135 if (ret) {
7136 free_fs_devices(fs_devices);
Anand Jainc83b60c2020-09-05 01:34:35 +08007137 return ERR_PTR(ret);
Julia Lawall48d28232012-04-14 11:24:33 +02007138 }
Yan Zheng2b820322008-11-17 21:11:30 -05007139
7140 if (!fs_devices->seeding) {
Anand Jain0226e0e2018-04-12 10:29:27 +08007141 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05007142 free_fs_devices(fs_devices);
Anand Jainc83b60c2020-09-05 01:34:35 +08007143 return ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05007144 }
7145
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007146 list_add(&fs_devices->seed_list, &fs_info->fs_devices->seed_list);
Anand Jainc83b60c2020-09-05 01:34:35 +08007147
Miao Xie5f375832014-09-03 21:35:46 +08007148 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007149}
7150
David Sterba17850752019-03-20 16:45:15 +01007151static int read_one_dev(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007152 struct btrfs_dev_item *dev_item)
7153{
David Sterba17850752019-03-20 16:45:15 +01007154 struct btrfs_fs_info *fs_info = leaf->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007155 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04007156 struct btrfs_device *device;
7157 u64 devid;
7158 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08007159 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04007160 u8 dev_uuid[BTRFS_UUID_SIZE];
7161
Chris Mason0b86a832008-03-24 15:01:56 -04007162 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02007163 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04007164 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02007165 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08007166 BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05007167
Nikolay Borisovde37aa52018-10-30 16:43:24 +02007168 if (memcmp(fs_uuid, fs_devices->metadata_uuid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007169 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08007170 if (IS_ERR(fs_devices))
7171 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05007172 }
7173
Anand Jaine4319cd2019-01-17 23:32:31 +08007174 device = btrfs_find_device(fs_info->fs_devices, devid, dev_uuid,
Anand Jainb2598ed2020-11-03 13:49:43 +08007175 fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08007176 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08007177 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08007178 btrfs_report_missing_device(fs_info, devid,
7179 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007180 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08007181 }
Yan Zheng2b820322008-11-17 21:11:30 -05007182
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007183 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08007184 if (IS_ERR(device)) {
7185 btrfs_err(fs_info,
7186 "failed to add missing dev %llu: %ld",
7187 devid, PTR_ERR(device));
7188 return PTR_ERR(device);
7189 }
Anand Jain2b902df2017-10-09 11:07:46 +08007190 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08007191 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08007192 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08007193 if (!btrfs_test_opt(fs_info, DEGRADED)) {
7194 btrfs_report_missing_device(fs_info,
7195 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007196 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08007197 }
7198 btrfs_report_missing_device(fs_info, devid,
7199 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08007200 }
Miao Xie5f375832014-09-03 21:35:46 +08007201
Anand Jaine6e674b2017-12-04 12:54:54 +08007202 if (!device->bdev &&
7203 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05007204 /*
7205 * this happens when a device that was properly setup
7206 * in the device info lists suddenly goes bad.
7207 * device->bdev is NULL, and so we have to set
7208 * device->missing to one here
7209 */
Miao Xie5f375832014-09-03 21:35:46 +08007210 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08007211 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05007212 }
Miao Xie5f375832014-09-03 21:35:46 +08007213
7214 /* Move the device to its own fs_devices */
7215 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08007216 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
7217 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08007218
7219 list_move(&device->dev_list, &fs_devices->devices);
7220 device->fs_devices->num_devices--;
7221 fs_devices->num_devices++;
7222
7223 device->fs_devices->missing_devices--;
7224 fs_devices->missing_devices++;
7225
7226 device->fs_devices = fs_devices;
7227 }
Yan Zheng2b820322008-11-17 21:11:30 -05007228 }
7229
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007230 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08007231 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05007232 if (device->generation !=
7233 btrfs_device_generation(leaf, dev_item))
7234 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04007235 }
Chris Mason0b86a832008-03-24 15:01:56 -04007236
7237 fill_device_from_item(leaf, dev_item, device);
Anand Jain3a160a92020-11-03 13:49:42 +08007238 if (device->bdev) {
7239 u64 max_total_bytes = i_size_read(device->bdev->bd_inode);
7240
7241 if (device->total_bytes > max_total_bytes) {
7242 btrfs_err(fs_info,
7243 "device total_bytes should be at most %llu but found %llu",
7244 max_total_bytes, device->total_bytes);
7245 return -EINVAL;
7246 }
7247 }
Anand Jaine12c9622017-12-04 12:54:53 +08007248 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08007249 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08007250 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05007251 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03007252 atomic64_add(device->total_bytes - device->bytes_used,
7253 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04007254 }
Chris Mason0b86a832008-03-24 15:01:56 -04007255 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007256 return ret;
7257}
7258
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007259int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04007260{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007261 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007262 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04007263 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04007264 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04007265 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01007266 u8 *array_ptr;
7267 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04007268 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007269 u32 num_stripes;
7270 u32 array_size;
7271 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01007272 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07007273 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04007274 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04007275
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007276 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02007277 /*
7278 * This will create extent buffer of nodesize, superblock size is
7279 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
7280 * overallocate but we can keep it as-is, only the first page is used.
7281 */
Josef Bacik3fbaf252020-11-05 10:45:20 -05007282 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET,
7283 root->root_key.objectid, 0);
Liu Boc871b0f2016-06-06 12:01:23 -07007284 if (IS_ERR(sb))
7285 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01007286 set_extent_buffer_uptodate(sb);
David Sterba8a334422011-10-07 18:06:13 +02007287 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04007288 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01007289 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02007290 * pages up-to-date when the page is larger: extent does not cover the
7291 * whole page and consequently check_page_uptodate does not find all
7292 * the page's extents up-to-date (the hole beyond sb),
7293 * write_extent_buffer then triggers a WARN_ON.
7294 *
7295 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
7296 * but sb spans only this function. Add an explicit SetPageUptodate call
7297 * to silence the warning eg. on PowerPC 64.
7298 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007299 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04007300 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05007301
Chris Masona061fc82008-05-07 11:43:44 -04007302 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04007303 array_size = btrfs_super_sys_array_size(super_copy);
7304
David Sterba1ffb22c2014-10-31 19:02:42 +01007305 array_ptr = super_copy->sys_chunk_array;
7306 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
7307 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007308
David Sterba1ffb22c2014-10-31 19:02:42 +01007309 while (cur_offset < array_size) {
7310 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01007311 len = sizeof(*disk_key);
7312 if (cur_offset + len > array_size)
7313 goto out_short_read;
7314
Chris Mason0b86a832008-03-24 15:01:56 -04007315 btrfs_disk_key_to_cpu(&key, disk_key);
7316
David Sterba1ffb22c2014-10-31 19:02:42 +01007317 array_ptr += len;
7318 sb_array_offset += len;
7319 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04007320
Johannes Thumshirn32ab3d12019-10-18 11:58:23 +02007321 if (key.type != BTRFS_CHUNK_ITEM_KEY) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007322 btrfs_err(fs_info,
7323 "unexpected item type %u in sys_array at offset %u",
7324 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04007325 ret = -EIO;
7326 break;
Chris Mason0b86a832008-03-24 15:01:56 -04007327 }
Johannes Thumshirn32ab3d12019-10-18 11:58:23 +02007328
7329 chunk = (struct btrfs_chunk *)sb_array_offset;
7330 /*
7331 * At least one btrfs_chunk with one stripe must be present,
7332 * exact stripe count check comes afterwards
7333 */
7334 len = btrfs_chunk_item_size(1);
7335 if (cur_offset + len > array_size)
7336 goto out_short_read;
7337
7338 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
7339 if (!num_stripes) {
7340 btrfs_err(fs_info,
7341 "invalid number of stripes %u in sys_array at offset %u",
7342 num_stripes, cur_offset);
7343 ret = -EIO;
7344 break;
7345 }
7346
7347 type = btrfs_chunk_type(sb, chunk);
7348 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
7349 btrfs_err(fs_info,
7350 "invalid chunk type %llu in sys_array at offset %u",
7351 type, cur_offset);
7352 ret = -EIO;
7353 break;
7354 }
7355
7356 len = btrfs_chunk_item_size(num_stripes);
7357 if (cur_offset + len > array_size)
7358 goto out_short_read;
7359
7360 ret = read_one_chunk(&key, sb, chunk);
7361 if (ret)
7362 break;
7363
David Sterba1ffb22c2014-10-31 19:02:42 +01007364 array_ptr += len;
7365 sb_array_offset += len;
7366 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04007367 }
Liu Bod8651772016-06-03 17:41:42 -07007368 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07007369 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04007370 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01007371
7372out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007373 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01007374 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07007375 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07007376 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01007377 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04007378}
7379
Qu Wenruo21634a12017-03-09 09:34:36 +08007380/*
7381 * Check if all chunks in the fs are OK for read-write degraded mount
7382 *
Anand Jain6528b992017-12-18 17:08:59 +08007383 * If the @failing_dev is specified, it's accounted as missing.
7384 *
Qu Wenruo21634a12017-03-09 09:34:36 +08007385 * Return true if all chunks meet the minimal RW mount requirements.
7386 * Return false if any chunk doesn't meet the minimal RW mount requirements.
7387 */
Anand Jain6528b992017-12-18 17:08:59 +08007388bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
7389 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08007390{
David Sterbac8bf1b62019-05-17 11:43:17 +02007391 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Qu Wenruo21634a12017-03-09 09:34:36 +08007392 struct extent_map *em;
7393 u64 next_start = 0;
7394 bool ret = true;
7395
David Sterbac8bf1b62019-05-17 11:43:17 +02007396 read_lock(&map_tree->lock);
7397 em = lookup_extent_mapping(map_tree, 0, (u64)-1);
7398 read_unlock(&map_tree->lock);
Qu Wenruo21634a12017-03-09 09:34:36 +08007399 /* No chunk at all? Return false anyway */
7400 if (!em) {
7401 ret = false;
7402 goto out;
7403 }
7404 while (em) {
7405 struct map_lookup *map;
7406 int missing = 0;
7407 int max_tolerated;
7408 int i;
7409
7410 map = em->map_lookup;
7411 max_tolerated =
7412 btrfs_get_num_tolerated_disk_barrier_failures(
7413 map->type);
7414 for (i = 0; i < map->num_stripes; i++) {
7415 struct btrfs_device *dev = map->stripes[i].dev;
7416
Anand Jaine6e674b2017-12-04 12:54:54 +08007417 if (!dev || !dev->bdev ||
7418 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08007419 dev->last_flush_error)
7420 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08007421 else if (failing_dev && failing_dev == dev)
7422 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08007423 }
7424 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08007425 if (!failing_dev)
7426 btrfs_warn(fs_info,
Andrea Gelmini52042d82018-11-28 12:05:13 +01007427 "chunk %llu missing %d devices, max tolerance is %d for writable mount",
Qu Wenruo21634a12017-03-09 09:34:36 +08007428 em->start, missing, max_tolerated);
7429 free_extent_map(em);
7430 ret = false;
7431 goto out;
7432 }
7433 next_start = extent_map_end(em);
7434 free_extent_map(em);
7435
David Sterbac8bf1b62019-05-17 11:43:17 +02007436 read_lock(&map_tree->lock);
7437 em = lookup_extent_mapping(map_tree, next_start,
Qu Wenruo21634a12017-03-09 09:34:36 +08007438 (u64)(-1) - next_start);
David Sterbac8bf1b62019-05-17 11:43:17 +02007439 read_unlock(&map_tree->lock);
Qu Wenruo21634a12017-03-09 09:34:36 +08007440 }
7441out:
7442 return ret;
7443}
7444
David Sterbad85327b12020-07-08 22:55:14 +02007445static void readahead_tree_node_children(struct extent_buffer *node)
7446{
7447 int i;
7448 const int nr_items = btrfs_header_nritems(node);
7449
Josef Bacikbfb484d2020-11-05 10:45:09 -05007450 for (i = 0; i < nr_items; i++)
7451 btrfs_readahead_node_child(node, i);
David Sterbad85327b12020-07-08 22:55:14 +02007452}
7453
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007454int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04007455{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007456 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04007457 struct btrfs_path *path;
7458 struct extent_buffer *leaf;
7459 struct btrfs_key key;
7460 struct btrfs_key found_key;
7461 int ret;
7462 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07007463 u64 total_dev = 0;
David Sterbad85327b12020-07-08 22:55:14 +02007464 u64 last_ra_node = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007465
Chris Mason0b86a832008-03-24 15:01:56 -04007466 path = btrfs_alloc_path();
7467 if (!path)
7468 return -ENOMEM;
7469
Anand Jain3dd0f7a2018-04-12 10:29:32 +08007470 /*
7471 * uuid_mutex is needed only if we are mounting a sprout FS
7472 * otherwise we don't need it.
7473 */
Li Zefanb367e472011-12-07 11:38:24 +08007474 mutex_lock(&uuid_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08007475
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007476 /*
Boris Burkov48cfa612020-07-16 13:29:46 -07007477 * It is possible for mount and umount to race in such a way that
7478 * we execute this code path, but open_fs_devices failed to clear
7479 * total_rw_bytes. We certainly want it cleared before reading the
7480 * device items, so clear it here.
7481 */
7482 fs_info->fs_devices->total_rw_bytes = 0;
7483
7484 /*
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007485 * Read all device items, and then all the chunk items. All
7486 * device items are found before any chunk item (their object id
7487 * is smaller than the lowest possible object id for a chunk
7488 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04007489 */
7490 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
7491 key.offset = 0;
7492 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007493 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00007494 if (ret < 0)
7495 goto error;
Chris Masond3977122009-01-05 21:25:51 -05007496 while (1) {
David Sterbad85327b12020-07-08 22:55:14 +02007497 struct extent_buffer *node;
7498
Chris Mason0b86a832008-03-24 15:01:56 -04007499 leaf = path->nodes[0];
7500 slot = path->slots[0];
7501 if (slot >= btrfs_header_nritems(leaf)) {
7502 ret = btrfs_next_leaf(root, path);
7503 if (ret == 0)
7504 continue;
7505 if (ret < 0)
7506 goto error;
7507 break;
7508 }
David Sterbad85327b12020-07-08 22:55:14 +02007509 /*
7510 * The nodes on level 1 are not locked but we don't need to do
7511 * that during mount time as nothing else can access the tree
7512 */
7513 node = path->nodes[1];
7514 if (node) {
7515 if (last_ra_node != node->start) {
7516 readahead_tree_node_children(node);
7517 last_ra_node = node->start;
7518 }
7519 }
Chris Mason0b86a832008-03-24 15:01:56 -04007520 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007521 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
7522 struct btrfs_dev_item *dev_item;
7523 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04007524 struct btrfs_dev_item);
David Sterba17850752019-03-20 16:45:15 +01007525 ret = read_one_dev(leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007526 if (ret)
7527 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07007528 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04007529 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
7530 struct btrfs_chunk *chunk;
Filipe Manana79bd3712021-06-29 14:43:06 +01007531
7532 /*
7533 * We are only called at mount time, so no need to take
7534 * fs_info->chunk_mutex. Plus, to avoid lockdep warnings,
7535 * we always lock first fs_info->chunk_mutex before
7536 * acquiring any locks on the chunk tree. This is a
7537 * requirement for chunk allocation, see the comment on
7538 * top of btrfs_chunk_alloc() for details.
7539 */
7540 ASSERT(!test_bit(BTRFS_FS_OPEN, &fs_info->flags));
Chris Mason0b86a832008-03-24 15:01:56 -04007541 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba9690ac02019-03-20 16:43:07 +01007542 ret = read_one_chunk(&found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05007543 if (ret)
7544 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04007545 }
7546 path->slots[0]++;
7547 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07007548
7549 /*
7550 * After loading chunk tree, we've got all device information,
7551 * do another round of validation checks.
7552 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007553 if (total_dev != fs_info->fs_devices->total_devices) {
7554 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007555 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007556 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07007557 total_dev);
7558 ret = -EINVAL;
7559 goto error;
7560 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007561 if (btrfs_super_total_bytes(fs_info->super_copy) <
7562 fs_info->fs_devices->total_rw_bytes) {
7563 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007564 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007565 btrfs_super_total_bytes(fs_info->super_copy),
7566 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07007567 ret = -EINVAL;
7568 goto error;
7569 }
Chris Mason0b86a832008-03-24 15:01:56 -04007570 ret = 0;
7571error:
Li Zefanb367e472011-12-07 11:38:24 +08007572 mutex_unlock(&uuid_mutex);
7573
Yan Zheng2b820322008-11-17 21:11:30 -05007574 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007575 return ret;
7576}
Stefan Behrens442a4f62012-05-25 16:06:08 +02007577
Miao Xiecb517ea2013-05-15 07:48:19 +00007578void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
7579{
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007580 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs;
Miao Xiecb517ea2013-05-15 07:48:19 +00007581 struct btrfs_device *device;
7582
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007583 fs_devices->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007584
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007585 mutex_lock(&fs_devices->device_list_mutex);
7586 list_for_each_entry(device, &fs_devices->devices, dev_list)
7587 device->fs_info = fs_info;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007588
7589 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007590 list_for_each_entry(device, &seed_devs->devices, dev_list)
7591 device->fs_info = fs_info;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007592
7593 seed_devs->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007594 }
Anand Jaine17125b2020-09-05 01:34:31 +08007595 mutex_unlock(&fs_devices->device_list_mutex);
Miao Xiecb517ea2013-05-15 07:48:19 +00007596}
7597
David Sterba1dc990d2019-08-21 20:05:32 +02007598static u64 btrfs_dev_stats_value(const struct extent_buffer *eb,
7599 const struct btrfs_dev_stats_item *ptr,
7600 int index)
7601{
7602 u64 val;
7603
7604 read_extent_buffer(eb, &val,
7605 offsetof(struct btrfs_dev_stats_item, values) +
7606 ((unsigned long)ptr) + (index * sizeof(u64)),
7607 sizeof(val));
7608 return val;
7609}
7610
7611static void btrfs_set_dev_stats_value(struct extent_buffer *eb,
7612 struct btrfs_dev_stats_item *ptr,
7613 int index, u64 val)
7614{
7615 write_extent_buffer(eb, &val,
7616 offsetof(struct btrfs_dev_stats_item, values) +
7617 ((unsigned long)ptr) + (index * sizeof(u64)),
7618 sizeof(val));
7619}
7620
Josef Bacik92e26df2020-09-18 16:44:33 -04007621static int btrfs_device_init_dev_stats(struct btrfs_device *device,
7622 struct btrfs_path *path)
Josef Bacik124604e2020-09-18 16:44:32 -04007623{
7624 struct btrfs_dev_stats_item *ptr;
7625 struct extent_buffer *eb;
7626 struct btrfs_key key;
7627 int item_size;
7628 int i, ret, slot;
7629
Josef Bacik82d62d02021-03-11 11:23:15 -05007630 if (!device->fs_info->dev_root)
7631 return 0;
7632
Josef Bacik124604e2020-09-18 16:44:32 -04007633 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7634 key.type = BTRFS_PERSISTENT_ITEM_KEY;
7635 key.offset = device->devid;
7636 ret = btrfs_search_slot(NULL, device->fs_info->dev_root, &key, path, 0, 0);
7637 if (ret) {
7638 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7639 btrfs_dev_stat_set(device, i, 0);
7640 device->dev_stats_valid = 1;
7641 btrfs_release_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007642 return ret < 0 ? ret : 0;
Josef Bacik124604e2020-09-18 16:44:32 -04007643 }
7644 slot = path->slots[0];
7645 eb = path->nodes[0];
7646 item_size = btrfs_item_size_nr(eb, slot);
7647
7648 ptr = btrfs_item_ptr(eb, slot, struct btrfs_dev_stats_item);
7649
7650 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7651 if (item_size >= (1 + i) * sizeof(__le64))
7652 btrfs_dev_stat_set(device, i,
7653 btrfs_dev_stats_value(eb, ptr, i));
7654 else
7655 btrfs_dev_stat_set(device, i, 0);
7656 }
7657
7658 device->dev_stats_valid = 1;
7659 btrfs_dev_stat_print_on_load(device);
7660 btrfs_release_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007661
7662 return 0;
Josef Bacik124604e2020-09-18 16:44:32 -04007663}
7664
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007665int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
7666{
Josef Bacik124604e2020-09-18 16:44:32 -04007667 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007668 struct btrfs_device *device;
7669 struct btrfs_path *path = NULL;
Josef Bacik92e26df2020-09-18 16:44:33 -04007670 int ret = 0;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007671
7672 path = btrfs_alloc_path();
Anand Jain3b80a9842019-08-21 17:26:32 +08007673 if (!path)
7674 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007675
7676 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik92e26df2020-09-18 16:44:33 -04007677 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7678 ret = btrfs_device_init_dev_stats(device, path);
7679 if (ret)
7680 goto out;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007681 }
Josef Bacik92e26df2020-09-18 16:44:33 -04007682 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
7683 list_for_each_entry(device, &seed_devs->devices, dev_list) {
7684 ret = btrfs_device_init_dev_stats(device, path);
7685 if (ret)
7686 goto out;
7687 }
7688 }
7689out:
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007690 mutex_unlock(&fs_devices->device_list_mutex);
7691
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007692 btrfs_free_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007693 return ret;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007694}
7695
7696static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007697 struct btrfs_device *device)
7698{
Nikolay Borisov5495f192018-07-20 19:37:49 +03007699 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007700 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007701 struct btrfs_path *path;
7702 struct btrfs_key key;
7703 struct extent_buffer *eb;
7704 struct btrfs_dev_stats_item *ptr;
7705 int ret;
7706 int i;
7707
David Sterba242e2952016-01-25 17:51:31 +01007708 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7709 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007710 key.offset = device->devid;
7711
7712 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007713 if (!path)
7714 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007715 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7716 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007717 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007718 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007719 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007720 goto out;
7721 }
7722
7723 if (ret == 0 &&
7724 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7725 /* need to delete old one and insert a new one */
7726 ret = btrfs_del_item(trans, dev_root, path);
7727 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007728 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007729 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007730 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007731 goto out;
7732 }
7733 ret = 1;
7734 }
7735
7736 if (ret == 1) {
7737 /* need to insert a new item */
7738 btrfs_release_path(path);
7739 ret = btrfs_insert_empty_item(trans, dev_root, path,
7740 &key, sizeof(*ptr));
7741 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007742 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007743 "insert dev_stats item for device %s failed %d",
7744 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007745 goto out;
7746 }
7747 }
7748
7749 eb = path->nodes[0];
7750 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7751 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7752 btrfs_set_dev_stats_value(eb, ptr, i,
7753 btrfs_dev_stat_read(device, i));
7754 btrfs_mark_buffer_dirty(eb);
7755
7756out:
7757 btrfs_free_path(path);
7758 return ret;
7759}
7760
7761/*
7762 * called from commit_transaction. Writes all changed device stats to disk.
7763 */
David Sterba196c9d82019-03-20 16:50:38 +01007764int btrfs_run_dev_stats(struct btrfs_trans_handle *trans)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007765{
David Sterba196c9d82019-03-20 16:50:38 +01007766 struct btrfs_fs_info *fs_info = trans->fs_info;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007767 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7768 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007769 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007770 int ret = 0;
7771
7772 mutex_lock(&fs_devices->device_list_mutex);
7773 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007774 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7775 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007776 continue;
7777
Nikolay Borisov9deae962017-10-24 13:47:37 +03007778
7779 /*
7780 * There is a LOAD-LOAD control dependency between the value of
7781 * dev_stats_ccnt and updating the on-disk values which requires
7782 * reading the in-memory counters. Such control dependencies
7783 * require explicit read memory barriers.
7784 *
7785 * This memory barriers pairs with smp_mb__before_atomic in
7786 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7787 * barrier implied by atomic_xchg in
7788 * btrfs_dev_stats_read_and_reset
7789 */
7790 smp_rmb();
7791
Nikolay Borisov5495f192018-07-20 19:37:49 +03007792 ret = update_dev_stat_item(trans, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007793 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007794 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007795 }
7796 mutex_unlock(&fs_devices->device_list_mutex);
7797
7798 return ret;
7799}
7800
Stefan Behrens442a4f62012-05-25 16:06:08 +02007801void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7802{
7803 btrfs_dev_stat_inc(dev, index);
7804 btrfs_dev_stat_print_on_error(dev);
7805}
7806
Eric Sandeen48a3b632013-04-25 20:41:01 +00007807static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007808{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007809 if (!dev->dev_stats_valid)
7810 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007811 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007812 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007813 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007814 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7815 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7816 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007817 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7818 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007819}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007820
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007821static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7822{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007823 int i;
7824
7825 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7826 if (btrfs_dev_stat_read(dev, i) != 0)
7827 break;
7828 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7829 return; /* all values == 0, suppress message */
7830
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007831 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007832 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007833 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007834 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7835 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7836 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7837 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7838 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7839}
7840
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007841int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007842 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007843{
7844 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007845 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007846 int i;
7847
7848 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainb2598ed2020-11-03 13:49:43 +08007849 dev = btrfs_find_device(fs_info->fs_devices, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007850 mutex_unlock(&fs_devices->device_list_mutex);
7851
7852 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007853 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007854 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007855 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007856 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007857 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007858 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007859 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7860 if (stats->nr_items > i)
7861 stats->values[i] =
7862 btrfs_dev_stat_read_and_reset(dev, i);
7863 else
Anand Jain4e411a72019-08-07 16:21:19 +08007864 btrfs_dev_stat_set(dev, i, 0);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007865 }
Anand Jaina69976b2020-01-10 12:26:34 +08007866 btrfs_info(fs_info, "device stats zeroed by %s (%d)",
7867 current->comm, task_pid_nr(current));
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007868 } else {
7869 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7870 if (stats->nr_items > i)
7871 stats->values[i] = btrfs_dev_stat_read(dev, i);
7872 }
7873 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7874 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7875 return 0;
7876}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007877
Miao Xie935e5cc2014-09-03 21:35:33 +08007878/*
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007879 * Update the size and bytes used for each device where it changed. This is
7880 * delayed since we would otherwise get errors while writing out the
7881 * superblocks.
7882 *
7883 * Must be invoked during transaction commit.
Miao Xie935e5cc2014-09-03 21:35:33 +08007884 */
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007885void btrfs_commit_device_sizes(struct btrfs_transaction *trans)
Miao Xie935e5cc2014-09-03 21:35:33 +08007886{
Miao Xie935e5cc2014-09-03 21:35:33 +08007887 struct btrfs_device *curr, *next;
7888
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007889 ASSERT(trans->state == TRANS_STATE_COMMIT_DOING);
7890
7891 if (list_empty(&trans->dev_update_list))
Miao Xie935e5cc2014-09-03 21:35:33 +08007892 return;
7893
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007894 /*
7895 * We don't need the device_list_mutex here. This list is owned by the
7896 * transaction and the transaction must complete before the device is
7897 * released.
7898 */
7899 mutex_lock(&trans->fs_info->chunk_mutex);
7900 list_for_each_entry_safe(curr, next, &trans->dev_update_list,
7901 post_commit_list) {
7902 list_del_init(&curr->post_commit_list);
Miao Xie935e5cc2014-09-03 21:35:33 +08007903 curr->commit_total_bytes = curr->disk_total_bytes;
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007904 curr->commit_bytes_used = curr->bytes_used;
Miao Xie935e5cc2014-09-03 21:35:33 +08007905 }
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007906 mutex_unlock(&trans->fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007907}
Anand Jain5a13f432015-03-10 06:38:31 +08007908
David Sterba46df06b2018-07-13 20:46:30 +02007909/*
7910 * Multiplicity factor for simple profiles: DUP, RAID1-like and RAID10.
7911 */
7912int btrfs_bg_type_to_factor(u64 flags)
7913{
David Sterba44b28ad2019-05-17 11:43:31 +02007914 const int index = btrfs_bg_flags_to_raid_index(flags);
7915
7916 return btrfs_raid_array[index].ncopies;
David Sterba46df06b2018-07-13 20:46:30 +02007917}
Qu Wenruocf90d882018-08-01 10:37:19 +08007918
7919
Qu Wenruocf90d882018-08-01 10:37:19 +08007920
7921static int verify_one_dev_extent(struct btrfs_fs_info *fs_info,
7922 u64 chunk_offset, u64 devid,
7923 u64 physical_offset, u64 physical_len)
7924{
David Sterbac8bf1b62019-05-17 11:43:17 +02007925 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Qu Wenruocf90d882018-08-01 10:37:19 +08007926 struct extent_map *em;
7927 struct map_lookup *map;
Qu Wenruo05a37c42018-10-05 17:45:55 +08007928 struct btrfs_device *dev;
Qu Wenruocf90d882018-08-01 10:37:19 +08007929 u64 stripe_len;
7930 bool found = false;
7931 int ret = 0;
7932 int i;
7933
7934 read_lock(&em_tree->lock);
7935 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
7936 read_unlock(&em_tree->lock);
7937
7938 if (!em) {
7939 btrfs_err(fs_info,
7940"dev extent physical offset %llu on devid %llu doesn't have corresponding chunk",
7941 physical_offset, devid);
7942 ret = -EUCLEAN;
7943 goto out;
7944 }
7945
7946 map = em->map_lookup;
7947 stripe_len = calc_stripe_length(map->type, em->len, map->num_stripes);
7948 if (physical_len != stripe_len) {
7949 btrfs_err(fs_info,
7950"dev extent physical offset %llu on devid %llu length doesn't match chunk %llu, have %llu expect %llu",
7951 physical_offset, devid, em->start, physical_len,
7952 stripe_len);
7953 ret = -EUCLEAN;
7954 goto out;
7955 }
7956
7957 for (i = 0; i < map->num_stripes; i++) {
7958 if (map->stripes[i].dev->devid == devid &&
7959 map->stripes[i].physical == physical_offset) {
7960 found = true;
7961 if (map->verified_stripes >= map->num_stripes) {
7962 btrfs_err(fs_info,
7963 "too many dev extents for chunk %llu found",
7964 em->start);
7965 ret = -EUCLEAN;
7966 goto out;
7967 }
7968 map->verified_stripes++;
7969 break;
7970 }
7971 }
7972 if (!found) {
7973 btrfs_err(fs_info,
7974 "dev extent physical offset %llu devid %llu has no corresponding chunk",
7975 physical_offset, devid);
7976 ret = -EUCLEAN;
7977 }
Qu Wenruo05a37c42018-10-05 17:45:55 +08007978
David Sterba1a9fd412021-05-21 17:42:23 +02007979 /* Make sure no dev extent is beyond device boundary */
Anand Jainb2598ed2020-11-03 13:49:43 +08007980 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL);
Qu Wenruo05a37c42018-10-05 17:45:55 +08007981 if (!dev) {
7982 btrfs_err(fs_info, "failed to find devid %llu", devid);
7983 ret = -EUCLEAN;
7984 goto out;
7985 }
Qu Wenruo1b3922a2019-01-08 14:08:18 +08007986
Qu Wenruo05a37c42018-10-05 17:45:55 +08007987 if (physical_offset + physical_len > dev->disk_total_bytes) {
7988 btrfs_err(fs_info,
7989"dev extent devid %llu physical offset %llu len %llu is beyond device boundary %llu",
7990 devid, physical_offset, physical_len,
7991 dev->disk_total_bytes);
7992 ret = -EUCLEAN;
7993 goto out;
7994 }
Naohiro Aota381a6962021-02-04 19:21:49 +09007995
7996 if (dev->zone_info) {
7997 u64 zone_size = dev->zone_info->zone_size;
7998
7999 if (!IS_ALIGNED(physical_offset, zone_size) ||
8000 !IS_ALIGNED(physical_len, zone_size)) {
8001 btrfs_err(fs_info,
8002"zoned: dev extent devid %llu physical offset %llu len %llu is not aligned to device zone",
8003 devid, physical_offset, physical_len);
8004 ret = -EUCLEAN;
8005 goto out;
8006 }
8007 }
8008
Qu Wenruocf90d882018-08-01 10:37:19 +08008009out:
8010 free_extent_map(em);
8011 return ret;
8012}
8013
8014static int verify_chunk_dev_extent_mapping(struct btrfs_fs_info *fs_info)
8015{
David Sterbac8bf1b62019-05-17 11:43:17 +02008016 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Qu Wenruocf90d882018-08-01 10:37:19 +08008017 struct extent_map *em;
8018 struct rb_node *node;
8019 int ret = 0;
8020
8021 read_lock(&em_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08008022 for (node = rb_first_cached(&em_tree->map); node; node = rb_next(node)) {
Qu Wenruocf90d882018-08-01 10:37:19 +08008023 em = rb_entry(node, struct extent_map, rb_node);
8024 if (em->map_lookup->num_stripes !=
8025 em->map_lookup->verified_stripes) {
8026 btrfs_err(fs_info,
8027 "chunk %llu has missing dev extent, have %d expect %d",
8028 em->start, em->map_lookup->verified_stripes,
8029 em->map_lookup->num_stripes);
8030 ret = -EUCLEAN;
8031 goto out;
8032 }
8033 }
8034out:
8035 read_unlock(&em_tree->lock);
8036 return ret;
8037}
8038
8039/*
8040 * Ensure that all dev extents are mapped to correct chunk, otherwise
8041 * later chunk allocation/free would cause unexpected behavior.
8042 *
8043 * NOTE: This will iterate through the whole device tree, which should be of
8044 * the same size level as the chunk tree. This slightly increases mount time.
8045 */
8046int btrfs_verify_dev_extents(struct btrfs_fs_info *fs_info)
8047{
8048 struct btrfs_path *path;
8049 struct btrfs_root *root = fs_info->dev_root;
8050 struct btrfs_key key;
Qu Wenruo5eb19382018-10-05 17:45:54 +08008051 u64 prev_devid = 0;
8052 u64 prev_dev_ext_end = 0;
Qu Wenruocf90d882018-08-01 10:37:19 +08008053 int ret = 0;
8054
Josef Bacik42437a62020-10-16 11:29:18 -04008055 /*
8056 * We don't have a dev_root because we mounted with ignorebadroots and
8057 * failed to load the root, so we want to skip the verification in this
8058 * case for sure.
8059 *
8060 * However if the dev root is fine, but the tree itself is corrupted
8061 * we'd still fail to mount. This verification is only to make sure
8062 * writes can happen safely, so instead just bypass this check
8063 * completely in the case of IGNOREBADROOTS.
8064 */
8065 if (btrfs_test_opt(fs_info, IGNOREBADROOTS))
8066 return 0;
8067
Qu Wenruocf90d882018-08-01 10:37:19 +08008068 key.objectid = 1;
8069 key.type = BTRFS_DEV_EXTENT_KEY;
8070 key.offset = 0;
8071
8072 path = btrfs_alloc_path();
8073 if (!path)
8074 return -ENOMEM;
8075
8076 path->reada = READA_FORWARD;
8077 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8078 if (ret < 0)
8079 goto out;
8080
8081 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
Marcos Paulo de Souzaad9a9372021-07-13 10:58:03 -03008082 ret = btrfs_next_leaf(root, path);
Qu Wenruocf90d882018-08-01 10:37:19 +08008083 if (ret < 0)
8084 goto out;
8085 /* No dev extents at all? Not good */
8086 if (ret > 0) {
8087 ret = -EUCLEAN;
8088 goto out;
8089 }
8090 }
8091 while (1) {
8092 struct extent_buffer *leaf = path->nodes[0];
8093 struct btrfs_dev_extent *dext;
8094 int slot = path->slots[0];
8095 u64 chunk_offset;
8096 u64 physical_offset;
8097 u64 physical_len;
8098 u64 devid;
8099
8100 btrfs_item_key_to_cpu(leaf, &key, slot);
8101 if (key.type != BTRFS_DEV_EXTENT_KEY)
8102 break;
8103 devid = key.objectid;
8104 physical_offset = key.offset;
8105
8106 dext = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
8107 chunk_offset = btrfs_dev_extent_chunk_offset(leaf, dext);
8108 physical_len = btrfs_dev_extent_length(leaf, dext);
8109
Qu Wenruo5eb19382018-10-05 17:45:54 +08008110 /* Check if this dev extent overlaps with the previous one */
8111 if (devid == prev_devid && physical_offset < prev_dev_ext_end) {
8112 btrfs_err(fs_info,
8113"dev extent devid %llu physical offset %llu overlap with previous dev extent end %llu",
8114 devid, physical_offset, prev_dev_ext_end);
8115 ret = -EUCLEAN;
8116 goto out;
8117 }
8118
Qu Wenruocf90d882018-08-01 10:37:19 +08008119 ret = verify_one_dev_extent(fs_info, chunk_offset, devid,
8120 physical_offset, physical_len);
8121 if (ret < 0)
8122 goto out;
Qu Wenruo5eb19382018-10-05 17:45:54 +08008123 prev_devid = devid;
8124 prev_dev_ext_end = physical_offset + physical_len;
8125
Qu Wenruocf90d882018-08-01 10:37:19 +08008126 ret = btrfs_next_item(root, path);
8127 if (ret < 0)
8128 goto out;
8129 if (ret > 0) {
8130 ret = 0;
8131 break;
8132 }
8133 }
8134
8135 /* Ensure all chunks have corresponding dev extents */
8136 ret = verify_chunk_dev_extent_mapping(fs_info);
8137out:
8138 btrfs_free_path(path);
8139 return ret;
8140}
Omar Sandovaleede2bf2016-11-03 10:28:12 -07008141
8142/*
8143 * Check whether the given block group or device is pinned by any inode being
8144 * used as a swapfile.
8145 */
8146bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr)
8147{
8148 struct btrfs_swapfile_pin *sp;
8149 struct rb_node *node;
8150
8151 spin_lock(&fs_info->swapfile_pins_lock);
8152 node = fs_info->swapfile_pins.rb_node;
8153 while (node) {
8154 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
8155 if (ptr < sp->ptr)
8156 node = node->rb_left;
8157 else if (ptr > sp->ptr)
8158 node = node->rb_right;
8159 else
8160 break;
8161 }
8162 spin_unlock(&fs_info->swapfile_pins_lock);
8163 return node != NULL;
8164}
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008165
8166static int relocating_repair_kthread(void *data)
8167{
8168 struct btrfs_block_group *cache = (struct btrfs_block_group *)data;
8169 struct btrfs_fs_info *fs_info = cache->fs_info;
8170 u64 target;
8171 int ret = 0;
8172
8173 target = cache->start;
8174 btrfs_put_block_group(cache);
8175
8176 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
8177 btrfs_info(fs_info,
8178 "zoned: skip relocating block group %llu to repair: EBUSY",
8179 target);
8180 return -EBUSY;
8181 }
8182
Johannes Thumshirnf3372062021-04-19 16:41:01 +09008183 mutex_lock(&fs_info->reclaim_bgs_lock);
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008184
8185 /* Ensure block group still exists */
8186 cache = btrfs_lookup_block_group(fs_info, target);
8187 if (!cache)
8188 goto out;
8189
8190 if (!cache->relocating_repair)
8191 goto out;
8192
8193 ret = btrfs_may_alloc_data_chunk(fs_info, target);
8194 if (ret < 0)
8195 goto out;
8196
8197 btrfs_info(fs_info,
8198 "zoned: relocating block group %llu to repair IO failure",
8199 target);
8200 ret = btrfs_relocate_chunk(fs_info, target);
8201
8202out:
8203 if (cache)
8204 btrfs_put_block_group(cache);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09008205 mutex_unlock(&fs_info->reclaim_bgs_lock);
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008206 btrfs_exclop_finish(fs_info);
8207
8208 return ret;
8209}
8210
8211int btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical)
8212{
8213 struct btrfs_block_group *cache;
8214
8215 /* Do not attempt to repair in degraded state */
8216 if (btrfs_test_opt(fs_info, DEGRADED))
8217 return 0;
8218
8219 cache = btrfs_lookup_block_group(fs_info, logical);
8220 if (!cache)
8221 return 0;
8222
8223 spin_lock(&cache->lock);
8224 if (cache->relocating_repair) {
8225 spin_unlock(&cache->lock);
8226 btrfs_put_block_group(cache);
8227 return 0;
8228 }
8229 cache->relocating_repair = 1;
8230 spin_unlock(&cache->lock);
8231
8232 kthread_run(relocating_repair_kthread, cache,
8233 "btrfs-relocating-repair");
8234
8235 return 0;
8236}