blob: 0997e3cd74e915c3f056eeff302a7cc1de7dba96 [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>
Josef Bacik54fde912021-10-14 13:11:01 -040017#include <linux/namei.h>
David Sterba784352f2019-08-21 18:54:28 +020018#include "misc.h"
Chris Mason0b86a832008-03-24 15:01:56 -040019#include "ctree.h"
20#include "extent_map.h"
21#include "disk-io.h"
22#include "transaction.h"
23#include "print-tree.h"
24#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050025#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040026#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010027#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040028#include "rcu-string.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010029#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080030#include "sysfs.h"
Qu Wenruo82fc28f2019-03-20 13:16:42 +080031#include "tree-checker.h"
Josef Bacik8719aaa2019-06-18 16:09:16 -040032#include "space-info.h"
Josef Bacikaac00232019-06-20 15:37:44 -040033#include "block-group.h"
Dennis Zhoub0643e52019-12-13 16:22:14 -080034#include "discard.h"
Naohiro Aota5b316462020-11-10 20:26:07 +090035#include "zoned.h"
Chris Mason0b86a832008-03-24 15:01:56 -040036
Zhao Leiaf902042015-09-15 21:08:06 +080037const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
38 [BTRFS_RAID_RAID10] = {
39 .sub_stripes = 2,
40 .dev_stripes = 1,
41 .devs_max = 0, /* 0 == as many as possible */
David Sterbab2f78e82021-07-22 20:54:37 +020042 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080043 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080044 .devs_increment = 2,
45 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020046 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080047 .raid_name = "raid10",
Anand Jain41a6e892018-04-25 19:01:43 +080048 .bg_flag = BTRFS_BLOCK_GROUP_RAID10,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080049 .mindev_error = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080050 },
51 [BTRFS_RAID_RAID1] = {
52 .sub_stripes = 1,
53 .dev_stripes = 1,
54 .devs_max = 2,
55 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080056 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080057 .devs_increment = 2,
58 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020059 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080060 .raid_name = "raid1",
Anand Jain41a6e892018-04-25 19:01:43 +080061 .bg_flag = BTRFS_BLOCK_GROUP_RAID1,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080062 .mindev_error = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080063 },
David Sterba47e6f742018-03-02 22:56:53 +010064 [BTRFS_RAID_RAID1C3] = {
65 .sub_stripes = 1,
66 .dev_stripes = 1,
David Sterbacf93e152019-11-27 16:10:54 +010067 .devs_max = 3,
David Sterba47e6f742018-03-02 22:56:53 +010068 .devs_min = 3,
69 .tolerated_failures = 2,
70 .devs_increment = 3,
71 .ncopies = 3,
David Sterbadb26a022019-11-25 15:34:48 +010072 .nparity = 0,
David Sterba47e6f742018-03-02 22:56:53 +010073 .raid_name = "raid1c3",
74 .bg_flag = BTRFS_BLOCK_GROUP_RAID1C3,
75 .mindev_error = BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET,
76 },
David Sterba8d6fac02018-03-02 22:56:53 +010077 [BTRFS_RAID_RAID1C4] = {
78 .sub_stripes = 1,
79 .dev_stripes = 1,
David Sterbacf93e152019-11-27 16:10:54 +010080 .devs_max = 4,
David Sterba8d6fac02018-03-02 22:56:53 +010081 .devs_min = 4,
82 .tolerated_failures = 3,
83 .devs_increment = 4,
84 .ncopies = 4,
David Sterbadb26a022019-11-25 15:34:48 +010085 .nparity = 0,
David Sterba8d6fac02018-03-02 22:56:53 +010086 .raid_name = "raid1c4",
87 .bg_flag = BTRFS_BLOCK_GROUP_RAID1C4,
88 .mindev_error = BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET,
89 },
Zhao Leiaf902042015-09-15 21:08:06 +080090 [BTRFS_RAID_DUP] = {
91 .sub_stripes = 1,
92 .dev_stripes = 2,
93 .devs_max = 1,
94 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080095 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080096 .devs_increment = 1,
97 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020098 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080099 .raid_name = "dup",
Anand Jain41a6e892018-04-25 19:01:43 +0800100 .bg_flag = BTRFS_BLOCK_GROUP_DUP,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800101 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800102 },
103 [BTRFS_RAID_RAID0] = {
104 .sub_stripes = 1,
105 .dev_stripes = 1,
106 .devs_max = 0,
David Sterbab2f78e82021-07-22 20:54:37 +0200107 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800108 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800109 .devs_increment = 1,
110 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200111 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +0800112 .raid_name = "raid0",
Anand Jain41a6e892018-04-25 19:01:43 +0800113 .bg_flag = BTRFS_BLOCK_GROUP_RAID0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800114 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800115 },
116 [BTRFS_RAID_SINGLE] = {
117 .sub_stripes = 1,
118 .dev_stripes = 1,
119 .devs_max = 1,
120 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800121 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800122 .devs_increment = 1,
123 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200124 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +0800125 .raid_name = "single",
Anand Jain41a6e892018-04-25 19:01:43 +0800126 .bg_flag = 0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800127 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800128 },
129 [BTRFS_RAID_RAID5] = {
130 .sub_stripes = 1,
131 .dev_stripes = 1,
132 .devs_max = 0,
133 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800134 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +0800135 .devs_increment = 1,
Hans van Kranenburgda612e32018-10-04 23:24:41 +0200136 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200137 .nparity = 1,
Anand Jained234672018-04-25 19:01:42 +0800138 .raid_name = "raid5",
Anand Jain41a6e892018-04-25 19:01:43 +0800139 .bg_flag = BTRFS_BLOCK_GROUP_RAID5,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800140 .mindev_error = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800141 },
142 [BTRFS_RAID_RAID6] = {
143 .sub_stripes = 1,
144 .dev_stripes = 1,
145 .devs_max = 0,
146 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800147 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800148 .devs_increment = 1,
Hans van Kranenburgda612e32018-10-04 23:24:41 +0200149 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200150 .nparity = 2,
Anand Jained234672018-04-25 19:01:42 +0800151 .raid_name = "raid6",
Anand Jain41a6e892018-04-25 19:01:43 +0800152 .bg_flag = BTRFS_BLOCK_GROUP_RAID6,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800153 .mindev_error = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800154 },
155};
156
David Sterba500a44c2021-07-26 14:15:19 +0200157/*
158 * Convert block group flags (BTRFS_BLOCK_GROUP_*) to btrfs_raid_types, which
159 * can be used as index to access btrfs_raid_array[].
160 */
161enum btrfs_raid_types __attribute_const__ btrfs_bg_flags_to_raid_index(u64 flags)
162{
163 if (flags & BTRFS_BLOCK_GROUP_RAID10)
164 return BTRFS_RAID_RAID10;
165 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
166 return BTRFS_RAID_RAID1;
167 else if (flags & BTRFS_BLOCK_GROUP_RAID1C3)
168 return BTRFS_RAID_RAID1C3;
169 else if (flags & BTRFS_BLOCK_GROUP_RAID1C4)
170 return BTRFS_RAID_RAID1C4;
171 else if (flags & BTRFS_BLOCK_GROUP_DUP)
172 return BTRFS_RAID_DUP;
173 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
174 return BTRFS_RAID_RAID0;
175 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
176 return BTRFS_RAID_RAID5;
177 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
178 return BTRFS_RAID_RAID6;
179
180 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
181}
182
David Sterba158da512019-05-17 11:43:41 +0200183const char *btrfs_bg_type_to_raid_name(u64 flags)
Anand Jained234672018-04-25 19:01:42 +0800184{
David Sterba158da512019-05-17 11:43:41 +0200185 const int index = btrfs_bg_flags_to_raid_index(flags);
186
187 if (index >= BTRFS_NR_RAID_TYPES)
Anand Jained234672018-04-25 19:01:42 +0800188 return NULL;
189
David Sterba158da512019-05-17 11:43:41 +0200190 return btrfs_raid_array[index].raid_name;
Anand Jained234672018-04-25 19:01:42 +0800191}
192
Anand Jainf89e09c2018-11-20 16:12:55 +0800193/*
194 * Fill @buf with textual description of @bg_flags, no more than @size_buf
195 * bytes including terminating null byte.
196 */
197void btrfs_describe_block_groups(u64 bg_flags, char *buf, u32 size_buf)
198{
199 int i;
200 int ret;
201 char *bp = buf;
202 u64 flags = bg_flags;
203 u32 size_bp = size_buf;
204
205 if (!flags) {
206 strcpy(bp, "NONE");
207 return;
208 }
209
210#define DESCRIBE_FLAG(flag, desc) \
211 do { \
212 if (flags & (flag)) { \
213 ret = snprintf(bp, size_bp, "%s|", (desc)); \
214 if (ret < 0 || ret >= size_bp) \
215 goto out_overflow; \
216 size_bp -= ret; \
217 bp += ret; \
218 flags &= ~(flag); \
219 } \
220 } while (0)
221
222 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_DATA, "data");
223 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_SYSTEM, "system");
224 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_METADATA, "metadata");
225
226 DESCRIBE_FLAG(BTRFS_AVAIL_ALLOC_BIT_SINGLE, "single");
227 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
228 DESCRIBE_FLAG(btrfs_raid_array[i].bg_flag,
229 btrfs_raid_array[i].raid_name);
230#undef DESCRIBE_FLAG
231
232 if (flags) {
233 ret = snprintf(bp, size_bp, "0x%llx|", flags);
234 size_bp -= ret;
235 }
236
237 if (size_bp < size_buf)
238 buf[size_buf - size_bp - 1] = '\0'; /* remove last | */
239
240 /*
241 * The text is trimmed, it's up to the caller to provide sufficiently
242 * large buffer
243 */
244out_overflow:;
245}
246
David Sterba6f8e0fc2019-03-20 16:29:13 +0100247static int init_first_rw_device(struct btrfs_trans_handle *trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400248static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000249static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200250static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700251static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
252 enum btrfs_map_op op,
253 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +0800254 struct btrfs_io_context **bioc_ret,
Liu Bo5ab56092017-03-14 13:33:57 -0700255 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500256
David Sterba9c6b1c42017-06-16 22:30:00 +0200257/*
258 * Device locking
259 * ==============
260 *
261 * There are several mutexes that protect manipulation of devices and low-level
262 * structures like chunks but not block groups, extents or files
263 *
264 * uuid_mutex (global lock)
265 * ------------------------
266 * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from
267 * the SCAN_DEV ioctl registration or from mount either implicitly (the first
268 * device) or requested by the device= mount option
269 *
270 * the mutex can be very coarse and can cover long-running operations
271 *
272 * protects: updates to fs_devices counters like missing devices, rw devices,
Andrea Gelmini52042d82018-11-28 12:05:13 +0100273 * seeding, structure cloning, opening/closing devices at mount/umount time
David Sterba9c6b1c42017-06-16 22:30:00 +0200274 *
275 * global::fs_devs - add, remove, updates to the global list
276 *
Josef Bacik18c850f2020-07-17 15:12:27 -0400277 * does not protect: manipulation of the fs_devices::devices list in general
278 * but in mount context it could be used to exclude list modifications by eg.
279 * scan ioctl
David Sterba9c6b1c42017-06-16 22:30:00 +0200280 *
281 * btrfs_device::name - renames (write side), read is RCU
282 *
283 * fs_devices::device_list_mutex (per-fs, with RCU)
284 * ------------------------------------------------
285 * protects updates to fs_devices::devices, ie. adding and deleting
286 *
287 * simple list traversal with read-only actions can be done with RCU protection
288 *
289 * may be used to exclude some operations from running concurrently without any
290 * modifications to the list (see write_all_supers)
291 *
Josef Bacik18c850f2020-07-17 15:12:27 -0400292 * Is not required at mount and close times, because our device list is
293 * protected by the uuid_mutex at that point.
294 *
David Sterba9c6b1c42017-06-16 22:30:00 +0200295 * balance_mutex
296 * -------------
297 * protects balance structures (status, state) and context accessed from
298 * several places (internally, ioctl)
299 *
300 * chunk_mutex
301 * -----------
302 * protects chunks, adding or removing during allocation, trim or when a new
Nikolay Borisov0b6f5d42019-05-09 18:11:11 +0300303 * device is added/removed. Additionally it also protects post_commit_list of
304 * individual devices, since they can be added to the transaction's
305 * post_commit_list only with chunk_mutex held.
David Sterba9c6b1c42017-06-16 22:30:00 +0200306 *
307 * cleaner_mutex
308 * -------------
309 * a big lock that is held by the cleaner thread and prevents running subvolume
310 * cleaning together with relocation or delayed iputs
311 *
312 *
313 * Lock nesting
314 * ============
315 *
316 * uuid_mutex
Anand Jainae3e7152020-05-14 01:42:45 +0800317 * device_list_mutex
318 * chunk_mutex
319 * balance_mutex
Anand Jain89595e82018-04-18 14:59:25 +0800320 *
321 *
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500322 * Exclusive operations
323 * ====================
Anand Jain89595e82018-04-18 14:59:25 +0800324 *
325 * Maintains the exclusivity of the following operations that apply to the
326 * whole filesystem and cannot run in parallel.
327 *
328 * - Balance (*)
329 * - Device add
330 * - Device remove
331 * - Device replace (*)
332 * - Resize
333 *
334 * The device operations (as above) can be in one of the following states:
335 *
336 * - Running state
337 * - Paused state
338 * - Completed state
339 *
340 * Only device operations marked with (*) can go into the Paused state for the
341 * following reasons:
342 *
343 * - ioctl (only Balance can be Paused through ioctl)
344 * - filesystem remounted as read-only
345 * - filesystem unmounted and mounted as read-only
346 * - system power-cycle and filesystem mounted as read-only
347 * - filesystem or device errors leading to forced read-only
348 *
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500349 * The status of exclusive operation is set and cleared atomically.
350 * During the course of Paused state, fs_info::exclusive_operation remains set.
Anand Jain89595e82018-04-18 14:59:25 +0800351 * A device operation in Paused or Running state can be canceled or resumed
352 * either by ioctl (Balance only) or when remounted as read-write.
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500353 * The exclusive status is cleared when the device operation is canceled or
Anand Jain89595e82018-04-18 14:59:25 +0800354 * completed.
David Sterba9c6b1c42017-06-16 22:30:00 +0200355 */
356
Miao Xie67a2c452014-09-03 21:35:43 +0800357DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400358static LIST_HEAD(fs_uuids);
David Sterba4143cb82019-10-01 19:57:37 +0200359struct list_head * __attribute_const__ btrfs_get_fs_uuids(void)
Anand Jainc73eccf2015-03-10 06:38:30 +0800360{
361 return &fs_uuids;
362}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400363
David Sterba2dfeca92017-06-14 02:48:07 +0200364/*
365 * alloc_fs_devices - allocate struct btrfs_fs_devices
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200366 * @fsid: if not NULL, copy the UUID to fs_devices::fsid
367 * @metadata_fsid: if not NULL, copy the UUID to fs_devices::metadata_fsid
David Sterba2dfeca92017-06-14 02:48:07 +0200368 *
369 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
370 * The returned struct is not linked onto any lists and can be destroyed with
371 * kfree() right away.
372 */
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200373static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid,
374 const u8 *metadata_fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300375{
376 struct btrfs_fs_devices *fs_devs;
377
David Sterba78f2c9e2016-02-11 14:25:38 +0100378 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300379 if (!fs_devs)
380 return ERR_PTR(-ENOMEM);
381
382 mutex_init(&fs_devs->device_list_mutex);
383
384 INIT_LIST_HEAD(&fs_devs->devices);
385 INIT_LIST_HEAD(&fs_devs->alloc_list);
Anand Jainc4babc52018-04-12 10:29:25 +0800386 INIT_LIST_HEAD(&fs_devs->fs_list);
Nikolay Borisov944d3f92020-07-16 10:25:33 +0300387 INIT_LIST_HEAD(&fs_devs->seed_list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300388 if (fsid)
389 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300390
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200391 if (metadata_fsid)
392 memcpy(fs_devs->metadata_uuid, metadata_fsid, BTRFS_FSID_SIZE);
393 else if (fsid)
394 memcpy(fs_devs->metadata_uuid, fsid, BTRFS_FSID_SIZE);
395
Ilya Dryomov2208a372013-08-12 14:33:03 +0300396 return fs_devs;
397}
398
David Sterbaa425f9d2018-03-20 15:47:33 +0100399void btrfs_free_device(struct btrfs_device *device)
David Sterba48dae9c2017-10-30 18:10:25 +0100400{
Nikolay Borisovbbbf7242019-03-25 14:31:22 +0200401 WARN_ON(!list_empty(&device->post_commit_list));
David Sterba48dae9c2017-10-30 18:10:25 +0100402 rcu_string_free(device->name);
Jeff Mahoney1c11b632019-03-27 14:24:12 +0200403 extent_io_tree_release(&device->alloc_state);
David Sterba48dae9c2017-10-30 18:10:25 +0100404 bio_put(device->flush_bio);
Naohiro Aota5b316462020-11-10 20:26:07 +0900405 btrfs_destroy_dev_zone_info(device);
David Sterba48dae9c2017-10-30 18:10:25 +0100406 kfree(device);
407}
408
Yan Zhenge4404d62008-12-12 10:03:26 -0500409static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
410{
411 struct btrfs_device *device;
412 WARN_ON(fs_devices->opened);
413 while (!list_empty(&fs_devices->devices)) {
414 device = list_entry(fs_devices->devices.next,
415 struct btrfs_device, dev_list);
416 list_del(&device->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100417 btrfs_free_device(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500418 }
419 kfree(fs_devices);
420}
421
David Sterbaffc5a372018-02-19 17:24:15 +0100422void __exit btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400423{
424 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400425
Yan Zheng2b820322008-11-17 21:11:30 -0500426 while (!list_empty(&fs_uuids)) {
427 fs_devices = list_entry(fs_uuids.next,
Anand Jainc4babc52018-04-12 10:29:25 +0800428 struct btrfs_fs_devices, fs_list);
429 list_del(&fs_devices->fs_list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500430 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400431 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400432}
433
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200434static noinline struct btrfs_fs_devices *find_fsid(
435 const u8 *fsid, const u8 *metadata_fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400436{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400437 struct btrfs_fs_devices *fs_devices;
438
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200439 ASSERT(fsid);
440
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200441 /* Handle non-split brain cases */
Anand Jainc4babc52018-04-12 10:29:25 +0800442 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200443 if (metadata_fsid) {
444 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0
445 && memcmp(metadata_fsid, fs_devices->metadata_uuid,
446 BTRFS_FSID_SIZE) == 0)
447 return fs_devices;
448 } else {
449 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
450 return fs_devices;
451 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400452 }
453 return NULL;
454}
455
Su Yuec6730a02020-01-10 14:11:33 +0200456static struct btrfs_fs_devices *find_fsid_with_metadata_uuid(
457 struct btrfs_super_block *disk_super)
458{
459
460 struct btrfs_fs_devices *fs_devices;
461
462 /*
463 * Handle scanned device having completed its fsid change but
464 * belonging to a fs_devices that was created by first scanning
465 * a device which didn't have its fsid/metadata_uuid changed
466 * at all and the CHANGING_FSID_V2 flag set.
467 */
468 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
469 if (fs_devices->fsid_change &&
470 memcmp(disk_super->metadata_uuid, fs_devices->fsid,
471 BTRFS_FSID_SIZE) == 0 &&
472 memcmp(fs_devices->fsid, fs_devices->metadata_uuid,
473 BTRFS_FSID_SIZE) == 0) {
474 return fs_devices;
475 }
476 }
477 /*
478 * Handle scanned device having completed its fsid change but
479 * belonging to a fs_devices that was created by a device that
480 * has an outdated pair of fsid/metadata_uuid and
481 * CHANGING_FSID_V2 flag set.
482 */
483 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
484 if (fs_devices->fsid_change &&
485 memcmp(fs_devices->metadata_uuid,
486 fs_devices->fsid, BTRFS_FSID_SIZE) != 0 &&
487 memcmp(disk_super->metadata_uuid, fs_devices->metadata_uuid,
488 BTRFS_FSID_SIZE) == 0) {
489 return fs_devices;
490 }
491 }
492
493 return find_fsid(disk_super->fsid, disk_super->metadata_uuid);
494}
495
496
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100497static int
498btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
499 int flush, struct block_device **bdev,
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900500 struct btrfs_super_block **disk_super)
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100501{
502 int ret;
503
504 *bdev = blkdev_get_by_path(device_path, flags, holder);
505
506 if (IS_ERR(*bdev)) {
507 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100508 goto error;
509 }
510
511 if (flush)
Christoph Hellwig1226dff2021-10-19 08:25:27 +0200512 sync_blockdev(*bdev);
David Sterba9f6d2512017-06-16 01:48:05 +0200513 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100514 if (ret) {
515 blkdev_put(*bdev, flags);
516 goto error;
517 }
518 invalidate_bdev(*bdev);
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900519 *disk_super = btrfs_read_dev_super(*bdev);
520 if (IS_ERR(*disk_super)) {
521 ret = PTR_ERR(*disk_super);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100522 blkdev_put(*bdev, flags);
523 goto error;
524 }
525
526 return 0;
527
528error:
529 *bdev = NULL;
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100530 return ret;
531}
532
Anand Jain70bc7082019-01-04 13:31:53 +0800533static bool device_path_matched(const char *path, struct btrfs_device *device)
534{
535 int found;
536
537 rcu_read_lock();
538 found = strcmp(rcu_str_deref(device->name), path);
539 rcu_read_unlock();
540
541 return found == 0;
542}
543
Anand Jaind8367db2018-01-18 22:00:37 +0800544/*
545 * Search and remove all stale (devices which are not mounted) devices.
546 * When both inputs are NULL, it will search and release all stale devices.
547 * path: Optional. When provided will it release all unmounted devices
548 * matching this path only.
549 * skip_dev: Optional. Will skip this device when searching for the stale
550 * devices.
Anand Jain70bc7082019-01-04 13:31:53 +0800551 * Return: 0 for success or if @path is NULL.
552 * -EBUSY if @path is a mounted device.
553 * -ENOENT if @path does not match any device in the list.
Anand Jaind8367db2018-01-18 22:00:37 +0800554 */
Anand Jain70bc7082019-01-04 13:31:53 +0800555static int btrfs_free_stale_devices(const char *path,
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800556 struct btrfs_device *skip_device)
Anand Jain4fde46f2015-06-17 21:10:48 +0800557{
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800558 struct btrfs_fs_devices *fs_devices, *tmp_fs_devices;
559 struct btrfs_device *device, *tmp_device;
Anand Jain70bc7082019-01-04 13:31:53 +0800560 int ret = 0;
561
Anand Jainc1247062021-08-31 09:21:28 +0800562 lockdep_assert_held(&uuid_mutex);
563
Anand Jain70bc7082019-01-04 13:31:53 +0800564 if (path)
565 ret = -ENOENT;
Anand Jain4fde46f2015-06-17 21:10:48 +0800566
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800567 list_for_each_entry_safe(fs_devices, tmp_fs_devices, &fs_uuids, fs_list) {
Anand Jain4fde46f2015-06-17 21:10:48 +0800568
Anand Jain70bc7082019-01-04 13:31:53 +0800569 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800570 list_for_each_entry_safe(device, tmp_device,
571 &fs_devices->devices, dev_list) {
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800572 if (skip_device && skip_device == device)
Anand Jaind8367db2018-01-18 22:00:37 +0800573 continue;
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800574 if (path && !device->name)
Anand Jain4fde46f2015-06-17 21:10:48 +0800575 continue;
Anand Jain70bc7082019-01-04 13:31:53 +0800576 if (path && !device_path_matched(path, device))
Anand Jain38cf6652018-01-18 22:00:34 +0800577 continue;
Anand Jain70bc7082019-01-04 13:31:53 +0800578 if (fs_devices->opened) {
579 /* for an already deleted device return 0 */
580 if (path && ret != 0)
581 ret = -EBUSY;
582 break;
583 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800584
Anand Jain4fde46f2015-06-17 21:10:48 +0800585 /* delete the stale device */
Anand Jain7bcb8162018-05-29 17:23:20 +0800586 fs_devices->num_devices--;
587 list_del(&device->dev_list);
588 btrfs_free_device(device);
589
Anand Jain70bc7082019-01-04 13:31:53 +0800590 ret = 0;
Anand Jain7bcb8162018-05-29 17:23:20 +0800591 }
592 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain70bc7082019-01-04 13:31:53 +0800593
Anand Jain7bcb8162018-05-29 17:23:20 +0800594 if (fs_devices->num_devices == 0) {
595 btrfs_sysfs_remove_fsid(fs_devices);
596 list_del(&fs_devices->fs_list);
597 free_fs_devices(fs_devices);
Anand Jain4fde46f2015-06-17 21:10:48 +0800598 }
599 }
Anand Jain70bc7082019-01-04 13:31:53 +0800600
601 return ret;
Anand Jain4fde46f2015-06-17 21:10:48 +0800602}
603
Josef Bacik18c850f2020-07-17 15:12:27 -0400604/*
605 * This is only used on mount, and we are protected from competing things
606 * messing with our fs_devices by the uuid_mutex, thus we do not need the
607 * fs_devices->device_list_mutex here.
608 */
Anand Jain0fb08bc2017-11-09 23:45:24 +0800609static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
610 struct btrfs_device *device, fmode_t flags,
611 void *holder)
612{
613 struct request_queue *q;
614 struct block_device *bdev;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800615 struct btrfs_super_block *disk_super;
616 u64 devid;
617 int ret;
618
619 if (device->bdev)
620 return -EINVAL;
621 if (!device->name)
622 return -EINVAL;
623
624 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900625 &bdev, &disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800626 if (ret)
627 return ret;
628
Anand Jain0fb08bc2017-11-09 23:45:24 +0800629 devid = btrfs_stack_device_id(&disk_super->dev_item);
630 if (devid != device->devid)
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900631 goto error_free_page;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800632
633 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900634 goto error_free_page;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800635
636 device->generation = btrfs_super_generation(disk_super);
637
638 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200639 if (btrfs_super_incompat_flags(disk_super) &
640 BTRFS_FEATURE_INCOMPAT_METADATA_UUID) {
641 pr_err(
642 "BTRFS: Invalid seeding and uuid-changed device detected\n");
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900643 goto error_free_page;
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200644 }
645
Anand Jainebbede42017-12-04 12:54:52 +0800646 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Johannes Thumshirn0395d842019-11-13 11:27:27 +0100647 fs_devices->seeding = true;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800648 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800649 if (bdev_read_only(bdev))
650 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
651 else
652 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800653 }
654
655 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800656 if (!blk_queue_nonrot(q))
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +0100657 fs_devices->rotating = true;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800658
659 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800660 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800661 device->mode = flags;
662
663 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800664 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
665 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800666 fs_devices->rw_devices++;
Anand Jainb1b8e382018-01-22 14:49:37 -0800667 list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800668 }
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900669 btrfs_release_disk_super(disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800670
671 return 0;
672
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900673error_free_page:
674 btrfs_release_disk_super(disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800675 blkdev_put(bdev, flags);
676
677 return -EINVAL;
678}
679
David Sterba60999ca2014-03-26 18:26:36 +0100680/*
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200681 * Handle scanned device having its CHANGING_FSID_V2 flag set and the fs_devices
Su Yuec0d81c72020-01-10 14:11:32 +0200682 * being created with a disk that has already completed its fsid change. Such
683 * disk can belong to an fs which has its FSID changed or to one which doesn't.
684 * Handle both cases here.
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200685 */
686static struct btrfs_fs_devices *find_fsid_inprogress(
687 struct btrfs_super_block *disk_super)
688{
689 struct btrfs_fs_devices *fs_devices;
690
691 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
692 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
693 BTRFS_FSID_SIZE) != 0 &&
694 memcmp(fs_devices->metadata_uuid, disk_super->fsid,
695 BTRFS_FSID_SIZE) == 0 && !fs_devices->fsid_change) {
696 return fs_devices;
697 }
698 }
699
Su Yuec0d81c72020-01-10 14:11:32 +0200700 return find_fsid(disk_super->fsid, NULL);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200701}
702
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200703
704static struct btrfs_fs_devices *find_fsid_changed(
705 struct btrfs_super_block *disk_super)
706{
707 struct btrfs_fs_devices *fs_devices;
708
709 /*
710 * Handles the case where scanned device is part of an fs that had
David Sterba1a9fd412021-05-21 17:42:23 +0200711 * multiple successful changes of FSID but currently device didn't
Nikolay Borisov05840712020-01-10 14:11:34 +0200712 * observe it. Meaning our fsid will be different than theirs. We need
713 * to handle two subcases :
714 * 1 - The fs still continues to have different METADATA/FSID uuids.
715 * 2 - The fs is switched back to its original FSID (METADATA/FSID
716 * are equal).
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200717 */
718 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Nikolay Borisov05840712020-01-10 14:11:34 +0200719 /* Changed UUIDs */
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200720 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
721 BTRFS_FSID_SIZE) != 0 &&
722 memcmp(fs_devices->metadata_uuid, disk_super->metadata_uuid,
723 BTRFS_FSID_SIZE) == 0 &&
724 memcmp(fs_devices->fsid, disk_super->fsid,
Nikolay Borisov05840712020-01-10 14:11:34 +0200725 BTRFS_FSID_SIZE) != 0)
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200726 return fs_devices;
Nikolay Borisov05840712020-01-10 14:11:34 +0200727
728 /* Unchanged UUIDs */
729 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
730 BTRFS_FSID_SIZE) == 0 &&
731 memcmp(fs_devices->fsid, disk_super->metadata_uuid,
732 BTRFS_FSID_SIZE) == 0)
733 return fs_devices;
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200734 }
735
736 return NULL;
737}
Nikolay Borisov13620892020-01-10 14:11:35 +0200738
739static struct btrfs_fs_devices *find_fsid_reverted_metadata(
740 struct btrfs_super_block *disk_super)
741{
742 struct btrfs_fs_devices *fs_devices;
743
744 /*
745 * Handle the case where the scanned device is part of an fs whose last
746 * metadata UUID change reverted it to the original FSID. At the same
747 * time * fs_devices was first created by another constitutent device
748 * which didn't fully observe the operation. This results in an
749 * btrfs_fs_devices created with metadata/fsid different AND
750 * btrfs_fs_devices::fsid_change set AND the metadata_uuid of the
751 * fs_devices equal to the FSID of the disk.
752 */
753 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
754 if (memcmp(fs_devices->fsid, fs_devices->metadata_uuid,
755 BTRFS_FSID_SIZE) != 0 &&
756 memcmp(fs_devices->metadata_uuid, disk_super->fsid,
757 BTRFS_FSID_SIZE) == 0 &&
758 fs_devices->fsid_change)
759 return fs_devices;
760 }
761
762 return NULL;
763}
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200764/*
David Sterba60999ca2014-03-26 18:26:36 +0100765 * Add new device to list of registered devices
766 *
767 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800768 * device pointer which was just added or updated when successful
769 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100770 */
Anand Jaine124ece2018-01-18 22:02:35 +0800771static noinline struct btrfs_device *device_list_add(const char *path,
Anand Jain4306a972018-05-29 12:28:37 +0800772 struct btrfs_super_block *disk_super,
773 bool *new_device_added)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400774{
775 struct btrfs_device *device;
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200776 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik606686e2012-06-04 14:03:51 -0400777 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400778 u64 found_transid = btrfs_super_generation(disk_super);
Anand Jain3acbcbf2018-01-18 22:02:36 +0800779 u64 devid = btrfs_stack_device_id(&disk_super->dev_item);
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200780 bool has_metadata_uuid = (btrfs_super_incompat_flags(disk_super) &
781 BTRFS_FEATURE_INCOMPAT_METADATA_UUID);
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200782 bool fsid_change_in_progress = (btrfs_super_flags(disk_super) &
783 BTRFS_SUPER_FLAG_CHANGING_FSID_V2);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400784
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200785 if (fsid_change_in_progress) {
Su Yuec0d81c72020-01-10 14:11:32 +0200786 if (!has_metadata_uuid)
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200787 fs_devices = find_fsid_inprogress(disk_super);
Su Yuec0d81c72020-01-10 14:11:32 +0200788 else
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200789 fs_devices = find_fsid_changed(disk_super);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200790 } else if (has_metadata_uuid) {
Su Yuec6730a02020-01-10 14:11:33 +0200791 fs_devices = find_fsid_with_metadata_uuid(disk_super);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200792 } else {
Nikolay Borisov13620892020-01-10 14:11:35 +0200793 fs_devices = find_fsid_reverted_metadata(disk_super);
794 if (!fs_devices)
795 fs_devices = find_fsid(disk_super->fsid, NULL);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200796 }
797
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200798
Chris Mason8a4b83c2008-03-24 15:02:07 -0400799 if (!fs_devices) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200800 if (has_metadata_uuid)
801 fs_devices = alloc_fs_devices(disk_super->fsid,
802 disk_super->metadata_uuid);
803 else
804 fs_devices = alloc_fs_devices(disk_super->fsid, NULL);
805
Ilya Dryomov2208a372013-08-12 14:33:03 +0300806 if (IS_ERR(fs_devices))
Anand Jaine124ece2018-01-18 22:02:35 +0800807 return ERR_CAST(fs_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300808
Al Viro92900e52019-01-27 04:58:00 +0000809 fs_devices->fsid_change = fsid_change_in_progress;
810
Anand Jain9c6d1732018-05-29 14:10:20 +0800811 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainc4babc52018-04-12 10:29:25 +0800812 list_add(&fs_devices->fs_list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300813
Chris Mason8a4b83c2008-03-24 15:02:07 -0400814 device = NULL;
815 } else {
Josef Bacik562d7b12021-10-05 16:12:42 -0400816 struct btrfs_dev_lookup_args args = {
817 .devid = devid,
818 .uuid = disk_super->dev_item.uuid,
819 };
820
Anand Jain9c6d1732018-05-29 14:10:20 +0800821 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik562d7b12021-10-05 16:12:42 -0400822 device = btrfs_find_device(fs_devices, &args);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200823
824 /*
825 * If this disk has been pulled into an fs devices created by
826 * a device which had the CHANGING_FSID_V2 flag then replace the
827 * metadata_uuid/fsid values of the fs_devices.
828 */
Nikolay Borisov13620892020-01-10 14:11:35 +0200829 if (fs_devices->fsid_change &&
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200830 found_transid > fs_devices->latest_generation) {
831 memcpy(fs_devices->fsid, disk_super->fsid,
832 BTRFS_FSID_SIZE);
Nikolay Borisov13620892020-01-10 14:11:35 +0200833
834 if (has_metadata_uuid)
835 memcpy(fs_devices->metadata_uuid,
836 disk_super->metadata_uuid,
837 BTRFS_FSID_SIZE);
838 else
839 memcpy(fs_devices->metadata_uuid,
840 disk_super->fsid, BTRFS_FSID_SIZE);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200841
842 fs_devices->fsid_change = false;
843 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400844 }
Miao Xie443f24f2014-07-24 11:37:15 +0800845
Chris Mason8a4b83c2008-03-24 15:02:07 -0400846 if (!device) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800847 if (fs_devices->opened) {
848 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800849 return ERR_PTR(-EBUSY);
Anand Jain9c6d1732018-05-29 14:10:20 +0800850 }
Yan Zheng2b820322008-11-17 21:11:30 -0500851
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300852 device = btrfs_alloc_device(NULL, &devid,
853 disk_super->dev_item.uuid);
854 if (IS_ERR(device)) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800855 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400856 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800857 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400858 }
Josef Bacik606686e2012-06-04 14:03:51 -0400859
860 name = rcu_string_strdup(path, GFP_NOFS);
861 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100862 btrfs_free_device(device);
Anand Jain9c6d1732018-05-29 14:10:20 +0800863 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800864 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400865 }
Josef Bacik606686e2012-06-04 14:03:51 -0400866 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200867
Xiao Guangrong1f781602011-04-20 10:09:16 +0000868 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100869 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400870
Yan Zheng2b820322008-11-17 21:11:30 -0500871 device->fs_devices = fs_devices;
Anand Jain4306a972018-05-29 12:28:37 +0800872 *new_device_added = true;
Anand Jain327f18c2018-01-18 22:02:33 +0800873
874 if (disk_super->label[0])
Anand Jainaa6c0df2019-10-02 18:30:48 +0800875 pr_info(
876 "BTRFS: device label %s devid %llu transid %llu %s scanned by %s (%d)\n",
877 disk_super->label, devid, found_transid, path,
878 current->comm, task_pid_nr(current));
Anand Jain327f18c2018-01-18 22:02:33 +0800879 else
Anand Jainaa6c0df2019-10-02 18:30:48 +0800880 pr_info(
881 "BTRFS: device fsid %pU devid %llu transid %llu %s scanned by %s (%d)\n",
882 disk_super->fsid, devid, found_transid, path,
883 current->comm, task_pid_nr(current));
Anand Jain327f18c2018-01-18 22:02:33 +0800884
Josef Bacik606686e2012-06-04 14:03:51 -0400885 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800886 /*
887 * When FS is already mounted.
888 * 1. If you are here and if the device->name is NULL that
889 * means this device was missing at time of FS mount.
890 * 2. If you are here and if the device->name is different
891 * from 'path' that means either
892 * a. The same device disappeared and reappeared with
893 * different name. or
894 * b. The missing-disk-which-was-replaced, has
895 * reappeared now.
896 *
897 * We must allow 1 and 2a above. But 2b would be a spurious
898 * and unintentional.
899 *
900 * Further in case of 1 and 2a above, the disk at 'path'
901 * would have missed some transaction when it was away and
902 * in case of 2a the stale bdev has to be updated as well.
903 * 2b must not be allowed at all time.
904 */
905
906 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700907 * For now, we do allow update to btrfs_fs_device through the
908 * btrfs dev scan cli after FS has been mounted. We're still
909 * tracking a problem where systems fail mount by subvolume id
910 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800911 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700912 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800913 /*
914 * That is if the FS is _not_ mounted and if you
915 * are here, that means there is more than one
916 * disk with same uuid and devid.We keep the one
917 * with larger generation number or the last-in if
918 * generation are equal.
919 */
Anand Jain9c6d1732018-05-29 14:10:20 +0800920 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800921 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800922 }
Anand Jainb96de002014-07-03 18:22:05 +0800923
Anand Jaina9261d42018-10-15 10:45:17 +0800924 /*
925 * We are going to replace the device path for a given devid,
926 * make sure it's the same device if the device is mounted
927 */
928 if (device->bdev) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100929 int error;
930 dev_t path_dev;
Anand Jaina9261d42018-10-15 10:45:17 +0800931
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100932 error = lookup_bdev(path, &path_dev);
933 if (error) {
Anand Jaina9261d42018-10-15 10:45:17 +0800934 mutex_unlock(&fs_devices->device_list_mutex);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100935 return ERR_PTR(error);
Anand Jaina9261d42018-10-15 10:45:17 +0800936 }
937
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100938 if (device->bdev->bd_dev != path_dev) {
Anand Jaina9261d42018-10-15 10:45:17 +0800939 mutex_unlock(&fs_devices->device_list_mutex);
Johannes Thumshirn0697d9a2020-11-18 18:03:26 +0900940 /*
941 * device->fs_info may not be reliable here, so
942 * pass in a NULL instead. This avoids a
943 * possible use-after-free when the fs_info and
944 * fs_info->sb are already torn down.
945 */
946 btrfs_warn_in_rcu(NULL,
Anand Jain79dae172020-09-03 21:30:12 +0800947 "duplicate device %s devid %llu generation %llu scanned by %s (%d)",
948 path, devid, found_transid,
949 current->comm,
950 task_pid_nr(current));
Anand Jaina9261d42018-10-15 10:45:17 +0800951 return ERR_PTR(-EEXIST);
952 }
Anand Jaina9261d42018-10-15 10:45:17 +0800953 btrfs_info_in_rcu(device->fs_info,
Anand Jain79dae172020-09-03 21:30:12 +0800954 "devid %llu device path %s changed to %s scanned by %s (%d)",
955 devid, rcu_str_deref(device->name),
956 path, current->comm,
957 task_pid_nr(current));
Anand Jaina9261d42018-10-15 10:45:17 +0800958 }
959
Josef Bacik606686e2012-06-04 14:03:51 -0400960 name = rcu_string_strdup(path, GFP_NOFS);
Anand Jain9c6d1732018-05-29 14:10:20 +0800961 if (!name) {
962 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800963 return ERR_PTR(-ENOMEM);
Anand Jain9c6d1732018-05-29 14:10:20 +0800964 }
Josef Bacik606686e2012-06-04 14:03:51 -0400965 rcu_string_free(device->name);
966 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800967 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500968 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800969 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500970 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400971 }
972
Anand Jain77bdae42014-07-03 18:22:06 +0800973 /*
974 * Unmount does not free the btrfs_device struct but would zero
975 * generation along with most of the other members. So just update
976 * it back. We need it to pick the disk with largest generation
977 * (as above).
978 */
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200979 if (!fs_devices->opened) {
Anand Jain77bdae42014-07-03 18:22:06 +0800980 device->generation = found_transid;
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200981 fs_devices->latest_generation = max_t(u64, found_transid,
982 fs_devices->latest_generation);
983 }
Anand Jain77bdae42014-07-03 18:22:06 +0800984
Anand Jainf2788d22018-01-18 22:02:34 +0800985 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
986
Anand Jain9c6d1732018-05-29 14:10:20 +0800987 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800988 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400989}
990
Yan Zhenge4404d62008-12-12 10:03:26 -0500991static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
992{
993 struct btrfs_fs_devices *fs_devices;
994 struct btrfs_device *device;
995 struct btrfs_device *orig_dev;
Anand Jaind2979aa2019-08-27 15:40:45 +0800996 int ret = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -0500997
Anand Jainc1247062021-08-31 09:21:28 +0800998 lockdep_assert_held(&uuid_mutex);
999
Nikolay Borisov7239ff42018-10-30 16:43:23 +02001000 fs_devices = alloc_fs_devices(orig->fsid, NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03001001 if (IS_ERR(fs_devices))
1002 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001003
Josef Bacik02db0842012-06-21 16:03:58 -04001004 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001005
1006 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -04001007 struct rcu_string *name;
1008
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001009 device = btrfs_alloc_device(NULL, &orig_dev->devid,
1010 orig_dev->uuid);
Anand Jaind2979aa2019-08-27 15:40:45 +08001011 if (IS_ERR(device)) {
1012 ret = PTR_ERR(device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001013 goto error;
Anand Jaind2979aa2019-08-27 15:40:45 +08001014 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001015
Josef Bacik606686e2012-06-04 14:03:51 -04001016 /*
1017 * This is ok to do without rcu read locked because we hold the
1018 * uuid mutex so nothing we touch in here is going to disappear.
1019 */
Anand Jaine755f782014-06-30 17:12:47 +08001020 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +01001021 name = rcu_string_strdup(orig_dev->name->str,
1022 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +08001023 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +01001024 btrfs_free_device(device);
Anand Jaind2979aa2019-08-27 15:40:45 +08001025 ret = -ENOMEM;
Anand Jaine755f782014-06-30 17:12:47 +08001026 goto error;
1027 }
1028 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -04001029 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001030
Yan Zhenge4404d62008-12-12 10:03:26 -05001031 list_add(&device->dev_list, &fs_devices->devices);
1032 device->fs_devices = fs_devices;
1033 fs_devices->num_devices++;
1034 }
1035 return fs_devices;
1036error:
1037 free_fs_devices(fs_devices);
Anand Jaind2979aa2019-08-27 15:40:45 +08001038 return ERR_PTR(ret);
Yan Zhenge4404d62008-12-12 10:03:26 -05001039}
1040
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001041static void __btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices,
Anand Jainbacce862020-11-06 16:06:33 +08001042 struct btrfs_device **latest_dev)
Chris Masondfe25022008-05-13 13:46:40 -04001043{
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001044 struct btrfs_device *device, *next;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001045
Xiao Guangrong46224702011-04-20 10:08:47 +00001046 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001047 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001048 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +08001049 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001050 &device->dev_state) &&
Anand Jain998a0672020-05-05 02:58:25 +08001051 !test_bit(BTRFS_DEV_STATE_MISSING,
1052 &device->dev_state) &&
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001053 (!*latest_dev ||
1054 device->generation > (*latest_dev)->generation)) {
1055 *latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001056 }
Yan Zheng2b820322008-11-17 21:11:30 -05001057 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001058 }
Yan Zheng2b820322008-11-17 21:11:30 -05001059
Anand Jaincf89af12020-10-30 06:53:56 +08001060 /*
1061 * We have already validated the presence of BTRFS_DEV_REPLACE_DEVID,
1062 * in btrfs_init_dev_replace() so just continue.
1063 */
1064 if (device->devid == BTRFS_DEV_REPLACE_DEVID)
1065 continue;
1066
Yan Zheng2b820322008-11-17 21:11:30 -05001067 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +01001068 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -05001069 device->bdev = NULL;
1070 fs_devices->open_devices--;
1071 }
Anand Jainebbede42017-12-04 12:54:52 +08001072 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05001073 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +08001074 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Desmond Cheong Zhi Xib2a61662021-07-27 15:13:03 +08001075 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001076 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001077 list_del_init(&device->dev_list);
1078 fs_devices->num_devices--;
David Sterbaa425f9d2018-03-20 15:47:33 +01001079 btrfs_free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -04001080 }
Yan Zheng2b820322008-11-17 21:11:30 -05001081
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001082}
1083
1084/*
1085 * After we have read the system tree and know devids belonging to this
1086 * filesystem, remove the device which does not belong there.
1087 */
Anand Jainbacce862020-11-06 16:06:33 +08001088void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices)
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001089{
1090 struct btrfs_device *latest_dev = NULL;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001091 struct btrfs_fs_devices *seed_dev;
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001092
1093 mutex_lock(&uuid_mutex);
Anand Jainbacce862020-11-06 16:06:33 +08001094 __btrfs_free_extra_devids(fs_devices, &latest_dev);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001095
1096 list_for_each_entry(seed_dev, &fs_devices->seed_list, seed_list)
Anand Jainbacce862020-11-06 16:06:33 +08001097 __btrfs_free_extra_devids(seed_dev, &latest_dev);
Yan Zheng2b820322008-11-17 21:11:30 -05001098
Anand Jaind24fa5c2021-08-24 13:05:19 +08001099 fs_devices->latest_dev = latest_dev;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001100
Chris Masondfe25022008-05-13 13:46:40 -04001101 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -04001102}
Chris Masona0af4692008-05-13 16:03:06 -04001103
Anand Jain14238812016-07-22 06:04:53 +08001104static void btrfs_close_bdev(struct btrfs_device *device)
1105{
David Sterba08ffcae2017-06-19 16:55:35 +02001106 if (!device->bdev)
1107 return;
1108
Anand Jainebbede42017-12-04 12:54:52 +08001109 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +08001110 sync_blockdev(device->bdev);
1111 invalidate_bdev(device->bdev);
1112 }
1113
David Sterba08ffcae2017-06-19 16:55:35 +02001114 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +08001115}
1116
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001117static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +08001118{
1119 struct btrfs_fs_devices *fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +08001120
Anand Jainebbede42017-12-04 12:54:52 +08001121 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +08001122 device->devid != BTRFS_DEV_REPLACE_DEVID) {
1123 list_del_init(&device->dev_alloc_list);
1124 fs_devices->rw_devices--;
1125 }
1126
Desmond Cheong Zhi Xi0d977e02021-08-21 01:50:40 +08001127 if (device->devid == BTRFS_DEV_REPLACE_DEVID)
1128 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
1129
Li Zhang5d03dbe2021-10-05 01:15:33 +08001130 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
1131 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Anand Jainf448341a2016-06-14 18:55:25 +08001132 fs_devices->missing_devices--;
Li Zhang5d03dbe2021-10-05 01:15:33 +08001133 }
Anand Jainf448341a2016-06-14 18:55:25 +08001134
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001135 btrfs_close_bdev(device);
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001136 if (device->bdev) {
Johannes Thumshirn3fff3972019-11-26 09:40:05 +01001137 fs_devices->open_devices--;
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001138 device->bdev = NULL;
Anand Jainf448341a2016-06-14 18:55:25 +08001139 }
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001140 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Naohiro Aota5b316462020-11-10 20:26:07 +09001141 btrfs_destroy_dev_zone_info(device);
Anand Jainf448341a2016-06-14 18:55:25 +08001142
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001143 device->fs_info = NULL;
1144 atomic_set(&device->dev_stats_ccnt, 0);
1145 extent_io_tree_release(&device->alloc_state);
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001146
Filipe Manana6b225ba2021-09-08 19:05:44 +01001147 /*
1148 * Reset the flush error record. We might have a transient flush error
1149 * in this mount, and if so we aborted the current transaction and set
1150 * the fs to an error state, guaranteeing no super blocks can be further
1151 * committed. However that error might be transient and if we unmount the
1152 * filesystem and mount it again, we should allow the mount to succeed
1153 * (btrfs_check_rw_degradable() should not fail) - if after mounting the
1154 * filesystem again we still get flush errors, then we will again abort
1155 * any transaction and set the error state, guaranteeing no commits of
1156 * unsafe super blocks.
1157 */
1158 device->last_flush_error = 0;
1159
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001160 /* Verify the device is back in a pristine state */
1161 ASSERT(!test_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state));
1162 ASSERT(!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
1163 ASSERT(list_empty(&device->dev_alloc_list));
1164 ASSERT(list_empty(&device->post_commit_list));
1165 ASSERT(atomic_read(&device->reada_in_flight) == 0);
Anand Jainf448341a2016-06-14 18:55:25 +08001166}
1167
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001168static void close_fs_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001169{
Sasha Levin2037a092015-05-12 19:31:37 -04001170 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -05001171
Josef Bacik425c6ed2020-08-10 11:42:28 -04001172 lockdep_assert_held(&uuid_mutex);
1173
Yan Zheng2b820322008-11-17 21:11:30 -05001174 if (--fs_devices->opened > 0)
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001175 return;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001176
Josef Bacik425c6ed2020-08-10 11:42:28 -04001177 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list)
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001178 btrfs_close_one_device(device);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001179
Yan Zhenge4404d62008-12-12 10:03:26 -05001180 WARN_ON(fs_devices->open_devices);
1181 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001182 fs_devices->opened = 0;
Johannes Thumshirn0395d842019-11-13 11:27:27 +01001183 fs_devices->seeding = false;
Nikolay Borisovc4989c2f2020-07-15 13:48:49 +03001184 fs_devices->fs_info = NULL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001185}
1186
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001187void btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001188{
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001189 LIST_HEAD(list);
1190 struct btrfs_fs_devices *tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05001191
1192 mutex_lock(&uuid_mutex);
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001193 close_fs_devices(fs_devices);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001194 if (!fs_devices->opened)
1195 list_splice_init(&fs_devices->seed_list, &list);
Yan Zhenge4404d62008-12-12 10:03:26 -05001196
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001197 list_for_each_entry_safe(fs_devices, tmp, &list, seed_list) {
Anand Jain0226e0e2018-04-12 10:29:27 +08001198 close_fs_devices(fs_devices);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001199 list_del(&fs_devices->seed_list);
Yan Zhenge4404d62008-12-12 10:03:26 -05001200 free_fs_devices(fs_devices);
1201 }
Josef Bacik425c6ed2020-08-10 11:42:28 -04001202 mutex_unlock(&uuid_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001203}
1204
Anand Jain897fb572018-04-12 10:29:28 +08001205static int open_fs_devices(struct btrfs_fs_devices *fs_devices,
Yan Zhenge4404d62008-12-12 10:03:26 -05001206 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001207{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001208 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001209 struct btrfs_device *latest_dev = NULL;
Anand Jain96c2e062020-09-30 21:09:52 +08001210 struct btrfs_device *tmp_device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001211
Tejun Heod4d77622010-11-13 11:55:18 +01001212 flags |= FMODE_EXCL;
1213
Anand Jain96c2e062020-09-30 21:09:52 +08001214 list_for_each_entry_safe(device, tmp_device, &fs_devices->devices,
1215 dev_list) {
1216 int ret;
Chris Masona0af4692008-05-13 16:03:06 -04001217
Anand Jain96c2e062020-09-30 21:09:52 +08001218 ret = btrfs_open_one_device(fs_devices, device, flags, holder);
1219 if (ret == 0 &&
1220 (!latest_dev || device->generation > latest_dev->generation)) {
Anand Jain9f050db2017-11-09 23:45:25 +08001221 latest_dev = device;
Anand Jain96c2e062020-09-30 21:09:52 +08001222 } else if (ret == -ENODATA) {
1223 fs_devices->num_devices--;
1224 list_del(&device->dev_list);
1225 btrfs_free_device(device);
1226 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001227 }
Anand Jain1ed802c2020-04-28 23:22:25 +08001228 if (fs_devices->open_devices == 0)
1229 return -EINVAL;
1230
Yan Zheng2b820322008-11-17 21:11:30 -05001231 fs_devices->opened = 1;
Anand Jaind24fa5c2021-08-24 13:05:19 +08001232 fs_devices->latest_dev = latest_dev;
Yan Zheng2b820322008-11-17 21:11:30 -05001233 fs_devices->total_rw_bytes = 0;
Naohiro Aotac4a816c2020-02-25 12:56:08 +09001234 fs_devices->chunk_alloc_policy = BTRFS_CHUNK_ALLOC_REGULAR;
Anand Jain33fd2f72020-10-28 21:14:46 +08001235 fs_devices->read_policy = BTRFS_READ_POLICY_PID;
Anand Jain1ed802c2020-04-28 23:22:25 +08001236
1237 return 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001238}
1239
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07001240static int devid_cmp(void *priv, const struct list_head *a,
1241 const struct list_head *b)
Anand Jainf8e10cd2018-01-22 14:49:36 -08001242{
David Sterba214cc182021-07-26 14:15:26 +02001243 const struct btrfs_device *dev1, *dev2;
Anand Jainf8e10cd2018-01-22 14:49:36 -08001244
1245 dev1 = list_entry(a, struct btrfs_device, dev_list);
1246 dev2 = list_entry(b, struct btrfs_device, dev_list);
1247
1248 if (dev1->devid < dev2->devid)
1249 return -1;
1250 else if (dev1->devid > dev2->devid)
1251 return 1;
1252 return 0;
1253}
1254
Yan Zheng2b820322008-11-17 21:11:30 -05001255int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001256 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001257{
1258 int ret;
1259
David Sterbaf5194e32018-06-19 17:09:47 +02001260 lockdep_assert_held(&uuid_mutex);
Josef Bacik18c850f2020-07-17 15:12:27 -04001261 /*
1262 * The device_list_mutex cannot be taken here in case opening the
Christoph Hellwiga8698702021-05-25 08:12:56 +02001263 * underlying device takes further locks like open_mutex.
Josef Bacik18c850f2020-07-17 15:12:27 -04001264 *
1265 * We also don't need the lock here as this is called during mount and
1266 * exclusion is provided by uuid_mutex
1267 */
David Sterbaf5194e32018-06-19 17:09:47 +02001268
Yan Zheng2b820322008-11-17 21:11:30 -05001269 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001270 fs_devices->opened++;
1271 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001272 } else {
Anand Jainf8e10cd2018-01-22 14:49:36 -08001273 list_sort(NULL, &fs_devices->devices, devid_cmp);
Anand Jain897fb572018-04-12 10:29:28 +08001274 ret = open_fs_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001275 }
Anand Jain542c5902018-04-12 10:29:34 +08001276
Chris Mason8a4b83c2008-03-24 15:02:07 -04001277 return ret;
1278}
1279
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001280void btrfs_release_disk_super(struct btrfs_super_block *super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001281{
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001282 struct page *page = virt_to_page(super);
1283
Anand Jain6cf86a002016-02-13 10:01:29 +08001284 put_page(page);
1285}
1286
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001287static struct btrfs_super_block *btrfs_read_disk_super(struct block_device *bdev,
Naohiro Aota12659252020-11-10 20:26:14 +09001288 u64 bytenr, u64 bytenr_orig)
Anand Jain6cf86a002016-02-13 10:01:29 +08001289{
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001290 struct btrfs_super_block *disk_super;
1291 struct page *page;
Anand Jain6cf86a002016-02-13 10:01:29 +08001292 void *p;
1293 pgoff_t index;
1294
1295 /* make sure our super fits in the device */
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02001296 if (bytenr + PAGE_SIZE >= bdev_nr_bytes(bdev))
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001297 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001298
1299 /* make sure our super fits in the page */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001300 if (sizeof(*disk_super) > PAGE_SIZE)
1301 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001302
1303 /* make sure our super doesn't straddle pages on disk */
1304 index = bytenr >> PAGE_SHIFT;
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001305 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_SHIFT != index)
1306 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001307
1308 /* pull in the page with our super */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001309 page = read_cache_page_gfp(bdev->bd_inode->i_mapping, index, GFP_KERNEL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001310
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001311 if (IS_ERR(page))
1312 return ERR_CAST(page);
Anand Jain6cf86a002016-02-13 10:01:29 +08001313
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001314 p = page_address(page);
Anand Jain6cf86a002016-02-13 10:01:29 +08001315
1316 /* align our pointer to the offset of the super block */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001317 disk_super = p + offset_in_page(bytenr);
Anand Jain6cf86a002016-02-13 10:01:29 +08001318
Naohiro Aota12659252020-11-10 20:26:14 +09001319 if (btrfs_super_bytenr(disk_super) != bytenr_orig ||
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001320 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001321 btrfs_release_disk_super(p);
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001322 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001323 }
1324
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001325 if (disk_super->label[0] && disk_super->label[BTRFS_LABEL_SIZE - 1])
1326 disk_super->label[BTRFS_LABEL_SIZE - 1] = 0;
Anand Jain6cf86a002016-02-13 10:01:29 +08001327
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001328 return disk_super;
Anand Jain6cf86a002016-02-13 10:01:29 +08001329}
1330
Anand Jain228a73a2019-01-04 13:31:54 +08001331int btrfs_forget_devices(const char *path)
1332{
1333 int ret;
1334
1335 mutex_lock(&uuid_mutex);
1336 ret = btrfs_free_stale_devices(strlen(path) ? path : NULL, NULL);
1337 mutex_unlock(&uuid_mutex);
1338
1339 return ret;
1340}
1341
David Sterba6f60cbd2013-02-15 11:31:02 -07001342/*
1343 * Look for a btrfs signature on a device. This may be called out of the mount path
1344 * and we are not allowed to call set_blocksize during the scan. The superblock
1345 * is read via pagecache
1346 */
Gu Jinxiang36350e92018-07-12 14:23:16 +08001347struct btrfs_device *btrfs_scan_one_device(const char *path, fmode_t flags,
1348 void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001349{
1350 struct btrfs_super_block *disk_super;
Anand Jain4306a972018-05-29 12:28:37 +08001351 bool new_device_added = false;
Gu Jinxiang36350e92018-07-12 14:23:16 +08001352 struct btrfs_device *device = NULL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001353 struct block_device *bdev;
Naohiro Aota12659252020-11-10 20:26:14 +09001354 u64 bytenr, bytenr_orig;
1355 int ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001356
David Sterba899f9302018-06-19 16:37:36 +02001357 lockdep_assert_held(&uuid_mutex);
1358
David Sterba6f60cbd2013-02-15 11:31:02 -07001359 /*
1360 * we would like to check all the supers, but that would make
1361 * a btrfs mount succeed after a mkfs from a different FS.
1362 * So, we need to add a special mount option to scan for
1363 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1364 */
Tejun Heod4d77622010-11-13 11:55:18 +01001365 flags |= FMODE_EXCL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001366
1367 bdev = blkdev_get_by_path(path, flags, holder);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001368 if (IS_ERR(bdev))
Gu Jinxiang36350e92018-07-12 14:23:16 +08001369 return ERR_CAST(bdev);
David Sterba6f60cbd2013-02-15 11:31:02 -07001370
Naohiro Aota12659252020-11-10 20:26:14 +09001371 bytenr_orig = btrfs_sb_offset(0);
1372 ret = btrfs_sb_log_location_bdev(bdev, 0, READ, &bytenr);
1373 if (ret)
1374 return ERR_PTR(ret);
1375
1376 disk_super = btrfs_read_disk_super(bdev, bytenr, bytenr_orig);
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001377 if (IS_ERR(disk_super)) {
1378 device = ERR_CAST(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001379 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001380 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001381
Anand Jain4306a972018-05-29 12:28:37 +08001382 device = device_list_add(path, disk_super, &new_device_added);
Gu Jinxiang36350e92018-07-12 14:23:16 +08001383 if (!IS_ERR(device)) {
Anand Jain4306a972018-05-29 12:28:37 +08001384 if (new_device_added)
1385 btrfs_free_stale_devices(path, device);
1386 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001387
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001388 btrfs_release_disk_super(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001389
1390error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001391 blkdev_put(bdev, flags);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001392
Gu Jinxiang36350e92018-07-12 14:23:16 +08001393 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001394}
Chris Mason0b86a832008-03-24 15:01:56 -04001395
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001396/*
1397 * Try to find a chunk that intersects [start, start + len] range and when one
1398 * such is found, record the end of it in *start
1399 */
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001400static bool contains_pending_extent(struct btrfs_device *device, u64 *start,
1401 u64 len)
Josef Bacik6df9a952013-06-27 13:22:46 -04001402{
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001403 u64 physical_start, physical_end;
Josef Bacik6df9a952013-06-27 13:22:46 -04001404
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001405 lockdep_assert_held(&device->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04001406
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001407 if (!find_first_extent_bit(&device->alloc_state, *start,
1408 &physical_start, &physical_end,
1409 CHUNK_ALLOCATED, NULL)) {
Filipe Mananac152b632015-05-14 10:46:03 +01001410
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001411 if (in_range(physical_start, *start, len) ||
1412 in_range(*start, physical_start,
1413 physical_end - physical_start)) {
1414 *start = physical_end + 1;
1415 return true;
Josef Bacik6df9a952013-06-27 13:22:46 -04001416 }
1417 }
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001418 return false;
Josef Bacik6df9a952013-06-27 13:22:46 -04001419}
1420
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001421static u64 dev_extent_search_start(struct btrfs_device *device, u64 start)
1422{
1423 switch (device->fs_devices->chunk_alloc_policy) {
1424 case BTRFS_CHUNK_ALLOC_REGULAR:
1425 /*
1426 * We don't want to overwrite the superblock on the drive nor
1427 * any area used by the boot loader (grub for example), so we
1428 * make sure to start at an offset of at least 1MB.
1429 */
1430 return max_t(u64, start, SZ_1M);
Naohiro Aota1cd61212021-02-04 19:21:48 +09001431 case BTRFS_CHUNK_ALLOC_ZONED:
1432 /*
1433 * We don't care about the starting region like regular
1434 * allocator, because we anyway use/reserve the first two zones
1435 * for superblock logging.
1436 */
1437 return ALIGN(start, device->zone_info->zone_size);
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001438 default:
1439 BUG();
1440 }
1441}
1442
Naohiro Aota1cd61212021-02-04 19:21:48 +09001443static bool dev_extent_hole_check_zoned(struct btrfs_device *device,
1444 u64 *hole_start, u64 *hole_size,
1445 u64 num_bytes)
1446{
1447 u64 zone_size = device->zone_info->zone_size;
1448 u64 pos;
1449 int ret;
1450 bool changed = false;
1451
1452 ASSERT(IS_ALIGNED(*hole_start, zone_size));
1453
1454 while (*hole_size > 0) {
1455 pos = btrfs_find_allocatable_zones(device, *hole_start,
1456 *hole_start + *hole_size,
1457 num_bytes);
1458 if (pos != *hole_start) {
1459 *hole_size = *hole_start + *hole_size - pos;
1460 *hole_start = pos;
1461 changed = true;
1462 if (*hole_size < num_bytes)
1463 break;
1464 }
1465
1466 ret = btrfs_ensure_empty_zones(device, pos, num_bytes);
1467
1468 /* Range is ensured to be empty */
1469 if (!ret)
1470 return changed;
1471
1472 /* Given hole range was invalid (outside of device) */
1473 if (ret == -ERANGE) {
1474 *hole_start += *hole_size;
Johannes Thumshirnd6f67af2021-05-10 22:39:38 +09001475 *hole_size = 0;
Jiapeng Chong7000bab2021-03-03 17:45:28 +08001476 return true;
Naohiro Aota1cd61212021-02-04 19:21:48 +09001477 }
1478
1479 *hole_start += zone_size;
1480 *hole_size -= zone_size;
1481 changed = true;
1482 }
1483
1484 return changed;
1485}
1486
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001487/**
1488 * dev_extent_hole_check - check if specified hole is suitable for allocation
1489 * @device: the device which we have the hole
1490 * @hole_start: starting position of the hole
1491 * @hole_size: the size of the hole
1492 * @num_bytes: the size of the free space that we need
1493 *
Naohiro Aota1cd61212021-02-04 19:21:48 +09001494 * This function may modify @hole_start and @hole_size to reflect the suitable
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001495 * position for allocation. Returns 1 if hole position is updated, 0 otherwise.
1496 */
1497static bool dev_extent_hole_check(struct btrfs_device *device, u64 *hole_start,
1498 u64 *hole_size, u64 num_bytes)
1499{
1500 bool changed = false;
1501 u64 hole_end = *hole_start + *hole_size;
1502
Naohiro Aota1cd61212021-02-04 19:21:48 +09001503 for (;;) {
1504 /*
1505 * Check before we set max_hole_start, otherwise we could end up
1506 * sending back this offset anyway.
1507 */
1508 if (contains_pending_extent(device, hole_start, *hole_size)) {
1509 if (hole_end >= *hole_start)
1510 *hole_size = hole_end - *hole_start;
1511 else
1512 *hole_size = 0;
1513 changed = true;
1514 }
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001515
Naohiro Aota1cd61212021-02-04 19:21:48 +09001516 switch (device->fs_devices->chunk_alloc_policy) {
1517 case BTRFS_CHUNK_ALLOC_REGULAR:
1518 /* No extra check */
1519 break;
1520 case BTRFS_CHUNK_ALLOC_ZONED:
1521 if (dev_extent_hole_check_zoned(device, hole_start,
1522 hole_size, num_bytes)) {
1523 changed = true;
1524 /*
1525 * The changed hole can contain pending extent.
1526 * Loop again to check that.
1527 */
1528 continue;
1529 }
1530 break;
1531 default:
1532 BUG();
1533 }
1534
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001535 break;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001536 }
1537
1538 return changed;
1539}
Josef Bacik6df9a952013-06-27 13:22:46 -04001540
Chris Mason0b86a832008-03-24 15:01:56 -04001541/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001542 * find_free_dev_extent_start - find free space in the specified device
1543 * @device: the device which we search the free space in
1544 * @num_bytes: the size of the free space that we need
1545 * @search_start: the position from which to begin the search
1546 * @start: store the start of the free space.
1547 * @len: the size of the free space. that we find, or the size
1548 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001549 *
Chris Mason0b86a832008-03-24 15:01:56 -04001550 * this uses a pretty simple search, the expectation is that it is
1551 * called very infrequently and that a given device has a small number
1552 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001553 *
1554 * @start is used to store the start of the free space if we find. But if we
1555 * don't find suitable free space, it will be used to store the start position
1556 * of the max free space.
1557 *
1558 * @len is used to store the size of the free space that we find.
1559 * But if we don't find suitable free space, it is used to store the size of
1560 * the max free space.
Qu Wenruo135da972019-07-19 14:51:42 +08001561 *
1562 * NOTE: This function will search *commit* root of device tree, and does extra
1563 * check to ensure dev extents are not double allocated.
1564 * This makes the function safe to allocate dev extents but may not report
1565 * correct usable device space, as device extent freed in current transaction
David Sterba1a9fd412021-05-21 17:42:23 +02001566 * is not reported as available.
Chris Mason0b86a832008-03-24 15:01:56 -04001567 */
Qu Wenruo9e3246a2019-07-19 14:51:41 +08001568static int find_free_dev_extent_start(struct btrfs_device *device,
1569 u64 num_bytes, u64 search_start, u64 *start,
1570 u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001571{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001572 struct btrfs_fs_info *fs_info = device->fs_info;
1573 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001574 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001575 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001576 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001577 u64 hole_size;
1578 u64 max_hole_start;
1579 u64 max_hole_size;
1580 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001581 u64 search_end = device->total_bytes;
1582 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001583 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001584 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001585
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001586 search_start = dev_extent_search_start(device, search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001587
Naohiro Aota1cd61212021-02-04 19:21:48 +09001588 WARN_ON(device->zone_info &&
1589 !IS_ALIGNED(num_bytes, device->zone_info->zone_size));
1590
Josef Bacik6df9a952013-06-27 13:22:46 -04001591 path = btrfs_alloc_path();
1592 if (!path)
1593 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001594
Miao Xie7bfc8372011-01-05 10:07:26 +00001595 max_hole_start = search_start;
1596 max_hole_size = 0;
1597
Zhao Leif2ab7612015-02-16 18:52:17 +08001598again:
Anand Jain401e29c2017-12-04 12:54:55 +08001599 if (search_start >= search_end ||
1600 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001601 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001602 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001603 }
1604
David Sterbae4058b52015-11-27 16:31:35 +01001605 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001606 path->search_commit_root = 1;
1607 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001608
Chris Mason0b86a832008-03-24 15:01:56 -04001609 key.objectid = device->devid;
1610 key.offset = search_start;
1611 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001612
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03001613 ret = btrfs_search_backwards(root, &key, path);
Chris Mason0b86a832008-03-24 15:01:56 -04001614 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001615 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001616
Chris Mason0b86a832008-03-24 15:01:56 -04001617 while (1) {
1618 l = path->nodes[0];
1619 slot = path->slots[0];
1620 if (slot >= btrfs_header_nritems(l)) {
1621 ret = btrfs_next_leaf(root, path);
1622 if (ret == 0)
1623 continue;
1624 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001625 goto out;
1626
1627 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001628 }
1629 btrfs_item_key_to_cpu(l, &key, slot);
1630
1631 if (key.objectid < device->devid)
1632 goto next;
1633
1634 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001635 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001636
David Sterba962a2982014-06-04 18:41:45 +02001637 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001638 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001639
Miao Xie7bfc8372011-01-05 10:07:26 +00001640 if (key.offset > search_start) {
1641 hole_size = key.offset - search_start;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001642 dev_extent_hole_check(device, &search_start, &hole_size,
1643 num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04001644
Miao Xie7bfc8372011-01-05 10:07:26 +00001645 if (hole_size > max_hole_size) {
1646 max_hole_start = search_start;
1647 max_hole_size = hole_size;
1648 }
1649
1650 /*
1651 * If this free space is greater than which we need,
1652 * it must be the max free space that we have found
1653 * until now, so max_hole_start must point to the start
1654 * of this free space and the length of this free space
1655 * is stored in max_hole_size. Thus, we return
1656 * max_hole_start and max_hole_size and go back to the
1657 * caller.
1658 */
1659 if (hole_size >= num_bytes) {
1660 ret = 0;
1661 goto out;
1662 }
1663 }
1664
Chris Mason0b86a832008-03-24 15:01:56 -04001665 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001666 extent_end = key.offset + btrfs_dev_extent_length(l,
1667 dev_extent);
1668 if (extent_end > search_start)
1669 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001670next:
1671 path->slots[0]++;
1672 cond_resched();
1673 }
Chris Mason0b86a832008-03-24 15:01:56 -04001674
liubo38c01b92011-08-02 02:39:03 +00001675 /*
1676 * At this point, search_start should be the end of
1677 * allocated dev extents, and when shrinking the device,
1678 * search_end may be smaller than search_start.
1679 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001680 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001681 hole_size = search_end - search_start;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001682 if (dev_extent_hole_check(device, &search_start, &hole_size,
1683 num_bytes)) {
Zhao Leif2ab7612015-02-16 18:52:17 +08001684 btrfs_release_path(path);
1685 goto again;
1686 }
Chris Mason0b86a832008-03-24 15:01:56 -04001687
Zhao Leif2ab7612015-02-16 18:52:17 +08001688 if (hole_size > max_hole_size) {
1689 max_hole_start = search_start;
1690 max_hole_size = hole_size;
1691 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001692 }
1693
Miao Xie7bfc8372011-01-05 10:07:26 +00001694 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001695 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001696 ret = -ENOSPC;
1697 else
1698 ret = 0;
1699
1700out:
Yan Zheng2b820322008-11-17 21:11:30 -05001701 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001702 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001703 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001704 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001705 return ret;
1706}
1707
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02001708int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes,
Jeff Mahoney499f3772015-06-15 09:41:17 -04001709 u64 *start, u64 *len)
1710{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001711 /* FIXME use last free of some kind */
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02001712 return find_free_dev_extent_start(device, num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001713}
1714
Christoph Hellwigb2950862008-12-02 09:54:17 -05001715static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001716 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001717 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001718{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001719 struct btrfs_fs_info *fs_info = device->fs_info;
1720 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001721 int ret;
1722 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001723 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001724 struct btrfs_key found_key;
1725 struct extent_buffer *leaf = NULL;
1726 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001727
1728 path = btrfs_alloc_path();
1729 if (!path)
1730 return -ENOMEM;
1731
1732 key.objectid = device->devid;
1733 key.offset = start;
1734 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001735again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001736 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001737 if (ret > 0) {
1738 ret = btrfs_previous_item(root, path, key.objectid,
1739 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001740 if (ret)
1741 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001742 leaf = path->nodes[0];
1743 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1744 extent = btrfs_item_ptr(leaf, path->slots[0],
1745 struct btrfs_dev_extent);
1746 BUG_ON(found_key.offset > start || found_key.offset +
1747 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001748 key = found_key;
1749 btrfs_release_path(path);
1750 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001751 } else if (ret == 0) {
1752 leaf = path->nodes[0];
1753 extent = btrfs_item_ptr(leaf, path->slots[0],
1754 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001755 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001756 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001757 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001758
Miao Xie2196d6e2014-09-03 21:35:41 +08001759 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1760
Chris Mason8f18cf12008-04-25 16:53:30 -04001761 ret = btrfs_del_item(trans, root, path);
Filipe Manana79bd3712021-06-29 14:43:06 +01001762 if (ret == 0)
Josef Bacik3204d332015-09-24 10:46:10 -04001763 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001764out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001765 btrfs_free_path(path);
1766 return ret;
1767}
1768
Josef Bacik6df9a952013-06-27 13:22:46 -04001769static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001770{
Josef Bacik6df9a952013-06-27 13:22:46 -04001771 struct extent_map_tree *em_tree;
1772 struct extent_map *em;
1773 struct rb_node *n;
1774 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001775
David Sterbac8bf1b62019-05-17 11:43:17 +02001776 em_tree = &fs_info->mapping_tree;
Josef Bacik6df9a952013-06-27 13:22:46 -04001777 read_lock(&em_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08001778 n = rb_last(&em_tree->map.rb_root);
Josef Bacik6df9a952013-06-27 13:22:46 -04001779 if (n) {
1780 em = rb_entry(n, struct extent_map, rb_node);
1781 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001782 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001783 read_unlock(&em_tree->lock);
1784
Chris Mason0b86a832008-03-24 15:01:56 -04001785 return ret;
1786}
1787
Ilya Dryomov53f10652013-08-12 14:33:01 +03001788static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1789 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001790{
1791 int ret;
1792 struct btrfs_key key;
1793 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001794 struct btrfs_path *path;
1795
Yan Zheng2b820322008-11-17 21:11:30 -05001796 path = btrfs_alloc_path();
1797 if (!path)
1798 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001799
1800 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1801 key.type = BTRFS_DEV_ITEM_KEY;
1802 key.offset = (u64)-1;
1803
Ilya Dryomov53f10652013-08-12 14:33:01 +03001804 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001805 if (ret < 0)
1806 goto error;
1807
Anand Jaina06dee4d2019-08-27 15:40:44 +08001808 if (ret == 0) {
1809 /* Corruption */
1810 btrfs_err(fs_info, "corrupted chunk tree devid -1 matched");
1811 ret = -EUCLEAN;
1812 goto error;
1813 }
Chris Mason0b86a832008-03-24 15:01:56 -04001814
Ilya Dryomov53f10652013-08-12 14:33:01 +03001815 ret = btrfs_previous_item(fs_info->chunk_root, path,
1816 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001817 BTRFS_DEV_ITEM_KEY);
1818 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001819 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001820 } else {
1821 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1822 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001823 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001824 }
1825 ret = 0;
1826error:
Yan Zheng2b820322008-11-17 21:11:30 -05001827 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001828 return ret;
1829}
1830
1831/*
1832 * the device information is stored in the chunk root
1833 * the btrfs_device struct should be fully filled in
1834 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001835static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001836 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001837{
1838 int ret;
1839 struct btrfs_path *path;
1840 struct btrfs_dev_item *dev_item;
1841 struct extent_buffer *leaf;
1842 struct btrfs_key key;
1843 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001844
Chris Mason0b86a832008-03-24 15:01:56 -04001845 path = btrfs_alloc_path();
1846 if (!path)
1847 return -ENOMEM;
1848
Chris Mason0b86a832008-03-24 15:01:56 -04001849 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1850 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001851 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001852
Filipe Manana2bb2e002021-10-13 10:12:49 +01001853 btrfs_reserve_chunk_metadata(trans, true);
Nikolay Borisov8e87e852018-07-20 19:37:47 +03001854 ret = btrfs_insert_empty_item(trans, trans->fs_info->chunk_root, path,
1855 &key, sizeof(*dev_item));
Filipe Manana2bb2e002021-10-13 10:12:49 +01001856 btrfs_trans_release_chunk_metadata(trans);
Chris Mason0b86a832008-03-24 15:01:56 -04001857 if (ret)
1858 goto out;
1859
1860 leaf = path->nodes[0];
1861 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1862
1863 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001864 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001865 btrfs_set_device_type(leaf, dev_item, device->type);
1866 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1867 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1868 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001869 btrfs_set_device_total_bytes(leaf, dev_item,
1870 btrfs_device_get_disk_total_bytes(device));
1871 btrfs_set_device_bytes_used(leaf, dev_item,
1872 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001873 btrfs_set_device_group(leaf, dev_item, 0);
1874 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1875 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001876 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001877
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001878 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001879 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001880 ptr = btrfs_device_fsid(dev_item);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02001881 write_extent_buffer(leaf, trans->fs_info->fs_devices->metadata_uuid,
1882 ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001883 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001884
Yan Zheng2b820322008-11-17 21:11:30 -05001885 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001886out:
1887 btrfs_free_path(path);
1888 return ret;
1889}
Chris Mason8f18cf12008-04-25 16:53:30 -04001890
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001891/*
1892 * Function to update ctime/mtime for a given device path.
1893 * Mainly used for ctime/mtime based probe like libblkid.
Josef Bacik54fde912021-10-14 13:11:01 -04001894 *
1895 * We don't care about errors here, this is just to be kind to userspace.
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001896 */
Josef Bacik54fde912021-10-14 13:11:01 -04001897static void update_dev_time(const char *device_path)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001898{
Josef Bacik54fde912021-10-14 13:11:01 -04001899 struct path path;
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001900 struct timespec64 now;
Josef Bacik54fde912021-10-14 13:11:01 -04001901 int ret;
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001902
Josef Bacik54fde912021-10-14 13:11:01 -04001903 ret = kern_path(device_path, LOOKUP_FOLLOW, &path);
1904 if (ret)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001905 return;
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001906
Josef Bacik54fde912021-10-14 13:11:01 -04001907 now = current_time(d_inode(path.dentry));
1908 inode_update_time(d_inode(path.dentry), &now, S_MTIME | S_CTIME);
1909 path_put(&path);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001910}
1911
David Sterbaf331a952019-03-20 16:31:53 +01001912static int btrfs_rm_dev_item(struct btrfs_device *device)
Chris Masona061fc82008-05-07 11:43:44 -04001913{
David Sterbaf331a952019-03-20 16:31:53 +01001914 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001915 int ret;
1916 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001917 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001918 struct btrfs_trans_handle *trans;
1919
Chris Masona061fc82008-05-07 11:43:44 -04001920 path = btrfs_alloc_path();
1921 if (!path)
1922 return -ENOMEM;
1923
Yan, Zhenga22285a2010-05-16 10:48:46 -04001924 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001925 if (IS_ERR(trans)) {
1926 btrfs_free_path(path);
1927 return PTR_ERR(trans);
1928 }
Chris Masona061fc82008-05-07 11:43:44 -04001929 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1930 key.type = BTRFS_DEV_ITEM_KEY;
1931 key.offset = device->devid;
1932
Filipe Manana2bb2e002021-10-13 10:12:49 +01001933 btrfs_reserve_chunk_metadata(trans, false);
Chris Masona061fc82008-05-07 11:43:44 -04001934 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Filipe Manana2bb2e002021-10-13 10:12:49 +01001935 btrfs_trans_release_chunk_metadata(trans);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001936 if (ret) {
1937 if (ret > 0)
1938 ret = -ENOENT;
1939 btrfs_abort_transaction(trans, ret);
1940 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001941 goto out;
1942 }
1943
1944 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001945 if (ret) {
1946 btrfs_abort_transaction(trans, ret);
1947 btrfs_end_transaction(trans);
1948 }
1949
Chris Masona061fc82008-05-07 11:43:44 -04001950out:
1951 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001952 if (!ret)
1953 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001954 return ret;
1955}
1956
David Sterba3cc31a02016-02-15 16:00:26 +01001957/*
1958 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1959 * filesystem. It's up to the caller to adjust that number regarding eg. device
1960 * replace.
1961 */
1962static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1963 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001964{
Chris Masona061fc82008-05-07 11:43:44 -04001965 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001966 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001967 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001968
Miao Xiede98ced2013-01-29 10:13:12 +00001969 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001970 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001971
Anand Jainbd45ffb2016-02-13 10:01:34 +08001972 all_avail = fs_info->avail_data_alloc_bits |
1973 fs_info->avail_system_alloc_bits |
1974 fs_info->avail_metadata_alloc_bits;
1975 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001976
David Sterba418775a2016-02-15 16:28:14 +01001977 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
Anand Jain41a6e892018-04-25 19:01:43 +08001978 if (!(all_avail & btrfs_raid_array[i].bg_flag))
David Sterba418775a2016-02-15 16:28:14 +01001979 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001980
Anand Jainefc222f2021-07-28 07:03:05 +08001981 if (num_devices < btrfs_raid_array[i].devs_min)
1982 return btrfs_raid_array[i].mindev_error;
Anand Jainbd45ffb2016-02-13 10:01:34 +08001983 }
1984
1985 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001986}
1987
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001988static struct btrfs_device * btrfs_find_next_active_device(
1989 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001990{
1991 struct btrfs_device *next_device;
1992
1993 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1994 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08001995 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
1996 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08001997 return next_device;
1998 }
1999
2000 return NULL;
2001}
2002
2003/*
Anand Jaind24fa5c2021-08-24 13:05:19 +08002004 * Helper function to check if the given device is part of s_bdev / latest_dev
Anand Jain88acff62016-05-03 17:44:43 +08002005 * and replace it with the provided or the next active device, in the context
2006 * where this function called, there should be always be another device (or
2007 * this_dev) which is active.
2008 */
David Sterbab105e922019-10-01 19:57:35 +02002009void __cold btrfs_assign_next_active_device(struct btrfs_device *device,
Anand Jaine493e8f2020-09-05 01:34:34 +08002010 struct btrfs_device *next_device)
Anand Jain88acff62016-05-03 17:44:43 +08002011{
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002012 struct btrfs_fs_info *fs_info = device->fs_info;
Anand Jain88acff62016-05-03 17:44:43 +08002013
Anand Jaine493e8f2020-09-05 01:34:34 +08002014 if (!next_device)
Anand Jain88acff62016-05-03 17:44:43 +08002015 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
Anand Jaine493e8f2020-09-05 01:34:34 +08002016 device);
Anand Jain88acff62016-05-03 17:44:43 +08002017 ASSERT(next_device);
2018
2019 if (fs_info->sb->s_bdev &&
2020 (fs_info->sb->s_bdev == device->bdev))
2021 fs_info->sb->s_bdev = next_device->bdev;
2022
Anand Jaind24fa5c2021-08-24 13:05:19 +08002023 if (fs_info->fs_devices->latest_dev->bdev == device->bdev)
2024 fs_info->fs_devices->latest_dev = next_device;
Anand Jain88acff62016-05-03 17:44:43 +08002025}
2026
Anand Jain1da73962018-08-10 13:53:21 +08002027/*
2028 * Return btrfs_fs_devices::num_devices excluding the device that's being
2029 * currently replaced.
2030 */
2031static u64 btrfs_num_devices(struct btrfs_fs_info *fs_info)
2032{
2033 u64 num_devices = fs_info->fs_devices->num_devices;
2034
David Sterbacb5583d2018-09-07 16:11:23 +02002035 down_read(&fs_info->dev_replace.rwsem);
Anand Jain1da73962018-08-10 13:53:21 +08002036 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
2037 ASSERT(num_devices > 1);
2038 num_devices--;
2039 }
David Sterbacb5583d2018-09-07 16:11:23 +02002040 up_read(&fs_info->dev_replace.rwsem);
Anand Jain1da73962018-08-10 13:53:21 +08002041
2042 return num_devices;
2043}
2044
Josef Bacik313b0852020-08-20 11:18:26 -04002045void btrfs_scratch_superblocks(struct btrfs_fs_info *fs_info,
2046 struct block_device *bdev,
2047 const char *device_path)
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002048{
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002049 struct btrfs_super_block *disk_super;
2050 int copy_num;
2051
2052 if (!bdev)
2053 return;
2054
2055 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; copy_num++) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002056 struct page *page;
2057 int ret;
2058
2059 disk_super = btrfs_read_dev_one_super(bdev, copy_num);
2060 if (IS_ERR(disk_super))
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002061 continue;
2062
Naohiro Aota12659252020-11-10 20:26:14 +09002063 if (bdev_is_zoned(bdev)) {
2064 btrfs_reset_sb_log_zones(bdev, copy_num);
2065 continue;
2066 }
2067
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002068 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002069
2070 page = virt_to_page(disk_super);
2071 set_page_dirty(page);
2072 lock_page(page);
2073 /* write_on_page() unlocks the page */
2074 ret = write_one_page(page);
2075 if (ret)
2076 btrfs_warn(fs_info,
2077 "error clearing superblock number %d (%d)",
2078 copy_num, ret);
2079 btrfs_release_disk_super(disk_super);
2080
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002081 }
2082
2083 /* Notify udev that device has changed */
2084 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
2085
2086 /* Update ctime/mtime for device path for libblkid */
Josef Bacik54fde912021-10-14 13:11:01 -04002087 update_dev_time(device_path);
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002088}
2089
Josef Bacik1a15eb72021-10-05 16:12:44 -04002090int btrfs_rm_device(struct btrfs_fs_info *fs_info,
2091 struct btrfs_dev_lookup_args *args,
2092 struct block_device **bdev, fmode_t *mode)
Anand Jainf1fa7f22016-02-13 10:01:33 +08002093{
2094 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002095 struct btrfs_fs_devices *cur_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002096 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002097 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002098 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002099
Josef Bacik8ef9dc02021-07-27 17:01:14 -04002100 /*
2101 * The device list in fs_devices is accessed without locks (neither
2102 * uuid_mutex nor device_list_mutex) as it won't change on a mounted
2103 * filesystem and another device rm cannot run.
2104 */
Anand Jain1da73962018-08-10 13:53:21 +08002105 num_devices = btrfs_num_devices(fs_info);
Chris Masona061fc82008-05-07 11:43:44 -04002106
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002107 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08002108 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04002109 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002110
Josef Bacik1a15eb72021-10-05 16:12:44 -04002111 device = btrfs_find_device(fs_info->fs_devices, args);
2112 if (!device) {
2113 if (args->missing)
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002114 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
2115 else
Josef Bacik1a15eb72021-10-05 16:12:44 -04002116 ret = -ENOENT;
Chris Masona061fc82008-05-07 11:43:44 -04002117 goto out;
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002118 }
Yan Zheng2b820322008-11-17 21:11:30 -05002119
Omar Sandovaleede2bf2016-11-03 10:28:12 -07002120 if (btrfs_pinned_by_swapfile(fs_info, device)) {
2121 btrfs_warn_in_rcu(fs_info,
2122 "cannot remove device %s (devid %llu) due to active swapfile",
2123 rcu_str_deref(device->name), device->devid);
2124 ret = -ETXTBSY;
2125 goto out;
2126 }
2127
Anand Jain401e29c2017-12-04 12:54:55 +08002128 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00002129 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08002130 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002131 }
2132
Anand Jainebbede42017-12-04 12:54:52 +08002133 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
2134 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00002135 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08002136 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05002137 }
2138
Anand Jainebbede42017-12-04 12:54:52 +08002139 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002140 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002141 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002142 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02002143 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002144 }
Chris Masona061fc82008-05-07 11:43:44 -04002145
2146 ret = btrfs_shrink_device(device, 0);
Filipe Manana66d204a2020-10-12 11:55:24 +01002147 if (!ret)
2148 btrfs_reada_remove_dev(device);
Chris Masona061fc82008-05-07 11:43:44 -04002149 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002150 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002151
Stefan Behrens63a212a2012-11-05 18:29:28 +01002152 /*
2153 * TODO: the superblock still includes this device in its num_devices
2154 * counter although write_all_supers() is not locked out. This
2155 * could give a filesystem state which requires a degraded mount.
2156 */
David Sterbaf331a952019-03-20 16:31:53 +01002157 ret = btrfs_rm_dev_item(device);
Chris Masona061fc82008-05-07 11:43:44 -04002158 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002159 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002160
Anand Jaine12c9622017-12-04 12:54:53 +08002161 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
David Sterba163e97e2019-03-20 16:32:55 +01002162 btrfs_scrub_cancel_dev(device);
Chris Masone5e9a522009-06-10 15:17:02 -04002163
2164 /*
2165 * the device list mutex makes sure that we don't change
2166 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01002167 * the device supers. Whoever is writing all supers, should
2168 * lock the device list mutex before getting the number of
2169 * devices in the super block (super_copy). Conversely,
2170 * whoever updates the number of devices in the super block
2171 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04002172 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002173
Anand Jain41a52a02018-04-12 10:29:31 +08002174 /*
2175 * In normal cases the cur_devices == fs_devices. But in case
2176 * of deleting a seed device, the cur_devices should point to
Su Yue9675ea82021-08-18 12:15:48 +08002177 * its own fs_devices listed under the fs_devices->seed_list.
Anand Jain41a52a02018-04-12 10:29:31 +08002178 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002179 cur_devices = device->fs_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002180 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002181 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002182
Anand Jain41a52a02018-04-12 10:29:31 +08002183 cur_devices->num_devices--;
2184 cur_devices->total_devices--;
Anand Jainb4993e62018-07-03 17:07:23 +08002185 /* Update total_devices of the parent fs_devices if it's seed */
2186 if (cur_devices != fs_devices)
2187 fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05002188
Anand Jaine6e674b2017-12-04 12:54:54 +08002189 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jain41a52a02018-04-12 10:29:31 +08002190 cur_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05002191
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002192 btrfs_assign_next_active_device(device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05002193
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002194 if (device->bdev) {
Anand Jain41a52a02018-04-12 10:29:31 +08002195 cur_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002196 /* remove sysfs entry */
Anand Jain53f8a742020-09-05 01:34:27 +08002197 btrfs_sysfs_remove_device(device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002198 }
Anand Jain99994cd2014-06-03 11:36:00 +08002199
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002200 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
2201 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
Anand Jainb5185192018-04-12 10:29:30 +08002202 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002203
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002204 /*
Josef Bacik3fa421d2021-07-27 17:01:17 -04002205 * At this point, the device is zero sized and detached from the
2206 * devices list. All that's left is to zero out the old supers and
2207 * free the device.
2208 *
2209 * We cannot call btrfs_close_bdev() here because we're holding the sb
2210 * write lock, and blkdev_put() will pull in the ->open_mutex on the
2211 * block device and it's dependencies. Instead just flush the device
2212 * and let the caller do the final blkdev_put.
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002213 */
Josef Bacik3fa421d2021-07-27 17:01:17 -04002214 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002215 btrfs_scratch_superblocks(fs_info, device->bdev,
2216 device->name->str);
Josef Bacik3fa421d2021-07-27 17:01:17 -04002217 if (device->bdev) {
2218 sync_blockdev(device->bdev);
2219 invalidate_bdev(device->bdev);
2220 }
2221 }
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002222
Josef Bacik3fa421d2021-07-27 17:01:17 -04002223 *bdev = device->bdev;
2224 *mode = device->mode;
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002225 synchronize_rcu();
2226 btrfs_free_device(device);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002227
Josef Bacik8b413932021-10-05 16:12:41 -04002228 /*
2229 * This can happen if cur_devices is the private seed devices list. We
2230 * cannot call close_fs_devices() here because it expects the uuid_mutex
2231 * to be held, but in fact we don't need that for the private
2232 * seed_devices, we can simply decrement cur_devices->opened and then
2233 * remove it from our list and free the fs_devices.
2234 */
Anand Jain8e906942021-10-05 16:12:39 -04002235 if (cur_devices->num_devices == 0) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002236 list_del_init(&cur_devices->seed_list);
Josef Bacik8b413932021-10-05 16:12:41 -04002237 ASSERT(cur_devices->opened == 1);
2238 cur_devices->opened--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00002239 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002240 }
2241
Chris Masona061fc82008-05-07 11:43:44 -04002242out:
Chris Masona061fc82008-05-07 11:43:44 -04002243 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08002244
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002245error_undo:
Filipe Manana66d204a2020-10-12 11:55:24 +01002246 btrfs_reada_undo_remove_dev(device);
Anand Jainebbede42017-12-04 12:54:52 +08002247 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002248 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002249 list_add(&device->dev_alloc_list,
Anand Jainb5185192018-04-12 10:29:30 +08002250 &fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002251 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002252 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002253 }
Anand Jain24fc5722016-02-13 10:01:36 +08002254 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002255}
2256
Nikolay Borisov68a9db52018-07-20 19:37:48 +03002257void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002258{
Anand Jaind51908c2014-08-13 14:24:19 +08002259 struct btrfs_fs_devices *fs_devices;
2260
Nikolay Borisov68a9db52018-07-20 19:37:48 +03002261 lockdep_assert_held(&srcdev->fs_info->fs_devices->device_list_mutex);
Ilya Dryomov13572722013-10-02 20:41:01 +03002262
Anand Jain25e8e912014-08-20 10:56:56 +08002263 /*
2264 * in case of fs with no seed, srcdev->fs_devices will point
2265 * to fs_devices of fs_info. However when the dev being replaced is
2266 * a seed dev it will point to the seed's local fs_devices. In short
2267 * srcdev will have its correct fs_devices in both the cases.
2268 */
2269 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002270
Stefan Behrense93c89c2012-11-05 17:33:06 +01002271 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002272 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002273 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002274 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002275 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002276
Anand Jainebbede42017-12-04 12:54:52 +08002277 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002278 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002279
Miao Xie82372bc2014-09-03 21:35:44 +08002280 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002281 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002282}
2283
David Sterba65237ee2019-03-20 16:34:54 +01002284void btrfs_rm_dev_replace_free_srcdev(struct btrfs_device *srcdev)
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002285{
2286 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002287
Josef Bacika466c852020-08-20 11:18:27 -04002288 mutex_lock(&uuid_mutex);
2289
Anand Jain14238812016-07-22 06:04:53 +08002290 btrfs_close_bdev(srcdev);
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002291 synchronize_rcu();
2292 btrfs_free_device(srcdev);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002293
Anand Jain94d5f0c2014-08-13 14:24:22 +08002294 /* if this is no devs we rather delete the fs_devices */
2295 if (!fs_devices->num_devices) {
Anand Jain6dd38f82017-10-17 06:53:50 +08002296 /*
2297 * On a mounted FS, num_devices can't be zero unless it's a
2298 * seed. In case of a seed device being replaced, the replace
2299 * target added to the sprout FS, so there will be no more
2300 * device left under the seed FS.
2301 */
2302 ASSERT(fs_devices->seeding);
2303
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002304 list_del_init(&fs_devices->seed_list);
Anand Jain0226e0e2018-04-12 10:29:27 +08002305 close_fs_devices(fs_devices);
Anand Jain8bef8402014-08-13 14:24:23 +08002306 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002307 }
Josef Bacika466c852020-08-20 11:18:27 -04002308 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002309}
2310
Nikolay Borisov4f5ad7b2018-07-20 19:37:51 +03002311void btrfs_destroy_dev_replace_tgtdev(struct btrfs_device *tgtdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002312{
Nikolay Borisov4f5ad7b2018-07-20 19:37:51 +03002313 struct btrfs_fs_devices *fs_devices = tgtdev->fs_info->fs_devices;
Anand Jaind2ff1b22015-03-10 06:38:42 +08002314
Anand Jaind9a071f2018-04-12 10:29:38 +08002315 mutex_lock(&fs_devices->device_list_mutex);
2316
Anand Jain53f8a742020-09-05 01:34:27 +08002317 btrfs_sysfs_remove_device(tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002318
Anand Jain779bf3fe2016-04-18 16:51:23 +08002319 if (tgtdev->bdev)
Anand Jaind9a071f2018-04-12 10:29:38 +08002320 fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002321
Anand Jaind9a071f2018-04-12 10:29:38 +08002322 fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002323
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002324 btrfs_assign_next_active_device(tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002325
Stefan Behrense93c89c2012-11-05 17:33:06 +01002326 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002327
Anand Jaind9a071f2018-04-12 10:29:38 +08002328 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002329
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002330 btrfs_scratch_superblocks(tgtdev->fs_info, tgtdev->bdev,
2331 tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002332
2333 btrfs_close_bdev(tgtdev);
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002334 synchronize_rcu();
2335 btrfs_free_device(tgtdev);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002336}
2337
Josef Bacikfaa775c2021-10-05 16:12:43 -04002338/**
2339 * Populate args from device at path
2340 *
2341 * @fs_info: the filesystem
2342 * @args: the args to populate
2343 * @path: the path to the device
2344 *
2345 * This will read the super block of the device at @path and populate @args with
2346 * the devid, fsid, and uuid. This is meant to be used for ioctls that need to
2347 * lookup a device to operate on, but need to do it before we take any locks.
2348 * This properly handles the special case of "missing" that a user may pass in,
2349 * and does some basic sanity checks. The caller must make sure that @path is
2350 * properly NUL terminated before calling in, and must call
2351 * btrfs_put_dev_args_from_path() in order to free up the temporary fsid and
2352 * uuid buffers.
2353 *
2354 * Return: 0 for success, -errno for failure
2355 */
2356int btrfs_get_dev_args_from_path(struct btrfs_fs_info *fs_info,
2357 struct btrfs_dev_lookup_args *args,
2358 const char *path)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002359{
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002360 struct btrfs_super_block *disk_super;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002361 struct block_device *bdev;
Josef Bacikfaa775c2021-10-05 16:12:43 -04002362 int ret;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002363
Josef Bacikfaa775c2021-10-05 16:12:43 -04002364 if (!path || !path[0])
2365 return -EINVAL;
2366 if (!strcmp(path, "missing")) {
2367 args->missing = true;
2368 return 0;
2369 }
2370
2371 args->uuid = kzalloc(BTRFS_UUID_SIZE, GFP_KERNEL);
2372 args->fsid = kzalloc(BTRFS_FSID_SIZE, GFP_KERNEL);
2373 if (!args->uuid || !args->fsid) {
2374 btrfs_put_dev_args_from_path(args);
2375 return -ENOMEM;
2376 }
2377
2378 ret = btrfs_get_bdev_and_sb(path, FMODE_READ, fs_info->bdev_holder, 0,
2379 &bdev, &disk_super);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002380 if (ret)
Josef Bacikfaa775c2021-10-05 16:12:43 -04002381 return ret;
2382 args->devid = btrfs_stack_device_id(&disk_super->dev_item);
2383 memcpy(args->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002384 if (btrfs_fs_incompat(fs_info, METADATA_UUID))
Josef Bacikfaa775c2021-10-05 16:12:43 -04002385 memcpy(args->fsid, disk_super->metadata_uuid, BTRFS_FSID_SIZE);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002386 else
Josef Bacikfaa775c2021-10-05 16:12:43 -04002387 memcpy(args->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002388 btrfs_release_disk_super(disk_super);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002389 blkdev_put(bdev, FMODE_READ);
Josef Bacikfaa775c2021-10-05 16:12:43 -04002390 return 0;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002391}
2392
Yan Zheng2b820322008-11-17 21:11:30 -05002393/*
Josef Bacikfaa775c2021-10-05 16:12:43 -04002394 * Only use this jointly with btrfs_get_dev_args_from_path() because we will
2395 * allocate our ->uuid and ->fsid pointers, everybody else uses local variables
2396 * that don't need to be freed.
David Sterba5c5c0df2016-02-15 16:39:55 +01002397 */
Josef Bacikfaa775c2021-10-05 16:12:43 -04002398void btrfs_put_dev_args_from_path(struct btrfs_dev_lookup_args *args)
2399{
2400 kfree(args->uuid);
2401 kfree(args->fsid);
2402 args->uuid = NULL;
2403 args->fsid = NULL;
2404}
2405
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002406struct btrfs_device *btrfs_find_device_by_devspec(
Anand Jain6e927ce2019-01-17 23:32:29 +08002407 struct btrfs_fs_info *fs_info, u64 devid,
2408 const char *device_path)
Anand Jain24e04742016-02-13 10:01:35 +08002409{
Josef Bacik562d7b12021-10-05 16:12:42 -04002410 BTRFS_DEV_LOOKUP_ARGS(args);
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002411 struct btrfs_device *device;
Josef Bacikfaa775c2021-10-05 16:12:43 -04002412 int ret;
Anand Jain24e04742016-02-13 10:01:35 +08002413
David Sterba5c5c0df2016-02-15 16:39:55 +01002414 if (devid) {
Josef Bacik562d7b12021-10-05 16:12:42 -04002415 args.devid = devid;
2416 device = btrfs_find_device(fs_info->fs_devices, &args);
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002417 if (!device)
2418 return ERR_PTR(-ENOENT);
Anand Jain6e927ce2019-01-17 23:32:29 +08002419 return device;
Anand Jain24e04742016-02-13 10:01:35 +08002420 }
Anand Jain6e927ce2019-01-17 23:32:29 +08002421
Josef Bacikfaa775c2021-10-05 16:12:43 -04002422 ret = btrfs_get_dev_args_from_path(fs_info, &args, device_path);
2423 if (ret)
2424 return ERR_PTR(ret);
2425 device = btrfs_find_device(fs_info->fs_devices, &args);
2426 btrfs_put_dev_args_from_path(&args);
2427 if (!device)
Anand Jain6e927ce2019-01-17 23:32:29 +08002428 return ERR_PTR(-ENOENT);
Josef Bacikfaa775c2021-10-05 16:12:43 -04002429 return device;
Anand Jain24e04742016-02-13 10:01:35 +08002430}
2431
Yan Zheng2b820322008-11-17 21:11:30 -05002432/*
2433 * does all the dirty work required for changing file system's UUID.
2434 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002435static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002436{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002437 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002438 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002439 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002440 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002441 struct btrfs_device *device;
2442 u64 super_flags;
2443
David Sterbaa32bf9a2018-03-16 02:21:22 +01002444 lockdep_assert_held(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002445 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002446 return -EINVAL;
2447
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03002448 /*
2449 * Private copy of the seed devices, anchored at
2450 * fs_info->fs_devices->seed_list
2451 */
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002452 seed_devices = alloc_fs_devices(NULL, NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002453 if (IS_ERR(seed_devices))
2454 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002455
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03002456 /*
2457 * It's necessary to retain a copy of the original seed fs_devices in
2458 * fs_uuids so that filesystems which have been seeded can successfully
2459 * reference the seed device from open_seed_devices. This also supports
2460 * multiple fs seed.
2461 */
Yan Zhenge4404d62008-12-12 10:03:26 -05002462 old_devices = clone_fs_devices(fs_devices);
2463 if (IS_ERR(old_devices)) {
2464 kfree(seed_devices);
2465 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002466 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002467
Anand Jainc4babc52018-04-12 10:29:25 +08002468 list_add(&old_devices->fs_list, &fs_uuids);
Yan Zheng2b820322008-11-17 21:11:30 -05002469
Yan Zhenge4404d62008-12-12 10:03:26 -05002470 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2471 seed_devices->opened = 1;
2472 INIT_LIST_HEAD(&seed_devices->devices);
2473 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002474 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002475
Anand Jain321a4bf2018-07-16 22:58:09 +08002476 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002477 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2478 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002479 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002480 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002481
Johannes Thumshirn0395d842019-11-13 11:27:27 +01002482 fs_devices->seeding = false;
Yan Zheng2b820322008-11-17 21:11:30 -05002483 fs_devices->num_devices = 0;
2484 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002485 fs_devices->missing_devices = 0;
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +01002486 fs_devices->rotating = false;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002487 list_add(&seed_devices->seed_list, &fs_devices->seed_list);
Yan Zheng2b820322008-11-17 21:11:30 -05002488
2489 generate_random_uuid(fs_devices->fsid);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002490 memcpy(fs_devices->metadata_uuid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002491 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Anand Jain321a4bf2018-07-16 22:58:09 +08002492 mutex_unlock(&fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002493
Yan Zheng2b820322008-11-17 21:11:30 -05002494 super_flags = btrfs_super_flags(disk_super) &
2495 ~BTRFS_SUPER_FLAG_SEEDING;
2496 btrfs_set_super_flags(disk_super, super_flags);
2497
2498 return 0;
2499}
2500
2501/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002502 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002503 */
David Sterba5c4666292019-03-20 16:36:39 +01002504static int btrfs_finish_sprout(struct btrfs_trans_handle *trans)
Yan Zheng2b820322008-11-17 21:11:30 -05002505{
Josef Bacik562d7b12021-10-05 16:12:42 -04002506 BTRFS_DEV_LOOKUP_ARGS(args);
David Sterba5c4666292019-03-20 16:36:39 +01002507 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002508 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002509 struct btrfs_path *path;
2510 struct extent_buffer *leaf;
2511 struct btrfs_dev_item *dev_item;
2512 struct btrfs_device *device;
2513 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002514 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002515 u8 dev_uuid[BTRFS_UUID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002516 int ret;
2517
2518 path = btrfs_alloc_path();
2519 if (!path)
2520 return -ENOMEM;
2521
Yan Zheng2b820322008-11-17 21:11:30 -05002522 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2523 key.offset = 0;
2524 key.type = BTRFS_DEV_ITEM_KEY;
2525
2526 while (1) {
Filipe Manana2bb2e002021-10-13 10:12:49 +01002527 btrfs_reserve_chunk_metadata(trans, false);
Yan Zheng2b820322008-11-17 21:11:30 -05002528 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Filipe Manana2bb2e002021-10-13 10:12:49 +01002529 btrfs_trans_release_chunk_metadata(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002530 if (ret < 0)
2531 goto error;
2532
2533 leaf = path->nodes[0];
2534next_slot:
2535 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2536 ret = btrfs_next_leaf(root, path);
2537 if (ret > 0)
2538 break;
2539 if (ret < 0)
2540 goto error;
2541 leaf = path->nodes[0];
2542 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002543 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002544 continue;
2545 }
2546
2547 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2548 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2549 key.type != BTRFS_DEV_ITEM_KEY)
2550 break;
2551
2552 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2553 struct btrfs_dev_item);
Josef Bacik562d7b12021-10-05 16:12:42 -04002554 args.devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002555 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002556 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002557 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002558 BTRFS_FSID_SIZE);
Josef Bacik562d7b12021-10-05 16:12:42 -04002559 args.uuid = dev_uuid;
2560 args.fsid = fs_uuid;
2561 device = btrfs_find_device(fs_info->fs_devices, &args);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002562 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002563
2564 if (device->fs_devices->seeding) {
2565 btrfs_set_device_generation(leaf, dev_item,
2566 device->generation);
2567 btrfs_mark_buffer_dirty(leaf);
2568 }
2569
2570 path->slots[0]++;
2571 goto next_slot;
2572 }
2573 ret = 0;
2574error:
2575 btrfs_free_path(path);
2576 return ret;
2577}
2578
David Sterbada353f62017-02-14 17:55:53 +01002579int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002580{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002581 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002582 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002583 struct btrfs_trans_handle *trans;
2584 struct btrfs_device *device;
2585 struct block_device *bdev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002586 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002587 struct rcu_string *name;
Anand Jain5da54bc2018-07-03 13:14:50 +08002588 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Naohiro Aota39379fa2018-07-27 09:04:55 +09002589 u64 orig_super_total_bytes;
2590 u64 orig_super_num_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002591 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002592 int ret = 0;
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002593 bool locked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002594
Anand Jain5da54bc2018-07-03 13:14:50 +08002595 if (sb_rdonly(sb) && !fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002596 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002597
Li Zefana5d163332011-12-07 20:08:40 -05002598 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002599 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002600 if (IS_ERR(bdev))
2601 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002602
Naohiro Aotab70f5092020-11-10 20:26:08 +09002603 if (!btrfs_check_device_zone_type(fs_info, bdev)) {
2604 ret = -EINVAL;
2605 goto error;
2606 }
2607
Anand Jain5da54bc2018-07-03 13:14:50 +08002608 if (fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002609 seeding_dev = 1;
2610 down_write(&sb->s_umount);
2611 mutex_lock(&uuid_mutex);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002612 locked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002613 }
2614
Nikolay Borisovb9ba0172020-07-22 11:09:25 +03002615 sync_blockdev(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002616
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002617 rcu_read_lock();
2618 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002619 if (device->bdev == bdev) {
2620 ret = -EEXIST;
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002621 rcu_read_unlock();
Yan Zheng2b820322008-11-17 21:11:30 -05002622 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002623 }
2624 }
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002625 rcu_read_unlock();
Chris Mason788f20e2008-04-28 15:29:42 -04002626
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002627 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002628 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002629 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002630 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002631 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002632 }
2633
David Sterba78f2c9e2016-02-11 14:25:38 +01002634 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002635 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002636 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002637 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002638 }
Josef Bacik606686e2012-06-04 14:03:51 -04002639 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002640
Naohiro Aota5b316462020-11-10 20:26:07 +09002641 device->fs_info = fs_info;
2642 device->bdev = bdev;
2643
2644 ret = btrfs_get_dev_zone_info(device);
2645 if (ret)
2646 goto error_free_device;
2647
Yan, Zhenga22285a2010-05-16 10:48:46 -04002648 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002649 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002650 ret = PTR_ERR(trans);
Naohiro Aota5b316462020-11-10 20:26:07 +09002651 goto error_free_zone;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002652 }
2653
Josef Bacikd5e20032011-08-04 14:52:27 +00002654 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002655 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002656 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002657 device->io_width = fs_info->sectorsize;
2658 device->io_align = fs_info->sectorsize;
2659 device->sector_size = fs_info->sectorsize;
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02002660 device->total_bytes =
2661 round_down(bdev_nr_bytes(bdev), fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002662 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002663 device->commit_total_bytes = device->total_bytes;
Anand Jaine12c9622017-12-04 12:54:53 +08002664 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002665 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002666 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002667 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002668 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002669
Yan Zheng2b820322008-11-17 21:11:30 -05002670 if (seeding_dev) {
Filipe Mananaa0a1db72020-12-14 10:10:47 +00002671 btrfs_clear_sb_rdonly(sb);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002672 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002673 if (ret) {
2674 btrfs_abort_transaction(trans, ret);
2675 goto error_trans;
2676 }
Anand Jainb7cb29e2021-08-24 13:05:21 +08002677 btrfs_assign_next_active_device(fs_info->fs_devices->latest_dev,
2678 device);
Yan Zheng2b820322008-11-17 21:11:30 -05002679 }
2680
Anand Jain5da54bc2018-07-03 13:14:50 +08002681 device->fs_devices = fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002682
Anand Jain5da54bc2018-07-03 13:14:50 +08002683 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002684 mutex_lock(&fs_info->chunk_mutex);
Anand Jain5da54bc2018-07-03 13:14:50 +08002685 list_add_rcu(&device->dev_list, &fs_devices->devices);
2686 list_add(&device->dev_alloc_list, &fs_devices->alloc_list);
2687 fs_devices->num_devices++;
2688 fs_devices->open_devices++;
2689 fs_devices->rw_devices++;
2690 fs_devices->total_devices++;
2691 fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002692
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002693 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002694
Anand Jaine884f4f2017-04-04 18:40:19 +08002695 if (!blk_queue_nonrot(q))
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +01002696 fs_devices->rotating = true;
Chris Masonc2898112009-06-10 09:51:32 -04002697
Naohiro Aota39379fa2018-07-27 09:04:55 +09002698 orig_super_total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002699 btrfs_set_super_total_bytes(fs_info->super_copy,
Naohiro Aota39379fa2018-07-27 09:04:55 +09002700 round_down(orig_super_total_bytes + device->total_bytes,
2701 fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002702
Naohiro Aota39379fa2018-07-27 09:04:55 +09002703 orig_super_num_devices = btrfs_super_num_devices(fs_info->super_copy);
2704 btrfs_set_super_num_devices(fs_info->super_copy,
2705 orig_super_num_devices + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002706
Miao Xie2196d6e2014-09-03 21:35:41 +08002707 /*
2708 * we've got more storage, clear any full flags on the space
2709 * infos
2710 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002711 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002712
David Sterba34441362016-10-04 19:34:27 +02002713 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacikca108452020-09-01 08:09:01 -04002714
2715 /* Add sysfs device entry */
Anand Jaincd36da22020-09-05 01:34:26 +08002716 btrfs_sysfs_add_device(device);
Josef Bacikca108452020-09-01 08:09:01 -04002717
Anand Jain5da54bc2018-07-03 13:14:50 +08002718 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002719
Yan Zheng2b820322008-11-17 21:11:30 -05002720 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002721 mutex_lock(&fs_info->chunk_mutex);
David Sterba6f8e0fc2019-03-20 16:29:13 +01002722 ret = init_first_rw_device(trans);
David Sterba34441362016-10-04 19:34:27 +02002723 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002724 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002725 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002726 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002727 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002728 }
2729
Nikolay Borisov8e87e852018-07-20 19:37:47 +03002730 ret = btrfs_add_dev_item(trans, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002731 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002732 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002733 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002734 }
2735
2736 if (seeding_dev) {
David Sterba5c4666292019-03-20 16:36:39 +01002737 ret = btrfs_finish_sprout(trans);
David Sterba005d6422012-09-18 07:52:32 -06002738 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002739 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002740 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002741 }
Anand Jainb2373f22014-06-03 11:36:03 +08002742
Nikolay Borisov8e560082020-08-12 16:18:51 +03002743 /*
2744 * fs_devices now represents the newly sprouted filesystem and
2745 * its fsid has been changed by btrfs_prepare_sprout
2746 */
2747 btrfs_sysfs_update_sprout_fsid(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002748 }
2749
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002750 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002751
2752 if (seeding_dev) {
2753 mutex_unlock(&uuid_mutex);
2754 up_write(&sb->s_umount);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002755 locked = false;
Yan Zheng2b820322008-11-17 21:11:30 -05002756
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002757 if (ret) /* transaction commit */
2758 return ret;
2759
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002760 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002761 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002762 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002763 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002764 trans = btrfs_attach_transaction(root);
2765 if (IS_ERR(trans)) {
2766 if (PTR_ERR(trans) == -ENOENT)
2767 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002768 ret = PTR_ERR(trans);
2769 trans = NULL;
2770 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002771 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002772 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002773 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002774
Anand Jain7f551d92020-05-05 02:58:26 +08002775 /*
2776 * Now that we have written a new super block to this device, check all
2777 * other fs_devices list if device_path alienates any other scanned
2778 * device.
2779 * We can ignore the return value as it typically returns -EINVAL and
2780 * only succeeds if the device was an alien.
2781 */
2782 btrfs_forget_devices(device_path);
2783
2784 /* Update ctime/mtime for blkid or udev */
Josef Bacik54fde912021-10-14 13:11:01 -04002785 update_dev_time(device_path);
Anand Jain7f551d92020-05-05 02:58:26 +08002786
Chris Mason788f20e2008-04-28 15:29:42 -04002787 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002788
Anand Jaind31c32f2017-09-28 14:51:10 +08002789error_sysfs:
Anand Jain53f8a742020-09-05 01:34:27 +08002790 btrfs_sysfs_remove_device(device);
Naohiro Aota39379fa2018-07-27 09:04:55 +09002791 mutex_lock(&fs_info->fs_devices->device_list_mutex);
2792 mutex_lock(&fs_info->chunk_mutex);
2793 list_del_rcu(&device->dev_list);
2794 list_del(&device->dev_alloc_list);
2795 fs_info->fs_devices->num_devices--;
2796 fs_info->fs_devices->open_devices--;
2797 fs_info->fs_devices->rw_devices--;
2798 fs_info->fs_devices->total_devices--;
2799 fs_info->fs_devices->total_rw_bytes -= device->total_bytes;
2800 atomic64_sub(device->total_bytes, &fs_info->free_chunk_space);
2801 btrfs_set_super_total_bytes(fs_info->super_copy,
2802 orig_super_total_bytes);
2803 btrfs_set_super_num_devices(fs_info->super_copy,
2804 orig_super_num_devices);
2805 mutex_unlock(&fs_info->chunk_mutex);
2806 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002807error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002808 if (seeding_dev)
Filipe Mananaa0a1db72020-12-14 10:10:47 +00002809 btrfs_set_sb_rdonly(sb);
Anand Jain7132a262017-09-28 14:51:11 +08002810 if (trans)
2811 btrfs_end_transaction(trans);
Naohiro Aota5b316462020-11-10 20:26:07 +09002812error_free_zone:
2813 btrfs_destroy_dev_zone_info(device);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002814error_free_device:
David Sterbaa425f9d2018-03-20 15:47:33 +01002815 btrfs_free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002816error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002817 blkdev_put(bdev, FMODE_EXCL);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002818 if (locked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002819 mutex_unlock(&uuid_mutex);
2820 up_write(&sb->s_umount);
2821 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002822 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002823}
2824
Chris Masond3977122009-01-05 21:25:51 -05002825static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2826 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002827{
2828 int ret;
2829 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002830 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002831 struct btrfs_dev_item *dev_item;
2832 struct extent_buffer *leaf;
2833 struct btrfs_key key;
2834
Chris Mason0b86a832008-03-24 15:01:56 -04002835 path = btrfs_alloc_path();
2836 if (!path)
2837 return -ENOMEM;
2838
2839 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2840 key.type = BTRFS_DEV_ITEM_KEY;
2841 key.offset = device->devid;
2842
2843 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2844 if (ret < 0)
2845 goto out;
2846
2847 if (ret > 0) {
2848 ret = -ENOENT;
2849 goto out;
2850 }
2851
2852 leaf = path->nodes[0];
2853 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2854
2855 btrfs_set_device_id(leaf, dev_item, device->devid);
2856 btrfs_set_device_type(leaf, dev_item, device->type);
2857 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2858 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2859 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002860 btrfs_set_device_total_bytes(leaf, dev_item,
2861 btrfs_device_get_disk_total_bytes(device));
2862 btrfs_set_device_bytes_used(leaf, dev_item,
2863 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002864 btrfs_mark_buffer_dirty(leaf);
2865
2866out:
2867 btrfs_free_path(path);
2868 return ret;
2869}
2870
Miao Xie2196d6e2014-09-03 21:35:41 +08002871int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002872 struct btrfs_device *device, u64 new_size)
2873{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002874 struct btrfs_fs_info *fs_info = device->fs_info;
2875 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie2196d6e2014-09-03 21:35:41 +08002876 u64 old_total;
2877 u64 diff;
Filipe Manana2bb2e002021-10-13 10:12:49 +01002878 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002879
Anand Jainebbede42017-12-04 12:54:52 +08002880 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002881 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002882
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002883 new_size = round_down(new_size, fs_info->sectorsize);
2884
David Sterba34441362016-10-04 19:34:27 +02002885 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002886 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002887 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002888
Stefan Behrens63a212a2012-11-05 18:29:28 +01002889 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002890 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002891 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002892 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002893 }
Yan Zheng2b820322008-11-17 21:11:30 -05002894
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002895 btrfs_set_super_total_bytes(super_copy,
2896 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002897 device->fs_devices->total_rw_bytes += diff;
2898
Miao Xie7cc8e582014-09-03 21:35:38 +08002899 btrfs_device_set_total_bytes(device, new_size);
2900 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002901 btrfs_clear_space_info_full(device->fs_info);
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02002902 if (list_empty(&device->post_commit_list))
2903 list_add_tail(&device->post_commit_list,
2904 &trans->transaction->dev_update_list);
David Sterba34441362016-10-04 19:34:27 +02002905 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002906
Filipe Manana2bb2e002021-10-13 10:12:49 +01002907 btrfs_reserve_chunk_metadata(trans, false);
2908 ret = btrfs_update_device(trans, device);
2909 btrfs_trans_release_chunk_metadata(trans);
2910
2911 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002912}
2913
Nikolay Borisovf4208792018-07-20 19:37:52 +03002914static int btrfs_free_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002915{
Nikolay Borisovf4208792018-07-20 19:37:52 +03002916 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002917 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002918 int ret;
2919 struct btrfs_path *path;
2920 struct btrfs_key key;
2921
Chris Mason8f18cf12008-04-25 16:53:30 -04002922 path = btrfs_alloc_path();
2923 if (!path)
2924 return -ENOMEM;
2925
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002926 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002927 key.offset = chunk_offset;
2928 key.type = BTRFS_CHUNK_ITEM_KEY;
2929
2930 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002931 if (ret < 0)
2932 goto out;
2933 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002934 btrfs_handle_fs_error(fs_info, -ENOENT,
2935 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002936 ret = -ENOENT;
2937 goto out;
2938 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002939
2940 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002941 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002942 btrfs_handle_fs_error(fs_info, ret,
2943 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002944out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002945 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002946 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002947}
2948
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002949static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002950{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002951 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002952 struct btrfs_disk_key *disk_key;
2953 struct btrfs_chunk *chunk;
2954 u8 *ptr;
2955 int ret = 0;
2956 u32 num_stripes;
2957 u32 array_size;
2958 u32 len = 0;
2959 u32 cur;
2960 struct btrfs_key key;
2961
Filipe Manana79bd3712021-06-29 14:43:06 +01002962 lockdep_assert_held(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002963 array_size = btrfs_super_sys_array_size(super_copy);
2964
2965 ptr = super_copy->sys_chunk_array;
2966 cur = 0;
2967
2968 while (cur < array_size) {
2969 disk_key = (struct btrfs_disk_key *)ptr;
2970 btrfs_disk_key_to_cpu(&key, disk_key);
2971
2972 len = sizeof(*disk_key);
2973
2974 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2975 chunk = (struct btrfs_chunk *)(ptr + len);
2976 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2977 len += btrfs_chunk_item_size(num_stripes);
2978 } else {
2979 ret = -EIO;
2980 break;
2981 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002982 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002983 key.offset == chunk_offset) {
2984 memmove(ptr, ptr + len, array_size - (cur + len));
2985 array_size -= len;
2986 btrfs_set_super_sys_array_size(super_copy, array_size);
2987 } else {
2988 ptr += len;
2989 cur += len;
2990 }
2991 }
2992 return ret;
2993}
2994
Omar Sandoval60ca8422018-05-16 16:34:31 -07002995/*
2996 * btrfs_get_chunk_map() - Find the mapping containing the given logical extent.
2997 * @logical: Logical block offset in bytes.
2998 * @length: Length of extent in bytes.
2999 *
3000 * Return: Chunk mapping or ERR_PTR.
3001 */
3002struct extent_map *btrfs_get_chunk_map(struct btrfs_fs_info *fs_info,
3003 u64 logical, u64 length)
Liu Bo592d92e2017-03-14 13:33:55 -07003004{
3005 struct extent_map_tree *em_tree;
3006 struct extent_map *em;
3007
David Sterbac8bf1b62019-05-17 11:43:17 +02003008 em_tree = &fs_info->mapping_tree;
Liu Bo592d92e2017-03-14 13:33:55 -07003009 read_lock(&em_tree->lock);
3010 em = lookup_extent_mapping(em_tree, logical, length);
3011 read_unlock(&em_tree->lock);
3012
3013 if (!em) {
3014 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
3015 logical, length);
3016 return ERR_PTR(-EINVAL);
3017 }
3018
3019 if (em->start > logical || em->start + em->len < logical) {
3020 btrfs_crit(fs_info,
3021 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
3022 logical, length, em->start, em->start + em->len);
3023 free_extent_map(em);
3024 return ERR_PTR(-EINVAL);
3025 }
3026
3027 /* callers are responsible for dropping em's ref. */
3028 return em;
3029}
3030
Filipe Manana79bd3712021-06-29 14:43:06 +01003031static int remove_chunk_item(struct btrfs_trans_handle *trans,
3032 struct map_lookup *map, u64 chunk_offset)
3033{
3034 int i;
3035
3036 /*
3037 * Removing chunk items and updating the device items in the chunks btree
3038 * requires holding the chunk_mutex.
3039 * See the comment at btrfs_chunk_alloc() for the details.
3040 */
3041 lockdep_assert_held(&trans->fs_info->chunk_mutex);
3042
3043 for (i = 0; i < map->num_stripes; i++) {
3044 int ret;
3045
3046 ret = btrfs_update_device(trans, map->stripes[i].dev);
3047 if (ret)
3048 return ret;
3049 }
3050
3051 return btrfs_free_chunk(trans, chunk_offset);
3052}
3053
Nikolay Borisov97aff912018-07-20 19:37:53 +03003054int btrfs_remove_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04003055{
Nikolay Borisov97aff912018-07-20 19:37:53 +03003056 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003057 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003058 struct map_lookup *map;
3059 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003060 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003061 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003062
Omar Sandoval60ca8422018-05-16 16:34:31 -07003063 em = btrfs_get_chunk_map(fs_info, chunk_offset, 1);
Liu Bo592d92e2017-03-14 13:33:55 -07003064 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04003065 /*
3066 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08003067 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04003068 * do anything we still error out.
3069 */
3070 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07003071 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003072 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04003073 map = em->map_lookup;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003074
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003075 /*
Filipe Manana79bd3712021-06-29 14:43:06 +01003076 * First delete the device extent items from the devices btree.
3077 * We take the device_list_mutex to avoid racing with the finishing phase
3078 * of a device replace operation. See the comment below before acquiring
3079 * fs_info->chunk_mutex. Note that here we do not acquire the chunk_mutex
3080 * because that can result in a deadlock when deleting the device extent
3081 * items from the devices btree - COWing an extent buffer from the btree
3082 * may result in allocating a new metadata chunk, which would attempt to
3083 * lock again fs_info->chunk_mutex.
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003084 */
3085 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003086 for (i = 0; i < map->num_stripes; i++) {
3087 struct btrfs_device *device = map->stripes[i].dev;
3088 ret = btrfs_free_dev_extent(trans, device,
3089 map->stripes[i].physical,
3090 &dev_extent_len);
3091 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003092 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04003093 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003094 goto out;
3095 }
3096
3097 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02003098 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003099 btrfs_device_set_bytes_used(device,
3100 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03003101 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003102 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02003103 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003104 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04003105 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003106 mutex_unlock(&fs_devices->device_list_mutex);
3107
Filipe Manana79bd3712021-06-29 14:43:06 +01003108 /*
3109 * We acquire fs_info->chunk_mutex for 2 reasons:
3110 *
3111 * 1) Just like with the first phase of the chunk allocation, we must
3112 * reserve system space, do all chunk btree updates and deletions, and
3113 * update the system chunk array in the superblock while holding this
3114 * mutex. This is for similar reasons as explained on the comment at
3115 * the top of btrfs_chunk_alloc();
3116 *
3117 * 2) Prevent races with the final phase of a device replace operation
3118 * that replaces the device object associated with the map's stripes,
3119 * because the device object's id can change at any time during that
3120 * final phase of the device replace operation
3121 * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the
3122 * replaced device and then see it with an ID of
3123 * BTRFS_DEV_REPLACE_DEVID, which would cause a failure when updating
3124 * the device item, which does not exists on the chunk btree.
3125 * The finishing phase of device replace acquires both the
3126 * device_list_mutex and the chunk_mutex, in that order, so we are
3127 * safe by just acquiring the chunk_mutex.
3128 */
3129 trans->removing_chunk = true;
3130 mutex_lock(&fs_info->chunk_mutex);
3131
3132 check_system_chunk(trans, map->type);
3133
3134 ret = remove_chunk_item(trans, map, chunk_offset);
3135 /*
3136 * Normally we should not get -ENOSPC since we reserved space before
3137 * through the call to check_system_chunk().
3138 *
3139 * Despite our system space_info having enough free space, we may not
3140 * be able to allocate extents from its block groups, because all have
3141 * an incompatible profile, which will force us to allocate a new system
3142 * block group with the right profile, or right after we called
3143 * check_system_space() above, a scrub turned the only system block group
3144 * with enough free space into RO mode.
3145 * This is explained with more detail at do_chunk_alloc().
3146 *
3147 * So if we get -ENOSPC, allocate a new system chunk and retry once.
3148 */
3149 if (ret == -ENOSPC) {
3150 const u64 sys_flags = btrfs_system_alloc_profile(fs_info);
3151 struct btrfs_block_group *sys_bg;
3152
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03003153 sys_bg = btrfs_create_chunk(trans, sys_flags);
Filipe Manana79bd3712021-06-29 14:43:06 +01003154 if (IS_ERR(sys_bg)) {
3155 ret = PTR_ERR(sys_bg);
3156 btrfs_abort_transaction(trans, ret);
3157 goto out;
3158 }
3159
3160 ret = btrfs_chunk_alloc_add_chunk_item(trans, sys_bg);
3161 if (ret) {
3162 btrfs_abort_transaction(trans, ret);
3163 goto out;
3164 }
3165
3166 ret = remove_chunk_item(trans, map, chunk_offset);
3167 if (ret) {
3168 btrfs_abort_transaction(trans, ret);
3169 goto out;
3170 }
3171 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003172 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003173 goto out;
3174 }
3175
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003176 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003177
3178 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03003179 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003180 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003181 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003182 goto out;
3183 }
3184 }
3185
Filipe Manana79bd3712021-06-29 14:43:06 +01003186 mutex_unlock(&fs_info->chunk_mutex);
3187 trans->removing_chunk = false;
3188
3189 /*
3190 * We are done with chunk btree updates and deletions, so release the
3191 * system space we previously reserved (with check_system_chunk()).
3192 */
3193 btrfs_trans_release_chunk_metadata(trans);
3194
Nikolay Borisov5a98ec02018-06-20 15:48:56 +03003195 ret = btrfs_remove_block_group(trans, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003196 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003197 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003198 goto out;
3199 }
3200
Josef Bacik47ab2a62014-09-18 11:20:02 -04003201out:
Filipe Manana79bd3712021-06-29 14:43:06 +01003202 if (trans->removing_chunk) {
3203 mutex_unlock(&fs_info->chunk_mutex);
3204 trans->removing_chunk = false;
3205 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04003206 /* once for us */
3207 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04003208 return ret;
3209}
3210
Johannes Thumshirn18bb8bb2021-04-19 16:41:02 +09003211int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04003212{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003213 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07003214 struct btrfs_trans_handle *trans;
Dennis Zhoub0643e52019-12-13 16:22:14 -08003215 struct btrfs_block_group *block_group;
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003216 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04003217 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003218
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003219 /*
3220 * Prevent races with automatic removal of unused block groups.
3221 * After we relocate and before we remove the chunk with offset
3222 * chunk_offset, automatic removal of the block group can kick in,
3223 * resulting in a failure when calling btrfs_remove_chunk() below.
3224 *
3225 * Make sure to acquire this mutex before doing a tree search (dev
3226 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
3227 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
3228 * we release the path used to search the chunk/dev tree and before
3229 * the current task acquires this mutex and calls us.
3230 */
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003231 lockdep_assert_held(&fs_info->reclaim_bgs_lock);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003232
Chris Mason8f18cf12008-04-25 16:53:30 -04003233 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003234 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003235 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003236 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003237 if (ret)
3238 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003239
Dennis Zhoub0643e52019-12-13 16:22:14 -08003240 block_group = btrfs_lookup_block_group(fs_info, chunk_offset);
3241 if (!block_group)
3242 return -ENOENT;
3243 btrfs_discard_cancel_work(&fs_info->discard_ctl, block_group);
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003244 length = block_group->length;
Dennis Zhoub0643e52019-12-13 16:22:14 -08003245 btrfs_put_block_group(block_group);
3246
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003247 /*
3248 * On a zoned file system, discard the whole block group, this will
3249 * trigger a REQ_OP_ZONE_RESET operation on the device zone. If
3250 * resetting the zone fails, don't treat it as a fatal problem from the
3251 * filesystem's point of view.
3252 */
3253 if (btrfs_is_zoned(fs_info)) {
3254 ret = btrfs_discard_extent(fs_info, chunk_offset, length, NULL);
3255 if (ret)
3256 btrfs_info(fs_info,
3257 "failed to reset zone %llu after relocation",
3258 chunk_offset);
3259 }
3260
Chris Mason19c4d2f2016-10-10 13:43:31 -07003261 trans = btrfs_start_trans_remove_block_group(root->fs_info,
3262 chunk_offset);
3263 if (IS_ERR(trans)) {
3264 ret = PTR_ERR(trans);
3265 btrfs_handle_fs_error(root->fs_info, ret, NULL);
3266 return ret;
3267 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09003268
Chris Mason19c4d2f2016-10-10 13:43:31 -07003269 /*
3270 * step two, delete the device extents and the
3271 * chunk tree entries
3272 */
Nikolay Borisov97aff912018-07-20 19:37:53 +03003273 ret = btrfs_remove_chunk(trans, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003274 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07003275 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003276}
3277
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003278static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05003279{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003280 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05003281 struct btrfs_path *path;
3282 struct extent_buffer *leaf;
3283 struct btrfs_chunk *chunk;
3284 struct btrfs_key key;
3285 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05003286 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04003287 bool retried = false;
3288 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05003289 int ret;
3290
3291 path = btrfs_alloc_path();
3292 if (!path)
3293 return -ENOMEM;
3294
Josef Bacikba1bf482009-09-11 16:11:19 -04003295again:
Yan Zheng2b820322008-11-17 21:11:30 -05003296 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3297 key.offset = (u64)-1;
3298 key.type = BTRFS_CHUNK_ITEM_KEY;
3299
3300 while (1) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003301 mutex_lock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003302 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003303 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003304 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003305 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003306 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003307 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05003308
3309 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3310 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003311 if (ret)
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003312 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003313 if (ret < 0)
3314 goto error;
3315 if (ret > 0)
3316 break;
3317
3318 leaf = path->nodes[0];
3319 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3320
3321 chunk = btrfs_item_ptr(leaf, path->slots[0],
3322 struct btrfs_chunk);
3323 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003324 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003325
3326 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003327 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003328 if (ret == -ENOSPC)
3329 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303330 else
3331 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003332 }
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003333 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003334
3335 if (found_key.offset == 0)
3336 break;
3337 key.offset = found_key.offset - 1;
3338 }
3339 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003340 if (failed && !retried) {
3341 failed = 0;
3342 retried = true;
3343 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303344 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003345 ret = -ENOSPC;
3346 }
Yan Zheng2b820322008-11-17 21:11:30 -05003347error:
3348 btrfs_free_path(path);
3349 return ret;
3350}
3351
Liu Boa6f93c72017-11-15 16:28:11 -07003352/*
3353 * return 1 : allocate a data chunk successfully,
3354 * return <0: errors during allocating a data chunk,
3355 * return 0 : no need to allocate a data chunk.
3356 */
3357static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
3358 u64 chunk_offset)
3359{
David Sterba32da53862019-10-29 19:20:18 +01003360 struct btrfs_block_group *cache;
Liu Boa6f93c72017-11-15 16:28:11 -07003361 u64 bytes_used;
3362 u64 chunk_type;
3363
3364 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3365 ASSERT(cache);
3366 chunk_type = cache->flags;
3367 btrfs_put_block_group(cache);
3368
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003369 if (!(chunk_type & BTRFS_BLOCK_GROUP_DATA))
3370 return 0;
Liu Boa6f93c72017-11-15 16:28:11 -07003371
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003372 spin_lock(&fs_info->data_sinfo->lock);
3373 bytes_used = fs_info->data_sinfo->bytes_used;
3374 spin_unlock(&fs_info->data_sinfo->lock);
Liu Boa6f93c72017-11-15 16:28:11 -07003375
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003376 if (!bytes_used) {
3377 struct btrfs_trans_handle *trans;
3378 int ret;
Liu Boa6f93c72017-11-15 16:28:11 -07003379
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003380 trans = btrfs_join_transaction(fs_info->tree_root);
3381 if (IS_ERR(trans))
3382 return PTR_ERR(trans);
3383
3384 ret = btrfs_force_chunk_alloc(trans, BTRFS_BLOCK_GROUP_DATA);
3385 btrfs_end_transaction(trans);
3386 if (ret < 0)
3387 return ret;
3388 return 1;
Liu Boa6f93c72017-11-15 16:28:11 -07003389 }
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003390
Liu Boa6f93c72017-11-15 16:28:11 -07003391 return 0;
3392}
3393
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003394static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003395 struct btrfs_balance_control *bctl)
3396{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003397 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003398 struct btrfs_trans_handle *trans;
3399 struct btrfs_balance_item *item;
3400 struct btrfs_disk_balance_args disk_bargs;
3401 struct btrfs_path *path;
3402 struct extent_buffer *leaf;
3403 struct btrfs_key key;
3404 int ret, err;
3405
3406 path = btrfs_alloc_path();
3407 if (!path)
3408 return -ENOMEM;
3409
3410 trans = btrfs_start_transaction(root, 0);
3411 if (IS_ERR(trans)) {
3412 btrfs_free_path(path);
3413 return PTR_ERR(trans);
3414 }
3415
3416 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003417 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003418 key.offset = 0;
3419
3420 ret = btrfs_insert_empty_item(trans, root, path, &key,
3421 sizeof(*item));
3422 if (ret)
3423 goto out;
3424
3425 leaf = path->nodes[0];
3426 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3427
David Sterbab159fa22016-11-08 18:09:03 +01003428 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003429
3430 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3431 btrfs_set_balance_data(leaf, item, &disk_bargs);
3432 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3433 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3434 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3435 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3436
3437 btrfs_set_balance_flags(leaf, item, bctl->flags);
3438
3439 btrfs_mark_buffer_dirty(leaf);
3440out:
3441 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003442 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003443 if (err && !ret)
3444 ret = err;
3445 return ret;
3446}
3447
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003448static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003449{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003450 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003451 struct btrfs_trans_handle *trans;
3452 struct btrfs_path *path;
3453 struct btrfs_key key;
3454 int ret, err;
3455
3456 path = btrfs_alloc_path();
3457 if (!path)
3458 return -ENOMEM;
3459
David Sterba3502a8c2020-06-25 12:35:28 +02003460 trans = btrfs_start_transaction_fallback_global_rsv(root, 0);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003461 if (IS_ERR(trans)) {
3462 btrfs_free_path(path);
3463 return PTR_ERR(trans);
3464 }
3465
3466 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003467 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003468 key.offset = 0;
3469
3470 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3471 if (ret < 0)
3472 goto out;
3473 if (ret > 0) {
3474 ret = -ENOENT;
3475 goto out;
3476 }
3477
3478 ret = btrfs_del_item(trans, root, path);
3479out:
3480 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003481 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003482 if (err && !ret)
3483 ret = err;
3484 return ret;
3485}
3486
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003487/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003488 * This is a heuristic used to reduce the number of chunks balanced on
3489 * resume after balance was interrupted.
3490 */
3491static void update_balance_args(struct btrfs_balance_control *bctl)
3492{
3493 /*
3494 * Turn on soft mode for chunk types that were being converted.
3495 */
3496 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3497 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3498 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3499 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3500 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3501 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3502
3503 /*
3504 * Turn on usage filter if is not already used. The idea is
3505 * that chunks that we have already balanced should be
3506 * reasonably full. Don't do it for chunks that are being
3507 * converted - that will keep us from relocating unconverted
3508 * (albeit full) chunks.
3509 */
3510 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003511 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003512 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3513 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3514 bctl->data.usage = 90;
3515 }
3516 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003517 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003518 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3519 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3520 bctl->sys.usage = 90;
3521 }
3522 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003523 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003524 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3525 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3526 bctl->meta.usage = 90;
3527 }
3528}
3529
3530/*
David Sterba149196a2018-03-20 20:23:09 +01003531 * Clear the balance status in fs_info and delete the balance item from disk.
3532 */
3533static void reset_balance_state(struct btrfs_fs_info *fs_info)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003534{
3535 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
David Sterba149196a2018-03-20 20:23:09 +01003536 int ret;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003537
3538 BUG_ON(!fs_info->balance_ctl);
3539
3540 spin_lock(&fs_info->balance_lock);
3541 fs_info->balance_ctl = NULL;
3542 spin_unlock(&fs_info->balance_lock);
3543
3544 kfree(bctl);
David Sterba149196a2018-03-20 20:23:09 +01003545 ret = del_balance_item(fs_info);
3546 if (ret)
3547 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003548}
3549
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003550/*
3551 * Balance filters. Return 1 if chunk should be filtered out
3552 * (should not be balanced).
3553 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003554static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003555 struct btrfs_balance_args *bargs)
3556{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003557 chunk_type = chunk_to_extended(chunk_type) &
3558 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003559
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003560 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003561 return 0;
3562
3563 return 1;
3564}
3565
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003566static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003567 struct btrfs_balance_args *bargs)
3568{
David Sterba32da53862019-10-29 19:20:18 +01003569 struct btrfs_block_group *cache;
David Sterbabc309462015-10-20 18:22:13 +02003570 u64 chunk_used;
3571 u64 user_thresh_min;
3572 u64 user_thresh_max;
3573 int ret = 1;
3574
3575 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
David Sterbabf38be62019-10-23 18:48:11 +02003576 chunk_used = cache->used;
David Sterbabc309462015-10-20 18:22:13 +02003577
3578 if (bargs->usage_min == 0)
3579 user_thresh_min = 0;
3580 else
David Sterbab3470b52019-10-23 18:48:22 +02003581 user_thresh_min = div_factor_fine(cache->length,
3582 bargs->usage_min);
David Sterbabc309462015-10-20 18:22:13 +02003583
3584 if (bargs->usage_max == 0)
3585 user_thresh_max = 1;
3586 else if (bargs->usage_max > 100)
David Sterbab3470b52019-10-23 18:48:22 +02003587 user_thresh_max = cache->length;
David Sterbabc309462015-10-20 18:22:13 +02003588 else
David Sterbab3470b52019-10-23 18:48:22 +02003589 user_thresh_max = div_factor_fine(cache->length,
3590 bargs->usage_max);
David Sterbabc309462015-10-20 18:22:13 +02003591
3592 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3593 ret = 0;
3594
3595 btrfs_put_block_group(cache);
3596 return ret;
3597}
3598
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003599static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003600 u64 chunk_offset, struct btrfs_balance_args *bargs)
3601{
David Sterba32da53862019-10-29 19:20:18 +01003602 struct btrfs_block_group *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003603 u64 chunk_used, user_thresh;
3604 int ret = 1;
3605
3606 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
David Sterbabf38be62019-10-23 18:48:11 +02003607 chunk_used = cache->used;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003608
David Sterbabc309462015-10-20 18:22:13 +02003609 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003610 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003611 else if (bargs->usage > 100)
David Sterbab3470b52019-10-23 18:48:22 +02003612 user_thresh = cache->length;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003613 else
David Sterbab3470b52019-10-23 18:48:22 +02003614 user_thresh = div_factor_fine(cache->length, bargs->usage);
Ilya Dryomova105bb82013-01-21 15:15:56 +02003615
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003616 if (chunk_used < user_thresh)
3617 ret = 0;
3618
3619 btrfs_put_block_group(cache);
3620 return ret;
3621}
3622
Ilya Dryomov409d4042012-01-16 22:04:47 +02003623static int chunk_devid_filter(struct extent_buffer *leaf,
3624 struct btrfs_chunk *chunk,
3625 struct btrfs_balance_args *bargs)
3626{
3627 struct btrfs_stripe *stripe;
3628 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3629 int i;
3630
3631 for (i = 0; i < num_stripes; i++) {
3632 stripe = btrfs_stripe_nr(chunk, i);
3633 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3634 return 0;
3635 }
3636
3637 return 1;
3638}
3639
David Sterba946c9252019-05-17 11:43:34 +02003640static u64 calc_data_stripes(u64 type, int num_stripes)
3641{
3642 const int index = btrfs_bg_flags_to_raid_index(type);
3643 const int ncopies = btrfs_raid_array[index].ncopies;
3644 const int nparity = btrfs_raid_array[index].nparity;
3645
David Sterbad58ede82021-07-26 14:15:24 +02003646 return (num_stripes - nparity) / ncopies;
David Sterba946c9252019-05-17 11:43:34 +02003647}
3648
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003649/* [pstart, pend) */
3650static int chunk_drange_filter(struct extent_buffer *leaf,
3651 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003652 struct btrfs_balance_args *bargs)
3653{
3654 struct btrfs_stripe *stripe;
3655 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3656 u64 stripe_offset;
3657 u64 stripe_length;
David Sterba946c9252019-05-17 11:43:34 +02003658 u64 type;
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003659 int factor;
3660 int i;
3661
3662 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3663 return 0;
3664
David Sterba946c9252019-05-17 11:43:34 +02003665 type = btrfs_chunk_type(leaf, chunk);
3666 factor = calc_data_stripes(type, num_stripes);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003667
3668 for (i = 0; i < num_stripes; i++) {
3669 stripe = btrfs_stripe_nr(chunk, i);
3670 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3671 continue;
3672
3673 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3674 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003675 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003676
3677 if (stripe_offset < bargs->pend &&
3678 stripe_offset + stripe_length > bargs->pstart)
3679 return 0;
3680 }
3681
3682 return 1;
3683}
3684
Ilya Dryomovea671762012-01-16 22:04:48 +02003685/* [vstart, vend) */
3686static int chunk_vrange_filter(struct extent_buffer *leaf,
3687 struct btrfs_chunk *chunk,
3688 u64 chunk_offset,
3689 struct btrfs_balance_args *bargs)
3690{
3691 if (chunk_offset < bargs->vend &&
3692 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3693 /* at least part of the chunk is inside this vrange */
3694 return 0;
3695
3696 return 1;
3697}
3698
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003699static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3700 struct btrfs_chunk *chunk,
3701 struct btrfs_balance_args *bargs)
3702{
3703 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3704
3705 if (bargs->stripes_min <= num_stripes
3706 && num_stripes <= bargs->stripes_max)
3707 return 0;
3708
3709 return 1;
3710}
3711
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003712static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003713 struct btrfs_balance_args *bargs)
3714{
3715 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3716 return 0;
3717
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003718 chunk_type = chunk_to_extended(chunk_type) &
3719 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003720
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003721 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003722 return 1;
3723
3724 return 0;
3725}
3726
David Sterba6ec08962019-03-20 16:38:52 +01003727static int should_balance_chunk(struct extent_buffer *leaf,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003728 struct btrfs_chunk *chunk, u64 chunk_offset)
3729{
David Sterba6ec08962019-03-20 16:38:52 +01003730 struct btrfs_fs_info *fs_info = leaf->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003731 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003732 struct btrfs_balance_args *bargs = NULL;
3733 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3734
3735 /* type filter */
3736 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3737 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3738 return 0;
3739 }
3740
3741 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3742 bargs = &bctl->data;
3743 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3744 bargs = &bctl->sys;
3745 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3746 bargs = &bctl->meta;
3747
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003748 /* profiles filter */
3749 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3750 chunk_profiles_filter(chunk_type, bargs)) {
3751 return 0;
3752 }
3753
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003754 /* usage filter */
3755 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003756 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003757 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003758 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003759 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003760 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003761 }
3762
Ilya Dryomov409d4042012-01-16 22:04:47 +02003763 /* devid filter */
3764 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3765 chunk_devid_filter(leaf, chunk, bargs)) {
3766 return 0;
3767 }
3768
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003769 /* drange filter, makes sense only with devid filter */
3770 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003771 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003772 return 0;
3773 }
3774
Ilya Dryomovea671762012-01-16 22:04:48 +02003775 /* vrange filter */
3776 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3777 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3778 return 0;
3779 }
3780
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003781 /* stripes filter */
3782 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3783 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3784 return 0;
3785 }
3786
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003787 /* soft profile changing mode */
3788 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3789 chunk_soft_convert_filter(chunk_type, bargs)) {
3790 return 0;
3791 }
3792
David Sterba7d824b62014-05-07 17:37:51 +02003793 /*
3794 * limited by count, must be the last filter
3795 */
3796 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3797 if (bargs->limit == 0)
3798 return 0;
3799 else
3800 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003801 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3802 /*
3803 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003804 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003805 * about the count of all chunks that satisfy the filters.
3806 */
3807 if (bargs->limit_max == 0)
3808 return 0;
3809 else
3810 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003811 }
3812
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003813 return 1;
3814}
3815
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003816static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003817{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003818 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003819 struct btrfs_root *chunk_root = fs_info->chunk_root;
David Sterba12907fc2015-10-10 17:16:50 +02003820 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003821 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003822 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003823 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003824 struct btrfs_key found_key;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003825 struct extent_buffer *leaf;
3826 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003827 int ret;
3828 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003829 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003830 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003831 u64 limit_data = bctl->data.limit;
3832 u64 limit_meta = bctl->meta.limit;
3833 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003834 u32 count_data = 0;
3835 u32 count_meta = 0;
3836 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003837 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003838
Chris Masonec44a352008-04-28 15:29:52 -04003839 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003840 if (!path) {
3841 ret = -ENOMEM;
3842 goto error;
3843 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003844
3845 /* zero out stat counters */
3846 spin_lock(&fs_info->balance_lock);
3847 memset(&bctl->stat, 0, sizeof(bctl->stat));
3848 spin_unlock(&fs_info->balance_lock);
3849again:
David Sterba7d824b62014-05-07 17:37:51 +02003850 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003851 /*
3852 * The single value limit and min/max limits use the same bytes
3853 * in the
3854 */
David Sterba7d824b62014-05-07 17:37:51 +02003855 bctl->data.limit = limit_data;
3856 bctl->meta.limit = limit_meta;
3857 bctl->sys.limit = limit_sys;
3858 }
Chris Masonec44a352008-04-28 15:29:52 -04003859 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3860 key.offset = (u64)-1;
3861 key.type = BTRFS_CHUNK_ITEM_KEY;
3862
Chris Masond3977122009-01-05 21:25:51 -05003863 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003864 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003865 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003866 ret = -ECANCELED;
3867 goto error;
3868 }
3869
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003870 mutex_lock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003871 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003872 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003873 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003874 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003875 }
Chris Masonec44a352008-04-28 15:29:52 -04003876
3877 /*
3878 * this shouldn't happen, it means the last relocate
3879 * failed
3880 */
3881 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003882 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003883
3884 ret = btrfs_previous_item(chunk_root, path, 0,
3885 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003886 if (ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003887 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003888 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003889 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003890 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003891
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003892 leaf = path->nodes[0];
3893 slot = path->slots[0];
3894 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3895
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003896 if (found_key.objectid != key.objectid) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003897 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003898 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003899 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003900
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003901 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003902 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003903
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003904 if (!counting) {
3905 spin_lock(&fs_info->balance_lock);
3906 bctl->stat.considered++;
3907 spin_unlock(&fs_info->balance_lock);
3908 }
3909
David Sterba6ec08962019-03-20 16:38:52 +01003910 ret = should_balance_chunk(leaf, chunk, found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003911
David Sterbab3b4aa72011-04-21 01:20:15 +02003912 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003913 if (!ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003914 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003915 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003916 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003917
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003918 if (counting) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003919 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003920 spin_lock(&fs_info->balance_lock);
3921 bctl->stat.expected++;
3922 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003923
3924 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3925 count_data++;
3926 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3927 count_sys++;
3928 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3929 count_meta++;
3930
3931 goto loop;
3932 }
3933
3934 /*
3935 * Apply limit_min filter, no need to check if the LIMITS
3936 * filter is used, limit_min is 0 by default
3937 */
3938 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3939 count_data < bctl->data.limit_min)
3940 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3941 count_meta < bctl->meta.limit_min)
3942 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3943 count_sys < bctl->sys.limit_min)) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003944 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003945 goto loop;
3946 }
3947
Liu Boa6f93c72017-11-15 16:28:11 -07003948 if (!chunk_reserved) {
3949 /*
3950 * We may be relocating the only data chunk we have,
3951 * which could potentially end up with losing data's
3952 * raid profile, so lets allocate an empty one in
3953 * advance.
3954 */
3955 ret = btrfs_may_alloc_data_chunk(fs_info,
3956 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003957 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003958 mutex_unlock(&fs_info->reclaim_bgs_lock);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003959 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003960 } else if (ret == 1) {
3961 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003962 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003963 }
3964
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003965 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003966 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003967 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003968 enospc_errors++;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07003969 } else if (ret == -ETXTBSY) {
3970 btrfs_info(fs_info,
3971 "skipping relocation of block group %llu due to active swapfile",
3972 found_key.offset);
3973 ret = 0;
3974 } else if (ret) {
3975 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003976 } else {
3977 spin_lock(&fs_info->balance_lock);
3978 bctl->stat.completed++;
3979 spin_unlock(&fs_info->balance_lock);
3980 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003981loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003982 if (found_key.offset == 0)
3983 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003984 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003985 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003986
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003987 if (counting) {
3988 btrfs_release_path(path);
3989 counting = false;
3990 goto again;
3991 }
Chris Masonec44a352008-04-28 15:29:52 -04003992error:
3993 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003994 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003995 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003996 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003997 if (!ret)
3998 ret = -ENOSPC;
3999 }
4000
Chris Masonec44a352008-04-28 15:29:52 -04004001 return ret;
4002}
4003
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004004/**
4005 * alloc_profile_is_valid - see if a given profile is valid and reduced
4006 * @flags: profile to validate
4007 * @extended: if true @flags is treated as an extended profile
4008 */
4009static int alloc_profile_is_valid(u64 flags, int extended)
4010{
4011 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
4012 BTRFS_BLOCK_GROUP_PROFILE_MASK);
4013
4014 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
4015
4016 /* 1) check that all other bits are zeroed */
4017 if (flags & ~mask)
4018 return 0;
4019
4020 /* 2) see if profile is reduced */
4021 if (flags == 0)
4022 return !extended; /* "0" is valid for usual profiles */
4023
David Sterbac1499162019-10-01 19:44:42 +02004024 return has_single_bit_set(flags);
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004025}
4026
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004027static inline int balance_need_close(struct btrfs_fs_info *fs_info)
4028{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004029 /* cancel requested || normal exit path */
4030 return atomic_read(&fs_info->balance_cancel_req) ||
4031 (atomic_read(&fs_info->balance_pause_req) == 0 &&
4032 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004033}
4034
David Sterba5ba366c2020-02-27 21:00:52 +01004035/*
4036 * Validate target profile against allowed profiles and return true if it's OK.
4037 * Otherwise print the error message and return false.
4038 */
4039static inline int validate_convert_profile(struct btrfs_fs_info *fs_info,
4040 const struct btrfs_balance_args *bargs,
4041 u64 allowed, const char *type)
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00004042{
David Sterba5ba366c2020-02-27 21:00:52 +01004043 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
4044 return true;
4045
Qu Wenruoc8050b32021-07-26 14:35:01 +08004046 if (fs_info->sectorsize < PAGE_SIZE &&
4047 bargs->target & BTRFS_BLOCK_GROUP_RAID56_MASK) {
4048 btrfs_err(fs_info,
4049 "RAID56 is not yet supported for sectorsize %u with page size %lu",
4050 fs_info->sectorsize, PAGE_SIZE);
4051 return false;
4052 }
David Sterba5ba366c2020-02-27 21:00:52 +01004053 /* Profile is valid and does not have bits outside of the allowed set */
4054 if (alloc_profile_is_valid(bargs->target, 1) &&
4055 (bargs->target & ~allowed) == 0)
4056 return true;
4057
4058 btrfs_err(fs_info, "balance: invalid convert %s profile %s",
4059 type, btrfs_bg_type_to_raid_name(bargs->target));
4060 return false;
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00004061}
4062
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004063/*
Anand Jain56fc37d2018-11-20 16:12:56 +08004064 * Fill @buf with textual description of balance filter flags @bargs, up to
4065 * @size_buf including the terminating null. The output may be trimmed if it
4066 * does not fit into the provided buffer.
4067 */
4068static void describe_balance_args(struct btrfs_balance_args *bargs, char *buf,
4069 u32 size_buf)
4070{
4071 int ret;
4072 u32 size_bp = size_buf;
4073 char *bp = buf;
4074 u64 flags = bargs->flags;
4075 char tmp_buf[128] = {'\0'};
4076
4077 if (!flags)
4078 return;
4079
4080#define CHECK_APPEND_NOARG(a) \
4081 do { \
4082 ret = snprintf(bp, size_bp, (a)); \
4083 if (ret < 0 || ret >= size_bp) \
4084 goto out_overflow; \
4085 size_bp -= ret; \
4086 bp += ret; \
4087 } while (0)
4088
4089#define CHECK_APPEND_1ARG(a, v1) \
4090 do { \
4091 ret = snprintf(bp, size_bp, (a), (v1)); \
4092 if (ret < 0 || ret >= size_bp) \
4093 goto out_overflow; \
4094 size_bp -= ret; \
4095 bp += ret; \
4096 } while (0)
4097
4098#define CHECK_APPEND_2ARG(a, v1, v2) \
4099 do { \
4100 ret = snprintf(bp, size_bp, (a), (v1), (v2)); \
4101 if (ret < 0 || ret >= size_bp) \
4102 goto out_overflow; \
4103 size_bp -= ret; \
4104 bp += ret; \
4105 } while (0)
4106
David Sterba158da512019-05-17 11:43:41 +02004107 if (flags & BTRFS_BALANCE_ARGS_CONVERT)
4108 CHECK_APPEND_1ARG("convert=%s,",
4109 btrfs_bg_type_to_raid_name(bargs->target));
Anand Jain56fc37d2018-11-20 16:12:56 +08004110
4111 if (flags & BTRFS_BALANCE_ARGS_SOFT)
4112 CHECK_APPEND_NOARG("soft,");
4113
4114 if (flags & BTRFS_BALANCE_ARGS_PROFILES) {
4115 btrfs_describe_block_groups(bargs->profiles, tmp_buf,
4116 sizeof(tmp_buf));
4117 CHECK_APPEND_1ARG("profiles=%s,", tmp_buf);
4118 }
4119
4120 if (flags & BTRFS_BALANCE_ARGS_USAGE)
4121 CHECK_APPEND_1ARG("usage=%llu,", bargs->usage);
4122
4123 if (flags & BTRFS_BALANCE_ARGS_USAGE_RANGE)
4124 CHECK_APPEND_2ARG("usage=%u..%u,",
4125 bargs->usage_min, bargs->usage_max);
4126
4127 if (flags & BTRFS_BALANCE_ARGS_DEVID)
4128 CHECK_APPEND_1ARG("devid=%llu,", bargs->devid);
4129
4130 if (flags & BTRFS_BALANCE_ARGS_DRANGE)
4131 CHECK_APPEND_2ARG("drange=%llu..%llu,",
4132 bargs->pstart, bargs->pend);
4133
4134 if (flags & BTRFS_BALANCE_ARGS_VRANGE)
4135 CHECK_APPEND_2ARG("vrange=%llu..%llu,",
4136 bargs->vstart, bargs->vend);
4137
4138 if (flags & BTRFS_BALANCE_ARGS_LIMIT)
4139 CHECK_APPEND_1ARG("limit=%llu,", bargs->limit);
4140
4141 if (flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)
4142 CHECK_APPEND_2ARG("limit=%u..%u,",
4143 bargs->limit_min, bargs->limit_max);
4144
4145 if (flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE)
4146 CHECK_APPEND_2ARG("stripes=%u..%u,",
4147 bargs->stripes_min, bargs->stripes_max);
4148
4149#undef CHECK_APPEND_2ARG
4150#undef CHECK_APPEND_1ARG
4151#undef CHECK_APPEND_NOARG
4152
4153out_overflow:
4154
4155 if (size_bp < size_buf)
4156 buf[size_buf - size_bp - 1] = '\0'; /* remove last , */
4157 else
4158 buf[0] = '\0';
4159}
4160
4161static void describe_balance_start_or_resume(struct btrfs_fs_info *fs_info)
4162{
4163 u32 size_buf = 1024;
4164 char tmp_buf[192] = {'\0'};
4165 char *buf;
4166 char *bp;
4167 u32 size_bp = size_buf;
4168 int ret;
4169 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4170
4171 buf = kzalloc(size_buf, GFP_KERNEL);
4172 if (!buf)
4173 return;
4174
4175 bp = buf;
4176
4177#define CHECK_APPEND_1ARG(a, v1) \
4178 do { \
4179 ret = snprintf(bp, size_bp, (a), (v1)); \
4180 if (ret < 0 || ret >= size_bp) \
4181 goto out_overflow; \
4182 size_bp -= ret; \
4183 bp += ret; \
4184 } while (0)
4185
4186 if (bctl->flags & BTRFS_BALANCE_FORCE)
4187 CHECK_APPEND_1ARG("%s", "-f ");
4188
4189 if (bctl->flags & BTRFS_BALANCE_DATA) {
4190 describe_balance_args(&bctl->data, tmp_buf, sizeof(tmp_buf));
4191 CHECK_APPEND_1ARG("-d%s ", tmp_buf);
4192 }
4193
4194 if (bctl->flags & BTRFS_BALANCE_METADATA) {
4195 describe_balance_args(&bctl->meta, tmp_buf, sizeof(tmp_buf));
4196 CHECK_APPEND_1ARG("-m%s ", tmp_buf);
4197 }
4198
4199 if (bctl->flags & BTRFS_BALANCE_SYSTEM) {
4200 describe_balance_args(&bctl->sys, tmp_buf, sizeof(tmp_buf));
4201 CHECK_APPEND_1ARG("-s%s ", tmp_buf);
4202 }
4203
4204#undef CHECK_APPEND_1ARG
4205
4206out_overflow:
4207
4208 if (size_bp < size_buf)
4209 buf[size_buf - size_bp - 1] = '\0'; /* remove last " " */
4210 btrfs_info(fs_info, "balance: %s %s",
4211 (bctl->flags & BTRFS_BALANCE_RESUME) ?
4212 "resume" : "start", buf);
4213
4214 kfree(buf);
4215}
4216
4217/*
David Sterbadccdb072018-03-21 00:20:05 +01004218 * Should be called with balance mutexe held
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004219 */
David Sterba6fcf6e22018-05-07 17:44:03 +02004220int btrfs_balance(struct btrfs_fs_info *fs_info,
4221 struct btrfs_balance_control *bctl,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004222 struct btrfs_ioctl_balance_args *bargs)
4223{
Adam Borowski14506122017-03-07 23:34:44 +01004224 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004225 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03004226 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004227 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01004228 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00004229 unsigned seq;
Anand Jaine62869b2019-09-25 14:29:28 +08004230 bool reducing_redundancy;
David Sterba081db892019-05-17 11:43:27 +02004231 int i;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004232
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004233 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004234 atomic_read(&fs_info->balance_pause_req) ||
Qu Wenruo726a3422020-02-17 14:16:52 +08004235 btrfs_should_cancel_balance(fs_info)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004236 ret = -EINVAL;
4237 goto out;
4238 }
4239
Ilya Dryomove4837f82012-03-27 17:09:17 +03004240 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
4241 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
4242 mixed = 1;
4243
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004244 /*
4245 * In case of mixed groups both data and meta should be picked,
4246 * and identical options should be given for both of them.
4247 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03004248 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
4249 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004250 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
4251 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
4252 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004253 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004254 "balance: mixed groups data and metadata options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004255 ret = -EINVAL;
4256 goto out;
4257 }
4258 }
4259
Josef Bacikb35cf1f2020-01-10 11:11:24 -05004260 /*
4261 * rw_devices will not change at the moment, device add/delete/replace
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004262 * are exclusive
Josef Bacikb35cf1f2020-01-10 11:11:24 -05004263 */
4264 num_devices = fs_info->fs_devices->rw_devices;
Qu Wenruofab27352019-09-25 10:13:27 +08004265
4266 /*
4267 * SINGLE profile on-disk has no profile bit, but in-memory we have a
4268 * special bit for it, to make it easier to distinguish. Thus we need
4269 * to set it manually, or balance would refuse the profile.
4270 */
4271 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
David Sterba081db892019-05-17 11:43:27 +02004272 for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++)
4273 if (num_devices >= btrfs_raid_array[i].devs_min)
4274 allowed |= btrfs_raid_array[i].bg_flag;
Anand Jain1da73962018-08-10 13:53:21 +08004275
David Sterba5ba366c2020-02-27 21:00:52 +01004276 if (!validate_convert_profile(fs_info, &bctl->data, allowed, "data") ||
4277 !validate_convert_profile(fs_info, &bctl->meta, allowed, "metadata") ||
4278 !validate_convert_profile(fs_info, &bctl->sys, allowed, "system")) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004279 ret = -EINVAL;
4280 goto out;
4281 }
4282
David Sterba6079e122019-05-17 11:43:29 +02004283 /*
4284 * Allow to reduce metadata or system integrity only if force set for
4285 * profiles with redundancy (copies, parity)
4286 */
4287 allowed = 0;
4288 for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++) {
4289 if (btrfs_raid_array[i].ncopies >= 2 ||
4290 btrfs_raid_array[i].tolerated_failures >= 1)
4291 allowed |= btrfs_raid_array[i].bg_flag;
4292 }
Miao Xiede98ced2013-01-29 10:13:12 +00004293 do {
4294 seq = read_seqbegin(&fs_info->profiles_lock);
4295
4296 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
4297 (fs_info->avail_system_alloc_bits & allowed) &&
4298 !(bctl->sys.target & allowed)) ||
4299 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
4300 (fs_info->avail_metadata_alloc_bits & allowed) &&
Filipe Manana5a8067c2018-11-19 09:48:12 +00004301 !(bctl->meta.target & allowed)))
Anand Jaine62869b2019-09-25 14:29:28 +08004302 reducing_redundancy = true;
Filipe Manana5a8067c2018-11-19 09:48:12 +00004303 else
Anand Jaine62869b2019-09-25 14:29:28 +08004304 reducing_redundancy = false;
Filipe Manana5a8067c2018-11-19 09:48:12 +00004305
4306 /* if we're not converting, the target field is uninitialized */
4307 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
4308 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
4309 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
4310 bctl->data.target : fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004311 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004312
Anand Jaine62869b2019-09-25 14:29:28 +08004313 if (reducing_redundancy) {
Filipe Manana5a8067c2018-11-19 09:48:12 +00004314 if (bctl->flags & BTRFS_BALANCE_FORCE) {
4315 btrfs_info(fs_info,
Anand Jaine62869b2019-09-25 14:29:28 +08004316 "balance: force reducing metadata redundancy");
Filipe Manana5a8067c2018-11-19 09:48:12 +00004317 } else {
4318 btrfs_err(fs_info,
Anand Jaine62869b2019-09-25 14:29:28 +08004319 "balance: reduces metadata redundancy, use --force if you want this");
Filipe Manana5a8067c2018-11-19 09:48:12 +00004320 ret = -EINVAL;
4321 goto out;
4322 }
4323 }
4324
Adam Borowski14506122017-03-07 23:34:44 +01004325 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
4326 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00004327 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004328 "balance: metadata profile %s has lower redundancy than data profile %s",
David Sterba158da512019-05-17 11:43:41 +02004329 btrfs_bg_type_to_raid_name(meta_target),
4330 btrfs_bg_type_to_raid_name(data_target));
Sam Tygieree592d02016-01-06 08:46:12 +00004331 }
4332
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004333 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02004334 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02004335 goto out;
4336
Ilya Dryomov59641012012-01-16 22:04:48 +02004337 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
4338 BUG_ON(ret == -EEXIST);
David Sterba833aae12018-03-21 02:41:30 +01004339 BUG_ON(fs_info->balance_ctl);
4340 spin_lock(&fs_info->balance_lock);
4341 fs_info->balance_ctl = bctl;
4342 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov59641012012-01-16 22:04:48 +02004343 } else {
4344 BUG_ON(ret != -EEXIST);
4345 spin_lock(&fs_info->balance_lock);
4346 update_balance_args(bctl);
4347 spin_unlock(&fs_info->balance_lock);
4348 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004349
David Sterba3009a622018-03-21 01:31:04 +01004350 ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
4351 set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Anand Jain56fc37d2018-11-20 16:12:56 +08004352 describe_balance_start_or_resume(fs_info);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004353 mutex_unlock(&fs_info->balance_mutex);
4354
4355 ret = __btrfs_balance(fs_info);
4356
4357 mutex_lock(&fs_info->balance_mutex);
Anand Jain7333bd02018-11-20 16:12:57 +08004358 if (ret == -ECANCELED && atomic_read(&fs_info->balance_pause_req))
4359 btrfs_info(fs_info, "balance: paused");
Qu Wenruo44d354a2020-07-13 09:03:21 +08004360 /*
4361 * Balance can be canceled by:
4362 *
4363 * - Regular cancel request
4364 * Then ret == -ECANCELED and balance_cancel_req > 0
4365 *
4366 * - Fatal signal to "btrfs" process
4367 * Either the signal caught by wait_reserve_ticket() and callers
4368 * got -EINTR, or caught by btrfs_should_cancel_balance() and
4369 * got -ECANCELED.
4370 * Either way, in this case balance_cancel_req = 0, and
4371 * ret == -EINTR or ret == -ECANCELED.
4372 *
4373 * So here we only check the return value to catch canceled balance.
4374 */
4375 else if (ret == -ECANCELED || ret == -EINTR)
Anand Jain7333bd02018-11-20 16:12:57 +08004376 btrfs_info(fs_info, "balance: canceled");
4377 else
4378 btrfs_info(fs_info, "balance: ended with status: %d", ret);
4379
David Sterba3009a622018-03-21 01:31:04 +01004380 clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004381
4382 if (bargs) {
4383 memset(bargs, 0, sizeof(*bargs));
David Sterba008ef092018-03-21 02:05:27 +01004384 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004385 }
4386
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07004387 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
4388 balance_need_close(fs_info)) {
David Sterba149196a2018-03-20 20:23:09 +01004389 reset_balance_state(fs_info);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004390 btrfs_exclop_finish(fs_info);
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07004391 }
4392
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004393 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004394
4395 return ret;
4396out:
Ilya Dryomov59641012012-01-16 22:04:48 +02004397 if (bctl->flags & BTRFS_BALANCE_RESUME)
David Sterba149196a2018-03-20 20:23:09 +01004398 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004399 else
Ilya Dryomov59641012012-01-16 22:04:48 +02004400 kfree(bctl);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004401 btrfs_exclop_finish(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004402
Ilya Dryomov59641012012-01-16 22:04:48 +02004403 return ret;
4404}
4405
4406static int balance_kthread(void *data)
4407{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004408 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02004409 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02004410
Ilya Dryomov59641012012-01-16 22:04:48 +02004411 mutex_lock(&fs_info->balance_mutex);
Anand Jain56fc37d2018-11-20 16:12:56 +08004412 if (fs_info->balance_ctl)
David Sterba6fcf6e22018-05-07 17:44:03 +02004413 ret = btrfs_balance(fs_info, fs_info->balance_ctl, NULL);
Ilya Dryomov59641012012-01-16 22:04:48 +02004414 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004415
Ilya Dryomov59641012012-01-16 22:04:48 +02004416 return ret;
4417}
4418
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004419int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
4420{
4421 struct task_struct *tsk;
4422
David Sterba1354e1a2018-03-21 02:29:13 +01004423 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004424 if (!fs_info->balance_ctl) {
David Sterba1354e1a2018-03-21 02:29:13 +01004425 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004426 return 0;
4427 }
David Sterba1354e1a2018-03-21 02:29:13 +01004428 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004429
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004430 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08004431 btrfs_info(fs_info, "balance: resume skipped");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004432 return 0;
4433 }
4434
Anand Jain02ee6542018-05-17 15:16:51 +08004435 /*
4436 * A ro->rw remount sequence should continue with the paused balance
4437 * regardless of who pauses it, system or the user as of now, so set
4438 * the resume flag.
4439 */
4440 spin_lock(&fs_info->balance_lock);
4441 fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME;
4442 spin_unlock(&fs_info->balance_lock);
4443
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004444 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05304445 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004446}
4447
Ilya Dryomov68310a52012-06-22 12:24:12 -06004448int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02004449{
Ilya Dryomov59641012012-01-16 22:04:48 +02004450 struct btrfs_balance_control *bctl;
4451 struct btrfs_balance_item *item;
4452 struct btrfs_disk_balance_args disk_bargs;
4453 struct btrfs_path *path;
4454 struct extent_buffer *leaf;
4455 struct btrfs_key key;
4456 int ret;
4457
4458 path = btrfs_alloc_path();
4459 if (!path)
4460 return -ENOMEM;
4461
Ilya Dryomov68310a52012-06-22 12:24:12 -06004462 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01004463 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06004464 key.offset = 0;
4465
4466 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4467 if (ret < 0)
4468 goto out;
4469 if (ret > 0) { /* ret = -ENOENT; */
4470 ret = 0;
4471 goto out;
4472 }
4473
Ilya Dryomov59641012012-01-16 22:04:48 +02004474 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4475 if (!bctl) {
4476 ret = -ENOMEM;
4477 goto out;
4478 }
4479
Ilya Dryomov59641012012-01-16 22:04:48 +02004480 leaf = path->nodes[0];
4481 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4482
Ilya Dryomov68310a52012-06-22 12:24:12 -06004483 bctl->flags = btrfs_balance_flags(leaf, item);
4484 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004485
4486 btrfs_balance_data(leaf, item, &disk_bargs);
4487 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4488 btrfs_balance_meta(leaf, item, &disk_bargs);
4489 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4490 btrfs_balance_sys(leaf, item, &disk_bargs);
4491 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4492
David Sterbaeee95e32018-03-20 20:07:58 +01004493 /*
4494 * This should never happen, as the paused balance state is recovered
4495 * during mount without any chance of other exclusive ops to collide.
4496 *
4497 * This gives the exclusive op status to balance and keeps in paused
4498 * state until user intervention (cancel or umount). If the ownership
4499 * cannot be assigned, show a message but do not fail. The balance
4500 * is in a paused state and must have fs_info::balance_ctl properly
4501 * set up.
4502 */
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004503 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE))
David Sterbaeee95e32018-03-20 20:07:58 +01004504 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004505 "balance: cannot set exclusive op status, resume manually");
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004506
Josef Bacikfb286102020-12-16 11:22:14 -05004507 btrfs_release_path(path);
4508
Ilya Dryomov68310a52012-06-22 12:24:12 -06004509 mutex_lock(&fs_info->balance_mutex);
David Sterba833aae12018-03-21 02:41:30 +01004510 BUG_ON(fs_info->balance_ctl);
4511 spin_lock(&fs_info->balance_lock);
4512 fs_info->balance_ctl = bctl;
4513 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov68310a52012-06-22 12:24:12 -06004514 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004515out:
4516 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004517 return ret;
4518}
4519
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004520int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4521{
4522 int ret = 0;
4523
4524 mutex_lock(&fs_info->balance_mutex);
4525 if (!fs_info->balance_ctl) {
4526 mutex_unlock(&fs_info->balance_mutex);
4527 return -ENOTCONN;
4528 }
4529
David Sterba3009a622018-03-21 01:31:04 +01004530 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004531 atomic_inc(&fs_info->balance_pause_req);
4532 mutex_unlock(&fs_info->balance_mutex);
4533
4534 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004535 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004536
4537 mutex_lock(&fs_info->balance_mutex);
4538 /* we are good with balance_ctl ripped off from under us */
David Sterba3009a622018-03-21 01:31:04 +01004539 BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004540 atomic_dec(&fs_info->balance_pause_req);
4541 } else {
4542 ret = -ENOTCONN;
4543 }
4544
4545 mutex_unlock(&fs_info->balance_mutex);
4546 return ret;
4547}
4548
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004549int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4550{
4551 mutex_lock(&fs_info->balance_mutex);
4552 if (!fs_info->balance_ctl) {
4553 mutex_unlock(&fs_info->balance_mutex);
4554 return -ENOTCONN;
4555 }
4556
David Sterbacf7d20f2018-03-21 01:45:32 +01004557 /*
4558 * A paused balance with the item stored on disk can be resumed at
4559 * mount time if the mount is read-write. Otherwise it's still paused
4560 * and we must not allow cancelling as it deletes the item.
4561 */
4562 if (sb_rdonly(fs_info->sb)) {
4563 mutex_unlock(&fs_info->balance_mutex);
4564 return -EROFS;
4565 }
4566
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004567 atomic_inc(&fs_info->balance_cancel_req);
4568 /*
4569 * if we are running just wait and return, balance item is
4570 * deleted in btrfs_balance in this case
4571 */
David Sterba3009a622018-03-21 01:31:04 +01004572 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004573 mutex_unlock(&fs_info->balance_mutex);
4574 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004575 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004576 mutex_lock(&fs_info->balance_mutex);
4577 } else {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004578 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004579 /*
4580 * Lock released to allow other waiters to continue, we'll
4581 * reexamine the status again.
4582 */
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004583 mutex_lock(&fs_info->balance_mutex);
4584
David Sterbaa17c95d2018-03-20 17:28:05 +01004585 if (fs_info->balance_ctl) {
David Sterba149196a2018-03-20 20:23:09 +01004586 reset_balance_state(fs_info);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004587 btrfs_exclop_finish(fs_info);
Anand Jain6dac13f2018-05-16 10:51:26 +08004588 btrfs_info(fs_info, "balance: canceled");
David Sterbaa17c95d2018-03-20 17:28:05 +01004589 }
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004590 }
4591
David Sterba3009a622018-03-21 01:31:04 +01004592 BUG_ON(fs_info->balance_ctl ||
4593 test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004594 atomic_dec(&fs_info->balance_cancel_req);
4595 mutex_unlock(&fs_info->balance_mutex);
4596 return 0;
4597}
4598
Nikolay Borisov97f4dd02020-02-18 16:56:08 +02004599int btrfs_uuid_scan_kthread(void *data)
Stefan Behrens803b2f52013-08-15 17:11:21 +02004600{
4601 struct btrfs_fs_info *fs_info = data;
4602 struct btrfs_root *root = fs_info->tree_root;
4603 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004604 struct btrfs_path *path = NULL;
4605 int ret = 0;
4606 struct extent_buffer *eb;
4607 int slot;
4608 struct btrfs_root_item root_item;
4609 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004610 struct btrfs_trans_handle *trans = NULL;
Josef Bacikc94bec22020-02-14 15:05:01 -05004611 bool closing = false;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004612
4613 path = btrfs_alloc_path();
4614 if (!path) {
4615 ret = -ENOMEM;
4616 goto out;
4617 }
4618
4619 key.objectid = 0;
4620 key.type = BTRFS_ROOT_ITEM_KEY;
4621 key.offset = 0;
4622
Stefan Behrens803b2f52013-08-15 17:11:21 +02004623 while (1) {
Josef Bacikc94bec22020-02-14 15:05:01 -05004624 if (btrfs_fs_closing(fs_info)) {
4625 closing = true;
4626 break;
4627 }
Anand Jain7c829b72018-03-07 17:29:18 +08004628 ret = btrfs_search_forward(root, &key, path,
4629 BTRFS_OLDEST_GENERATION);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004630 if (ret) {
4631 if (ret > 0)
4632 ret = 0;
4633 break;
4634 }
4635
4636 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4637 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4638 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4639 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4640 goto skip;
4641
4642 eb = path->nodes[0];
4643 slot = path->slots[0];
4644 item_size = btrfs_item_size_nr(eb, slot);
4645 if (item_size < sizeof(root_item))
4646 goto skip;
4647
Stefan Behrens803b2f52013-08-15 17:11:21 +02004648 read_extent_buffer(eb, &root_item,
4649 btrfs_item_ptr_offset(eb, slot),
4650 (int)sizeof(root_item));
4651 if (btrfs_root_refs(&root_item) == 0)
4652 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004653
4654 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4655 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4656 if (trans)
4657 goto update_tree;
4658
4659 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004660 /*
4661 * 1 - subvol uuid item
4662 * 1 - received_subvol uuid item
4663 */
4664 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4665 if (IS_ERR(trans)) {
4666 ret = PTR_ERR(trans);
4667 break;
4668 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004669 continue;
4670 } else {
4671 goto skip;
4672 }
4673update_tree:
Josef Bacik9771a5cf2020-08-10 11:42:26 -04004674 btrfs_release_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004675 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004676 ret = btrfs_uuid_tree_add(trans, root_item.uuid,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004677 BTRFS_UUID_KEY_SUBVOL,
4678 key.objectid);
4679 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004680 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004681 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004682 break;
4683 }
4684 }
4685
4686 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004687 ret = btrfs_uuid_tree_add(trans,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004688 root_item.received_uuid,
4689 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4690 key.objectid);
4691 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004692 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004693 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004694 break;
4695 }
4696 }
4697
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004698skip:
Josef Bacik9771a5cf2020-08-10 11:42:26 -04004699 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004700 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004701 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004702 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004703 if (ret)
4704 break;
4705 }
4706
Stefan Behrens803b2f52013-08-15 17:11:21 +02004707 if (key.offset < (u64)-1) {
4708 key.offset++;
4709 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4710 key.offset = 0;
4711 key.type = BTRFS_ROOT_ITEM_KEY;
4712 } else if (key.objectid < (u64)-1) {
4713 key.offset = 0;
4714 key.type = BTRFS_ROOT_ITEM_KEY;
4715 key.objectid++;
4716 } else {
4717 break;
4718 }
4719 cond_resched();
4720 }
4721
4722out:
4723 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004724 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004725 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004726 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004727 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Josef Bacikc94bec22020-02-14 15:05:01 -05004728 else if (!closing)
Josef Bacikafcdd122016-09-02 15:40:02 -04004729 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004730 up(&fs_info->uuid_tree_rescan_sem);
4731 return 0;
4732}
4733
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004734int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4735{
4736 struct btrfs_trans_handle *trans;
4737 struct btrfs_root *tree_root = fs_info->tree_root;
4738 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004739 struct task_struct *task;
4740 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004741
4742 /*
4743 * 1 - root node
4744 * 1 - root item
4745 */
4746 trans = btrfs_start_transaction(tree_root, 2);
4747 if (IS_ERR(trans))
4748 return PTR_ERR(trans);
4749
David Sterba9b7a2442019-03-20 13:20:49 +01004750 uuid_root = btrfs_create_tree(trans, BTRFS_UUID_TREE_OBJECTID);
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004751 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004752 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004753 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004754 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004755 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004756 }
4757
4758 fs_info->uuid_root = uuid_root;
4759
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004760 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004761 if (ret)
4762 return ret;
4763
4764 down(&fs_info->uuid_tree_rescan_sem);
4765 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4766 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004767 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004768 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004769 up(&fs_info->uuid_tree_rescan_sem);
4770 return PTR_ERR(task);
4771 }
4772
4773 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004774}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004775
Chris Mason8f18cf12008-04-25 16:53:30 -04004776/*
4777 * shrinking a device means finding all of the device extents past
4778 * the new size, and then following the back refs to the chunks.
4779 * The chunk relocation code actually frees the device extent
4780 */
4781int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4782{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004783 struct btrfs_fs_info *fs_info = device->fs_info;
4784 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004785 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004786 struct btrfs_dev_extent *dev_extent = NULL;
4787 struct btrfs_path *path;
4788 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004789 u64 chunk_offset;
4790 int ret;
4791 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004792 int failed = 0;
4793 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004794 struct extent_buffer *l;
4795 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004796 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004797 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004798 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004799 u64 diff;
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004800 u64 start;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004801
4802 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004803 start = new_size;
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004804 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004805
Anand Jain401e29c2017-12-04 12:54:55 +08004806 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004807 return -EINVAL;
4808
Chris Mason8f18cf12008-04-25 16:53:30 -04004809 path = btrfs_alloc_path();
4810 if (!path)
4811 return -ENOMEM;
4812
Gu Jinxiang0338dff2018-04-27 16:22:07 +08004813 path->reada = READA_BACK;
Chris Mason8f18cf12008-04-25 16:53:30 -04004814
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004815 trans = btrfs_start_transaction(root, 0);
4816 if (IS_ERR(trans)) {
4817 btrfs_free_path(path);
4818 return PTR_ERR(trans);
4819 }
4820
David Sterba34441362016-10-04 19:34:27 +02004821 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004822
Miao Xie7cc8e582014-09-03 21:35:38 +08004823 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004824 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004825 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004826 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004827 }
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004828
4829 /*
4830 * Once the device's size has been set to the new size, ensure all
4831 * in-memory chunks are synced to disk so that the loop below sees them
4832 * and relocates them accordingly.
4833 */
Jeff Mahoney1c11b632019-03-27 14:24:12 +02004834 if (contains_pending_extent(device, &start, diff)) {
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004835 mutex_unlock(&fs_info->chunk_mutex);
4836 ret = btrfs_commit_transaction(trans);
4837 if (ret)
4838 goto done;
4839 } else {
4840 mutex_unlock(&fs_info->chunk_mutex);
4841 btrfs_end_transaction(trans);
4842 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004843
Josef Bacikba1bf482009-09-11 16:11:19 -04004844again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004845 key.objectid = device->devid;
4846 key.offset = (u64)-1;
4847 key.type = BTRFS_DEV_EXTENT_KEY;
4848
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004849 do {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004850 mutex_lock(&fs_info->reclaim_bgs_lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04004851 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004852 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004853 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04004854 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004855 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004856
4857 ret = btrfs_previous_item(root, path, 0, key.type);
Chris Mason8f18cf12008-04-25 16:53:30 -04004858 if (ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004859 mutex_unlock(&fs_info->reclaim_bgs_lock);
Nikolay Borisov7056bf62020-12-17 15:21:16 +02004860 if (ret < 0)
4861 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004862 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004863 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004864 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004865 }
4866
4867 l = path->nodes[0];
4868 slot = path->slots[0];
4869 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4870
Josef Bacikba1bf482009-09-11 16:11:19 -04004871 if (key.objectid != device->devid) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004872 mutex_unlock(&fs_info->reclaim_bgs_lock);
David Sterbab3b4aa72011-04-21 01:20:15 +02004873 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004874 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004875 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004876
4877 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4878 length = btrfs_dev_extent_length(l, dev_extent);
4879
Josef Bacikba1bf482009-09-11 16:11:19 -04004880 if (key.offset + length <= new_size) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004881 mutex_unlock(&fs_info->reclaim_bgs_lock);
David Sterbab3b4aa72011-04-21 01:20:15 +02004882 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004883 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004884 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004885
Chris Mason8f18cf12008-04-25 16:53:30 -04004886 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004887 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004888
Liu Boa6f93c72017-11-15 16:28:11 -07004889 /*
4890 * We may be relocating the only data chunk we have,
4891 * which could potentially end up with losing data's
4892 * raid profile, so lets allocate an empty one in
4893 * advance.
4894 */
4895 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4896 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004897 mutex_unlock(&fs_info->reclaim_bgs_lock);
Liu Boa6f93c72017-11-15 16:28:11 -07004898 goto done;
4899 }
4900
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004901 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004902 mutex_unlock(&fs_info->reclaim_bgs_lock);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004903 if (ret == -ENOSPC) {
Josef Bacikba1bf482009-09-11 16:11:19 -04004904 failed++;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004905 } else if (ret) {
4906 if (ret == -ETXTBSY) {
4907 btrfs_warn(fs_info,
4908 "could not shrink block group %llu due to active swapfile",
4909 chunk_offset);
4910 }
4911 goto done;
4912 }
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004913 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004914
4915 if (failed && !retried) {
4916 failed = 0;
4917 retried = true;
4918 goto again;
4919 } else if (failed && retried) {
4920 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004921 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004922 }
4923
Chris Balld6397ba2009-04-27 07:29:03 -04004924 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004925 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004926 if (IS_ERR(trans)) {
4927 ret = PTR_ERR(trans);
4928 goto done;
4929 }
4930
David Sterba34441362016-10-04 19:34:27 +02004931 mutex_lock(&fs_info->chunk_mutex);
Qu Wenruoc57dd1f2020-07-31 19:29:11 +08004932 /* Clear all state bits beyond the shrunk device size */
4933 clear_extent_bits(&device->alloc_state, new_size, (u64)-1,
4934 CHUNK_STATE_MASK);
4935
Miao Xie7cc8e582014-09-03 21:35:38 +08004936 btrfs_device_set_disk_total_bytes(device, new_size);
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02004937 if (list_empty(&device->post_commit_list))
4938 list_add_tail(&device->post_commit_list,
4939 &trans->transaction->dev_update_list);
Chris Balld6397ba2009-04-27 07:29:03 -04004940
Chris Balld6397ba2009-04-27 07:29:03 -04004941 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004942 btrfs_set_super_total_bytes(super_copy,
4943 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004944 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004945
Filipe Manana2bb2e002021-10-13 10:12:49 +01004946 btrfs_reserve_chunk_metadata(trans, false);
Miao Xie2196d6e2014-09-03 21:35:41 +08004947 /* Now btrfs_update_device() will change the on-disk size. */
4948 ret = btrfs_update_device(trans, device);
Filipe Manana2bb2e002021-10-13 10:12:49 +01004949 btrfs_trans_release_chunk_metadata(trans);
Anand Jain801660b2018-08-06 18:12:37 +08004950 if (ret < 0) {
4951 btrfs_abort_transaction(trans, ret);
4952 btrfs_end_transaction(trans);
4953 } else {
4954 ret = btrfs_commit_transaction(trans);
4955 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004956done:
4957 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004958 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004959 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004960 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08004961 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01004962 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004963 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004964 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004965 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004966 return ret;
4967}
4968
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004969static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004970 struct btrfs_key *key,
4971 struct btrfs_chunk *chunk, int item_size)
4972{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004973 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004974 struct btrfs_disk_key disk_key;
4975 u32 array_size;
4976 u8 *ptr;
4977
Filipe Manana79bd3712021-06-29 14:43:06 +01004978 lockdep_assert_held(&fs_info->chunk_mutex);
4979
Chris Mason0b86a832008-03-24 15:01:56 -04004980 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004981 if (array_size + item_size + sizeof(disk_key)
Filipe Manana79bd3712021-06-29 14:43:06 +01004982 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
Chris Mason0b86a832008-03-24 15:01:56 -04004983 return -EFBIG;
4984
4985 ptr = super_copy->sys_chunk_array + array_size;
4986 btrfs_cpu_key_to_disk(&disk_key, key);
4987 memcpy(ptr, &disk_key, sizeof(disk_key));
4988 ptr += sizeof(disk_key);
4989 memcpy(ptr, chunk, item_size);
4990 item_size += sizeof(disk_key);
4991 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004992
Chris Mason0b86a832008-03-24 15:01:56 -04004993 return 0;
4994}
4995
Miao Xieb2117a32011-01-05 10:07:28 +00004996/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004997 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004998 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004999static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00005000{
Arne Jansen73c5de02011-04-12 12:07:57 +02005001 const struct btrfs_device_info *di_a = a;
5002 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00005003
Arne Jansen73c5de02011-04-12 12:07:57 +02005004 if (di_a->max_avail > di_b->max_avail)
5005 return -1;
5006 if (di_a->max_avail < di_b->max_avail)
5007 return 1;
5008 if (di_a->total_avail > di_b->total_avail)
5009 return -1;
5010 if (di_a->total_avail < di_b->total_avail)
5011 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00005012 return 0;
5013}
5014
David Woodhouse53b381b2013-01-29 18:40:14 -05005015static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
5016{
Zhao Leiffe2d202015-01-20 15:11:44 +08005017 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05005018 return;
5019
Miao Xieceda0862013-04-11 10:30:16 +00005020 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05005021}
5022
David Sterbacfbb8252018-07-10 18:15:05 +02005023static void check_raid1c34_incompat_flag(struct btrfs_fs_info *info, u64 type)
5024{
5025 if (!(type & (BTRFS_BLOCK_GROUP_RAID1C3 | BTRFS_BLOCK_GROUP_RAID1C4)))
5026 return;
5027
5028 btrfs_set_fs_incompat(info, RAID1C34);
5029}
5030
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005031/*
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005032 * Structure used internally for btrfs_create_chunk() function.
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005033 * Wraps needed parameters.
5034 */
5035struct alloc_chunk_ctl {
5036 u64 start;
5037 u64 type;
5038 /* Total number of stripes to allocate */
5039 int num_stripes;
5040 /* sub_stripes info for map */
5041 int sub_stripes;
5042 /* Stripes per device */
5043 int dev_stripes;
5044 /* Maximum number of devices to use */
5045 int devs_max;
5046 /* Minimum number of devices to use */
5047 int devs_min;
5048 /* ndevs has to be a multiple of this */
5049 int devs_increment;
5050 /* Number of copies */
5051 int ncopies;
5052 /* Number of stripes worth of bytes to store parity information */
5053 int nparity;
5054 u64 max_stripe_size;
5055 u64 max_chunk_size;
Naohiro Aota6aafb302020-02-25 12:56:15 +09005056 u64 dev_extent_min;
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005057 u64 stripe_size;
5058 u64 chunk_size;
5059 int ndevs;
5060};
5061
Naohiro Aota27c314d2020-02-25 12:56:11 +09005062static void init_alloc_chunk_ctl_policy_regular(
5063 struct btrfs_fs_devices *fs_devices,
5064 struct alloc_chunk_ctl *ctl)
5065{
5066 u64 type = ctl->type;
5067
5068 if (type & BTRFS_BLOCK_GROUP_DATA) {
5069 ctl->max_stripe_size = SZ_1G;
5070 ctl->max_chunk_size = BTRFS_MAX_DATA_CHUNK_SIZE;
5071 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
5072 /* For larger filesystems, use larger metadata chunks */
5073 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
5074 ctl->max_stripe_size = SZ_1G;
5075 else
5076 ctl->max_stripe_size = SZ_256M;
5077 ctl->max_chunk_size = ctl->max_stripe_size;
5078 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
5079 ctl->max_stripe_size = SZ_32M;
5080 ctl->max_chunk_size = 2 * ctl->max_stripe_size;
5081 ctl->devs_max = min_t(int, ctl->devs_max,
5082 BTRFS_MAX_DEVS_SYS_CHUNK);
5083 } else {
5084 BUG();
5085 }
5086
5087 /* We don't want a chunk larger than 10% of writable space */
5088 ctl->max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
5089 ctl->max_chunk_size);
Naohiro Aota6aafb302020-02-25 12:56:15 +09005090 ctl->dev_extent_min = BTRFS_STRIPE_LEN * ctl->dev_stripes;
Naohiro Aota27c314d2020-02-25 12:56:11 +09005091}
5092
Naohiro Aota1cd61212021-02-04 19:21:48 +09005093static void init_alloc_chunk_ctl_policy_zoned(
5094 struct btrfs_fs_devices *fs_devices,
5095 struct alloc_chunk_ctl *ctl)
5096{
5097 u64 zone_size = fs_devices->fs_info->zone_size;
5098 u64 limit;
5099 int min_num_stripes = ctl->devs_min * ctl->dev_stripes;
5100 int min_data_stripes = (min_num_stripes - ctl->nparity) / ctl->ncopies;
5101 u64 min_chunk_size = min_data_stripes * zone_size;
5102 u64 type = ctl->type;
5103
5104 ctl->max_stripe_size = zone_size;
5105 if (type & BTRFS_BLOCK_GROUP_DATA) {
5106 ctl->max_chunk_size = round_down(BTRFS_MAX_DATA_CHUNK_SIZE,
5107 zone_size);
5108 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
5109 ctl->max_chunk_size = ctl->max_stripe_size;
5110 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
5111 ctl->max_chunk_size = 2 * ctl->max_stripe_size;
5112 ctl->devs_max = min_t(int, ctl->devs_max,
5113 BTRFS_MAX_DEVS_SYS_CHUNK);
Arnd Bergmannbb05b292021-03-23 15:31:19 +01005114 } else {
5115 BUG();
Naohiro Aota1cd61212021-02-04 19:21:48 +09005116 }
5117
5118 /* We don't want a chunk larger than 10% of writable space */
5119 limit = max(round_down(div_factor(fs_devices->total_rw_bytes, 1),
5120 zone_size),
5121 min_chunk_size);
5122 ctl->max_chunk_size = min(limit, ctl->max_chunk_size);
5123 ctl->dev_extent_min = zone_size * ctl->dev_stripes;
5124}
5125
Naohiro Aota27c314d2020-02-25 12:56:11 +09005126static void init_alloc_chunk_ctl(struct btrfs_fs_devices *fs_devices,
5127 struct alloc_chunk_ctl *ctl)
5128{
5129 int index = btrfs_bg_flags_to_raid_index(ctl->type);
5130
5131 ctl->sub_stripes = btrfs_raid_array[index].sub_stripes;
5132 ctl->dev_stripes = btrfs_raid_array[index].dev_stripes;
5133 ctl->devs_max = btrfs_raid_array[index].devs_max;
5134 if (!ctl->devs_max)
5135 ctl->devs_max = BTRFS_MAX_DEVS(fs_devices->fs_info);
5136 ctl->devs_min = btrfs_raid_array[index].devs_min;
5137 ctl->devs_increment = btrfs_raid_array[index].devs_increment;
5138 ctl->ncopies = btrfs_raid_array[index].ncopies;
5139 ctl->nparity = btrfs_raid_array[index].nparity;
5140 ctl->ndevs = 0;
5141
5142 switch (fs_devices->chunk_alloc_policy) {
5143 case BTRFS_CHUNK_ALLOC_REGULAR:
5144 init_alloc_chunk_ctl_policy_regular(fs_devices, ctl);
5145 break;
Naohiro Aota1cd61212021-02-04 19:21:48 +09005146 case BTRFS_CHUNK_ALLOC_ZONED:
5147 init_alloc_chunk_ctl_policy_zoned(fs_devices, ctl);
5148 break;
Naohiro Aota27c314d2020-02-25 12:56:11 +09005149 default:
5150 BUG();
5151 }
5152}
5153
Naohiro Aota560156c2020-02-25 12:56:12 +09005154static int gather_device_info(struct btrfs_fs_devices *fs_devices,
5155 struct alloc_chunk_ctl *ctl,
5156 struct btrfs_device_info *devices_info)
5157{
5158 struct btrfs_fs_info *info = fs_devices->fs_info;
5159 struct btrfs_device *device;
5160 u64 total_avail;
5161 u64 dev_extent_want = ctl->max_stripe_size * ctl->dev_stripes;
Naohiro Aota560156c2020-02-25 12:56:12 +09005162 int ret;
5163 int ndevs = 0;
5164 u64 max_avail;
5165 u64 dev_offset;
5166
5167 /*
5168 * in the first pass through the devices list, we gather information
5169 * about the available holes on each device.
5170 */
5171 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
5172 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
5173 WARN(1, KERN_ERR
5174 "BTRFS: read-only device in alloc_list\n");
5175 continue;
5176 }
5177
5178 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
5179 &device->dev_state) ||
5180 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
5181 continue;
5182
5183 if (device->total_bytes > device->bytes_used)
5184 total_avail = device->total_bytes - device->bytes_used;
5185 else
5186 total_avail = 0;
5187
5188 /* If there is no space on this device, skip it. */
Naohiro Aota6aafb302020-02-25 12:56:15 +09005189 if (total_avail < ctl->dev_extent_min)
Naohiro Aota560156c2020-02-25 12:56:12 +09005190 continue;
5191
5192 ret = find_free_dev_extent(device, dev_extent_want, &dev_offset,
5193 &max_avail);
5194 if (ret && ret != -ENOSPC)
5195 return ret;
5196
5197 if (ret == 0)
5198 max_avail = dev_extent_want;
5199
Naohiro Aota6aafb302020-02-25 12:56:15 +09005200 if (max_avail < ctl->dev_extent_min) {
Naohiro Aota560156c2020-02-25 12:56:12 +09005201 if (btrfs_test_opt(info, ENOSPC_DEBUG))
5202 btrfs_debug(info,
5203 "%s: devid %llu has no free space, have=%llu want=%llu",
5204 __func__, device->devid, max_avail,
Naohiro Aota6aafb302020-02-25 12:56:15 +09005205 ctl->dev_extent_min);
Naohiro Aota560156c2020-02-25 12:56:12 +09005206 continue;
5207 }
5208
5209 if (ndevs == fs_devices->rw_devices) {
5210 WARN(1, "%s: found more than %llu devices\n",
5211 __func__, fs_devices->rw_devices);
5212 break;
5213 }
5214 devices_info[ndevs].dev_offset = dev_offset;
5215 devices_info[ndevs].max_avail = max_avail;
5216 devices_info[ndevs].total_avail = total_avail;
5217 devices_info[ndevs].dev = device;
5218 ++ndevs;
5219 }
5220 ctl->ndevs = ndevs;
5221
5222 /*
5223 * now sort the devices by hole size / available space
5224 */
5225 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
5226 btrfs_cmp_device_info, NULL);
5227
5228 return 0;
5229}
5230
Naohiro Aota5badf512020-02-25 12:56:13 +09005231static int decide_stripe_size_regular(struct alloc_chunk_ctl *ctl,
5232 struct btrfs_device_info *devices_info)
5233{
5234 /* Number of stripes that count for block group size */
5235 int data_stripes;
5236
5237 /*
5238 * The primary goal is to maximize the number of stripes, so use as
5239 * many devices as possible, even if the stripes are not maximum sized.
5240 *
5241 * The DUP profile stores more than one stripe per device, the
5242 * max_avail is the total size so we have to adjust.
5243 */
5244 ctl->stripe_size = div_u64(devices_info[ctl->ndevs - 1].max_avail,
5245 ctl->dev_stripes);
5246 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5247
5248 /* This will have to be fixed for RAID1 and RAID10 over more drives */
5249 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5250
5251 /*
5252 * Use the number of data stripes to figure out how big this chunk is
5253 * really going to be in terms of logical address space, and compare
5254 * that answer with the max chunk size. If it's higher, we try to
5255 * reduce stripe_size.
5256 */
5257 if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) {
5258 /*
5259 * Reduce stripe_size, round it up to a 16MB boundary again and
5260 * then use it, unless it ends up being even bigger than the
5261 * previous value we had already.
5262 */
5263 ctl->stripe_size = min(round_up(div_u64(ctl->max_chunk_size,
5264 data_stripes), SZ_16M),
5265 ctl->stripe_size);
5266 }
5267
5268 /* Align to BTRFS_STRIPE_LEN */
5269 ctl->stripe_size = round_down(ctl->stripe_size, BTRFS_STRIPE_LEN);
5270 ctl->chunk_size = ctl->stripe_size * data_stripes;
5271
5272 return 0;
5273}
5274
Naohiro Aota1cd61212021-02-04 19:21:48 +09005275static int decide_stripe_size_zoned(struct alloc_chunk_ctl *ctl,
5276 struct btrfs_device_info *devices_info)
5277{
5278 u64 zone_size = devices_info[0].dev->zone_info->zone_size;
5279 /* Number of stripes that count for block group size */
5280 int data_stripes;
5281
5282 /*
5283 * It should hold because:
5284 * dev_extent_min == dev_extent_want == zone_size * dev_stripes
5285 */
5286 ASSERT(devices_info[ctl->ndevs - 1].max_avail == ctl->dev_extent_min);
5287
5288 ctl->stripe_size = zone_size;
5289 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5290 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5291
5292 /* stripe_size is fixed in zoned filesysmte. Reduce ndevs instead. */
5293 if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) {
5294 ctl->ndevs = div_u64(div_u64(ctl->max_chunk_size * ctl->ncopies,
5295 ctl->stripe_size) + ctl->nparity,
5296 ctl->dev_stripes);
5297 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5298 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5299 ASSERT(ctl->stripe_size * data_stripes <= ctl->max_chunk_size);
5300 }
5301
5302 ctl->chunk_size = ctl->stripe_size * data_stripes;
5303
5304 return 0;
5305}
5306
Naohiro Aota5badf512020-02-25 12:56:13 +09005307static int decide_stripe_size(struct btrfs_fs_devices *fs_devices,
5308 struct alloc_chunk_ctl *ctl,
5309 struct btrfs_device_info *devices_info)
5310{
5311 struct btrfs_fs_info *info = fs_devices->fs_info;
5312
5313 /*
5314 * Round down to number of usable stripes, devs_increment can be any
5315 * number so we can't use round_down() that requires power of 2, while
5316 * rounddown is safe.
5317 */
5318 ctl->ndevs = rounddown(ctl->ndevs, ctl->devs_increment);
5319
5320 if (ctl->ndevs < ctl->devs_min) {
5321 if (btrfs_test_opt(info, ENOSPC_DEBUG)) {
5322 btrfs_debug(info,
5323 "%s: not enough devices with free space: have=%d minimum required=%d",
5324 __func__, ctl->ndevs, ctl->devs_min);
5325 }
5326 return -ENOSPC;
5327 }
5328
5329 ctl->ndevs = min(ctl->ndevs, ctl->devs_max);
5330
5331 switch (fs_devices->chunk_alloc_policy) {
5332 case BTRFS_CHUNK_ALLOC_REGULAR:
5333 return decide_stripe_size_regular(ctl, devices_info);
Naohiro Aota1cd61212021-02-04 19:21:48 +09005334 case BTRFS_CHUNK_ALLOC_ZONED:
5335 return decide_stripe_size_zoned(ctl, devices_info);
Naohiro Aota5badf512020-02-25 12:56:13 +09005336 default:
5337 BUG();
5338 }
5339}
5340
Filipe Manana79bd3712021-06-29 14:43:06 +01005341static struct btrfs_block_group *create_chunk(struct btrfs_trans_handle *trans,
Naohiro Aotadce580c2020-02-25 12:56:14 +09005342 struct alloc_chunk_ctl *ctl,
5343 struct btrfs_device_info *devices_info)
5344{
5345 struct btrfs_fs_info *info = trans->fs_info;
5346 struct map_lookup *map = NULL;
5347 struct extent_map_tree *em_tree;
Filipe Manana79bd3712021-06-29 14:43:06 +01005348 struct btrfs_block_group *block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005349 struct extent_map *em;
5350 u64 start = ctl->start;
5351 u64 type = ctl->type;
5352 int ret;
5353 int i;
5354 int j;
5355
5356 map = kmalloc(map_lookup_size(ctl->num_stripes), GFP_NOFS);
5357 if (!map)
Filipe Manana79bd3712021-06-29 14:43:06 +01005358 return ERR_PTR(-ENOMEM);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005359 map->num_stripes = ctl->num_stripes;
5360
5361 for (i = 0; i < ctl->ndevs; ++i) {
5362 for (j = 0; j < ctl->dev_stripes; ++j) {
5363 int s = i * ctl->dev_stripes + j;
5364 map->stripes[s].dev = devices_info[i].dev;
5365 map->stripes[s].physical = devices_info[i].dev_offset +
5366 j * ctl->stripe_size;
5367 }
5368 }
5369 map->stripe_len = BTRFS_STRIPE_LEN;
5370 map->io_align = BTRFS_STRIPE_LEN;
5371 map->io_width = BTRFS_STRIPE_LEN;
5372 map->type = type;
5373 map->sub_stripes = ctl->sub_stripes;
5374
5375 trace_btrfs_chunk_alloc(info, map, start, ctl->chunk_size);
5376
5377 em = alloc_extent_map();
5378 if (!em) {
5379 kfree(map);
Filipe Manana79bd3712021-06-29 14:43:06 +01005380 return ERR_PTR(-ENOMEM);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005381 }
5382 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
5383 em->map_lookup = map;
5384 em->start = start;
5385 em->len = ctl->chunk_size;
5386 em->block_start = 0;
5387 em->block_len = em->len;
5388 em->orig_block_len = ctl->stripe_size;
5389
5390 em_tree = &info->mapping_tree;
5391 write_lock(&em_tree->lock);
5392 ret = add_extent_mapping(em_tree, em, 0);
5393 if (ret) {
5394 write_unlock(&em_tree->lock);
5395 free_extent_map(em);
Filipe Manana79bd3712021-06-29 14:43:06 +01005396 return ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005397 }
5398 write_unlock(&em_tree->lock);
5399
Filipe Manana79bd3712021-06-29 14:43:06 +01005400 block_group = btrfs_make_block_group(trans, 0, type, start, ctl->chunk_size);
5401 if (IS_ERR(block_group))
Naohiro Aotadce580c2020-02-25 12:56:14 +09005402 goto error_del_extent;
5403
5404 for (i = 0; i < map->num_stripes; i++) {
5405 struct btrfs_device *dev = map->stripes[i].dev;
5406
5407 btrfs_device_set_bytes_used(dev,
5408 dev->bytes_used + ctl->stripe_size);
5409 if (list_empty(&dev->post_commit_list))
5410 list_add_tail(&dev->post_commit_list,
5411 &trans->transaction->dev_update_list);
5412 }
5413
5414 atomic64_sub(ctl->stripe_size * map->num_stripes,
5415 &info->free_chunk_space);
5416
5417 free_extent_map(em);
5418 check_raid56_incompat_flag(info, type);
5419 check_raid1c34_incompat_flag(info, type);
5420
Filipe Manana79bd3712021-06-29 14:43:06 +01005421 return block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005422
5423error_del_extent:
5424 write_lock(&em_tree->lock);
5425 remove_extent_mapping(em_tree, em);
5426 write_unlock(&em_tree->lock);
5427
5428 /* One for our allocation */
5429 free_extent_map(em);
5430 /* One for the tree reference */
5431 free_extent_map(em);
5432
Filipe Manana79bd3712021-06-29 14:43:06 +01005433 return block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005434}
5435
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005436struct btrfs_block_group *btrfs_create_chunk(struct btrfs_trans_handle *trans,
Filipe Manana79bd3712021-06-29 14:43:06 +01005437 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00005438{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005439 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00005440 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Arne Jansen73c5de02011-04-12 12:07:57 +02005441 struct btrfs_device_info *devices_info = NULL;
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005442 struct alloc_chunk_ctl ctl;
Filipe Manana79bd3712021-06-29 14:43:06 +01005443 struct btrfs_block_group *block_group;
Miao Xieb2117a32011-01-05 10:07:28 +00005444 int ret;
Miao Xieb2117a32011-01-05 10:07:28 +00005445
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005446 lockdep_assert_held(&info->chunk_mutex);
5447
Naohiro Aotab25c19f2020-02-25 12:56:07 +09005448 if (!alloc_profile_is_valid(type, 0)) {
5449 ASSERT(0);
Filipe Manana79bd3712021-06-29 14:43:06 +01005450 return ERR_PTR(-EINVAL);
Naohiro Aotab25c19f2020-02-25 12:56:07 +09005451 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005452
Qu Wenruo4117f202018-01-22 13:50:54 +08005453 if (list_empty(&fs_devices->alloc_list)) {
5454 if (btrfs_test_opt(info, ENOSPC_DEBUG))
5455 btrfs_debug(info, "%s: no writable device", __func__);
Filipe Manana79bd3712021-06-29 14:43:06 +01005456 return ERR_PTR(-ENOSPC);
Qu Wenruo4117f202018-01-22 13:50:54 +08005457 }
Miao Xieb2117a32011-01-05 10:07:28 +00005458
Naohiro Aota27c314d2020-02-25 12:56:11 +09005459 if (!(type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
5460 btrfs_err(info, "invalid chunk type 0x%llx requested", type);
5461 ASSERT(0);
Filipe Manana79bd3712021-06-29 14:43:06 +01005462 return ERR_PTR(-EINVAL);
Arne Jansen73c5de02011-04-12 12:07:57 +02005463 }
5464
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005465 ctl.start = find_next_chunk(info);
Naohiro Aota27c314d2020-02-25 12:56:11 +09005466 ctl.type = type;
5467 init_alloc_chunk_ctl(fs_devices, &ctl);
Miao Xieb2117a32011-01-05 10:07:28 +00005468
David Sterba31e818f2015-02-20 18:00:26 +01005469 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00005470 GFP_NOFS);
5471 if (!devices_info)
Filipe Manana79bd3712021-06-29 14:43:06 +01005472 return ERR_PTR(-ENOMEM);
Miao Xieb2117a32011-01-05 10:07:28 +00005473
Naohiro Aota560156c2020-02-25 12:56:12 +09005474 ret = gather_device_info(fs_devices, &ctl, devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005475 if (ret < 0) {
5476 block_group = ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005477 goto out;
Filipe Manana79bd3712021-06-29 14:43:06 +01005478 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005479
Naohiro Aota5badf512020-02-25 12:56:13 +09005480 ret = decide_stripe_size(fs_devices, &ctl, devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005481 if (ret < 0) {
5482 block_group = ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005483 goto out;
Filipe Manana79bd3712021-06-29 14:43:06 +01005484 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005485
Filipe Manana79bd3712021-06-29 14:43:06 +01005486 block_group = create_chunk(trans, &ctl, devices_info);
Chris Mason9b3f68b2008-04-18 10:29:51 -04005487
Naohiro Aotadce580c2020-02-25 12:56:14 +09005488out:
Miao Xieb2117a32011-01-05 10:07:28 +00005489 kfree(devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005490 return block_group;
Yan Zheng2b820322008-11-17 21:11:30 -05005491}
5492
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005493/*
Filipe Manana79bd3712021-06-29 14:43:06 +01005494 * This function, btrfs_chunk_alloc_add_chunk_item(), typically belongs to the
5495 * phase 1 of chunk allocation. It belongs to phase 2 only when allocating system
5496 * chunks.
5497 *
5498 * See the comment at btrfs_chunk_alloc() for details about the chunk allocation
5499 * phases.
5500 */
5501int btrfs_chunk_alloc_add_chunk_item(struct btrfs_trans_handle *trans,
5502 struct btrfs_block_group *bg)
5503{
5504 struct btrfs_fs_info *fs_info = trans->fs_info;
5505 struct btrfs_root *extent_root = fs_info->extent_root;
5506 struct btrfs_root *chunk_root = fs_info->chunk_root;
5507 struct btrfs_key key;
5508 struct btrfs_chunk *chunk;
5509 struct btrfs_stripe *stripe;
5510 struct extent_map *em;
5511 struct map_lookup *map;
5512 size_t item_size;
5513 int i;
5514 int ret;
5515
5516 /*
5517 * We take the chunk_mutex for 2 reasons:
5518 *
5519 * 1) Updates and insertions in the chunk btree must be done while holding
5520 * the chunk_mutex, as well as updating the system chunk array in the
5521 * superblock. See the comment on top of btrfs_chunk_alloc() for the
5522 * details;
5523 *
5524 * 2) To prevent races with the final phase of a device replace operation
5525 * that replaces the device object associated with the map's stripes,
5526 * because the device object's id can change at any time during that
5527 * final phase of the device replace operation
5528 * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the
5529 * replaced device and then see it with an ID of BTRFS_DEV_REPLACE_DEVID,
5530 * which would cause a failure when updating the device item, which does
5531 * not exists, or persisting a stripe of the chunk item with such ID.
5532 * Here we can't use the device_list_mutex because our caller already
5533 * has locked the chunk_mutex, and the final phase of device replace
5534 * acquires both mutexes - first the device_list_mutex and then the
5535 * chunk_mutex. Using any of those two mutexes protects us from a
5536 * concurrent device replace.
5537 */
5538 lockdep_assert_held(&fs_info->chunk_mutex);
5539
5540 em = btrfs_get_chunk_map(fs_info, bg->start, bg->length);
5541 if (IS_ERR(em)) {
5542 ret = PTR_ERR(em);
5543 btrfs_abort_transaction(trans, ret);
5544 return ret;
5545 }
5546
5547 map = em->map_lookup;
5548 item_size = btrfs_chunk_item_size(map->num_stripes);
5549
5550 chunk = kzalloc(item_size, GFP_NOFS);
5551 if (!chunk) {
5552 ret = -ENOMEM;
5553 btrfs_abort_transaction(trans, ret);
Filipe Manana50460e32015-11-20 10:42:47 +00005554 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005555 }
5556
Filipe Manana79bd3712021-06-29 14:43:06 +01005557 for (i = 0; i < map->num_stripes; i++) {
5558 struct btrfs_device *device = map->stripes[i].dev;
5559
5560 ret = btrfs_update_device(trans, device);
5561 if (ret)
5562 goto out;
5563 }
5564
Yan Zheng2b820322008-11-17 21:11:30 -05005565 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04005566 for (i = 0; i < map->num_stripes; i++) {
Filipe Manana79bd3712021-06-29 14:43:06 +01005567 struct btrfs_device *device = map->stripes[i].dev;
5568 const u64 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05005569
5570 btrfs_set_stack_stripe_devid(stripe, device->devid);
5571 btrfs_set_stack_stripe_offset(stripe, dev_offset);
5572 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
5573 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05005574 }
5575
Filipe Manana79bd3712021-06-29 14:43:06 +01005576 btrfs_set_stack_chunk_length(chunk, bg->length);
Yan Zheng2b820322008-11-17 21:11:30 -05005577 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
5578 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
5579 btrfs_set_stack_chunk_type(chunk, map->type);
5580 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
5581 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
5582 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005583 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05005584 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
5585
5586 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
5587 key.type = BTRFS_CHUNK_ITEM_KEY;
Filipe Manana79bd3712021-06-29 14:43:06 +01005588 key.offset = bg->start;
Yan Zheng2b820322008-11-17 21:11:30 -05005589
5590 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Filipe Manana79bd3712021-06-29 14:43:06 +01005591 if (ret)
5592 goto out;
5593
5594 bg->chunk_item_inserted = 1;
5595
5596 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005597 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Filipe Manana79bd3712021-06-29 14:43:06 +01005598 if (ret)
5599 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005600 }
liubo1abe9b82011-03-24 11:18:59 +00005601
Josef Bacik6df9a952013-06-27 13:22:46 -04005602out:
Yan Zheng2b820322008-11-17 21:11:30 -05005603 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005604 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005605 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005606}
5607
David Sterba6f8e0fc2019-03-20 16:29:13 +01005608static noinline int init_first_rw_device(struct btrfs_trans_handle *trans)
Yan Zheng2b820322008-11-17 21:11:30 -05005609{
David Sterba6f8e0fc2019-03-20 16:29:13 +01005610 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng2b820322008-11-17 21:11:30 -05005611 u64 alloc_profile;
Filipe Manana79bd3712021-06-29 14:43:06 +01005612 struct btrfs_block_group *meta_bg;
5613 struct btrfs_block_group *sys_bg;
5614
5615 /*
5616 * When adding a new device for sprouting, the seed device is read-only
5617 * so we must first allocate a metadata and a system chunk. But before
5618 * adding the block group items to the extent, device and chunk btrees,
5619 * we must first:
5620 *
5621 * 1) Create both chunks without doing any changes to the btrees, as
5622 * otherwise we would get -ENOSPC since the block groups from the
5623 * seed device are read-only;
5624 *
5625 * 2) Add the device item for the new sprout device - finishing the setup
5626 * of a new block group requires updating the device item in the chunk
5627 * btree, so it must exist when we attempt to do it. The previous step
5628 * ensures this does not fail with -ENOSPC.
5629 *
5630 * After that we can add the block group items to their btrees:
5631 * update existing device item in the chunk btree, add a new block group
5632 * item to the extent btree, add a new chunk item to the chunk btree and
5633 * finally add the new device extent items to the devices btree.
5634 */
Yan Zheng2b820322008-11-17 21:11:30 -05005635
Jeff Mahoney1b868262017-05-17 11:38:35 -04005636 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005637 meta_bg = btrfs_create_chunk(trans, alloc_profile);
Filipe Manana79bd3712021-06-29 14:43:06 +01005638 if (IS_ERR(meta_bg))
5639 return PTR_ERR(meta_bg);
Yan Zheng2b820322008-11-17 21:11:30 -05005640
Jeff Mahoney1b868262017-05-17 11:38:35 -04005641 alloc_profile = btrfs_system_alloc_profile(fs_info);
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005642 sys_bg = btrfs_create_chunk(trans, alloc_profile);
Filipe Manana79bd3712021-06-29 14:43:06 +01005643 if (IS_ERR(sys_bg))
5644 return PTR_ERR(sys_bg);
5645
5646 return 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005647}
5648
Miao Xied20983b2014-07-03 18:22:13 +08005649static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5650{
David Sterbafc9a2ac2019-05-17 11:43:22 +02005651 const int index = btrfs_bg_flags_to_raid_index(map->type);
Miao Xied20983b2014-07-03 18:22:13 +08005652
David Sterbafc9a2ac2019-05-17 11:43:22 +02005653 return btrfs_raid_array[index].tolerated_failures;
Yan Zheng2b820322008-11-17 21:11:30 -05005654}
5655
Anand Jaina09f23c2021-08-24 13:27:42 +08005656bool btrfs_chunk_writeable(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005657{
5658 struct extent_map *em;
5659 struct map_lookup *map;
Miao Xied20983b2014-07-03 18:22:13 +08005660 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005661 int i;
Anand Jaina09f23c2021-08-24 13:27:42 +08005662 bool ret = true;
Yan Zheng2b820322008-11-17 21:11:30 -05005663
Omar Sandoval60ca8422018-05-16 16:34:31 -07005664 em = btrfs_get_chunk_map(fs_info, chunk_offset, 1);
Liu Bo592d92e2017-03-14 13:33:55 -07005665 if (IS_ERR(em))
Anand Jaina09f23c2021-08-24 13:27:42 +08005666 return false;
Yan Zheng2b820322008-11-17 21:11:30 -05005667
Jeff Mahoney95617d62015-06-03 10:55:48 -04005668 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005669 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005670 if (test_bit(BTRFS_DEV_STATE_MISSING,
5671 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005672 miss_ndevs++;
5673 continue;
5674 }
Anand Jainebbede42017-12-04 12:54:52 +08005675 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5676 &map->stripes[i].dev->dev_state)) {
Anand Jaina09f23c2021-08-24 13:27:42 +08005677 ret = false;
Miao Xied20983b2014-07-03 18:22:13 +08005678 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005679 }
5680 }
Miao Xied20983b2014-07-03 18:22:13 +08005681
5682 /*
Anand Jaina09f23c2021-08-24 13:27:42 +08005683 * If the number of missing devices is larger than max errors, we can
5684 * not write the data into that chunk successfully.
Miao Xied20983b2014-07-03 18:22:13 +08005685 */
5686 if (miss_ndevs > btrfs_chunk_max_errors(map))
Anand Jaina09f23c2021-08-24 13:27:42 +08005687 ret = false;
Miao Xied20983b2014-07-03 18:22:13 +08005688end:
Yan Zheng2b820322008-11-17 21:11:30 -05005689 free_extent_map(em);
Anand Jaina09f23c2021-08-24 13:27:42 +08005690 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005691}
5692
David Sterbac8bf1b62019-05-17 11:43:17 +02005693void btrfs_mapping_tree_free(struct extent_map_tree *tree)
Chris Mason0b86a832008-03-24 15:01:56 -04005694{
5695 struct extent_map *em;
5696
Chris Masond3977122009-01-05 21:25:51 -05005697 while (1) {
David Sterbac8bf1b62019-05-17 11:43:17 +02005698 write_lock(&tree->lock);
5699 em = lookup_extent_mapping(tree, 0, (u64)-1);
Chris Mason0b86a832008-03-24 15:01:56 -04005700 if (em)
David Sterbac8bf1b62019-05-17 11:43:17 +02005701 remove_extent_mapping(tree, em);
5702 write_unlock(&tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005703 if (!em)
5704 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005705 /* once for us */
5706 free_extent_map(em);
5707 /* once for the tree */
5708 free_extent_map(em);
5709 }
5710}
5711
Stefan Behrens5d964052012-11-05 14:59:07 +01005712int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005713{
5714 struct extent_map *em;
5715 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005716 int ret;
5717
Omar Sandoval60ca8422018-05-16 16:34:31 -07005718 em = btrfs_get_chunk_map(fs_info, logical, len);
Liu Bo592d92e2017-03-14 13:33:55 -07005719 if (IS_ERR(em))
5720 /*
5721 * We could return errors for these cases, but that could get
5722 * ugly and we'd probably do the same thing which is just not do
5723 * anything else and exit, so return 1 so the callers don't try
5724 * to use other copies.
5725 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005726 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005727
Jeff Mahoney95617d62015-06-03 10:55:48 -04005728 map = em->map_lookup;
David Sterbac7369b32019-05-31 15:39:31 +02005729 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1_MASK))
Chris Masonf1885912008-04-09 16:28:12 -04005730 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005731 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5732 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005733 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5734 ret = 2;
5735 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005736 /*
5737 * There could be two corrupted data stripes, we need
5738 * to loop retry in order to rebuild the correct data.
Nikolay Borisove7e02092018-06-20 15:48:55 +03005739 *
Liu Bo8810f752018-01-02 13:36:41 -07005740 * Fail a stripe at a time on every retry except the
5741 * stripe under reconstruction.
5742 */
5743 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005744 else
5745 ret = 1;
5746 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005747
David Sterbacb5583d2018-09-07 16:11:23 +02005748 down_read(&fs_info->dev_replace.rwsem);
Liu Bo6fad8232017-03-14 13:33:59 -07005749 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5750 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005751 ret++;
David Sterbacb5583d2018-09-07 16:11:23 +02005752 up_read(&fs_info->dev_replace.rwsem);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005753
Chris Masonf1885912008-04-09 16:28:12 -04005754 return ret;
5755}
5756
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005757unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005758 u64 logical)
5759{
5760 struct extent_map *em;
5761 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005762 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005763
Omar Sandoval60ca8422018-05-16 16:34:31 -07005764 em = btrfs_get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005765
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005766 if (!WARN_ON(IS_ERR(em))) {
5767 map = em->map_lookup;
5768 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5769 len = map->stripe_len * nr_data_stripes(map);
5770 free_extent_map(em);
5771 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005772 return len;
5773}
5774
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005775int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005776{
5777 struct extent_map *em;
5778 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005779 int ret = 0;
5780
Omar Sandoval60ca8422018-05-16 16:34:31 -07005781 em = btrfs_get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005782
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005783 if(!WARN_ON(IS_ERR(em))) {
5784 map = em->map_lookup;
5785 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5786 ret = 1;
5787 free_extent_map(em);
5788 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005789 return ret;
5790}
5791
Stefan Behrens30d98612012-11-06 14:52:18 +01005792static int find_live_mirror(struct btrfs_fs_info *fs_info,
Anand Jain99f92a72018-03-14 16:29:12 +08005793 struct map_lookup *map, int first,
Anand Jain8ba0ae72018-03-14 16:29:13 +08005794 int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005795{
5796 int i;
Anand Jain99f92a72018-03-14 16:29:12 +08005797 int num_stripes;
Anand Jain8ba0ae72018-03-14 16:29:13 +08005798 int preferred_mirror;
Stefan Behrens30d98612012-11-06 14:52:18 +01005799 int tolerance;
5800 struct btrfs_device *srcdev;
5801
Anand Jain99f92a72018-03-14 16:29:12 +08005802 ASSERT((map->type &
David Sterbac7369b32019-05-31 15:39:31 +02005803 (BTRFS_BLOCK_GROUP_RAID1_MASK | BTRFS_BLOCK_GROUP_RAID10)));
Anand Jain99f92a72018-03-14 16:29:12 +08005804
5805 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5806 num_stripes = map->sub_stripes;
5807 else
5808 num_stripes = map->num_stripes;
5809
Anand Jain33fd2f72020-10-28 21:14:46 +08005810 switch (fs_info->fs_devices->read_policy) {
5811 default:
5812 /* Shouldn't happen, just warn and use pid instead of failing */
5813 btrfs_warn_rl(fs_info,
5814 "unknown read_policy type %u, reset to pid",
5815 fs_info->fs_devices->read_policy);
5816 fs_info->fs_devices->read_policy = BTRFS_READ_POLICY_PID;
5817 fallthrough;
5818 case BTRFS_READ_POLICY_PID:
5819 preferred_mirror = first + (current->pid % num_stripes);
5820 break;
5821 }
Anand Jain8ba0ae72018-03-14 16:29:13 +08005822
Stefan Behrens30d98612012-11-06 14:52:18 +01005823 if (dev_replace_is_ongoing &&
5824 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5825 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5826 srcdev = fs_info->dev_replace.srcdev;
5827 else
5828 srcdev = NULL;
5829
5830 /*
5831 * try to avoid the drive that is the source drive for a
5832 * dev-replace procedure, only choose it if no other non-missing
5833 * mirror is available
5834 */
5835 for (tolerance = 0; tolerance < 2; tolerance++) {
Anand Jain8ba0ae72018-03-14 16:29:13 +08005836 if (map->stripes[preferred_mirror].dev->bdev &&
5837 (tolerance || map->stripes[preferred_mirror].dev != srcdev))
5838 return preferred_mirror;
Anand Jain99f92a72018-03-14 16:29:12 +08005839 for (i = first; i < first + num_stripes; i++) {
Stefan Behrens30d98612012-11-06 14:52:18 +01005840 if (map->stripes[i].dev->bdev &&
5841 (tolerance || map->stripes[i].dev != srcdev))
5842 return i;
5843 }
Chris Masondfe25022008-05-13 13:46:40 -04005844 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005845
Chris Masondfe25022008-05-13 13:46:40 -04005846 /* we couldn't find one that doesn't fail. Just return something
5847 * and the io error handling code will clean up eventually
5848 */
Anand Jain8ba0ae72018-03-14 16:29:13 +08005849 return preferred_mirror;
Chris Masondfe25022008-05-13 13:46:40 -04005850}
5851
David Woodhouse53b381b2013-01-29 18:40:14 -05005852/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Qu Wenruo4c664612021-09-15 15:17:16 +08005853static void sort_parity_stripes(struct btrfs_io_context *bioc, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005854{
David Woodhouse53b381b2013-01-29 18:40:14 -05005855 int i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005856 int again = 1;
5857
5858 while (again) {
5859 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005860 for (i = 0; i < num_stripes - 1; i++) {
David Sterbaeeb6f172019-11-28 15:31:17 +01005861 /* Swap if parity is on a smaller index */
Qu Wenruo4c664612021-09-15 15:17:16 +08005862 if (bioc->raid_map[i] > bioc->raid_map[i + 1]) {
5863 swap(bioc->stripes[i], bioc->stripes[i + 1]);
5864 swap(bioc->raid_map[i], bioc->raid_map[i + 1]);
David Woodhouse53b381b2013-01-29 18:40:14 -05005865 again = 1;
5866 }
5867 }
5868 }
5869}
5870
Qu Wenruo731ccf12021-09-23 14:00:08 +08005871static struct btrfs_io_context *alloc_btrfs_io_context(struct btrfs_fs_info *fs_info,
5872 int total_stripes,
Qu Wenruo4c664612021-09-15 15:17:16 +08005873 int real_stripes)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005874{
Qu Wenruo4c664612021-09-15 15:17:16 +08005875 struct btrfs_io_context *bioc = kzalloc(
5876 /* The size of btrfs_io_context */
5877 sizeof(struct btrfs_io_context) +
5878 /* Plus the variable array for the stripes */
5879 sizeof(struct btrfs_io_stripe) * (total_stripes) +
5880 /* Plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005881 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005882 /*
Qu Wenruo4c664612021-09-15 15:17:16 +08005883 * Plus the raid_map, which includes both the tgt dev
5884 * and the stripes.
Chris Masone57cf212015-02-19 17:51:39 -08005885 */
5886 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005887 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005888
Qu Wenruo4c664612021-09-15 15:17:16 +08005889 atomic_set(&bioc->error, 0);
5890 refcount_set(&bioc->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005891
Qu Wenruo731ccf12021-09-23 14:00:08 +08005892 bioc->fs_info = fs_info;
Qu Wenruo4c664612021-09-15 15:17:16 +08005893 bioc->tgtdev_map = (int *)(bioc->stripes + total_stripes);
5894 bioc->raid_map = (u64 *)(bioc->tgtdev_map + real_stripes);
Nikolay Borisov608769a2020-07-02 16:46:41 +03005895
Qu Wenruo4c664612021-09-15 15:17:16 +08005896 return bioc;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005897}
5898
Qu Wenruo4c664612021-09-15 15:17:16 +08005899void btrfs_get_bioc(struct btrfs_io_context *bioc)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005900{
Qu Wenruo4c664612021-09-15 15:17:16 +08005901 WARN_ON(!refcount_read(&bioc->refs));
5902 refcount_inc(&bioc->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005903}
5904
Qu Wenruo4c664612021-09-15 15:17:16 +08005905void btrfs_put_bioc(struct btrfs_io_context *bioc)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005906{
Qu Wenruo4c664612021-09-15 15:17:16 +08005907 if (!bioc)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005908 return;
Qu Wenruo4c664612021-09-15 15:17:16 +08005909 if (refcount_dec_and_test(&bioc->refs))
5910 kfree(bioc);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005911}
5912
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005913/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5914/*
5915 * Please note that, discard won't be sent to target device of device
5916 * replace.
5917 */
5918static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005919 u64 logical, u64 *length_ret,
Qu Wenruo4c664612021-09-15 15:17:16 +08005920 struct btrfs_io_context **bioc_ret)
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005921{
5922 struct extent_map *em;
5923 struct map_lookup *map;
Qu Wenruo4c664612021-09-15 15:17:16 +08005924 struct btrfs_io_context *bioc;
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005925 u64 length = *length_ret;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005926 u64 offset;
5927 u64 stripe_nr;
5928 u64 stripe_nr_end;
5929 u64 stripe_end_offset;
5930 u64 stripe_cnt;
5931 u64 stripe_len;
5932 u64 stripe_offset;
5933 u64 num_stripes;
5934 u32 stripe_index;
5935 u32 factor = 0;
5936 u32 sub_stripes = 0;
5937 u64 stripes_per_dev = 0;
5938 u32 remaining_stripes = 0;
5939 u32 last_stripe = 0;
5940 int ret = 0;
5941 int i;
5942
Qu Wenruo4c664612021-09-15 15:17:16 +08005943 /* Discard always returns a bioc. */
5944 ASSERT(bioc_ret);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005945
Omar Sandoval60ca8422018-05-16 16:34:31 -07005946 em = btrfs_get_chunk_map(fs_info, logical, length);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005947 if (IS_ERR(em))
5948 return PTR_ERR(em);
5949
5950 map = em->map_lookup;
5951 /* we don't discard raid56 yet */
5952 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5953 ret = -EOPNOTSUPP;
5954 goto out;
5955 }
5956
5957 offset = logical - em->start;
Qu Wenruo2d974612019-10-23 21:57:26 +08005958 length = min_t(u64, em->start + em->len - logical, length);
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005959 *length_ret = length;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005960
5961 stripe_len = map->stripe_len;
5962 /*
5963 * stripe_nr counts the total number of stripes we have to stride
5964 * to get to this block
5965 */
5966 stripe_nr = div64_u64(offset, stripe_len);
5967
5968 /* stripe_offset is the offset of this block in its stripe */
5969 stripe_offset = offset - stripe_nr * stripe_len;
5970
5971 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005972 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005973 stripe_cnt = stripe_nr_end - stripe_nr;
5974 stripe_end_offset = stripe_nr_end * map->stripe_len -
5975 (offset + length);
5976 /*
5977 * after this, stripe_nr is the number of stripes on this
5978 * device we have to walk to find the data, and stripe_index is
5979 * the number of our device in the stripe array
5980 */
5981 num_stripes = 1;
5982 stripe_index = 0;
5983 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5984 BTRFS_BLOCK_GROUP_RAID10)) {
5985 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5986 sub_stripes = 1;
5987 else
5988 sub_stripes = map->sub_stripes;
5989
5990 factor = map->num_stripes / sub_stripes;
5991 num_stripes = min_t(u64, map->num_stripes,
5992 sub_stripes * stripe_cnt);
5993 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5994 stripe_index *= sub_stripes;
5995 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5996 &remaining_stripes);
5997 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5998 last_stripe *= sub_stripes;
David Sterbac7369b32019-05-31 15:39:31 +02005999 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1_MASK |
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006000 BTRFS_BLOCK_GROUP_DUP)) {
6001 num_stripes = map->num_stripes;
6002 } else {
6003 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6004 &stripe_index);
6005 }
6006
Qu Wenruo731ccf12021-09-23 14:00:08 +08006007 bioc = alloc_btrfs_io_context(fs_info, num_stripes, 0);
Qu Wenruo4c664612021-09-15 15:17:16 +08006008 if (!bioc) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006009 ret = -ENOMEM;
6010 goto out;
6011 }
6012
6013 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006014 bioc->stripes[i].physical =
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006015 map->stripes[stripe_index].physical +
6016 stripe_offset + stripe_nr * map->stripe_len;
Qu Wenruo4c664612021-09-15 15:17:16 +08006017 bioc->stripes[i].dev = map->stripes[stripe_index].dev;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006018
6019 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
6020 BTRFS_BLOCK_GROUP_RAID10)) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006021 bioc->stripes[i].length = stripes_per_dev *
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006022 map->stripe_len;
6023
6024 if (i / sub_stripes < remaining_stripes)
Qu Wenruo4c664612021-09-15 15:17:16 +08006025 bioc->stripes[i].length += map->stripe_len;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006026
6027 /*
6028 * Special for the first stripe and
6029 * the last stripe:
6030 *
6031 * |-------|...|-------|
6032 * |----------|
6033 * off end_off
6034 */
6035 if (i < sub_stripes)
Qu Wenruo4c664612021-09-15 15:17:16 +08006036 bioc->stripes[i].length -= stripe_offset;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006037
6038 if (stripe_index >= last_stripe &&
6039 stripe_index <= (last_stripe +
6040 sub_stripes - 1))
Qu Wenruo4c664612021-09-15 15:17:16 +08006041 bioc->stripes[i].length -= stripe_end_offset;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006042
6043 if (i == sub_stripes - 1)
6044 stripe_offset = 0;
6045 } else {
Qu Wenruo4c664612021-09-15 15:17:16 +08006046 bioc->stripes[i].length = length;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006047 }
6048
6049 stripe_index++;
6050 if (stripe_index == map->num_stripes) {
6051 stripe_index = 0;
6052 stripe_nr++;
6053 }
6054 }
6055
Qu Wenruo4c664612021-09-15 15:17:16 +08006056 *bioc_ret = bioc;
6057 bioc->map_type = map->type;
6058 bioc->num_stripes = num_stripes;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006059out:
6060 free_extent_map(em);
6061 return ret;
6062}
6063
Liu Bo5ab56092017-03-14 13:33:57 -07006064/*
6065 * In dev-replace case, for repair case (that's the only case where the mirror
6066 * is selected explicitly when calling btrfs_map_block), blocks left of the
6067 * left cursor can also be read from the target drive.
6068 *
6069 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
6070 * array of stripes.
6071 * For READ, it also needs to be supported using the same mirror number.
6072 *
6073 * If the requested block is not left of the left cursor, EIO is returned. This
6074 * can happen because btrfs_num_copies() returns one more in the dev-replace
6075 * case.
6076 */
6077static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
6078 u64 logical, u64 length,
6079 u64 srcdev_devid, int *mirror_num,
6080 u64 *physical)
6081{
Qu Wenruo4c664612021-09-15 15:17:16 +08006082 struct btrfs_io_context *bioc = NULL;
Liu Bo5ab56092017-03-14 13:33:57 -07006083 int num_stripes;
6084 int index_srcdev = 0;
6085 int found = 0;
6086 u64 physical_of_found = 0;
6087 int i;
6088 int ret = 0;
6089
6090 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
Qu Wenruo4c664612021-09-15 15:17:16 +08006091 logical, &length, &bioc, 0, 0);
Liu Bo5ab56092017-03-14 13:33:57 -07006092 if (ret) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006093 ASSERT(bioc == NULL);
Liu Bo5ab56092017-03-14 13:33:57 -07006094 return ret;
6095 }
6096
Qu Wenruo4c664612021-09-15 15:17:16 +08006097 num_stripes = bioc->num_stripes;
Liu Bo5ab56092017-03-14 13:33:57 -07006098 if (*mirror_num > num_stripes) {
6099 /*
6100 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
6101 * that means that the requested area is not left of the left
6102 * cursor
6103 */
Qu Wenruo4c664612021-09-15 15:17:16 +08006104 btrfs_put_bioc(bioc);
Liu Bo5ab56092017-03-14 13:33:57 -07006105 return -EIO;
6106 }
6107
6108 /*
6109 * process the rest of the function using the mirror_num of the source
6110 * drive. Therefore look it up first. At the end, patch the device
6111 * pointer to the one of the target drive.
6112 */
6113 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006114 if (bioc->stripes[i].dev->devid != srcdev_devid)
Liu Bo5ab56092017-03-14 13:33:57 -07006115 continue;
6116
6117 /*
6118 * In case of DUP, in order to keep it simple, only add the
6119 * mirror with the lowest physical address
6120 */
6121 if (found &&
Qu Wenruo4c664612021-09-15 15:17:16 +08006122 physical_of_found <= bioc->stripes[i].physical)
Liu Bo5ab56092017-03-14 13:33:57 -07006123 continue;
6124
6125 index_srcdev = i;
6126 found = 1;
Qu Wenruo4c664612021-09-15 15:17:16 +08006127 physical_of_found = bioc->stripes[i].physical;
Liu Bo5ab56092017-03-14 13:33:57 -07006128 }
6129
Qu Wenruo4c664612021-09-15 15:17:16 +08006130 btrfs_put_bioc(bioc);
Liu Bo5ab56092017-03-14 13:33:57 -07006131
6132 ASSERT(found);
6133 if (!found)
6134 return -EIO;
6135
6136 *mirror_num = index_srcdev + 1;
6137 *physical = physical_of_found;
6138 return ret;
6139}
6140
Naohiro Aota6143c232021-02-04 19:22:12 +09006141static bool is_block_group_to_copy(struct btrfs_fs_info *fs_info, u64 logical)
6142{
6143 struct btrfs_block_group *cache;
6144 bool ret;
6145
Naohiro Aotade17add2021-02-04 19:22:13 +09006146 /* Non zoned filesystem does not use "to_copy" flag */
Naohiro Aota6143c232021-02-04 19:22:12 +09006147 if (!btrfs_is_zoned(fs_info))
6148 return false;
6149
6150 cache = btrfs_lookup_block_group(fs_info, logical);
6151
6152 spin_lock(&cache->lock);
6153 ret = cache->to_copy;
6154 spin_unlock(&cache->lock);
6155
6156 btrfs_put_block_group(cache);
6157 return ret;
6158}
6159
Liu Bo73c0f222017-03-14 13:33:58 -07006160static void handle_ops_on_dev_replace(enum btrfs_map_op op,
Qu Wenruo4c664612021-09-15 15:17:16 +08006161 struct btrfs_io_context **bioc_ret,
Liu Bo73c0f222017-03-14 13:33:58 -07006162 struct btrfs_dev_replace *dev_replace,
Naohiro Aota6143c232021-02-04 19:22:12 +09006163 u64 logical,
Liu Bo73c0f222017-03-14 13:33:58 -07006164 int *num_stripes_ret, int *max_errors_ret)
6165{
Qu Wenruo4c664612021-09-15 15:17:16 +08006166 struct btrfs_io_context *bioc = *bioc_ret;
Liu Bo73c0f222017-03-14 13:33:58 -07006167 u64 srcdev_devid = dev_replace->srcdev->devid;
6168 int tgtdev_indexes = 0;
6169 int num_stripes = *num_stripes_ret;
6170 int max_errors = *max_errors_ret;
6171 int i;
6172
6173 if (op == BTRFS_MAP_WRITE) {
6174 int index_where_to_add;
6175
6176 /*
Naohiro Aota6143c232021-02-04 19:22:12 +09006177 * A block group which have "to_copy" set will eventually
6178 * copied by dev-replace process. We can avoid cloning IO here.
6179 */
6180 if (is_block_group_to_copy(dev_replace->srcdev->fs_info, logical))
6181 return;
6182
6183 /*
Liu Bo73c0f222017-03-14 13:33:58 -07006184 * duplicate the write operations while the dev replace
6185 * procedure is running. Since the copying of the old disk to
6186 * the new disk takes place at run time while the filesystem is
6187 * mounted writable, the regular write operations to the old
6188 * disk have to be duplicated to go to the new disk as well.
6189 *
6190 * Note that device->missing is handled by the caller, and that
6191 * the write to the old disk is already set up in the stripes
6192 * array.
6193 */
6194 index_where_to_add = num_stripes;
6195 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006196 if (bioc->stripes[i].dev->devid == srcdev_devid) {
Liu Bo73c0f222017-03-14 13:33:58 -07006197 /* write to new disk, too */
Qu Wenruo4c664612021-09-15 15:17:16 +08006198 struct btrfs_io_stripe *new =
6199 bioc->stripes + index_where_to_add;
6200 struct btrfs_io_stripe *old =
6201 bioc->stripes + i;
Liu Bo73c0f222017-03-14 13:33:58 -07006202
6203 new->physical = old->physical;
6204 new->length = old->length;
6205 new->dev = dev_replace->tgtdev;
Qu Wenruo4c664612021-09-15 15:17:16 +08006206 bioc->tgtdev_map[i] = index_where_to_add;
Liu Bo73c0f222017-03-14 13:33:58 -07006207 index_where_to_add++;
6208 max_errors++;
6209 tgtdev_indexes++;
6210 }
6211 }
6212 num_stripes = index_where_to_add;
6213 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
6214 int index_srcdev = 0;
6215 int found = 0;
6216 u64 physical_of_found = 0;
6217
6218 /*
6219 * During the dev-replace procedure, the target drive can also
6220 * be used to read data in case it is needed to repair a corrupt
6221 * block elsewhere. This is possible if the requested area is
6222 * left of the left cursor. In this area, the target drive is a
6223 * full copy of the source drive.
6224 */
6225 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006226 if (bioc->stripes[i].dev->devid == srcdev_devid) {
Liu Bo73c0f222017-03-14 13:33:58 -07006227 /*
6228 * In case of DUP, in order to keep it simple,
6229 * only add the mirror with the lowest physical
6230 * address
6231 */
6232 if (found &&
Qu Wenruo4c664612021-09-15 15:17:16 +08006233 physical_of_found <= bioc->stripes[i].physical)
Liu Bo73c0f222017-03-14 13:33:58 -07006234 continue;
6235 index_srcdev = i;
6236 found = 1;
Qu Wenruo4c664612021-09-15 15:17:16 +08006237 physical_of_found = bioc->stripes[i].physical;
Liu Bo73c0f222017-03-14 13:33:58 -07006238 }
6239 }
6240 if (found) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006241 struct btrfs_io_stripe *tgtdev_stripe =
6242 bioc->stripes + num_stripes;
Liu Bo73c0f222017-03-14 13:33:58 -07006243
6244 tgtdev_stripe->physical = physical_of_found;
6245 tgtdev_stripe->length =
Qu Wenruo4c664612021-09-15 15:17:16 +08006246 bioc->stripes[index_srcdev].length;
Liu Bo73c0f222017-03-14 13:33:58 -07006247 tgtdev_stripe->dev = dev_replace->tgtdev;
Qu Wenruo4c664612021-09-15 15:17:16 +08006248 bioc->tgtdev_map[index_srcdev] = num_stripes;
Liu Bo73c0f222017-03-14 13:33:58 -07006249
6250 tgtdev_indexes++;
6251 num_stripes++;
6252 }
6253 }
6254
6255 *num_stripes_ret = num_stripes;
6256 *max_errors_ret = max_errors;
Qu Wenruo4c664612021-09-15 15:17:16 +08006257 bioc->num_tgtdevs = tgtdev_indexes;
6258 *bioc_ret = bioc;
Liu Bo73c0f222017-03-14 13:33:58 -07006259}
6260
Liu Bo2b19a1f2017-03-14 13:34:00 -07006261static bool need_full_stripe(enum btrfs_map_op op)
6262{
6263 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
6264}
6265
Nikolay Borisov5f141122019-06-03 12:05:03 +03006266/*
Michal Rostecki42034312021-01-27 14:57:27 +01006267 * Calculate the geometry of a particular (address, len) tuple. This
6268 * information is used to calculate how big a particular bio can get before it
6269 * straddles a stripe.
Nikolay Borisov5f141122019-06-03 12:05:03 +03006270 *
Michal Rostecki42034312021-01-27 14:57:27 +01006271 * @fs_info: the filesystem
6272 * @em: mapping containing the logical extent
6273 * @op: type of operation - write or read
6274 * @logical: address that we want to figure out the geometry of
Michal Rostecki42034312021-01-27 14:57:27 +01006275 * @io_geom: pointer used to return values
Nikolay Borisov5f141122019-06-03 12:05:03 +03006276 *
6277 * Returns < 0 in case a chunk for the given logical address cannot be found,
6278 * usually shouldn't happen unless @logical is corrupted, 0 otherwise.
6279 */
Michal Rostecki42034312021-01-27 14:57:27 +01006280int btrfs_get_io_geometry(struct btrfs_fs_info *fs_info, struct extent_map *em,
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006281 enum btrfs_map_op op, u64 logical,
Michal Rostecki42034312021-01-27 14:57:27 +01006282 struct btrfs_io_geometry *io_geom)
Nikolay Borisov5f141122019-06-03 12:05:03 +03006283{
Nikolay Borisov5f141122019-06-03 12:05:03 +03006284 struct map_lookup *map;
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006285 u64 len;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006286 u64 offset;
6287 u64 stripe_offset;
6288 u64 stripe_nr;
6289 u64 stripe_len;
6290 u64 raid56_full_stripe_start = (u64)-1;
6291 int data_stripes;
6292
6293 ASSERT(op != BTRFS_MAP_DISCARD);
6294
Nikolay Borisov5f141122019-06-03 12:05:03 +03006295 map = em->map_lookup;
6296 /* Offset of this logical address in the chunk */
6297 offset = logical - em->start;
6298 /* Len of a stripe in a chunk */
6299 stripe_len = map->stripe_len;
David Sterba1a9fd412021-05-21 17:42:23 +02006300 /* Stripe where this block falls in */
Nikolay Borisov5f141122019-06-03 12:05:03 +03006301 stripe_nr = div64_u64(offset, stripe_len);
6302 /* Offset of stripe in the chunk */
6303 stripe_offset = stripe_nr * stripe_len;
6304 if (offset < stripe_offset) {
6305 btrfs_crit(fs_info,
6306"stripe math has gone wrong, stripe_offset=%llu offset=%llu start=%llu logical=%llu stripe_len=%llu",
6307 stripe_offset, offset, em->start, logical, stripe_len);
Michal Rostecki42034312021-01-27 14:57:27 +01006308 return -EINVAL;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006309 }
6310
6311 /* stripe_offset is the offset of this block in its stripe */
6312 stripe_offset = offset - stripe_offset;
6313 data_stripes = nr_data_stripes(map);
6314
6315 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
6316 u64 max_len = stripe_len - stripe_offset;
6317
6318 /*
6319 * In case of raid56, we need to know the stripe aligned start
6320 */
6321 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
6322 unsigned long full_stripe_len = stripe_len * data_stripes;
6323 raid56_full_stripe_start = offset;
6324
6325 /*
6326 * Allow a write of a full stripe, but make sure we
6327 * don't allow straddling of stripes
6328 */
6329 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
6330 full_stripe_len);
6331 raid56_full_stripe_start *= full_stripe_len;
6332
6333 /*
6334 * For writes to RAID[56], allow a full stripeset across
6335 * all disks. For other RAID types and for RAID[56]
6336 * reads, just allow a single stripe (on a single disk).
6337 */
6338 if (op == BTRFS_MAP_WRITE) {
6339 max_len = stripe_len * data_stripes -
6340 (offset - raid56_full_stripe_start);
6341 }
6342 }
6343 len = min_t(u64, em->len - offset, max_len);
6344 } else {
6345 len = em->len - offset;
6346 }
6347
6348 io_geom->len = len;
6349 io_geom->offset = offset;
6350 io_geom->stripe_len = stripe_len;
6351 io_geom->stripe_nr = stripe_nr;
6352 io_geom->stripe_offset = stripe_offset;
6353 io_geom->raid56_stripe_offset = raid56_full_stripe_start;
6354
Michal Rostecki42034312021-01-27 14:57:27 +01006355 return 0;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006356}
6357
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006358static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
6359 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04006360 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +08006361 struct btrfs_io_context **bioc_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006362 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04006363{
6364 struct extent_map *em;
6365 struct map_lookup *map;
Chris Mason593060d2008-03-25 16:50:33 -04006366 u64 stripe_offset;
6367 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006368 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01006369 u32 stripe_index;
David Sterbacff82672019-05-17 11:43:45 +02006370 int data_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04006371 int i;
Li Zefande11cc12011-12-01 12:55:47 +08006372 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04006373 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04006374 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08006375 int tgtdev_indexes = 0;
Qu Wenruo4c664612021-09-15 15:17:16 +08006376 struct btrfs_io_context *bioc = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01006377 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
6378 int dev_replace_is_ongoing = 0;
6379 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006380 int patch_the_first_stripe_for_dev_replace = 0;
6381 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006382 u64 raid56_full_stripe_start = (u64)-1;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006383 struct btrfs_io_geometry geom;
6384
Qu Wenruo4c664612021-09-15 15:17:16 +08006385 ASSERT(bioc_ret);
David Sterba75fb2e92018-08-03 00:36:29 +02006386 ASSERT(op != BTRFS_MAP_DISCARD);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006387
Michal Rostecki42034312021-01-27 14:57:27 +01006388 em = btrfs_get_chunk_map(fs_info, logical, *length);
6389 ASSERT(!IS_ERR(em));
6390
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006391 ret = btrfs_get_io_geometry(fs_info, em, op, logical, &geom);
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006392 if (ret < 0)
6393 return ret;
6394
Jeff Mahoney95617d62015-06-03 10:55:48 -04006395 map = em->map_lookup;
Chris Mason593060d2008-03-25 16:50:33 -04006396
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006397 *length = geom.len;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006398 stripe_len = geom.stripe_len;
6399 stripe_nr = geom.stripe_nr;
6400 stripe_offset = geom.stripe_offset;
6401 raid56_full_stripe_start = geom.raid56_stripe_offset;
David Sterbacff82672019-05-17 11:43:45 +02006402 data_stripes = nr_data_stripes(map);
Chris Mason593060d2008-03-25 16:50:33 -04006403
David Sterbacb5583d2018-09-07 16:11:23 +02006404 down_read(&dev_replace->rwsem);
Stefan Behrens472262f2012-11-06 14:43:46 +01006405 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
David Sterba53176dd2018-04-05 01:41:06 +02006406 /*
6407 * Hold the semaphore for read during the whole operation, write is
6408 * requested at commit time but must wait.
6409 */
Stefan Behrens472262f2012-11-06 14:43:46 +01006410 if (!dev_replace_is_ongoing)
David Sterbacb5583d2018-09-07 16:11:23 +02006411 up_read(&dev_replace->rwsem);
Stefan Behrens472262f2012-11-06 14:43:46 +01006412
Stefan Behrensad6d6202012-11-06 15:06:47 +01006413 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07006414 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07006415 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
6416 dev_replace->srcdev->devid,
6417 &mirror_num,
6418 &physical_to_patch_in_first_stripe);
6419 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006420 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07006421 else
6422 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006423 } else if (mirror_num > map->num_stripes) {
6424 mirror_num = 0;
6425 }
6426
Chris Masonf2d8d742008-04-21 10:03:05 -04006427 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04006428 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00006429 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01006430 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6431 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08006432 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08006433 mirror_num = 1;
David Sterbac7369b32019-05-31 15:39:31 +02006434 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08006435 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04006436 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04006437 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04006438 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04006439 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01006440 stripe_index = find_live_mirror(fs_info, map, 0,
Stefan Behrens30d98612012-11-06 14:52:18 +01006441 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006442 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04006443 }
Chris Mason2fff7342008-04-29 14:12:09 -04006444
Chris Mason611f0e02008-04-03 16:29:03 -04006445 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08006446 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04006447 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006448 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04006449 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006450 } else {
6451 mirror_num = 1;
6452 }
Chris Mason2fff7342008-04-29 14:12:09 -04006453
Chris Mason321aecc2008-04-16 10:49:51 -04006454 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01006455 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04006456
David Sterba47c57132015-02-20 18:43:47 +01006457 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04006458 stripe_index *= map->sub_stripes;
6459
Anand Jainde483732017-10-12 16:43:00 +08006460 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04006461 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04006462 else if (mirror_num)
6463 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04006464 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04006465 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01006466 stripe_index = find_live_mirror(fs_info, map,
6467 stripe_index,
Stefan Behrens30d98612012-11-06 14:52:18 +01006468 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04006469 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04006470 }
David Woodhouse53b381b2013-01-29 18:40:14 -05006471
Zhao Leiffe2d202015-01-20 15:11:44 +08006472 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08006473 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006474 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07006475 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbacff82672019-05-17 11:43:45 +02006476 stripe_len * data_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05006477
6478 /* RAID[56] write or recovery. Return all stripes */
6479 num_stripes = map->num_stripes;
6480 max_errors = nr_parity_stripes(map);
6481
David Woodhouse53b381b2013-01-29 18:40:14 -05006482 *length = map->stripe_len;
6483 stripe_index = 0;
6484 stripe_offset = 0;
6485 } else {
6486 /*
6487 * Mirror #0 or #1 means the original data block.
6488 * Mirror #2 is RAID5 parity block.
6489 * Mirror #3 is RAID6 Q block.
6490 */
David Sterba47c57132015-02-20 18:43:47 +01006491 stripe_nr = div_u64_rem(stripe_nr,
David Sterbacff82672019-05-17 11:43:45 +02006492 data_stripes, &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05006493 if (mirror_num > 1)
David Sterbacff82672019-05-17 11:43:45 +02006494 stripe_index = data_stripes + mirror_num - 2;
David Woodhouse53b381b2013-01-29 18:40:14 -05006495
6496 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01006497 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
6498 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08006499 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08006500 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05006501 }
Chris Mason8790d502008-04-03 16:29:03 -04006502 } else {
6503 /*
David Sterba47c57132015-02-20 18:43:47 +01006504 * after this, stripe_nr is the number of stripes on this
6505 * device we have to walk to find the data, and stripe_index is
6506 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04006507 */
David Sterba47c57132015-02-20 18:43:47 +01006508 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6509 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006510 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04006511 }
Josef Bacike042d1e2016-04-12 12:54:40 -04006512 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006513 btrfs_crit(fs_info,
6514 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04006515 stripe_index, map->num_stripes);
6516 ret = -EINVAL;
6517 goto out;
6518 }
Chris Mason593060d2008-03-25 16:50:33 -04006519
Stefan Behrens472262f2012-11-06 14:43:46 +01006520 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07006521 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006522 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006523 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006524 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006525 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08006526 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006527 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08006528
Qu Wenruo731ccf12021-09-23 14:00:08 +08006529 bioc = alloc_btrfs_io_context(fs_info, num_alloc_stripes, tgtdev_indexes);
Qu Wenruo4c664612021-09-15 15:17:16 +08006530 if (!bioc) {
Li Zefande11cc12011-12-01 12:55:47 +08006531 ret = -ENOMEM;
6532 goto out;
6533 }
Nikolay Borisov608769a2020-07-02 16:46:41 +03006534
6535 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006536 bioc->stripes[i].physical = map->stripes[stripe_index].physical +
Nikolay Borisov608769a2020-07-02 16:46:41 +03006537 stripe_offset + stripe_nr * map->stripe_len;
Qu Wenruo4c664612021-09-15 15:17:16 +08006538 bioc->stripes[i].dev = map->stripes[stripe_index].dev;
Nikolay Borisov608769a2020-07-02 16:46:41 +03006539 stripe_index++;
6540 }
Li Zefande11cc12011-12-01 12:55:47 +08006541
Qu Wenruo4c664612021-09-15 15:17:16 +08006542 /* Build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07006543 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
6544 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006545 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01006546 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006547
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006548 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01006549 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006550
6551 /* Fill in the logical address of each stripe */
David Sterbacff82672019-05-17 11:43:45 +02006552 tmp = stripe_nr * data_stripes;
6553 for (i = 0; i < data_stripes; i++)
Qu Wenruo4c664612021-09-15 15:17:16 +08006554 bioc->raid_map[(i + rot) % num_stripes] =
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006555 em->start + (tmp + i) * map->stripe_len;
6556
Qu Wenruo4c664612021-09-15 15:17:16 +08006557 bioc->raid_map[(i + rot) % map->num_stripes] = RAID5_P_STRIPE;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006558 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Qu Wenruo4c664612021-09-15 15:17:16 +08006559 bioc->raid_map[(i + rot + 1) % num_stripes] =
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006560 RAID6_Q_STRIPE;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006561
Qu Wenruo4c664612021-09-15 15:17:16 +08006562 sort_parity_stripes(bioc, num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04006563 }
Li Zefande11cc12011-12-01 12:55:47 +08006564
Liu Bo2b19a1f2017-03-14 13:34:00 -07006565 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08006566 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08006567
Liu Bo73c0f222017-03-14 13:33:58 -07006568 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07006569 need_full_stripe(op)) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006570 handle_ops_on_dev_replace(op, &bioc, dev_replace, logical,
Naohiro Aota6143c232021-02-04 19:22:12 +09006571 &num_stripes, &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01006572 }
6573
Qu Wenruo4c664612021-09-15 15:17:16 +08006574 *bioc_ret = bioc;
6575 bioc->map_type = map->type;
6576 bioc->num_stripes = num_stripes;
6577 bioc->max_errors = max_errors;
6578 bioc->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006579
6580 /*
6581 * this is the case that REQ_READ && dev_replace_is_ongoing &&
6582 * mirror_num == num_stripes + 1 && dev_replace target drive is
6583 * available as a mirror
6584 */
6585 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
6586 WARN_ON(num_stripes > 1);
Qu Wenruo4c664612021-09-15 15:17:16 +08006587 bioc->stripes[0].dev = dev_replace->tgtdev;
6588 bioc->stripes[0].physical = physical_to_patch_in_first_stripe;
6589 bioc->mirror_num = map->num_stripes + 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006590 }
Chris Masoncea9e442008-04-09 16:28:12 -04006591out:
Liu Bo73beece2015-07-17 16:49:19 +08006592 if (dev_replace_is_ongoing) {
David Sterba53176dd2018-04-05 01:41:06 +02006593 lockdep_assert_held(&dev_replace->rwsem);
6594 /* Unlock and let waiting writers proceed */
David Sterbacb5583d2018-09-07 16:11:23 +02006595 up_read(&dev_replace->rwsem);
Liu Bo73beece2015-07-17 16:49:19 +08006596 }
Chris Mason0b86a832008-03-24 15:01:56 -04006597 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08006598 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04006599}
6600
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006601int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04006602 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +08006603 struct btrfs_io_context **bioc_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04006604{
David Sterba75fb2e92018-08-03 00:36:29 +02006605 if (op == BTRFS_MAP_DISCARD)
6606 return __btrfs_map_block_for_discard(fs_info, logical,
Qu Wenruo4c664612021-09-15 15:17:16 +08006607 length, bioc_ret);
David Sterba75fb2e92018-08-03 00:36:29 +02006608
Qu Wenruo4c664612021-09-15 15:17:16 +08006609 return __btrfs_map_block(fs_info, op, logical, length, bioc_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006610 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04006611}
6612
Miao Xieaf8e2d12014-10-23 14:42:50 +08006613/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006614int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08006615 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +08006616 struct btrfs_io_context **bioc_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08006617{
Qu Wenruo4c664612021-09-15 15:17:16 +08006618 return __btrfs_map_block(fs_info, op, logical, length, bioc_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08006619}
6620
Qu Wenruo4c664612021-09-15 15:17:16 +08006621static inline void btrfs_end_bioc(struct btrfs_io_context *bioc, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006622{
Qu Wenruo4c664612021-09-15 15:17:16 +08006623 bio->bi_private = bioc->private;
6624 bio->bi_end_io = bioc->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006625 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006626
Qu Wenruo4c664612021-09-15 15:17:16 +08006627 btrfs_put_bioc(bioc);
Miao Xie8408c712014-06-19 10:42:55 +08006628}
6629
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006630static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006631{
Qu Wenruo4c664612021-09-15 15:17:16 +08006632 struct btrfs_io_context *bioc = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006633 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006634
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006635 if (bio->bi_status) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006636 atomic_inc(&bioc->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006637 if (bio->bi_status == BLK_STS_IOERR ||
6638 bio->bi_status == BLK_STS_TARGET) {
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006639 struct btrfs_device *dev = btrfs_bio(bio)->device;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006640
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006641 ASSERT(dev->bdev);
Naohiro Aotacfe94442021-02-04 19:21:59 +09006642 if (btrfs_op(bio) == BTRFS_MAP_WRITE)
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006643 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006644 BTRFS_DEV_STAT_WRITE_ERRS);
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006645 else if (!(bio->bi_opf & REQ_RAHEAD))
6646 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006647 BTRFS_DEV_STAT_READ_ERRS);
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006648 if (bio->bi_opf & REQ_PREFLUSH)
6649 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006650 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens442a4f62012-05-25 16:06:08 +02006651 }
6652 }
Chris Mason8790d502008-04-03 16:29:03 -04006653
Qu Wenruo4c664612021-09-15 15:17:16 +08006654 if (bio == bioc->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006655 is_orig_bio = 1;
6656
Qu Wenruo4c664612021-09-15 15:17:16 +08006657 btrfs_bio_counter_dec(bioc->fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006658
Qu Wenruo4c664612021-09-15 15:17:16 +08006659 if (atomic_dec_and_test(&bioc->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006660 if (!is_orig_bio) {
6661 bio_put(bio);
Qu Wenruo4c664612021-09-15 15:17:16 +08006662 bio = bioc->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006663 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006664
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006665 btrfs_bio(bio)->mirror_num = bioc->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006666 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006667 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006668 */
Qu Wenruo4c664612021-09-15 15:17:16 +08006669 if (atomic_read(&bioc->error) > bioc->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006670 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006671 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006672 /*
6673 * this bio is actually up to date, we didn't
6674 * go over the max number of errors
6675 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006676 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006677 }
Miao Xiec55f1392014-06-19 10:42:54 +08006678
Qu Wenruo4c664612021-09-15 15:17:16 +08006679 btrfs_end_bioc(bioc, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006680 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006681 bio_put(bio);
6682 }
Chris Mason8790d502008-04-03 16:29:03 -04006683}
6684
Qu Wenruo4c664612021-09-15 15:17:16 +08006685static void submit_stripe_bio(struct btrfs_io_context *bioc, struct bio *bio,
Nikolay Borisovc31efbd2020-07-03 11:14:27 +03006686 u64 physical, struct btrfs_device *dev)
Josef Bacikde1ee922012-10-19 16:50:56 -04006687{
Qu Wenruo4c664612021-09-15 15:17:16 +08006688 struct btrfs_fs_info *fs_info = bioc->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006689
Qu Wenruo4c664612021-09-15 15:17:16 +08006690 bio->bi_private = bioc;
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006691 btrfs_bio(bio)->device = dev;
Josef Bacikde1ee922012-10-19 16:50:56 -04006692 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006693 bio->bi_iter.bi_sector = physical >> 9;
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09006694 /*
6695 * For zone append writing, bi_sector must point the beginning of the
6696 * zone
6697 */
6698 if (bio_op(bio) == REQ_OP_ZONE_APPEND) {
6699 if (btrfs_dev_is_sequential(dev, physical)) {
6700 u64 zone_start = round_down(physical, fs_info->zone_size);
6701
6702 bio->bi_iter.bi_sector = zone_start >> SECTOR_SHIFT;
6703 } else {
6704 bio->bi_opf &= ~REQ_OP_ZONE_APPEND;
6705 bio->bi_opf |= REQ_OP_WRITE;
6706 }
6707 }
Misono Tomohiro672d5992018-08-02 16:19:07 +09006708 btrfs_debug_in_rcu(fs_info,
6709 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
David Sterba1201b582020-11-26 15:41:27 +01006710 bio_op(bio), bio->bi_opf, bio->bi_iter.bi_sector,
David Sterba1db45a32019-11-28 15:31:46 +01006711 (unsigned long)dev->bdev->bd_dev, rcu_str_deref(dev->name),
6712 dev->devid, bio->bi_iter.bi_size);
Christoph Hellwig74d46992017-08-23 19:10:32 +02006713 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006714
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006715 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006716
Chris Mason08635ba2019-07-10 12:28:14 -07006717 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006718}
6719
Qu Wenruo4c664612021-09-15 15:17:16 +08006720static void bioc_error(struct btrfs_io_context *bioc, struct bio *bio, u64 logical)
Josef Bacikde1ee922012-10-19 16:50:56 -04006721{
Qu Wenruo4c664612021-09-15 15:17:16 +08006722 atomic_inc(&bioc->error);
6723 if (atomic_dec_and_test(&bioc->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006724 /* Should be the original bio. */
Qu Wenruo4c664612021-09-15 15:17:16 +08006725 WARN_ON(bio != bioc->orig_bio);
Miao Xie8408c712014-06-19 10:42:55 +08006726
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006727 btrfs_bio(bio)->mirror_num = bioc->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006728 bio->bi_iter.bi_sector = logical >> 9;
Qu Wenruo4c664612021-09-15 15:17:16 +08006729 if (atomic_read(&bioc->error) > bioc->max_errors)
Anand Jain102ed2c2017-10-14 08:34:02 +08006730 bio->bi_status = BLK_STS_IOERR;
6731 else
6732 bio->bi_status = BLK_STS_OK;
Qu Wenruo4c664612021-09-15 15:17:16 +08006733 btrfs_end_bioc(bioc, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006734 }
6735}
6736
Omar Sandoval58efbc92017-08-22 23:45:59 -07006737blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
Chris Mason08635ba2019-07-10 12:28:14 -07006738 int mirror_num)
Chris Mason0b86a832008-03-24 15:01:56 -04006739{
Chris Mason0b86a832008-03-24 15:01:56 -04006740 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006741 struct bio *first_bio = bio;
David Sterba1201b582020-11-26 15:41:27 +01006742 u64 logical = bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006743 u64 length = 0;
6744 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006745 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006746 int dev_nr;
6747 int total_devs;
Qu Wenruo4c664612021-09-15 15:17:16 +08006748 struct btrfs_io_context *bioc = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006749
Kent Overstreet4f024f32013-10-11 15:44:27 -07006750 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006751 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006752
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006753 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006754 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Qu Wenruo4c664612021-09-15 15:17:16 +08006755 &map_length, &bioc, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006756 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006757 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006758 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006759 }
Chris Masoncea9e442008-04-09 16:28:12 -04006760
Qu Wenruo4c664612021-09-15 15:17:16 +08006761 total_devs = bioc->num_stripes;
6762 bioc->orig_bio = first_bio;
6763 bioc->private = first_bio->bi_private;
6764 bioc->end_io = first_bio->bi_end_io;
Qu Wenruo4c664612021-09-15 15:17:16 +08006765 atomic_set(&bioc->stripes_pending, bioc->num_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05006766
Qu Wenruo4c664612021-09-15 15:17:16 +08006767 if ((bioc->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Naohiro Aotacfe94442021-02-04 19:21:59 +09006768 ((btrfs_op(bio) == BTRFS_MAP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006769 /* In this case, map_length has been set to the length of
6770 a single stripe; not the whole write */
Naohiro Aotacfe94442021-02-04 19:21:59 +09006771 if (btrfs_op(bio) == BTRFS_MAP_WRITE) {
Qu Wenruo6a258d72021-09-23 14:00:09 +08006772 ret = raid56_parity_write(bio, bioc, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006773 } else {
Qu Wenruo6a258d72021-09-23 14:00:09 +08006774 ret = raid56_parity_recover(bio, bioc, map_length,
6775 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006776 }
Miao Xie42452152014-11-25 16:39:28 +08006777
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006778 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006779 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006780 }
6781
Chris Masoncea9e442008-04-09 16:28:12 -04006782 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006783 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006784 "mapping failed logical %llu bio len %llu len %llu",
6785 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006786 BUG();
6787 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006788
Zhao Lei08da7572015-02-12 15:42:16 +08006789 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006790 dev = bioc->stripes[dev_nr].dev;
Nikolay Borisovfc8a1682018-11-08 16:16:38 +02006791 if (!dev || !dev->bdev || test_bit(BTRFS_DEV_STATE_MISSING,
6792 &dev->dev_state) ||
Naohiro Aotacfe94442021-02-04 19:21:59 +09006793 (btrfs_op(first_bio) == BTRFS_MAP_WRITE &&
Anand Jainebbede42017-12-04 12:54:52 +08006794 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006795 bioc_error(bioc, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006796 continue;
6797 }
6798
David Sterba3aa8e072017-06-02 17:38:30 +02006799 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006800 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006801 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006802 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006803
Qu Wenruo4c664612021-09-15 15:17:16 +08006804 submit_stripe_bio(bioc, bio, bioc->stripes[dev_nr].physical, dev);
Chris Mason239b14b2008-03-24 15:02:07 -04006805 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006806 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006807 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006808}
6809
Josef Bacik562d7b12021-10-05 16:12:42 -04006810static bool dev_args_match_fs_devices(const struct btrfs_dev_lookup_args *args,
6811 const struct btrfs_fs_devices *fs_devices)
6812{
6813 if (args->fsid == NULL)
6814 return true;
6815 if (memcmp(fs_devices->metadata_uuid, args->fsid, BTRFS_FSID_SIZE) == 0)
6816 return true;
6817 return false;
6818}
6819
6820static bool dev_args_match_device(const struct btrfs_dev_lookup_args *args,
6821 const struct btrfs_device *device)
6822{
6823 ASSERT((args->devid != (u64)-1) || args->missing);
6824
6825 if ((args->devid != (u64)-1) && device->devid != args->devid)
6826 return false;
6827 if (args->uuid && memcmp(device->uuid, args->uuid, BTRFS_UUID_SIZE) != 0)
6828 return false;
6829 if (!args->missing)
6830 return true;
6831 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state) &&
6832 !device->bdev)
6833 return true;
6834 return false;
6835}
6836
Anand Jain09ba3bc2019-01-19 14:48:55 +08006837/*
6838 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
6839 * return NULL.
6840 *
6841 * If devid and uuid are both specified, the match must be exact, otherwise
6842 * only devid is used.
Anand Jain09ba3bc2019-01-19 14:48:55 +08006843 */
Josef Bacik562d7b12021-10-05 16:12:42 -04006844struct btrfs_device *btrfs_find_device(const struct btrfs_fs_devices *fs_devices,
6845 const struct btrfs_dev_lookup_args *args)
Chris Mason0b86a832008-03-24 15:01:56 -04006846{
Yan Zheng2b820322008-11-17 21:11:30 -05006847 struct btrfs_device *device;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006848 struct btrfs_fs_devices *seed_devs;
Chris Mason0b86a832008-03-24 15:01:56 -04006849
Josef Bacik562d7b12021-10-05 16:12:42 -04006850 if (dev_args_match_fs_devices(args, fs_devices)) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006851 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Josef Bacik562d7b12021-10-05 16:12:42 -04006852 if (dev_args_match_device(args, device))
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006853 return device;
6854 }
6855 }
6856
6857 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
Josef Bacik562d7b12021-10-05 16:12:42 -04006858 if (!dev_args_match_fs_devices(args, seed_devs))
6859 continue;
6860 list_for_each_entry(device, &seed_devs->devices, dev_list) {
6861 if (dev_args_match_device(args, device))
6862 return device;
Yan Zheng2b820322008-11-17 21:11:30 -05006863 }
Yan Zheng2b820322008-11-17 21:11:30 -05006864 }
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006865
Yan Zheng2b820322008-11-17 21:11:30 -05006866 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006867}
6868
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006869static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006870 u64 devid, u8 *dev_uuid)
6871{
6872 struct btrfs_device *device;
Josef Bacikfccc0002020-08-31 10:52:42 -04006873 unsigned int nofs_flag;
Chris Masondfe25022008-05-13 13:46:40 -04006874
Josef Bacikfccc0002020-08-31 10:52:42 -04006875 /*
6876 * We call this under the chunk_mutex, so we want to use NOFS for this
6877 * allocation, however we don't want to change btrfs_alloc_device() to
6878 * always do NOFS because we use it in a lot of other GFP_KERNEL safe
6879 * places.
6880 */
6881 nofs_flag = memalloc_nofs_save();
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006882 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
Josef Bacikfccc0002020-08-31 10:52:42 -04006883 memalloc_nofs_restore(nofs_flag);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006884 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006885 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006886
6887 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006888 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006889 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006890
Anand Jaine6e674b2017-12-04 12:54:54 +08006891 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006892 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006893
Chris Masondfe25022008-05-13 13:46:40 -04006894 return device;
6895}
6896
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006897/**
6898 * btrfs_alloc_device - allocate struct btrfs_device
6899 * @fs_info: used only for generating a new devid, can be NULL if
6900 * devid is provided (i.e. @devid != NULL).
6901 * @devid: a pointer to devid for this device. If NULL a new devid
6902 * is generated.
6903 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6904 * is generated.
6905 *
6906 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006907 * on error. Returned struct is not linked onto any lists and must be
David Sterbaa425f9d2018-03-20 15:47:33 +01006908 * destroyed with btrfs_free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006909 */
6910struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6911 const u64 *devid,
6912 const u8 *uuid)
6913{
6914 struct btrfs_device *dev;
6915 u64 tmp;
6916
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306917 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006918 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006919
David Sterbafe4f46d2021-07-26 14:15:21 +02006920 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
6921 if (!dev)
6922 return ERR_PTR(-ENOMEM);
6923
6924 /*
6925 * Preallocate a bio that's always going to be used for flushing device
6926 * barriers and matches the device lifespan
6927 */
6928 dev->flush_bio = bio_kmalloc(GFP_KERNEL, 0);
6929 if (!dev->flush_bio) {
6930 kfree(dev);
6931 return ERR_PTR(-ENOMEM);
6932 }
6933
6934 INIT_LIST_HEAD(&dev->dev_list);
6935 INIT_LIST_HEAD(&dev->dev_alloc_list);
6936 INIT_LIST_HEAD(&dev->post_commit_list);
6937
6938 atomic_set(&dev->reada_in_flight, 0);
6939 atomic_set(&dev->dev_stats_ccnt, 0);
6940 btrfs_device_data_ordered_init(dev);
6941 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
6942 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
6943 extent_io_tree_init(fs_info, &dev->alloc_state,
6944 IO_TREE_DEVICE_ALLOC_STATE, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006945
6946 if (devid)
6947 tmp = *devid;
6948 else {
6949 int ret;
6950
6951 ret = find_next_devid(fs_info, &tmp);
6952 if (ret) {
David Sterbaa425f9d2018-03-20 15:47:33 +01006953 btrfs_free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006954 return ERR_PTR(ret);
6955 }
6956 }
6957 dev->devid = tmp;
6958
6959 if (uuid)
6960 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6961 else
6962 generate_random_uuid(dev->uuid);
6963
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006964 return dev;
6965}
6966
Anand Jain5a2b8e62017-10-09 11:07:45 +08006967static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08006968 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08006969{
Anand Jain2b902df2017-10-09 11:07:46 +08006970 if (error)
6971 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
6972 devid, uuid);
6973 else
6974 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
6975 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08006976}
6977
Nikolay Borisov39e264a2019-03-25 14:31:25 +02006978static u64 calc_stripe_length(u64 type, u64 chunk_len, int num_stripes)
6979{
David Sterbad58ede82021-07-26 14:15:24 +02006980 const int data_stripes = calc_data_stripes(type, num_stripes);
David Sterbae4f6c6b2019-05-14 01:59:54 +02006981
Nikolay Borisov39e264a2019-03-25 14:31:25 +02006982 return div_u64(chunk_len, data_stripes);
6983}
6984
Qu Wenruoe9306ad2021-02-25 09:18:14 +08006985#if BITS_PER_LONG == 32
6986/*
6987 * Due to page cache limit, metadata beyond BTRFS_32BIT_MAX_FILE_SIZE
6988 * can't be accessed on 32bit systems.
6989 *
6990 * This function do mount time check to reject the fs if it already has
6991 * metadata chunk beyond that limit.
6992 */
6993static int check_32bit_meta_chunk(struct btrfs_fs_info *fs_info,
6994 u64 logical, u64 length, u64 type)
6995{
6996 if (!(type & BTRFS_BLOCK_GROUP_METADATA))
6997 return 0;
6998
6999 if (logical + length < MAX_LFS_FILESIZE)
7000 return 0;
7001
7002 btrfs_err_32bit_limit(fs_info);
7003 return -EOVERFLOW;
7004}
7005
7006/*
7007 * This is to give early warning for any metadata chunk reaching
7008 * BTRFS_32BIT_EARLY_WARN_THRESHOLD.
7009 * Although we can still access the metadata, it's not going to be possible
7010 * once the limit is reached.
7011 */
7012static void warn_32bit_meta_chunk(struct btrfs_fs_info *fs_info,
7013 u64 logical, u64 length, u64 type)
7014{
7015 if (!(type & BTRFS_BLOCK_GROUP_METADATA))
7016 return;
7017
7018 if (logical + length < BTRFS_32BIT_EARLY_WARN_THRESHOLD)
7019 return;
7020
7021 btrfs_warn_32bit_limit(fs_info);
7022}
7023#endif
7024
David Sterba9690ac02019-03-20 16:43:07 +01007025static int read_one_chunk(struct btrfs_key *key, struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007026 struct btrfs_chunk *chunk)
7027{
Josef Bacik562d7b12021-10-05 16:12:42 -04007028 BTRFS_DEV_LOOKUP_ARGS(args);
David Sterba9690ac02019-03-20 16:43:07 +01007029 struct btrfs_fs_info *fs_info = leaf->fs_info;
David Sterbac8bf1b62019-05-17 11:43:17 +02007030 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04007031 struct map_lookup *map;
7032 struct extent_map *em;
7033 u64 logical;
7034 u64 length;
7035 u64 devid;
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007036 u64 type;
Chris Masona4437552008-04-18 10:29:38 -04007037 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04007038 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04007039 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04007040 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04007041
Chris Masone17cade2008-04-15 15:41:47 -04007042 logical = key->offset;
7043 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007044 type = btrfs_chunk_type(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08007045 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07007046
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007047#if BITS_PER_LONG == 32
7048 ret = check_32bit_meta_chunk(fs_info, logical, length, type);
7049 if (ret < 0)
7050 return ret;
7051 warn_32bit_meta_chunk(fs_info, logical, length, type);
7052#endif
7053
Qu Wenruo075cb3c2019-03-20 13:42:33 +08007054 /*
7055 * Only need to verify chunk item if we're reading from sys chunk array,
7056 * as chunk item in tree block is already verified by tree-checker.
7057 */
7058 if (leaf->start == BTRFS_SUPER_INFO_OFFSET) {
David Sterbaddaf1d52019-03-20 16:40:48 +01007059 ret = btrfs_check_chunk_valid(leaf, chunk, logical);
Qu Wenruo075cb3c2019-03-20 13:42:33 +08007060 if (ret)
7061 return ret;
7062 }
Chris Masona061fc82008-05-07 11:43:44 -04007063
David Sterbac8bf1b62019-05-17 11:43:17 +02007064 read_lock(&map_tree->lock);
7065 em = lookup_extent_mapping(map_tree, logical, 1);
7066 read_unlock(&map_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04007067
7068 /* already mapped? */
7069 if (em && em->start <= logical && em->start + em->len > logical) {
7070 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04007071 return 0;
7072 } else if (em) {
7073 free_extent_map(em);
7074 }
Chris Mason0b86a832008-03-24 15:01:56 -04007075
David Sterba172ddd62011-04-21 00:48:27 +02007076 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04007077 if (!em)
7078 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04007079 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04007080 if (!map) {
7081 free_extent_map(em);
7082 return -ENOMEM;
7083 }
7084
Wang Shilong298a8f92014-06-19 10:42:52 +08007085 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04007086 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04007087 em->start = logical;
7088 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04007089 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007090 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04007091 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04007092
Chris Mason593060d2008-03-25 16:50:33 -04007093 map->num_stripes = num_stripes;
7094 map->io_width = btrfs_chunk_io_width(leaf, chunk);
7095 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04007096 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007097 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04007098 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Qu Wenruocf90d882018-08-01 10:37:19 +08007099 map->verified_stripes = 0;
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007100 em->orig_block_len = calc_stripe_length(type, em->len,
Nikolay Borisov39e264a2019-03-25 14:31:25 +02007101 map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04007102 for (i = 0; i < num_stripes; i++) {
7103 map->stripes[i].physical =
7104 btrfs_stripe_offset_nr(leaf, chunk, i);
7105 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Josef Bacik562d7b12021-10-05 16:12:42 -04007106 args.devid = devid;
Chris Masona4437552008-04-18 10:29:38 -04007107 read_extent_buffer(leaf, uuid, (unsigned long)
7108 btrfs_stripe_dev_uuid_nr(chunk, i),
7109 BTRFS_UUID_SIZE);
Josef Bacik562d7b12021-10-05 16:12:42 -04007110 args.uuid = uuid;
7111 map->stripes[i].dev = btrfs_find_device(fs_info->fs_devices, &args);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04007112 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007113 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04007114 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08007115 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007116 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04007117 }
Chris Masondfe25022008-05-13 13:46:40 -04007118 if (!map->stripes[i].dev) {
7119 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007120 add_missing_dev(fs_info->fs_devices, devid,
7121 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08007122 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04007123 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08007124 btrfs_err(fs_info,
7125 "failed to init missing dev %llu: %ld",
7126 devid, PTR_ERR(map->stripes[i].dev));
7127 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04007128 }
Anand Jain2b902df2017-10-09 11:07:46 +08007129 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04007130 }
Anand Jaine12c9622017-12-04 12:54:53 +08007131 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
7132 &(map->stripes[i].dev->dev_state));
7133
Chris Mason0b86a832008-03-24 15:01:56 -04007134 }
7135
David Sterbac8bf1b62019-05-17 11:43:17 +02007136 write_lock(&map_tree->lock);
7137 ret = add_extent_mapping(map_tree, em, 0);
7138 write_unlock(&map_tree->lock);
Qu Wenruo64f64f42018-08-01 10:37:20 +08007139 if (ret < 0) {
7140 btrfs_err(fs_info,
7141 "failed to add chunk map, start=%llu len=%llu: %d",
7142 em->start, em->len, ret);
7143 }
Chris Mason0b86a832008-03-24 15:01:56 -04007144 free_extent_map(em);
7145
Qu Wenruo64f64f42018-08-01 10:37:20 +08007146 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04007147}
7148
Jeff Mahoney143bede2012-03-01 14:56:26 +01007149static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007150 struct btrfs_dev_item *dev_item,
7151 struct btrfs_device *device)
7152{
7153 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04007154
7155 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04007156 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
7157 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08007158 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04007159 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08007160 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04007161 device->type = btrfs_device_type(leaf, dev_item);
7162 device->io_align = btrfs_device_io_align(leaf, dev_item);
7163 device->io_width = btrfs_device_io_width(leaf, dev_item);
7164 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01007165 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08007166 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04007167
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02007168 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04007169 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04007170}
7171
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007172static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08007173 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05007174{
7175 struct btrfs_fs_devices *fs_devices;
7176 int ret;
7177
David Sterbaa32bf9a2018-03-16 02:21:22 +01007178 lockdep_assert_held(&uuid_mutex);
David Sterba2dfeca92017-06-14 02:48:07 +02007179 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05007180
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03007181 /* This will match only for multi-device seed fs */
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007182 list_for_each_entry(fs_devices, &fs_info->fs_devices->seed_list, seed_list)
Anand Jain44880fd2017-07-29 17:50:09 +08007183 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08007184 return fs_devices;
7185
Yan Zheng2b820322008-11-17 21:11:30 -05007186
Nikolay Borisov7239ff42018-10-30 16:43:23 +02007187 fs_devices = find_fsid(fsid, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05007188 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007189 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08007190 return ERR_PTR(-ENOENT);
7191
Nikolay Borisov7239ff42018-10-30 16:43:23 +02007192 fs_devices = alloc_fs_devices(fsid, NULL);
Miao Xie5f375832014-09-03 21:35:46 +08007193 if (IS_ERR(fs_devices))
7194 return fs_devices;
7195
Johannes Thumshirn0395d842019-11-13 11:27:27 +01007196 fs_devices->seeding = true;
Miao Xie5f375832014-09-03 21:35:46 +08007197 fs_devices->opened = 1;
7198 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007199 }
Yan Zhenge4404d62008-12-12 10:03:26 -05007200
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03007201 /*
7202 * Upon first call for a seed fs fsid, just create a private copy of the
7203 * respective fs_devices and anchor it at fs_info->fs_devices->seed_list
7204 */
Yan Zhenge4404d62008-12-12 10:03:26 -05007205 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08007206 if (IS_ERR(fs_devices))
7207 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007208
Anand Jain897fb572018-04-12 10:29:28 +08007209 ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02007210 if (ret) {
7211 free_fs_devices(fs_devices);
Anand Jainc83b60c2020-09-05 01:34:35 +08007212 return ERR_PTR(ret);
Julia Lawall48d28232012-04-14 11:24:33 +02007213 }
Yan Zheng2b820322008-11-17 21:11:30 -05007214
7215 if (!fs_devices->seeding) {
Anand Jain0226e0e2018-04-12 10:29:27 +08007216 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05007217 free_fs_devices(fs_devices);
Anand Jainc83b60c2020-09-05 01:34:35 +08007218 return ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05007219 }
7220
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007221 list_add(&fs_devices->seed_list, &fs_info->fs_devices->seed_list);
Anand Jainc83b60c2020-09-05 01:34:35 +08007222
Miao Xie5f375832014-09-03 21:35:46 +08007223 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007224}
7225
David Sterba17850752019-03-20 16:45:15 +01007226static int read_one_dev(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007227 struct btrfs_dev_item *dev_item)
7228{
Josef Bacik562d7b12021-10-05 16:12:42 -04007229 BTRFS_DEV_LOOKUP_ARGS(args);
David Sterba17850752019-03-20 16:45:15 +01007230 struct btrfs_fs_info *fs_info = leaf->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007231 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04007232 struct btrfs_device *device;
7233 u64 devid;
7234 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08007235 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04007236 u8 dev_uuid[BTRFS_UUID_SIZE];
7237
Josef Bacik562d7b12021-10-05 16:12:42 -04007238 devid = args.devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02007239 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04007240 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02007241 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08007242 BTRFS_FSID_SIZE);
Josef Bacik562d7b12021-10-05 16:12:42 -04007243 args.uuid = dev_uuid;
7244 args.fsid = fs_uuid;
Yan Zheng2b820322008-11-17 21:11:30 -05007245
Nikolay Borisovde37aa52018-10-30 16:43:24 +02007246 if (memcmp(fs_uuid, fs_devices->metadata_uuid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007247 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08007248 if (IS_ERR(fs_devices))
7249 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05007250 }
7251
Josef Bacik562d7b12021-10-05 16:12:42 -04007252 device = btrfs_find_device(fs_info->fs_devices, &args);
Miao Xie5f375832014-09-03 21:35:46 +08007253 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08007254 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08007255 btrfs_report_missing_device(fs_info, devid,
7256 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007257 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08007258 }
Yan Zheng2b820322008-11-17 21:11:30 -05007259
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007260 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08007261 if (IS_ERR(device)) {
7262 btrfs_err(fs_info,
7263 "failed to add missing dev %llu: %ld",
7264 devid, PTR_ERR(device));
7265 return PTR_ERR(device);
7266 }
Anand Jain2b902df2017-10-09 11:07:46 +08007267 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08007268 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08007269 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08007270 if (!btrfs_test_opt(fs_info, DEGRADED)) {
7271 btrfs_report_missing_device(fs_info,
7272 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007273 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08007274 }
7275 btrfs_report_missing_device(fs_info, devid,
7276 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08007277 }
Miao Xie5f375832014-09-03 21:35:46 +08007278
Anand Jaine6e674b2017-12-04 12:54:54 +08007279 if (!device->bdev &&
7280 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05007281 /*
7282 * this happens when a device that was properly setup
7283 * in the device info lists suddenly goes bad.
7284 * device->bdev is NULL, and so we have to set
7285 * device->missing to one here
7286 */
Miao Xie5f375832014-09-03 21:35:46 +08007287 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08007288 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05007289 }
Miao Xie5f375832014-09-03 21:35:46 +08007290
7291 /* Move the device to its own fs_devices */
7292 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08007293 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
7294 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08007295
7296 list_move(&device->dev_list, &fs_devices->devices);
7297 device->fs_devices->num_devices--;
7298 fs_devices->num_devices++;
7299
7300 device->fs_devices->missing_devices--;
7301 fs_devices->missing_devices++;
7302
7303 device->fs_devices = fs_devices;
7304 }
Yan Zheng2b820322008-11-17 21:11:30 -05007305 }
7306
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007307 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08007308 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05007309 if (device->generation !=
7310 btrfs_device_generation(leaf, dev_item))
7311 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04007312 }
Chris Mason0b86a832008-03-24 15:01:56 -04007313
7314 fill_device_from_item(leaf, dev_item, device);
Anand Jain3a160a92020-11-03 13:49:42 +08007315 if (device->bdev) {
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02007316 u64 max_total_bytes = bdev_nr_bytes(device->bdev);
Anand Jain3a160a92020-11-03 13:49:42 +08007317
7318 if (device->total_bytes > max_total_bytes) {
7319 btrfs_err(fs_info,
7320 "device total_bytes should be at most %llu but found %llu",
7321 max_total_bytes, device->total_bytes);
7322 return -EINVAL;
7323 }
7324 }
Anand Jaine12c9622017-12-04 12:54:53 +08007325 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08007326 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08007327 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05007328 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03007329 atomic64_add(device->total_bytes - device->bytes_used,
7330 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04007331 }
Chris Mason0b86a832008-03-24 15:01:56 -04007332 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007333 return ret;
7334}
7335
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007336int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04007337{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007338 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007339 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04007340 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04007341 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04007342 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01007343 u8 *array_ptr;
7344 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04007345 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007346 u32 num_stripes;
7347 u32 array_size;
7348 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01007349 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07007350 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04007351 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04007352
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007353 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02007354 /*
7355 * This will create extent buffer of nodesize, superblock size is
7356 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
7357 * overallocate but we can keep it as-is, only the first page is used.
7358 */
Josef Bacik3fbaf252020-11-05 10:45:20 -05007359 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET,
7360 root->root_key.objectid, 0);
Liu Boc871b0f2016-06-06 12:01:23 -07007361 if (IS_ERR(sb))
7362 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01007363 set_extent_buffer_uptodate(sb);
David Sterba8a334422011-10-07 18:06:13 +02007364 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04007365 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01007366 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02007367 * pages up-to-date when the page is larger: extent does not cover the
7368 * whole page and consequently check_page_uptodate does not find all
7369 * the page's extents up-to-date (the hole beyond sb),
7370 * write_extent_buffer then triggers a WARN_ON.
7371 *
7372 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
7373 * but sb spans only this function. Add an explicit SetPageUptodate call
7374 * to silence the warning eg. on PowerPC 64.
7375 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007376 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04007377 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05007378
Chris Masona061fc82008-05-07 11:43:44 -04007379 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04007380 array_size = btrfs_super_sys_array_size(super_copy);
7381
David Sterba1ffb22c2014-10-31 19:02:42 +01007382 array_ptr = super_copy->sys_chunk_array;
7383 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
7384 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007385
David Sterba1ffb22c2014-10-31 19:02:42 +01007386 while (cur_offset < array_size) {
7387 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01007388 len = sizeof(*disk_key);
7389 if (cur_offset + len > array_size)
7390 goto out_short_read;
7391
Chris Mason0b86a832008-03-24 15:01:56 -04007392 btrfs_disk_key_to_cpu(&key, disk_key);
7393
David Sterba1ffb22c2014-10-31 19:02:42 +01007394 array_ptr += len;
7395 sb_array_offset += len;
7396 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04007397
Johannes Thumshirn32ab3d12019-10-18 11:58:23 +02007398 if (key.type != BTRFS_CHUNK_ITEM_KEY) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007399 btrfs_err(fs_info,
7400 "unexpected item type %u in sys_array at offset %u",
7401 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04007402 ret = -EIO;
7403 break;
Chris Mason0b86a832008-03-24 15:01:56 -04007404 }
Johannes Thumshirn32ab3d12019-10-18 11:58:23 +02007405
7406 chunk = (struct btrfs_chunk *)sb_array_offset;
7407 /*
7408 * At least one btrfs_chunk with one stripe must be present,
7409 * exact stripe count check comes afterwards
7410 */
7411 len = btrfs_chunk_item_size(1);
7412 if (cur_offset + len > array_size)
7413 goto out_short_read;
7414
7415 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
7416 if (!num_stripes) {
7417 btrfs_err(fs_info,
7418 "invalid number of stripes %u in sys_array at offset %u",
7419 num_stripes, cur_offset);
7420 ret = -EIO;
7421 break;
7422 }
7423
7424 type = btrfs_chunk_type(sb, chunk);
7425 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
7426 btrfs_err(fs_info,
7427 "invalid chunk type %llu in sys_array at offset %u",
7428 type, cur_offset);
7429 ret = -EIO;
7430 break;
7431 }
7432
7433 len = btrfs_chunk_item_size(num_stripes);
7434 if (cur_offset + len > array_size)
7435 goto out_short_read;
7436
7437 ret = read_one_chunk(&key, sb, chunk);
7438 if (ret)
7439 break;
7440
David Sterba1ffb22c2014-10-31 19:02:42 +01007441 array_ptr += len;
7442 sb_array_offset += len;
7443 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04007444 }
Liu Bod8651772016-06-03 17:41:42 -07007445 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07007446 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04007447 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01007448
7449out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007450 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01007451 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07007452 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07007453 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01007454 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04007455}
7456
Qu Wenruo21634a12017-03-09 09:34:36 +08007457/*
7458 * Check if all chunks in the fs are OK for read-write degraded mount
7459 *
Anand Jain6528b992017-12-18 17:08:59 +08007460 * If the @failing_dev is specified, it's accounted as missing.
7461 *
Qu Wenruo21634a12017-03-09 09:34:36 +08007462 * Return true if all chunks meet the minimal RW mount requirements.
7463 * Return false if any chunk doesn't meet the minimal RW mount requirements.
7464 */
Anand Jain6528b992017-12-18 17:08:59 +08007465bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
7466 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08007467{
David Sterbac8bf1b62019-05-17 11:43:17 +02007468 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Qu Wenruo21634a12017-03-09 09:34:36 +08007469 struct extent_map *em;
7470 u64 next_start = 0;
7471 bool ret = true;
7472
David Sterbac8bf1b62019-05-17 11:43:17 +02007473 read_lock(&map_tree->lock);
7474 em = lookup_extent_mapping(map_tree, 0, (u64)-1);
7475 read_unlock(&map_tree->lock);
Qu Wenruo21634a12017-03-09 09:34:36 +08007476 /* No chunk at all? Return false anyway */
7477 if (!em) {
7478 ret = false;
7479 goto out;
7480 }
7481 while (em) {
7482 struct map_lookup *map;
7483 int missing = 0;
7484 int max_tolerated;
7485 int i;
7486
7487 map = em->map_lookup;
7488 max_tolerated =
7489 btrfs_get_num_tolerated_disk_barrier_failures(
7490 map->type);
7491 for (i = 0; i < map->num_stripes; i++) {
7492 struct btrfs_device *dev = map->stripes[i].dev;
7493
Anand Jaine6e674b2017-12-04 12:54:54 +08007494 if (!dev || !dev->bdev ||
7495 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08007496 dev->last_flush_error)
7497 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08007498 else if (failing_dev && failing_dev == dev)
7499 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08007500 }
7501 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08007502 if (!failing_dev)
7503 btrfs_warn(fs_info,
Andrea Gelmini52042d82018-11-28 12:05:13 +01007504 "chunk %llu missing %d devices, max tolerance is %d for writable mount",
Qu Wenruo21634a12017-03-09 09:34:36 +08007505 em->start, missing, max_tolerated);
7506 free_extent_map(em);
7507 ret = false;
7508 goto out;
7509 }
7510 next_start = extent_map_end(em);
7511 free_extent_map(em);
7512
David Sterbac8bf1b62019-05-17 11:43:17 +02007513 read_lock(&map_tree->lock);
7514 em = lookup_extent_mapping(map_tree, next_start,
Qu Wenruo21634a12017-03-09 09:34:36 +08007515 (u64)(-1) - next_start);
David Sterbac8bf1b62019-05-17 11:43:17 +02007516 read_unlock(&map_tree->lock);
Qu Wenruo21634a12017-03-09 09:34:36 +08007517 }
7518out:
7519 return ret;
7520}
7521
David Sterbad85327b12020-07-08 22:55:14 +02007522static void readahead_tree_node_children(struct extent_buffer *node)
7523{
7524 int i;
7525 const int nr_items = btrfs_header_nritems(node);
7526
Josef Bacikbfb484d2020-11-05 10:45:09 -05007527 for (i = 0; i < nr_items; i++)
7528 btrfs_readahead_node_child(node, i);
David Sterbad85327b12020-07-08 22:55:14 +02007529}
7530
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007531int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04007532{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007533 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04007534 struct btrfs_path *path;
7535 struct extent_buffer *leaf;
7536 struct btrfs_key key;
7537 struct btrfs_key found_key;
7538 int ret;
7539 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07007540 u64 total_dev = 0;
David Sterbad85327b12020-07-08 22:55:14 +02007541 u64 last_ra_node = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007542
Chris Mason0b86a832008-03-24 15:01:56 -04007543 path = btrfs_alloc_path();
7544 if (!path)
7545 return -ENOMEM;
7546
Anand Jain3dd0f7a2018-04-12 10:29:32 +08007547 /*
7548 * uuid_mutex is needed only if we are mounting a sprout FS
7549 * otherwise we don't need it.
7550 */
Li Zefanb367e472011-12-07 11:38:24 +08007551 mutex_lock(&uuid_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08007552
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007553 /*
Boris Burkov48cfa612020-07-16 13:29:46 -07007554 * It is possible for mount and umount to race in such a way that
7555 * we execute this code path, but open_fs_devices failed to clear
7556 * total_rw_bytes. We certainly want it cleared before reading the
7557 * device items, so clear it here.
7558 */
7559 fs_info->fs_devices->total_rw_bytes = 0;
7560
7561 /*
Filipe Manana4d9380e2021-11-04 12:43:08 +00007562 * Lockdep complains about possible circular locking dependency between
7563 * a disk's open_mutex (struct gendisk.open_mutex), the rw semaphores
7564 * used for freeze procection of a fs (struct super_block.s_writers),
7565 * which we take when starting a transaction, and extent buffers of the
7566 * chunk tree if we call read_one_dev() while holding a lock on an
7567 * extent buffer of the chunk tree. Since we are mounting the filesystem
7568 * and at this point there can't be any concurrent task modifying the
7569 * chunk tree, to keep it simple, just skip locking on the chunk tree.
7570 */
7571 ASSERT(!test_bit(BTRFS_FS_OPEN, &fs_info->flags));
7572 path->skip_locking = 1;
7573
7574 /*
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007575 * Read all device items, and then all the chunk items. All
7576 * device items are found before any chunk item (their object id
7577 * is smaller than the lowest possible object id for a chunk
7578 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04007579 */
7580 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
7581 key.offset = 0;
7582 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007583 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00007584 if (ret < 0)
7585 goto error;
Chris Masond3977122009-01-05 21:25:51 -05007586 while (1) {
David Sterbad85327b12020-07-08 22:55:14 +02007587 struct extent_buffer *node;
7588
Chris Mason0b86a832008-03-24 15:01:56 -04007589 leaf = path->nodes[0];
7590 slot = path->slots[0];
7591 if (slot >= btrfs_header_nritems(leaf)) {
7592 ret = btrfs_next_leaf(root, path);
7593 if (ret == 0)
7594 continue;
7595 if (ret < 0)
7596 goto error;
7597 break;
7598 }
David Sterbad85327b12020-07-08 22:55:14 +02007599 node = path->nodes[1];
7600 if (node) {
7601 if (last_ra_node != node->start) {
7602 readahead_tree_node_children(node);
7603 last_ra_node = node->start;
7604 }
7605 }
Chris Mason0b86a832008-03-24 15:01:56 -04007606 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007607 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
7608 struct btrfs_dev_item *dev_item;
7609 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04007610 struct btrfs_dev_item);
David Sterba17850752019-03-20 16:45:15 +01007611 ret = read_one_dev(leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007612 if (ret)
7613 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07007614 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04007615 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
7616 struct btrfs_chunk *chunk;
Filipe Manana79bd3712021-06-29 14:43:06 +01007617
7618 /*
7619 * We are only called at mount time, so no need to take
7620 * fs_info->chunk_mutex. Plus, to avoid lockdep warnings,
7621 * we always lock first fs_info->chunk_mutex before
7622 * acquiring any locks on the chunk tree. This is a
7623 * requirement for chunk allocation, see the comment on
7624 * top of btrfs_chunk_alloc() for details.
7625 */
Chris Mason0b86a832008-03-24 15:01:56 -04007626 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba9690ac02019-03-20 16:43:07 +01007627 ret = read_one_chunk(&found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05007628 if (ret)
7629 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04007630 }
7631 path->slots[0]++;
7632 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07007633
7634 /*
7635 * After loading chunk tree, we've got all device information,
7636 * do another round of validation checks.
7637 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007638 if (total_dev != fs_info->fs_devices->total_devices) {
7639 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007640 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007641 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07007642 total_dev);
7643 ret = -EINVAL;
7644 goto error;
7645 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007646 if (btrfs_super_total_bytes(fs_info->super_copy) <
7647 fs_info->fs_devices->total_rw_bytes) {
7648 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007649 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007650 btrfs_super_total_bytes(fs_info->super_copy),
7651 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07007652 ret = -EINVAL;
7653 goto error;
7654 }
Chris Mason0b86a832008-03-24 15:01:56 -04007655 ret = 0;
7656error:
Li Zefanb367e472011-12-07 11:38:24 +08007657 mutex_unlock(&uuid_mutex);
7658
Yan Zheng2b820322008-11-17 21:11:30 -05007659 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007660 return ret;
7661}
Stefan Behrens442a4f62012-05-25 16:06:08 +02007662
Miao Xiecb517ea2013-05-15 07:48:19 +00007663void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
7664{
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007665 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs;
Miao Xiecb517ea2013-05-15 07:48:19 +00007666 struct btrfs_device *device;
7667
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007668 fs_devices->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007669
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007670 mutex_lock(&fs_devices->device_list_mutex);
7671 list_for_each_entry(device, &fs_devices->devices, dev_list)
7672 device->fs_info = fs_info;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007673
7674 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007675 list_for_each_entry(device, &seed_devs->devices, dev_list)
7676 device->fs_info = fs_info;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007677
7678 seed_devs->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007679 }
Anand Jaine17125b2020-09-05 01:34:31 +08007680 mutex_unlock(&fs_devices->device_list_mutex);
Miao Xiecb517ea2013-05-15 07:48:19 +00007681}
7682
David Sterba1dc990d2019-08-21 20:05:32 +02007683static u64 btrfs_dev_stats_value(const struct extent_buffer *eb,
7684 const struct btrfs_dev_stats_item *ptr,
7685 int index)
7686{
7687 u64 val;
7688
7689 read_extent_buffer(eb, &val,
7690 offsetof(struct btrfs_dev_stats_item, values) +
7691 ((unsigned long)ptr) + (index * sizeof(u64)),
7692 sizeof(val));
7693 return val;
7694}
7695
7696static void btrfs_set_dev_stats_value(struct extent_buffer *eb,
7697 struct btrfs_dev_stats_item *ptr,
7698 int index, u64 val)
7699{
7700 write_extent_buffer(eb, &val,
7701 offsetof(struct btrfs_dev_stats_item, values) +
7702 ((unsigned long)ptr) + (index * sizeof(u64)),
7703 sizeof(val));
7704}
7705
Josef Bacik92e26df2020-09-18 16:44:33 -04007706static int btrfs_device_init_dev_stats(struct btrfs_device *device,
7707 struct btrfs_path *path)
Josef Bacik124604e2020-09-18 16:44:32 -04007708{
7709 struct btrfs_dev_stats_item *ptr;
7710 struct extent_buffer *eb;
7711 struct btrfs_key key;
7712 int item_size;
7713 int i, ret, slot;
7714
Josef Bacik82d62d02021-03-11 11:23:15 -05007715 if (!device->fs_info->dev_root)
7716 return 0;
7717
Josef Bacik124604e2020-09-18 16:44:32 -04007718 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7719 key.type = BTRFS_PERSISTENT_ITEM_KEY;
7720 key.offset = device->devid;
7721 ret = btrfs_search_slot(NULL, device->fs_info->dev_root, &key, path, 0, 0);
7722 if (ret) {
7723 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7724 btrfs_dev_stat_set(device, i, 0);
7725 device->dev_stats_valid = 1;
7726 btrfs_release_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007727 return ret < 0 ? ret : 0;
Josef Bacik124604e2020-09-18 16:44:32 -04007728 }
7729 slot = path->slots[0];
7730 eb = path->nodes[0];
7731 item_size = btrfs_item_size_nr(eb, slot);
7732
7733 ptr = btrfs_item_ptr(eb, slot, struct btrfs_dev_stats_item);
7734
7735 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7736 if (item_size >= (1 + i) * sizeof(__le64))
7737 btrfs_dev_stat_set(device, i,
7738 btrfs_dev_stats_value(eb, ptr, i));
7739 else
7740 btrfs_dev_stat_set(device, i, 0);
7741 }
7742
7743 device->dev_stats_valid = 1;
7744 btrfs_dev_stat_print_on_load(device);
7745 btrfs_release_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007746
7747 return 0;
Josef Bacik124604e2020-09-18 16:44:32 -04007748}
7749
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007750int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
7751{
Josef Bacik124604e2020-09-18 16:44:32 -04007752 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007753 struct btrfs_device *device;
7754 struct btrfs_path *path = NULL;
Josef Bacik92e26df2020-09-18 16:44:33 -04007755 int ret = 0;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007756
7757 path = btrfs_alloc_path();
Anand Jain3b80a9842019-08-21 17:26:32 +08007758 if (!path)
7759 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007760
7761 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik92e26df2020-09-18 16:44:33 -04007762 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7763 ret = btrfs_device_init_dev_stats(device, path);
7764 if (ret)
7765 goto out;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007766 }
Josef Bacik92e26df2020-09-18 16:44:33 -04007767 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
7768 list_for_each_entry(device, &seed_devs->devices, dev_list) {
7769 ret = btrfs_device_init_dev_stats(device, path);
7770 if (ret)
7771 goto out;
7772 }
7773 }
7774out:
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007775 mutex_unlock(&fs_devices->device_list_mutex);
7776
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007777 btrfs_free_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007778 return ret;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007779}
7780
7781static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007782 struct btrfs_device *device)
7783{
Nikolay Borisov5495f192018-07-20 19:37:49 +03007784 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007785 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007786 struct btrfs_path *path;
7787 struct btrfs_key key;
7788 struct extent_buffer *eb;
7789 struct btrfs_dev_stats_item *ptr;
7790 int ret;
7791 int i;
7792
David Sterba242e2952016-01-25 17:51:31 +01007793 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7794 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007795 key.offset = device->devid;
7796
7797 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007798 if (!path)
7799 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007800 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7801 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007802 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007803 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007804 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007805 goto out;
7806 }
7807
7808 if (ret == 0 &&
7809 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7810 /* need to delete old one and insert a new one */
7811 ret = btrfs_del_item(trans, dev_root, path);
7812 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007813 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007814 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007815 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007816 goto out;
7817 }
7818 ret = 1;
7819 }
7820
7821 if (ret == 1) {
7822 /* need to insert a new item */
7823 btrfs_release_path(path);
7824 ret = btrfs_insert_empty_item(trans, dev_root, path,
7825 &key, sizeof(*ptr));
7826 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007827 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007828 "insert dev_stats item for device %s failed %d",
7829 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007830 goto out;
7831 }
7832 }
7833
7834 eb = path->nodes[0];
7835 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7836 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7837 btrfs_set_dev_stats_value(eb, ptr, i,
7838 btrfs_dev_stat_read(device, i));
7839 btrfs_mark_buffer_dirty(eb);
7840
7841out:
7842 btrfs_free_path(path);
7843 return ret;
7844}
7845
7846/*
7847 * called from commit_transaction. Writes all changed device stats to disk.
7848 */
David Sterba196c9d82019-03-20 16:50:38 +01007849int btrfs_run_dev_stats(struct btrfs_trans_handle *trans)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007850{
David Sterba196c9d82019-03-20 16:50:38 +01007851 struct btrfs_fs_info *fs_info = trans->fs_info;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007852 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7853 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007854 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007855 int ret = 0;
7856
7857 mutex_lock(&fs_devices->device_list_mutex);
7858 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007859 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7860 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007861 continue;
7862
Nikolay Borisov9deae962017-10-24 13:47:37 +03007863
7864 /*
7865 * There is a LOAD-LOAD control dependency between the value of
7866 * dev_stats_ccnt and updating the on-disk values which requires
7867 * reading the in-memory counters. Such control dependencies
7868 * require explicit read memory barriers.
7869 *
7870 * This memory barriers pairs with smp_mb__before_atomic in
7871 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7872 * barrier implied by atomic_xchg in
7873 * btrfs_dev_stats_read_and_reset
7874 */
7875 smp_rmb();
7876
Nikolay Borisov5495f192018-07-20 19:37:49 +03007877 ret = update_dev_stat_item(trans, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007878 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007879 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007880 }
7881 mutex_unlock(&fs_devices->device_list_mutex);
7882
7883 return ret;
7884}
7885
Stefan Behrens442a4f62012-05-25 16:06:08 +02007886void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7887{
7888 btrfs_dev_stat_inc(dev, index);
7889 btrfs_dev_stat_print_on_error(dev);
7890}
7891
Eric Sandeen48a3b632013-04-25 20:41:01 +00007892static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007893{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007894 if (!dev->dev_stats_valid)
7895 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007896 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007897 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007898 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007899 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7900 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7901 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007902 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7903 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007904}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007905
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007906static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7907{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007908 int i;
7909
7910 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7911 if (btrfs_dev_stat_read(dev, i) != 0)
7912 break;
7913 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7914 return; /* all values == 0, suppress message */
7915
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007916 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007917 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007918 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007919 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7920 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7921 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7922 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7923 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7924}
7925
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007926int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007927 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007928{
Josef Bacik562d7b12021-10-05 16:12:42 -04007929 BTRFS_DEV_LOOKUP_ARGS(args);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007930 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007931 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007932 int i;
7933
7934 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik562d7b12021-10-05 16:12:42 -04007935 args.devid = stats->devid;
7936 dev = btrfs_find_device(fs_info->fs_devices, &args);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007937 mutex_unlock(&fs_devices->device_list_mutex);
7938
7939 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007940 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007941 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007942 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007943 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007944 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007945 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007946 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7947 if (stats->nr_items > i)
7948 stats->values[i] =
7949 btrfs_dev_stat_read_and_reset(dev, i);
7950 else
Anand Jain4e411a72019-08-07 16:21:19 +08007951 btrfs_dev_stat_set(dev, i, 0);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007952 }
Anand Jaina69976b2020-01-10 12:26:34 +08007953 btrfs_info(fs_info, "device stats zeroed by %s (%d)",
7954 current->comm, task_pid_nr(current));
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007955 } else {
7956 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7957 if (stats->nr_items > i)
7958 stats->values[i] = btrfs_dev_stat_read(dev, i);
7959 }
7960 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7961 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7962 return 0;
7963}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007964
Miao Xie935e5cc2014-09-03 21:35:33 +08007965/*
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007966 * Update the size and bytes used for each device where it changed. This is
7967 * delayed since we would otherwise get errors while writing out the
7968 * superblocks.
7969 *
7970 * Must be invoked during transaction commit.
Miao Xie935e5cc2014-09-03 21:35:33 +08007971 */
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007972void btrfs_commit_device_sizes(struct btrfs_transaction *trans)
Miao Xie935e5cc2014-09-03 21:35:33 +08007973{
Miao Xie935e5cc2014-09-03 21:35:33 +08007974 struct btrfs_device *curr, *next;
7975
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007976 ASSERT(trans->state == TRANS_STATE_COMMIT_DOING);
7977
7978 if (list_empty(&trans->dev_update_list))
Miao Xie935e5cc2014-09-03 21:35:33 +08007979 return;
7980
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007981 /*
7982 * We don't need the device_list_mutex here. This list is owned by the
7983 * transaction and the transaction must complete before the device is
7984 * released.
7985 */
7986 mutex_lock(&trans->fs_info->chunk_mutex);
7987 list_for_each_entry_safe(curr, next, &trans->dev_update_list,
7988 post_commit_list) {
7989 list_del_init(&curr->post_commit_list);
Miao Xie935e5cc2014-09-03 21:35:33 +08007990 curr->commit_total_bytes = curr->disk_total_bytes;
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007991 curr->commit_bytes_used = curr->bytes_used;
Miao Xie935e5cc2014-09-03 21:35:33 +08007992 }
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02007993 mutex_unlock(&trans->fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007994}
Anand Jain5a13f432015-03-10 06:38:31 +08007995
David Sterba46df06b2018-07-13 20:46:30 +02007996/*
7997 * Multiplicity factor for simple profiles: DUP, RAID1-like and RAID10.
7998 */
7999int btrfs_bg_type_to_factor(u64 flags)
8000{
David Sterba44b28ad2019-05-17 11:43:31 +02008001 const int index = btrfs_bg_flags_to_raid_index(flags);
8002
8003 return btrfs_raid_array[index].ncopies;
David Sterba46df06b2018-07-13 20:46:30 +02008004}
Qu Wenruocf90d882018-08-01 10:37:19 +08008005
8006
Qu Wenruocf90d882018-08-01 10:37:19 +08008007
8008static int verify_one_dev_extent(struct btrfs_fs_info *fs_info,
8009 u64 chunk_offset, u64 devid,
8010 u64 physical_offset, u64 physical_len)
8011{
Josef Bacik562d7b12021-10-05 16:12:42 -04008012 struct btrfs_dev_lookup_args args = { .devid = devid };
David Sterbac8bf1b62019-05-17 11:43:17 +02008013 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Qu Wenruocf90d882018-08-01 10:37:19 +08008014 struct extent_map *em;
8015 struct map_lookup *map;
Qu Wenruo05a37c42018-10-05 17:45:55 +08008016 struct btrfs_device *dev;
Qu Wenruocf90d882018-08-01 10:37:19 +08008017 u64 stripe_len;
8018 bool found = false;
8019 int ret = 0;
8020 int i;
8021
8022 read_lock(&em_tree->lock);
8023 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
8024 read_unlock(&em_tree->lock);
8025
8026 if (!em) {
8027 btrfs_err(fs_info,
8028"dev extent physical offset %llu on devid %llu doesn't have corresponding chunk",
8029 physical_offset, devid);
8030 ret = -EUCLEAN;
8031 goto out;
8032 }
8033
8034 map = em->map_lookup;
8035 stripe_len = calc_stripe_length(map->type, em->len, map->num_stripes);
8036 if (physical_len != stripe_len) {
8037 btrfs_err(fs_info,
8038"dev extent physical offset %llu on devid %llu length doesn't match chunk %llu, have %llu expect %llu",
8039 physical_offset, devid, em->start, physical_len,
8040 stripe_len);
8041 ret = -EUCLEAN;
8042 goto out;
8043 }
8044
8045 for (i = 0; i < map->num_stripes; i++) {
8046 if (map->stripes[i].dev->devid == devid &&
8047 map->stripes[i].physical == physical_offset) {
8048 found = true;
8049 if (map->verified_stripes >= map->num_stripes) {
8050 btrfs_err(fs_info,
8051 "too many dev extents for chunk %llu found",
8052 em->start);
8053 ret = -EUCLEAN;
8054 goto out;
8055 }
8056 map->verified_stripes++;
8057 break;
8058 }
8059 }
8060 if (!found) {
8061 btrfs_err(fs_info,
8062 "dev extent physical offset %llu devid %llu has no corresponding chunk",
8063 physical_offset, devid);
8064 ret = -EUCLEAN;
8065 }
Qu Wenruo05a37c42018-10-05 17:45:55 +08008066
David Sterba1a9fd412021-05-21 17:42:23 +02008067 /* Make sure no dev extent is beyond device boundary */
Josef Bacik562d7b12021-10-05 16:12:42 -04008068 dev = btrfs_find_device(fs_info->fs_devices, &args);
Qu Wenruo05a37c42018-10-05 17:45:55 +08008069 if (!dev) {
8070 btrfs_err(fs_info, "failed to find devid %llu", devid);
8071 ret = -EUCLEAN;
8072 goto out;
8073 }
Qu Wenruo1b3922a2019-01-08 14:08:18 +08008074
Qu Wenruo05a37c42018-10-05 17:45:55 +08008075 if (physical_offset + physical_len > dev->disk_total_bytes) {
8076 btrfs_err(fs_info,
8077"dev extent devid %llu physical offset %llu len %llu is beyond device boundary %llu",
8078 devid, physical_offset, physical_len,
8079 dev->disk_total_bytes);
8080 ret = -EUCLEAN;
8081 goto out;
8082 }
Naohiro Aota381a6962021-02-04 19:21:49 +09008083
8084 if (dev->zone_info) {
8085 u64 zone_size = dev->zone_info->zone_size;
8086
8087 if (!IS_ALIGNED(physical_offset, zone_size) ||
8088 !IS_ALIGNED(physical_len, zone_size)) {
8089 btrfs_err(fs_info,
8090"zoned: dev extent devid %llu physical offset %llu len %llu is not aligned to device zone",
8091 devid, physical_offset, physical_len);
8092 ret = -EUCLEAN;
8093 goto out;
8094 }
8095 }
8096
Qu Wenruocf90d882018-08-01 10:37:19 +08008097out:
8098 free_extent_map(em);
8099 return ret;
8100}
8101
8102static int verify_chunk_dev_extent_mapping(struct btrfs_fs_info *fs_info)
8103{
David Sterbac8bf1b62019-05-17 11:43:17 +02008104 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Qu Wenruocf90d882018-08-01 10:37:19 +08008105 struct extent_map *em;
8106 struct rb_node *node;
8107 int ret = 0;
8108
8109 read_lock(&em_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08008110 for (node = rb_first_cached(&em_tree->map); node; node = rb_next(node)) {
Qu Wenruocf90d882018-08-01 10:37:19 +08008111 em = rb_entry(node, struct extent_map, rb_node);
8112 if (em->map_lookup->num_stripes !=
8113 em->map_lookup->verified_stripes) {
8114 btrfs_err(fs_info,
8115 "chunk %llu has missing dev extent, have %d expect %d",
8116 em->start, em->map_lookup->verified_stripes,
8117 em->map_lookup->num_stripes);
8118 ret = -EUCLEAN;
8119 goto out;
8120 }
8121 }
8122out:
8123 read_unlock(&em_tree->lock);
8124 return ret;
8125}
8126
8127/*
8128 * Ensure that all dev extents are mapped to correct chunk, otherwise
8129 * later chunk allocation/free would cause unexpected behavior.
8130 *
8131 * NOTE: This will iterate through the whole device tree, which should be of
8132 * the same size level as the chunk tree. This slightly increases mount time.
8133 */
8134int btrfs_verify_dev_extents(struct btrfs_fs_info *fs_info)
8135{
8136 struct btrfs_path *path;
8137 struct btrfs_root *root = fs_info->dev_root;
8138 struct btrfs_key key;
Qu Wenruo5eb19382018-10-05 17:45:54 +08008139 u64 prev_devid = 0;
8140 u64 prev_dev_ext_end = 0;
Qu Wenruocf90d882018-08-01 10:37:19 +08008141 int ret = 0;
8142
Josef Bacik42437a62020-10-16 11:29:18 -04008143 /*
8144 * We don't have a dev_root because we mounted with ignorebadroots and
8145 * failed to load the root, so we want to skip the verification in this
8146 * case for sure.
8147 *
8148 * However if the dev root is fine, but the tree itself is corrupted
8149 * we'd still fail to mount. This verification is only to make sure
8150 * writes can happen safely, so instead just bypass this check
8151 * completely in the case of IGNOREBADROOTS.
8152 */
8153 if (btrfs_test_opt(fs_info, IGNOREBADROOTS))
8154 return 0;
8155
Qu Wenruocf90d882018-08-01 10:37:19 +08008156 key.objectid = 1;
8157 key.type = BTRFS_DEV_EXTENT_KEY;
8158 key.offset = 0;
8159
8160 path = btrfs_alloc_path();
8161 if (!path)
8162 return -ENOMEM;
8163
8164 path->reada = READA_FORWARD;
8165 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8166 if (ret < 0)
8167 goto out;
8168
8169 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
Marcos Paulo de Souzaad9a9372021-07-13 10:58:03 -03008170 ret = btrfs_next_leaf(root, path);
Qu Wenruocf90d882018-08-01 10:37:19 +08008171 if (ret < 0)
8172 goto out;
8173 /* No dev extents at all? Not good */
8174 if (ret > 0) {
8175 ret = -EUCLEAN;
8176 goto out;
8177 }
8178 }
8179 while (1) {
8180 struct extent_buffer *leaf = path->nodes[0];
8181 struct btrfs_dev_extent *dext;
8182 int slot = path->slots[0];
8183 u64 chunk_offset;
8184 u64 physical_offset;
8185 u64 physical_len;
8186 u64 devid;
8187
8188 btrfs_item_key_to_cpu(leaf, &key, slot);
8189 if (key.type != BTRFS_DEV_EXTENT_KEY)
8190 break;
8191 devid = key.objectid;
8192 physical_offset = key.offset;
8193
8194 dext = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
8195 chunk_offset = btrfs_dev_extent_chunk_offset(leaf, dext);
8196 physical_len = btrfs_dev_extent_length(leaf, dext);
8197
Qu Wenruo5eb19382018-10-05 17:45:54 +08008198 /* Check if this dev extent overlaps with the previous one */
8199 if (devid == prev_devid && physical_offset < prev_dev_ext_end) {
8200 btrfs_err(fs_info,
8201"dev extent devid %llu physical offset %llu overlap with previous dev extent end %llu",
8202 devid, physical_offset, prev_dev_ext_end);
8203 ret = -EUCLEAN;
8204 goto out;
8205 }
8206
Qu Wenruocf90d882018-08-01 10:37:19 +08008207 ret = verify_one_dev_extent(fs_info, chunk_offset, devid,
8208 physical_offset, physical_len);
8209 if (ret < 0)
8210 goto out;
Qu Wenruo5eb19382018-10-05 17:45:54 +08008211 prev_devid = devid;
8212 prev_dev_ext_end = physical_offset + physical_len;
8213
Qu Wenruocf90d882018-08-01 10:37:19 +08008214 ret = btrfs_next_item(root, path);
8215 if (ret < 0)
8216 goto out;
8217 if (ret > 0) {
8218 ret = 0;
8219 break;
8220 }
8221 }
8222
8223 /* Ensure all chunks have corresponding dev extents */
8224 ret = verify_chunk_dev_extent_mapping(fs_info);
8225out:
8226 btrfs_free_path(path);
8227 return ret;
8228}
Omar Sandovaleede2bf2016-11-03 10:28:12 -07008229
8230/*
8231 * Check whether the given block group or device is pinned by any inode being
8232 * used as a swapfile.
8233 */
8234bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr)
8235{
8236 struct btrfs_swapfile_pin *sp;
8237 struct rb_node *node;
8238
8239 spin_lock(&fs_info->swapfile_pins_lock);
8240 node = fs_info->swapfile_pins.rb_node;
8241 while (node) {
8242 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
8243 if (ptr < sp->ptr)
8244 node = node->rb_left;
8245 else if (ptr > sp->ptr)
8246 node = node->rb_right;
8247 else
8248 break;
8249 }
8250 spin_unlock(&fs_info->swapfile_pins_lock);
8251 return node != NULL;
8252}
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008253
8254static int relocating_repair_kthread(void *data)
8255{
8256 struct btrfs_block_group *cache = (struct btrfs_block_group *)data;
8257 struct btrfs_fs_info *fs_info = cache->fs_info;
8258 u64 target;
8259 int ret = 0;
8260
8261 target = cache->start;
8262 btrfs_put_block_group(cache);
8263
8264 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
8265 btrfs_info(fs_info,
8266 "zoned: skip relocating block group %llu to repair: EBUSY",
8267 target);
8268 return -EBUSY;
8269 }
8270
Johannes Thumshirnf3372062021-04-19 16:41:01 +09008271 mutex_lock(&fs_info->reclaim_bgs_lock);
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008272
8273 /* Ensure block group still exists */
8274 cache = btrfs_lookup_block_group(fs_info, target);
8275 if (!cache)
8276 goto out;
8277
8278 if (!cache->relocating_repair)
8279 goto out;
8280
8281 ret = btrfs_may_alloc_data_chunk(fs_info, target);
8282 if (ret < 0)
8283 goto out;
8284
8285 btrfs_info(fs_info,
8286 "zoned: relocating block group %llu to repair IO failure",
8287 target);
8288 ret = btrfs_relocate_chunk(fs_info, target);
8289
8290out:
8291 if (cache)
8292 btrfs_put_block_group(cache);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09008293 mutex_unlock(&fs_info->reclaim_bgs_lock);
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008294 btrfs_exclop_finish(fs_info);
8295
8296 return ret;
8297}
8298
8299int btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical)
8300{
8301 struct btrfs_block_group *cache;
8302
8303 /* Do not attempt to repair in degraded state */
8304 if (btrfs_test_opt(fs_info, DEGRADED))
8305 return 0;
8306
8307 cache = btrfs_lookup_block_group(fs_info, logical);
8308 if (!cache)
8309 return 0;
8310
8311 spin_lock(&cache->lock);
8312 if (cache->relocating_repair) {
8313 spin_unlock(&cache->lock);
8314 btrfs_put_block_group(cache);
8315 return 0;
8316 }
8317 cache->relocating_repair = 1;
8318 spin_unlock(&cache->lock);
8319
8320 kthread_run(relocating_repair_kthread, cache,
8321 "btrfs-relocating-repair");
8322
8323 return 0;
8324}