blob: b07d382d53a867c19e84f35d59377bfabc23826d [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
Qu Wenruobf083872021-11-19 14:19:33 +080037#define BTRFS_BLOCK_GROUP_STRIPE_MASK (BTRFS_BLOCK_GROUP_RAID0 | \
38 BTRFS_BLOCK_GROUP_RAID10 | \
39 BTRFS_BLOCK_GROUP_RAID56_MASK)
40
Zhao Leiaf902042015-09-15 21:08:06 +080041const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
42 [BTRFS_RAID_RAID10] = {
43 .sub_stripes = 2,
44 .dev_stripes = 1,
45 .devs_max = 0, /* 0 == as many as possible */
David Sterbab2f78e82021-07-22 20:54:37 +020046 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080047 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080048 .devs_increment = 2,
49 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020050 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080051 .raid_name = "raid10",
Anand Jain41a6e892018-04-25 19:01:43 +080052 .bg_flag = BTRFS_BLOCK_GROUP_RAID10,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080053 .mindev_error = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080054 },
55 [BTRFS_RAID_RAID1] = {
56 .sub_stripes = 1,
57 .dev_stripes = 1,
58 .devs_max = 2,
59 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080060 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080061 .devs_increment = 2,
62 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +020063 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +080064 .raid_name = "raid1",
Anand Jain41a6e892018-04-25 19:01:43 +080065 .bg_flag = BTRFS_BLOCK_GROUP_RAID1,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080066 .mindev_error = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080067 },
David Sterba47e6f742018-03-02 22:56:53 +010068 [BTRFS_RAID_RAID1C3] = {
69 .sub_stripes = 1,
70 .dev_stripes = 1,
David Sterbacf93e152019-11-27 16:10:54 +010071 .devs_max = 3,
David Sterba47e6f742018-03-02 22:56:53 +010072 .devs_min = 3,
73 .tolerated_failures = 2,
74 .devs_increment = 3,
75 .ncopies = 3,
David Sterbadb26a022019-11-25 15:34:48 +010076 .nparity = 0,
David Sterba47e6f742018-03-02 22:56:53 +010077 .raid_name = "raid1c3",
78 .bg_flag = BTRFS_BLOCK_GROUP_RAID1C3,
79 .mindev_error = BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET,
80 },
David Sterba8d6fac02018-03-02 22:56:53 +010081 [BTRFS_RAID_RAID1C4] = {
82 .sub_stripes = 1,
83 .dev_stripes = 1,
David Sterbacf93e152019-11-27 16:10:54 +010084 .devs_max = 4,
David Sterba8d6fac02018-03-02 22:56:53 +010085 .devs_min = 4,
86 .tolerated_failures = 3,
87 .devs_increment = 4,
88 .ncopies = 4,
David Sterbadb26a022019-11-25 15:34:48 +010089 .nparity = 0,
David Sterba8d6fac02018-03-02 22:56:53 +010090 .raid_name = "raid1c4",
91 .bg_flag = BTRFS_BLOCK_GROUP_RAID1C4,
92 .mindev_error = BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET,
93 },
Zhao Leiaf902042015-09-15 21:08:06 +080094 [BTRFS_RAID_DUP] = {
95 .sub_stripes = 1,
96 .dev_stripes = 2,
97 .devs_max = 1,
98 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080099 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800100 .devs_increment = 1,
101 .ncopies = 2,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200102 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +0800103 .raid_name = "dup",
Anand Jain41a6e892018-04-25 19:01:43 +0800104 .bg_flag = BTRFS_BLOCK_GROUP_DUP,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800105 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800106 },
107 [BTRFS_RAID_RAID0] = {
108 .sub_stripes = 1,
109 .dev_stripes = 1,
110 .devs_max = 0,
David Sterbab2f78e82021-07-22 20:54:37 +0200111 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800112 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800113 .devs_increment = 1,
114 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200115 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +0800116 .raid_name = "raid0",
Anand Jain41a6e892018-04-25 19:01:43 +0800117 .bg_flag = BTRFS_BLOCK_GROUP_RAID0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800118 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800119 },
120 [BTRFS_RAID_SINGLE] = {
121 .sub_stripes = 1,
122 .dev_stripes = 1,
123 .devs_max = 1,
124 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800125 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800126 .devs_increment = 1,
127 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200128 .nparity = 0,
Anand Jained234672018-04-25 19:01:42 +0800129 .raid_name = "single",
Anand Jain41a6e892018-04-25 19:01:43 +0800130 .bg_flag = 0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800131 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +0800132 },
133 [BTRFS_RAID_RAID5] = {
134 .sub_stripes = 1,
135 .dev_stripes = 1,
136 .devs_max = 0,
137 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800138 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +0800139 .devs_increment = 1,
Hans van Kranenburgda612e32018-10-04 23:24:41 +0200140 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200141 .nparity = 1,
Anand Jained234672018-04-25 19:01:42 +0800142 .raid_name = "raid5",
Anand Jain41a6e892018-04-25 19:01:43 +0800143 .bg_flag = BTRFS_BLOCK_GROUP_RAID5,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800144 .mindev_error = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800145 },
146 [BTRFS_RAID_RAID6] = {
147 .sub_stripes = 1,
148 .dev_stripes = 1,
149 .devs_max = 0,
150 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800151 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800152 .devs_increment = 1,
Hans van Kranenburgda612e32018-10-04 23:24:41 +0200153 .ncopies = 1,
Hans van Kranenburgb50836e2018-10-04 23:24:42 +0200154 .nparity = 2,
Anand Jained234672018-04-25 19:01:42 +0800155 .raid_name = "raid6",
Anand Jain41a6e892018-04-25 19:01:43 +0800156 .bg_flag = BTRFS_BLOCK_GROUP_RAID6,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800157 .mindev_error = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800158 },
159};
160
David Sterba500a44c2021-07-26 14:15:19 +0200161/*
162 * Convert block group flags (BTRFS_BLOCK_GROUP_*) to btrfs_raid_types, which
163 * can be used as index to access btrfs_raid_array[].
164 */
165enum btrfs_raid_types __attribute_const__ btrfs_bg_flags_to_raid_index(u64 flags)
166{
167 if (flags & BTRFS_BLOCK_GROUP_RAID10)
168 return BTRFS_RAID_RAID10;
169 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
170 return BTRFS_RAID_RAID1;
171 else if (flags & BTRFS_BLOCK_GROUP_RAID1C3)
172 return BTRFS_RAID_RAID1C3;
173 else if (flags & BTRFS_BLOCK_GROUP_RAID1C4)
174 return BTRFS_RAID_RAID1C4;
175 else if (flags & BTRFS_BLOCK_GROUP_DUP)
176 return BTRFS_RAID_DUP;
177 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
178 return BTRFS_RAID_RAID0;
179 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
180 return BTRFS_RAID_RAID5;
181 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
182 return BTRFS_RAID_RAID6;
183
184 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
185}
186
David Sterba158da512019-05-17 11:43:41 +0200187const char *btrfs_bg_type_to_raid_name(u64 flags)
Anand Jained234672018-04-25 19:01:42 +0800188{
David Sterba158da512019-05-17 11:43:41 +0200189 const int index = btrfs_bg_flags_to_raid_index(flags);
190
191 if (index >= BTRFS_NR_RAID_TYPES)
Anand Jained234672018-04-25 19:01:42 +0800192 return NULL;
193
David Sterba158da512019-05-17 11:43:41 +0200194 return btrfs_raid_array[index].raid_name;
Anand Jained234672018-04-25 19:01:42 +0800195}
196
Anand Jainf89e09c2018-11-20 16:12:55 +0800197/*
198 * Fill @buf with textual description of @bg_flags, no more than @size_buf
199 * bytes including terminating null byte.
200 */
201void btrfs_describe_block_groups(u64 bg_flags, char *buf, u32 size_buf)
202{
203 int i;
204 int ret;
205 char *bp = buf;
206 u64 flags = bg_flags;
207 u32 size_bp = size_buf;
208
209 if (!flags) {
210 strcpy(bp, "NONE");
211 return;
212 }
213
214#define DESCRIBE_FLAG(flag, desc) \
215 do { \
216 if (flags & (flag)) { \
217 ret = snprintf(bp, size_bp, "%s|", (desc)); \
218 if (ret < 0 || ret >= size_bp) \
219 goto out_overflow; \
220 size_bp -= ret; \
221 bp += ret; \
222 flags &= ~(flag); \
223 } \
224 } while (0)
225
226 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_DATA, "data");
227 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_SYSTEM, "system");
228 DESCRIBE_FLAG(BTRFS_BLOCK_GROUP_METADATA, "metadata");
229
230 DESCRIBE_FLAG(BTRFS_AVAIL_ALLOC_BIT_SINGLE, "single");
231 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
232 DESCRIBE_FLAG(btrfs_raid_array[i].bg_flag,
233 btrfs_raid_array[i].raid_name);
234#undef DESCRIBE_FLAG
235
236 if (flags) {
237 ret = snprintf(bp, size_bp, "0x%llx|", flags);
238 size_bp -= ret;
239 }
240
241 if (size_bp < size_buf)
242 buf[size_buf - size_bp - 1] = '\0'; /* remove last | */
243
244 /*
245 * The text is trimmed, it's up to the caller to provide sufficiently
246 * large buffer
247 */
248out_overflow:;
249}
250
David Sterba6f8e0fc2019-03-20 16:29:13 +0100251static int init_first_rw_device(struct btrfs_trans_handle *trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400252static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000253static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200254static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700255static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
256 enum btrfs_map_op op,
257 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +0800258 struct btrfs_io_context **bioc_ret,
Liu Bo5ab56092017-03-14 13:33:57 -0700259 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500260
David Sterba9c6b1c42017-06-16 22:30:00 +0200261/*
262 * Device locking
263 * ==============
264 *
265 * There are several mutexes that protect manipulation of devices and low-level
266 * structures like chunks but not block groups, extents or files
267 *
268 * uuid_mutex (global lock)
269 * ------------------------
270 * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from
271 * the SCAN_DEV ioctl registration or from mount either implicitly (the first
272 * device) or requested by the device= mount option
273 *
274 * the mutex can be very coarse and can cover long-running operations
275 *
276 * protects: updates to fs_devices counters like missing devices, rw devices,
Andrea Gelmini52042d82018-11-28 12:05:13 +0100277 * seeding, structure cloning, opening/closing devices at mount/umount time
David Sterba9c6b1c42017-06-16 22:30:00 +0200278 *
279 * global::fs_devs - add, remove, updates to the global list
280 *
Josef Bacik18c850f2020-07-17 15:12:27 -0400281 * does not protect: manipulation of the fs_devices::devices list in general
282 * but in mount context it could be used to exclude list modifications by eg.
283 * scan ioctl
David Sterba9c6b1c42017-06-16 22:30:00 +0200284 *
285 * btrfs_device::name - renames (write side), read is RCU
286 *
287 * fs_devices::device_list_mutex (per-fs, with RCU)
288 * ------------------------------------------------
289 * protects updates to fs_devices::devices, ie. adding and deleting
290 *
291 * simple list traversal with read-only actions can be done with RCU protection
292 *
293 * may be used to exclude some operations from running concurrently without any
294 * modifications to the list (see write_all_supers)
295 *
Josef Bacik18c850f2020-07-17 15:12:27 -0400296 * Is not required at mount and close times, because our device list is
297 * protected by the uuid_mutex at that point.
298 *
David Sterba9c6b1c42017-06-16 22:30:00 +0200299 * balance_mutex
300 * -------------
301 * protects balance structures (status, state) and context accessed from
302 * several places (internally, ioctl)
303 *
304 * chunk_mutex
305 * -----------
306 * protects chunks, adding or removing during allocation, trim or when a new
Nikolay Borisov0b6f5d42019-05-09 18:11:11 +0300307 * device is added/removed. Additionally it also protects post_commit_list of
308 * individual devices, since they can be added to the transaction's
309 * post_commit_list only with chunk_mutex held.
David Sterba9c6b1c42017-06-16 22:30:00 +0200310 *
311 * cleaner_mutex
312 * -------------
313 * a big lock that is held by the cleaner thread and prevents running subvolume
314 * cleaning together with relocation or delayed iputs
315 *
316 *
317 * Lock nesting
318 * ============
319 *
320 * uuid_mutex
Anand Jainae3e7152020-05-14 01:42:45 +0800321 * device_list_mutex
322 * chunk_mutex
323 * balance_mutex
Anand Jain89595e82018-04-18 14:59:25 +0800324 *
325 *
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500326 * Exclusive operations
327 * ====================
Anand Jain89595e82018-04-18 14:59:25 +0800328 *
329 * Maintains the exclusivity of the following operations that apply to the
330 * whole filesystem and cannot run in parallel.
331 *
332 * - Balance (*)
333 * - Device add
334 * - Device remove
335 * - Device replace (*)
336 * - Resize
337 *
338 * The device operations (as above) can be in one of the following states:
339 *
340 * - Running state
341 * - Paused state
342 * - Completed state
343 *
344 * Only device operations marked with (*) can go into the Paused state for the
345 * following reasons:
346 *
347 * - ioctl (only Balance can be Paused through ioctl)
348 * - filesystem remounted as read-only
349 * - filesystem unmounted and mounted as read-only
350 * - system power-cycle and filesystem mounted as read-only
351 * - filesystem or device errors leading to forced read-only
352 *
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500353 * The status of exclusive operation is set and cleared atomically.
354 * During the course of Paused state, fs_info::exclusive_operation remains set.
Anand Jain89595e82018-04-18 14:59:25 +0800355 * A device operation in Paused or Running state can be canceled or resumed
356 * either by ioctl (Balance only) or when remounted as read-write.
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500357 * The exclusive status is cleared when the device operation is canceled or
Anand Jain89595e82018-04-18 14:59:25 +0800358 * completed.
David Sterba9c6b1c42017-06-16 22:30:00 +0200359 */
360
Miao Xie67a2c452014-09-03 21:35:43 +0800361DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400362static LIST_HEAD(fs_uuids);
David Sterba4143cb82019-10-01 19:57:37 +0200363struct list_head * __attribute_const__ btrfs_get_fs_uuids(void)
Anand Jainc73eccf2015-03-10 06:38:30 +0800364{
365 return &fs_uuids;
366}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400367
David Sterba2dfeca92017-06-14 02:48:07 +0200368/*
369 * alloc_fs_devices - allocate struct btrfs_fs_devices
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200370 * @fsid: if not NULL, copy the UUID to fs_devices::fsid
371 * @metadata_fsid: if not NULL, copy the UUID to fs_devices::metadata_fsid
David Sterba2dfeca92017-06-14 02:48:07 +0200372 *
373 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
374 * The returned struct is not linked onto any lists and can be destroyed with
375 * kfree() right away.
376 */
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200377static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid,
378 const u8 *metadata_fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300379{
380 struct btrfs_fs_devices *fs_devs;
381
David Sterba78f2c9e2016-02-11 14:25:38 +0100382 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300383 if (!fs_devs)
384 return ERR_PTR(-ENOMEM);
385
386 mutex_init(&fs_devs->device_list_mutex);
387
388 INIT_LIST_HEAD(&fs_devs->devices);
389 INIT_LIST_HEAD(&fs_devs->alloc_list);
Anand Jainc4babc52018-04-12 10:29:25 +0800390 INIT_LIST_HEAD(&fs_devs->fs_list);
Nikolay Borisov944d3f92020-07-16 10:25:33 +0300391 INIT_LIST_HEAD(&fs_devs->seed_list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300392 if (fsid)
393 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300394
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200395 if (metadata_fsid)
396 memcpy(fs_devs->metadata_uuid, metadata_fsid, BTRFS_FSID_SIZE);
397 else if (fsid)
398 memcpy(fs_devs->metadata_uuid, fsid, BTRFS_FSID_SIZE);
399
Ilya Dryomov2208a372013-08-12 14:33:03 +0300400 return fs_devs;
401}
402
David Sterbaa425f9d2018-03-20 15:47:33 +0100403void btrfs_free_device(struct btrfs_device *device)
David Sterba48dae9c2017-10-30 18:10:25 +0100404{
Nikolay Borisovbbbf7242019-03-25 14:31:22 +0200405 WARN_ON(!list_empty(&device->post_commit_list));
David Sterba48dae9c2017-10-30 18:10:25 +0100406 rcu_string_free(device->name);
Jeff Mahoney1c11b632019-03-27 14:24:12 +0200407 extent_io_tree_release(&device->alloc_state);
David Sterba48dae9c2017-10-30 18:10:25 +0100408 bio_put(device->flush_bio);
Naohiro Aota5b316462020-11-10 20:26:07 +0900409 btrfs_destroy_dev_zone_info(device);
David Sterba48dae9c2017-10-30 18:10:25 +0100410 kfree(device);
411}
412
Yan Zhenge4404d62008-12-12 10:03:26 -0500413static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
414{
415 struct btrfs_device *device;
416 WARN_ON(fs_devices->opened);
417 while (!list_empty(&fs_devices->devices)) {
418 device = list_entry(fs_devices->devices.next,
419 struct btrfs_device, dev_list);
420 list_del(&device->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100421 btrfs_free_device(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500422 }
423 kfree(fs_devices);
424}
425
David Sterbaffc5a372018-02-19 17:24:15 +0100426void __exit btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400427{
428 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400429
Yan Zheng2b820322008-11-17 21:11:30 -0500430 while (!list_empty(&fs_uuids)) {
431 fs_devices = list_entry(fs_uuids.next,
Anand Jainc4babc52018-04-12 10:29:25 +0800432 struct btrfs_fs_devices, fs_list);
433 list_del(&fs_devices->fs_list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500434 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400435 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400436}
437
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200438static noinline struct btrfs_fs_devices *find_fsid(
439 const u8 *fsid, const u8 *metadata_fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400440{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400441 struct btrfs_fs_devices *fs_devices;
442
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200443 ASSERT(fsid);
444
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200445 /* Handle non-split brain cases */
Anand Jainc4babc52018-04-12 10:29:25 +0800446 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200447 if (metadata_fsid) {
448 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0
449 && memcmp(metadata_fsid, fs_devices->metadata_uuid,
450 BTRFS_FSID_SIZE) == 0)
451 return fs_devices;
452 } else {
453 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
454 return fs_devices;
455 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400456 }
457 return NULL;
458}
459
Su Yuec6730a02020-01-10 14:11:33 +0200460static struct btrfs_fs_devices *find_fsid_with_metadata_uuid(
461 struct btrfs_super_block *disk_super)
462{
463
464 struct btrfs_fs_devices *fs_devices;
465
466 /*
467 * Handle scanned device having completed its fsid change but
468 * belonging to a fs_devices that was created by first scanning
469 * a device which didn't have its fsid/metadata_uuid changed
470 * at all and the CHANGING_FSID_V2 flag set.
471 */
472 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
473 if (fs_devices->fsid_change &&
474 memcmp(disk_super->metadata_uuid, fs_devices->fsid,
475 BTRFS_FSID_SIZE) == 0 &&
476 memcmp(fs_devices->fsid, fs_devices->metadata_uuid,
477 BTRFS_FSID_SIZE) == 0) {
478 return fs_devices;
479 }
480 }
481 /*
482 * Handle scanned device having completed its fsid change but
483 * belonging to a fs_devices that was created by a device that
484 * has an outdated pair of fsid/metadata_uuid and
485 * CHANGING_FSID_V2 flag set.
486 */
487 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
488 if (fs_devices->fsid_change &&
489 memcmp(fs_devices->metadata_uuid,
490 fs_devices->fsid, BTRFS_FSID_SIZE) != 0 &&
491 memcmp(disk_super->metadata_uuid, fs_devices->metadata_uuid,
492 BTRFS_FSID_SIZE) == 0) {
493 return fs_devices;
494 }
495 }
496
497 return find_fsid(disk_super->fsid, disk_super->metadata_uuid);
498}
499
500
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100501static int
502btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
503 int flush, struct block_device **bdev,
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900504 struct btrfs_super_block **disk_super)
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100505{
506 int ret;
507
508 *bdev = blkdev_get_by_path(device_path, flags, holder);
509
510 if (IS_ERR(*bdev)) {
511 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100512 goto error;
513 }
514
515 if (flush)
Christoph Hellwig1226dff2021-10-19 08:25:27 +0200516 sync_blockdev(*bdev);
David Sterba9f6d2512017-06-16 01:48:05 +0200517 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100518 if (ret) {
519 blkdev_put(*bdev, flags);
520 goto error;
521 }
522 invalidate_bdev(*bdev);
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900523 *disk_super = btrfs_read_dev_super(*bdev);
524 if (IS_ERR(*disk_super)) {
525 ret = PTR_ERR(*disk_super);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100526 blkdev_put(*bdev, flags);
527 goto error;
528 }
529
530 return 0;
531
532error:
533 *bdev = NULL;
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100534 return ret;
535}
536
Anand Jain70bc7082019-01-04 13:31:53 +0800537static bool device_path_matched(const char *path, struct btrfs_device *device)
538{
539 int found;
540
541 rcu_read_lock();
542 found = strcmp(rcu_str_deref(device->name), path);
543 rcu_read_unlock();
544
545 return found == 0;
546}
547
Anand Jaind8367db2018-01-18 22:00:37 +0800548/*
549 * Search and remove all stale (devices which are not mounted) devices.
550 * When both inputs are NULL, it will search and release all stale devices.
551 * path: Optional. When provided will it release all unmounted devices
552 * matching this path only.
553 * skip_dev: Optional. Will skip this device when searching for the stale
554 * devices.
Anand Jain70bc7082019-01-04 13:31:53 +0800555 * Return: 0 for success or if @path is NULL.
556 * -EBUSY if @path is a mounted device.
557 * -ENOENT if @path does not match any device in the list.
Anand Jaind8367db2018-01-18 22:00:37 +0800558 */
Anand Jain70bc7082019-01-04 13:31:53 +0800559static int btrfs_free_stale_devices(const char *path,
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800560 struct btrfs_device *skip_device)
Anand Jain4fde46f2015-06-17 21:10:48 +0800561{
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800562 struct btrfs_fs_devices *fs_devices, *tmp_fs_devices;
563 struct btrfs_device *device, *tmp_device;
Anand Jain70bc7082019-01-04 13:31:53 +0800564 int ret = 0;
565
Anand Jainc1247062021-08-31 09:21:28 +0800566 lockdep_assert_held(&uuid_mutex);
567
Anand Jain70bc7082019-01-04 13:31:53 +0800568 if (path)
569 ret = -ENOENT;
Anand Jain4fde46f2015-06-17 21:10:48 +0800570
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800571 list_for_each_entry_safe(fs_devices, tmp_fs_devices, &fs_uuids, fs_list) {
Anand Jain4fde46f2015-06-17 21:10:48 +0800572
Anand Jain70bc7082019-01-04 13:31:53 +0800573 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800574 list_for_each_entry_safe(device, tmp_device,
575 &fs_devices->devices, dev_list) {
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800576 if (skip_device && skip_device == device)
Anand Jaind8367db2018-01-18 22:00:37 +0800577 continue;
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800578 if (path && !device->name)
Anand Jain4fde46f2015-06-17 21:10:48 +0800579 continue;
Anand Jain70bc7082019-01-04 13:31:53 +0800580 if (path && !device_path_matched(path, device))
Anand Jain38cf6652018-01-18 22:00:34 +0800581 continue;
Anand Jain70bc7082019-01-04 13:31:53 +0800582 if (fs_devices->opened) {
583 /* for an already deleted device return 0 */
584 if (path && ret != 0)
585 ret = -EBUSY;
586 break;
587 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800588
Anand Jain4fde46f2015-06-17 21:10:48 +0800589 /* delete the stale device */
Anand Jain7bcb8162018-05-29 17:23:20 +0800590 fs_devices->num_devices--;
591 list_del(&device->dev_list);
592 btrfs_free_device(device);
593
Anand Jain70bc7082019-01-04 13:31:53 +0800594 ret = 0;
Anand Jain7bcb8162018-05-29 17:23:20 +0800595 }
596 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain70bc7082019-01-04 13:31:53 +0800597
Anand Jain7bcb8162018-05-29 17:23:20 +0800598 if (fs_devices->num_devices == 0) {
599 btrfs_sysfs_remove_fsid(fs_devices);
600 list_del(&fs_devices->fs_list);
601 free_fs_devices(fs_devices);
Anand Jain4fde46f2015-06-17 21:10:48 +0800602 }
603 }
Anand Jain70bc7082019-01-04 13:31:53 +0800604
605 return ret;
Anand Jain4fde46f2015-06-17 21:10:48 +0800606}
607
Josef Bacik18c850f2020-07-17 15:12:27 -0400608/*
609 * This is only used on mount, and we are protected from competing things
610 * messing with our fs_devices by the uuid_mutex, thus we do not need the
611 * fs_devices->device_list_mutex here.
612 */
Anand Jain0fb08bc2017-11-09 23:45:24 +0800613static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
614 struct btrfs_device *device, fmode_t flags,
615 void *holder)
616{
617 struct request_queue *q;
618 struct block_device *bdev;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800619 struct btrfs_super_block *disk_super;
620 u64 devid;
621 int ret;
622
623 if (device->bdev)
624 return -EINVAL;
625 if (!device->name)
626 return -EINVAL;
627
628 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900629 &bdev, &disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800630 if (ret)
631 return ret;
632
Anand Jain0fb08bc2017-11-09 23:45:24 +0800633 devid = btrfs_stack_device_id(&disk_super->dev_item);
634 if (devid != device->devid)
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900635 goto error_free_page;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800636
637 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900638 goto error_free_page;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800639
640 device->generation = btrfs_super_generation(disk_super);
641
642 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200643 if (btrfs_super_incompat_flags(disk_super) &
644 BTRFS_FEATURE_INCOMPAT_METADATA_UUID) {
645 pr_err(
646 "BTRFS: Invalid seeding and uuid-changed device detected\n");
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900647 goto error_free_page;
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200648 }
649
Anand Jainebbede42017-12-04 12:54:52 +0800650 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Johannes Thumshirn0395d842019-11-13 11:27:27 +0100651 fs_devices->seeding = true;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800652 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800653 if (bdev_read_only(bdev))
654 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
655 else
656 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800657 }
658
659 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800660 if (!blk_queue_nonrot(q))
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +0100661 fs_devices->rotating = true;
Anand Jain0fb08bc2017-11-09 23:45:24 +0800662
663 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800664 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800665 device->mode = flags;
666
667 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800668 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
669 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800670 fs_devices->rw_devices++;
Anand Jainb1b8e382018-01-22 14:49:37 -0800671 list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800672 }
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900673 btrfs_release_disk_super(disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800674
675 return 0;
676
Johannes Thumshirn8f323802020-02-14 00:24:32 +0900677error_free_page:
678 btrfs_release_disk_super(disk_super);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800679 blkdev_put(bdev, flags);
680
681 return -EINVAL;
682}
683
David Sterba60999ca2014-03-26 18:26:36 +0100684/*
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200685 * Handle scanned device having its CHANGING_FSID_V2 flag set and the fs_devices
Su Yuec0d81c72020-01-10 14:11:32 +0200686 * being created with a disk that has already completed its fsid change. Such
687 * disk can belong to an fs which has its FSID changed or to one which doesn't.
688 * Handle both cases here.
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200689 */
690static struct btrfs_fs_devices *find_fsid_inprogress(
691 struct btrfs_super_block *disk_super)
692{
693 struct btrfs_fs_devices *fs_devices;
694
695 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
696 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
697 BTRFS_FSID_SIZE) != 0 &&
698 memcmp(fs_devices->metadata_uuid, disk_super->fsid,
699 BTRFS_FSID_SIZE) == 0 && !fs_devices->fsid_change) {
700 return fs_devices;
701 }
702 }
703
Su Yuec0d81c72020-01-10 14:11:32 +0200704 return find_fsid(disk_super->fsid, NULL);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200705}
706
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200707
708static struct btrfs_fs_devices *find_fsid_changed(
709 struct btrfs_super_block *disk_super)
710{
711 struct btrfs_fs_devices *fs_devices;
712
713 /*
714 * Handles the case where scanned device is part of an fs that had
David Sterba1a9fd412021-05-21 17:42:23 +0200715 * multiple successful changes of FSID but currently device didn't
Nikolay Borisov05840712020-01-10 14:11:34 +0200716 * observe it. Meaning our fsid will be different than theirs. We need
717 * to handle two subcases :
718 * 1 - The fs still continues to have different METADATA/FSID uuids.
719 * 2 - The fs is switched back to its original FSID (METADATA/FSID
720 * are equal).
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200721 */
722 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Nikolay Borisov05840712020-01-10 14:11:34 +0200723 /* Changed UUIDs */
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200724 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
725 BTRFS_FSID_SIZE) != 0 &&
726 memcmp(fs_devices->metadata_uuid, disk_super->metadata_uuid,
727 BTRFS_FSID_SIZE) == 0 &&
728 memcmp(fs_devices->fsid, disk_super->fsid,
Nikolay Borisov05840712020-01-10 14:11:34 +0200729 BTRFS_FSID_SIZE) != 0)
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200730 return fs_devices;
Nikolay Borisov05840712020-01-10 14:11:34 +0200731
732 /* Unchanged UUIDs */
733 if (memcmp(fs_devices->metadata_uuid, fs_devices->fsid,
734 BTRFS_FSID_SIZE) == 0 &&
735 memcmp(fs_devices->fsid, disk_super->metadata_uuid,
736 BTRFS_FSID_SIZE) == 0)
737 return fs_devices;
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200738 }
739
740 return NULL;
741}
Nikolay Borisov13620892020-01-10 14:11:35 +0200742
743static struct btrfs_fs_devices *find_fsid_reverted_metadata(
744 struct btrfs_super_block *disk_super)
745{
746 struct btrfs_fs_devices *fs_devices;
747
748 /*
749 * Handle the case where the scanned device is part of an fs whose last
750 * metadata UUID change reverted it to the original FSID. At the same
751 * time * fs_devices was first created by another constitutent device
752 * which didn't fully observe the operation. This results in an
753 * btrfs_fs_devices created with metadata/fsid different AND
754 * btrfs_fs_devices::fsid_change set AND the metadata_uuid of the
755 * fs_devices equal to the FSID of the disk.
756 */
757 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
758 if (memcmp(fs_devices->fsid, fs_devices->metadata_uuid,
759 BTRFS_FSID_SIZE) != 0 &&
760 memcmp(fs_devices->metadata_uuid, disk_super->fsid,
761 BTRFS_FSID_SIZE) == 0 &&
762 fs_devices->fsid_change)
763 return fs_devices;
764 }
765
766 return NULL;
767}
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200768/*
David Sterba60999ca2014-03-26 18:26:36 +0100769 * Add new device to list of registered devices
770 *
771 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800772 * device pointer which was just added or updated when successful
773 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100774 */
Anand Jaine124ece2018-01-18 22:02:35 +0800775static noinline struct btrfs_device *device_list_add(const char *path,
Anand Jain4306a972018-05-29 12:28:37 +0800776 struct btrfs_super_block *disk_super,
777 bool *new_device_added)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400778{
779 struct btrfs_device *device;
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200780 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik606686e2012-06-04 14:03:51 -0400781 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400782 u64 found_transid = btrfs_super_generation(disk_super);
Anand Jain3acbcbf2018-01-18 22:02:36 +0800783 u64 devid = btrfs_stack_device_id(&disk_super->dev_item);
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200784 bool has_metadata_uuid = (btrfs_super_incompat_flags(disk_super) &
785 BTRFS_FEATURE_INCOMPAT_METADATA_UUID);
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200786 bool fsid_change_in_progress = (btrfs_super_flags(disk_super) &
787 BTRFS_SUPER_FLAG_CHANGING_FSID_V2);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400788
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200789 if (fsid_change_in_progress) {
Su Yuec0d81c72020-01-10 14:11:32 +0200790 if (!has_metadata_uuid)
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200791 fs_devices = find_fsid_inprogress(disk_super);
Su Yuec0d81c72020-01-10 14:11:32 +0200792 else
Nikolay Borisovcc5de4e2018-10-30 16:43:28 +0200793 fs_devices = find_fsid_changed(disk_super);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200794 } else if (has_metadata_uuid) {
Su Yuec6730a02020-01-10 14:11:33 +0200795 fs_devices = find_fsid_with_metadata_uuid(disk_super);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200796 } else {
Nikolay Borisov13620892020-01-10 14:11:35 +0200797 fs_devices = find_fsid_reverted_metadata(disk_super);
798 if (!fs_devices)
799 fs_devices = find_fsid(disk_super->fsid, NULL);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200800 }
801
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200802
Chris Mason8a4b83c2008-03-24 15:02:07 -0400803 if (!fs_devices) {
Nikolay Borisov7239ff42018-10-30 16:43:23 +0200804 if (has_metadata_uuid)
805 fs_devices = alloc_fs_devices(disk_super->fsid,
806 disk_super->metadata_uuid);
807 else
808 fs_devices = alloc_fs_devices(disk_super->fsid, NULL);
809
Ilya Dryomov2208a372013-08-12 14:33:03 +0300810 if (IS_ERR(fs_devices))
Anand Jaine124ece2018-01-18 22:02:35 +0800811 return ERR_CAST(fs_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300812
Al Viro92900e52019-01-27 04:58:00 +0000813 fs_devices->fsid_change = fsid_change_in_progress;
814
Anand Jain9c6d1732018-05-29 14:10:20 +0800815 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainc4babc52018-04-12 10:29:25 +0800816 list_add(&fs_devices->fs_list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300817
Chris Mason8a4b83c2008-03-24 15:02:07 -0400818 device = NULL;
819 } else {
Josef Bacik562d7b12021-10-05 16:12:42 -0400820 struct btrfs_dev_lookup_args args = {
821 .devid = devid,
822 .uuid = disk_super->dev_item.uuid,
823 };
824
Anand Jain9c6d1732018-05-29 14:10:20 +0800825 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik562d7b12021-10-05 16:12:42 -0400826 device = btrfs_find_device(fs_devices, &args);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200827
828 /*
829 * If this disk has been pulled into an fs devices created by
830 * a device which had the CHANGING_FSID_V2 flag then replace the
831 * metadata_uuid/fsid values of the fs_devices.
832 */
Nikolay Borisov13620892020-01-10 14:11:35 +0200833 if (fs_devices->fsid_change &&
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200834 found_transid > fs_devices->latest_generation) {
835 memcpy(fs_devices->fsid, disk_super->fsid,
836 BTRFS_FSID_SIZE);
Nikolay Borisov13620892020-01-10 14:11:35 +0200837
838 if (has_metadata_uuid)
839 memcpy(fs_devices->metadata_uuid,
840 disk_super->metadata_uuid,
841 BTRFS_FSID_SIZE);
842 else
843 memcpy(fs_devices->metadata_uuid,
844 disk_super->fsid, BTRFS_FSID_SIZE);
Nikolay Borisov7a62d0f2018-10-30 16:43:27 +0200845
846 fs_devices->fsid_change = false;
847 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400848 }
Miao Xie443f24f2014-07-24 11:37:15 +0800849
Chris Mason8a4b83c2008-03-24 15:02:07 -0400850 if (!device) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800851 if (fs_devices->opened) {
852 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800853 return ERR_PTR(-EBUSY);
Anand Jain9c6d1732018-05-29 14:10:20 +0800854 }
Yan Zheng2b820322008-11-17 21:11:30 -0500855
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300856 device = btrfs_alloc_device(NULL, &devid,
857 disk_super->dev_item.uuid);
858 if (IS_ERR(device)) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800859 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400860 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800861 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400862 }
Josef Bacik606686e2012-06-04 14:03:51 -0400863
864 name = rcu_string_strdup(path, GFP_NOFS);
865 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100866 btrfs_free_device(device);
Anand Jain9c6d1732018-05-29 14:10:20 +0800867 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800868 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400869 }
Josef Bacik606686e2012-06-04 14:03:51 -0400870 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200871
Xiao Guangrong1f781602011-04-20 10:09:16 +0000872 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100873 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400874
Yan Zheng2b820322008-11-17 21:11:30 -0500875 device->fs_devices = fs_devices;
Anand Jain4306a972018-05-29 12:28:37 +0800876 *new_device_added = true;
Anand Jain327f18c2018-01-18 22:02:33 +0800877
878 if (disk_super->label[0])
Anand Jainaa6c0df2019-10-02 18:30:48 +0800879 pr_info(
880 "BTRFS: device label %s devid %llu transid %llu %s scanned by %s (%d)\n",
881 disk_super->label, devid, found_transid, path,
882 current->comm, task_pid_nr(current));
Anand Jain327f18c2018-01-18 22:02:33 +0800883 else
Anand Jainaa6c0df2019-10-02 18:30:48 +0800884 pr_info(
885 "BTRFS: device fsid %pU devid %llu transid %llu %s scanned by %s (%d)\n",
886 disk_super->fsid, devid, found_transid, path,
887 current->comm, task_pid_nr(current));
Anand Jain327f18c2018-01-18 22:02:33 +0800888
Josef Bacik606686e2012-06-04 14:03:51 -0400889 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800890 /*
891 * When FS is already mounted.
892 * 1. If you are here and if the device->name is NULL that
893 * means this device was missing at time of FS mount.
894 * 2. If you are here and if the device->name is different
895 * from 'path' that means either
896 * a. The same device disappeared and reappeared with
897 * different name. or
898 * b. The missing-disk-which-was-replaced, has
899 * reappeared now.
900 *
901 * We must allow 1 and 2a above. But 2b would be a spurious
902 * and unintentional.
903 *
904 * Further in case of 1 and 2a above, the disk at 'path'
905 * would have missed some transaction when it was away and
906 * in case of 2a the stale bdev has to be updated as well.
907 * 2b must not be allowed at all time.
908 */
909
910 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700911 * For now, we do allow update to btrfs_fs_device through the
912 * btrfs dev scan cli after FS has been mounted. We're still
913 * tracking a problem where systems fail mount by subvolume id
914 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800915 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700916 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800917 /*
918 * That is if the FS is _not_ mounted and if you
919 * are here, that means there is more than one
920 * disk with same uuid and devid.We keep the one
921 * with larger generation number or the last-in if
922 * generation are equal.
923 */
Anand Jain9c6d1732018-05-29 14:10:20 +0800924 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800925 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800926 }
Anand Jainb96de002014-07-03 18:22:05 +0800927
Anand Jaina9261d42018-10-15 10:45:17 +0800928 /*
929 * We are going to replace the device path for a given devid,
930 * make sure it's the same device if the device is mounted
931 */
932 if (device->bdev) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100933 int error;
934 dev_t path_dev;
Anand Jaina9261d42018-10-15 10:45:17 +0800935
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100936 error = lookup_bdev(path, &path_dev);
937 if (error) {
Anand Jaina9261d42018-10-15 10:45:17 +0800938 mutex_unlock(&fs_devices->device_list_mutex);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100939 return ERR_PTR(error);
Anand Jaina9261d42018-10-15 10:45:17 +0800940 }
941
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100942 if (device->bdev->bd_dev != path_dev) {
Anand Jaina9261d42018-10-15 10:45:17 +0800943 mutex_unlock(&fs_devices->device_list_mutex);
Johannes Thumshirn0697d9a2020-11-18 18:03:26 +0900944 /*
945 * device->fs_info may not be reliable here, so
946 * pass in a NULL instead. This avoids a
947 * possible use-after-free when the fs_info and
948 * fs_info->sb are already torn down.
949 */
950 btrfs_warn_in_rcu(NULL,
Anand Jain79dae172020-09-03 21:30:12 +0800951 "duplicate device %s devid %llu generation %llu scanned by %s (%d)",
952 path, devid, found_transid,
953 current->comm,
954 task_pid_nr(current));
Anand Jaina9261d42018-10-15 10:45:17 +0800955 return ERR_PTR(-EEXIST);
956 }
Anand Jaina9261d42018-10-15 10:45:17 +0800957 btrfs_info_in_rcu(device->fs_info,
Anand Jain79dae172020-09-03 21:30:12 +0800958 "devid %llu device path %s changed to %s scanned by %s (%d)",
959 devid, rcu_str_deref(device->name),
960 path, current->comm,
961 task_pid_nr(current));
Anand Jaina9261d42018-10-15 10:45:17 +0800962 }
963
Josef Bacik606686e2012-06-04 14:03:51 -0400964 name = rcu_string_strdup(path, GFP_NOFS);
Anand Jain9c6d1732018-05-29 14:10:20 +0800965 if (!name) {
966 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800967 return ERR_PTR(-ENOMEM);
Anand Jain9c6d1732018-05-29 14:10:20 +0800968 }
Josef Bacik606686e2012-06-04 14:03:51 -0400969 rcu_string_free(device->name);
970 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800971 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500972 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800973 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500974 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400975 }
976
Anand Jain77bdae42014-07-03 18:22:06 +0800977 /*
978 * Unmount does not free the btrfs_device struct but would zero
979 * generation along with most of the other members. So just update
980 * it back. We need it to pick the disk with largest generation
981 * (as above).
982 */
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200983 if (!fs_devices->opened) {
Anand Jain77bdae42014-07-03 18:22:06 +0800984 device->generation = found_transid;
Nikolay Borisovd1a63002018-10-30 16:43:26 +0200985 fs_devices->latest_generation = max_t(u64, found_transid,
986 fs_devices->latest_generation);
987 }
Anand Jain77bdae42014-07-03 18:22:06 +0800988
Anand Jainf2788d22018-01-18 22:02:34 +0800989 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
990
Anand Jain9c6d1732018-05-29 14:10:20 +0800991 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800992 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400993}
994
Yan Zhenge4404d62008-12-12 10:03:26 -0500995static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
996{
997 struct btrfs_fs_devices *fs_devices;
998 struct btrfs_device *device;
999 struct btrfs_device *orig_dev;
Anand Jaind2979aa2019-08-27 15:40:45 +08001000 int ret = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05001001
Anand Jainc1247062021-08-31 09:21:28 +08001002 lockdep_assert_held(&uuid_mutex);
1003
Nikolay Borisov7239ff42018-10-30 16:43:23 +02001004 fs_devices = alloc_fs_devices(orig->fsid, NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03001005 if (IS_ERR(fs_devices))
1006 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001007
Josef Bacik02db0842012-06-21 16:03:58 -04001008 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001009
1010 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -04001011 struct rcu_string *name;
1012
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03001013 device = btrfs_alloc_device(NULL, &orig_dev->devid,
1014 orig_dev->uuid);
Anand Jaind2979aa2019-08-27 15:40:45 +08001015 if (IS_ERR(device)) {
1016 ret = PTR_ERR(device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001017 goto error;
Anand Jaind2979aa2019-08-27 15:40:45 +08001018 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001019
Josef Bacik606686e2012-06-04 14:03:51 -04001020 /*
1021 * This is ok to do without rcu read locked because we hold the
1022 * uuid mutex so nothing we touch in here is going to disappear.
1023 */
Anand Jaine755f782014-06-30 17:12:47 +08001024 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +01001025 name = rcu_string_strdup(orig_dev->name->str,
1026 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +08001027 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +01001028 btrfs_free_device(device);
Anand Jaind2979aa2019-08-27 15:40:45 +08001029 ret = -ENOMEM;
Anand Jaine755f782014-06-30 17:12:47 +08001030 goto error;
1031 }
1032 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -04001033 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001034
Yan Zhenge4404d62008-12-12 10:03:26 -05001035 list_add(&device->dev_list, &fs_devices->devices);
1036 device->fs_devices = fs_devices;
1037 fs_devices->num_devices++;
1038 }
1039 return fs_devices;
1040error:
1041 free_fs_devices(fs_devices);
Anand Jaind2979aa2019-08-27 15:40:45 +08001042 return ERR_PTR(ret);
Yan Zhenge4404d62008-12-12 10:03:26 -05001043}
1044
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001045static void __btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices,
Anand Jainbacce862020-11-06 16:06:33 +08001046 struct btrfs_device **latest_dev)
Chris Masondfe25022008-05-13 13:46:40 -04001047{
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001048 struct btrfs_device *device, *next;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001049
Xiao Guangrong46224702011-04-20 10:08:47 +00001050 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001051 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001052 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +08001053 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001054 &device->dev_state) &&
Anand Jain998a0672020-05-05 02:58:25 +08001055 !test_bit(BTRFS_DEV_STATE_MISSING,
1056 &device->dev_state) &&
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001057 (!*latest_dev ||
1058 device->generation > (*latest_dev)->generation)) {
1059 *latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001060 }
Yan Zheng2b820322008-11-17 21:11:30 -05001061 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001062 }
Yan Zheng2b820322008-11-17 21:11:30 -05001063
Anand Jaincf89af12020-10-30 06:53:56 +08001064 /*
1065 * We have already validated the presence of BTRFS_DEV_REPLACE_DEVID,
1066 * in btrfs_init_dev_replace() so just continue.
1067 */
1068 if (device->devid == BTRFS_DEV_REPLACE_DEVID)
1069 continue;
1070
Yan Zheng2b820322008-11-17 21:11:30 -05001071 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +01001072 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -05001073 device->bdev = NULL;
1074 fs_devices->open_devices--;
1075 }
Anand Jainebbede42017-12-04 12:54:52 +08001076 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05001077 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +08001078 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Desmond Cheong Zhi Xib2a61662021-07-27 15:13:03 +08001079 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001080 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001081 list_del_init(&device->dev_list);
1082 fs_devices->num_devices--;
David Sterbaa425f9d2018-03-20 15:47:33 +01001083 btrfs_free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -04001084 }
Yan Zheng2b820322008-11-17 21:11:30 -05001085
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001086}
1087
1088/*
1089 * After we have read the system tree and know devids belonging to this
1090 * filesystem, remove the device which does not belong there.
1091 */
Anand Jainbacce862020-11-06 16:06:33 +08001092void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices)
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001093{
1094 struct btrfs_device *latest_dev = NULL;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001095 struct btrfs_fs_devices *seed_dev;
Nikolay Borisov3712ccb2020-07-16 10:17:04 +03001096
1097 mutex_lock(&uuid_mutex);
Anand Jainbacce862020-11-06 16:06:33 +08001098 __btrfs_free_extra_devids(fs_devices, &latest_dev);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001099
1100 list_for_each_entry(seed_dev, &fs_devices->seed_list, seed_list)
Anand Jainbacce862020-11-06 16:06:33 +08001101 __btrfs_free_extra_devids(seed_dev, &latest_dev);
Yan Zheng2b820322008-11-17 21:11:30 -05001102
Anand Jaind24fa5c2021-08-24 13:05:19 +08001103 fs_devices->latest_dev = latest_dev;
Chris Masona6b0d5c2012-02-20 20:53:43 -05001104
Chris Masondfe25022008-05-13 13:46:40 -04001105 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -04001106}
Chris Masona0af4692008-05-13 16:03:06 -04001107
Anand Jain14238812016-07-22 06:04:53 +08001108static void btrfs_close_bdev(struct btrfs_device *device)
1109{
David Sterba08ffcae2017-06-19 16:55:35 +02001110 if (!device->bdev)
1111 return;
1112
Anand Jainebbede42017-12-04 12:54:52 +08001113 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +08001114 sync_blockdev(device->bdev);
1115 invalidate_bdev(device->bdev);
1116 }
1117
David Sterba08ffcae2017-06-19 16:55:35 +02001118 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +08001119}
1120
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001121static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +08001122{
1123 struct btrfs_fs_devices *fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +08001124
Anand Jainebbede42017-12-04 12:54:52 +08001125 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +08001126 device->devid != BTRFS_DEV_REPLACE_DEVID) {
1127 list_del_init(&device->dev_alloc_list);
1128 fs_devices->rw_devices--;
1129 }
1130
Desmond Cheong Zhi Xi0d977e02021-08-21 01:50:40 +08001131 if (device->devid == BTRFS_DEV_REPLACE_DEVID)
1132 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
1133
Li Zhang5d03dbe2021-10-05 01:15:33 +08001134 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
1135 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Anand Jainf448341a2016-06-14 18:55:25 +08001136 fs_devices->missing_devices--;
Li Zhang5d03dbe2021-10-05 01:15:33 +08001137 }
Anand Jainf448341a2016-06-14 18:55:25 +08001138
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001139 btrfs_close_bdev(device);
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001140 if (device->bdev) {
Johannes Thumshirn3fff3972019-11-26 09:40:05 +01001141 fs_devices->open_devices--;
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001142 device->bdev = NULL;
Anand Jainf448341a2016-06-14 18:55:25 +08001143 }
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001144 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Naohiro Aota5b316462020-11-10 20:26:07 +09001145 btrfs_destroy_dev_zone_info(device);
Anand Jainf448341a2016-06-14 18:55:25 +08001146
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001147 device->fs_info = NULL;
1148 atomic_set(&device->dev_stats_ccnt, 0);
1149 extent_io_tree_release(&device->alloc_state);
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001150
Filipe Manana6b225ba2021-09-08 19:05:44 +01001151 /*
1152 * Reset the flush error record. We might have a transient flush error
1153 * in this mount, and if so we aborted the current transaction and set
1154 * the fs to an error state, guaranteeing no super blocks can be further
1155 * committed. However that error might be transient and if we unmount the
1156 * filesystem and mount it again, we should allow the mount to succeed
1157 * (btrfs_check_rw_degradable() should not fail) - if after mounting the
1158 * filesystem again we still get flush errors, then we will again abort
1159 * any transaction and set the error state, guaranteeing no commits of
1160 * unsafe super blocks.
1161 */
1162 device->last_flush_error = 0;
1163
Johannes Thumshirn321f69f2019-12-04 14:36:39 +01001164 /* Verify the device is back in a pristine state */
1165 ASSERT(!test_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state));
1166 ASSERT(!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
1167 ASSERT(list_empty(&device->dev_alloc_list));
1168 ASSERT(list_empty(&device->post_commit_list));
Anand Jainf448341a2016-06-14 18:55:25 +08001169}
1170
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001171static void close_fs_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001172{
Sasha Levin2037a092015-05-12 19:31:37 -04001173 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -05001174
Josef Bacik425c6ed2020-08-10 11:42:28 -04001175 lockdep_assert_held(&uuid_mutex);
1176
Yan Zheng2b820322008-11-17 21:11:30 -05001177 if (--fs_devices->opened > 0)
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001178 return;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001179
Josef Bacik425c6ed2020-08-10 11:42:28 -04001180 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list)
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001181 btrfs_close_one_device(device);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001182
Yan Zhenge4404d62008-12-12 10:03:26 -05001183 WARN_ON(fs_devices->open_devices);
1184 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001185 fs_devices->opened = 0;
Johannes Thumshirn0395d842019-11-13 11:27:27 +01001186 fs_devices->seeding = false;
Nikolay Borisovc4989c2f2020-07-15 13:48:49 +03001187 fs_devices->fs_info = NULL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001188}
1189
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001190void btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Yan Zheng2b820322008-11-17 21:11:30 -05001191{
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001192 LIST_HEAD(list);
1193 struct btrfs_fs_devices *tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05001194
1195 mutex_lock(&uuid_mutex);
Nikolay Borisov54eed6a2020-07-15 13:48:48 +03001196 close_fs_devices(fs_devices);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001197 if (!fs_devices->opened)
1198 list_splice_init(&fs_devices->seed_list, &list);
Yan Zhenge4404d62008-12-12 10:03:26 -05001199
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001200 list_for_each_entry_safe(fs_devices, tmp, &list, seed_list) {
Anand Jain0226e0e2018-04-12 10:29:27 +08001201 close_fs_devices(fs_devices);
Nikolay Borisov944d3f92020-07-16 10:25:33 +03001202 list_del(&fs_devices->seed_list);
Yan Zhenge4404d62008-12-12 10:03:26 -05001203 free_fs_devices(fs_devices);
1204 }
Josef Bacik425c6ed2020-08-10 11:42:28 -04001205 mutex_unlock(&uuid_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001206}
1207
Anand Jain897fb572018-04-12 10:29:28 +08001208static int open_fs_devices(struct btrfs_fs_devices *fs_devices,
Yan Zhenge4404d62008-12-12 10:03:26 -05001209 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001210{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001211 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001212 struct btrfs_device *latest_dev = NULL;
Anand Jain96c2e062020-09-30 21:09:52 +08001213 struct btrfs_device *tmp_device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001214
Tejun Heod4d77622010-11-13 11:55:18 +01001215 flags |= FMODE_EXCL;
1216
Anand Jain96c2e062020-09-30 21:09:52 +08001217 list_for_each_entry_safe(device, tmp_device, &fs_devices->devices,
1218 dev_list) {
1219 int ret;
Chris Masona0af4692008-05-13 16:03:06 -04001220
Anand Jain96c2e062020-09-30 21:09:52 +08001221 ret = btrfs_open_one_device(fs_devices, device, flags, holder);
1222 if (ret == 0 &&
1223 (!latest_dev || device->generation > latest_dev->generation)) {
Anand Jain9f050db2017-11-09 23:45:25 +08001224 latest_dev = device;
Anand Jain96c2e062020-09-30 21:09:52 +08001225 } else if (ret == -ENODATA) {
1226 fs_devices->num_devices--;
1227 list_del(&device->dev_list);
1228 btrfs_free_device(device);
1229 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001230 }
Anand Jain1ed802c2020-04-28 23:22:25 +08001231 if (fs_devices->open_devices == 0)
1232 return -EINVAL;
1233
Yan Zheng2b820322008-11-17 21:11:30 -05001234 fs_devices->opened = 1;
Anand Jaind24fa5c2021-08-24 13:05:19 +08001235 fs_devices->latest_dev = latest_dev;
Yan Zheng2b820322008-11-17 21:11:30 -05001236 fs_devices->total_rw_bytes = 0;
Naohiro Aotac4a816c2020-02-25 12:56:08 +09001237 fs_devices->chunk_alloc_policy = BTRFS_CHUNK_ALLOC_REGULAR;
Anand Jain33fd2f72020-10-28 21:14:46 +08001238 fs_devices->read_policy = BTRFS_READ_POLICY_PID;
Anand Jain1ed802c2020-04-28 23:22:25 +08001239
1240 return 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001241}
1242
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07001243static int devid_cmp(void *priv, const struct list_head *a,
1244 const struct list_head *b)
Anand Jainf8e10cd2018-01-22 14:49:36 -08001245{
David Sterba214cc182021-07-26 14:15:26 +02001246 const struct btrfs_device *dev1, *dev2;
Anand Jainf8e10cd2018-01-22 14:49:36 -08001247
1248 dev1 = list_entry(a, struct btrfs_device, dev_list);
1249 dev2 = list_entry(b, struct btrfs_device, dev_list);
1250
1251 if (dev1->devid < dev2->devid)
1252 return -1;
1253 else if (dev1->devid > dev2->devid)
1254 return 1;
1255 return 0;
1256}
1257
Yan Zheng2b820322008-11-17 21:11:30 -05001258int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001259 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001260{
1261 int ret;
1262
David Sterbaf5194e32018-06-19 17:09:47 +02001263 lockdep_assert_held(&uuid_mutex);
Josef Bacik18c850f2020-07-17 15:12:27 -04001264 /*
1265 * The device_list_mutex cannot be taken here in case opening the
Christoph Hellwiga8698702021-05-25 08:12:56 +02001266 * underlying device takes further locks like open_mutex.
Josef Bacik18c850f2020-07-17 15:12:27 -04001267 *
1268 * We also don't need the lock here as this is called during mount and
1269 * exclusion is provided by uuid_mutex
1270 */
David Sterbaf5194e32018-06-19 17:09:47 +02001271
Yan Zheng2b820322008-11-17 21:11:30 -05001272 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001273 fs_devices->opened++;
1274 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001275 } else {
Anand Jainf8e10cd2018-01-22 14:49:36 -08001276 list_sort(NULL, &fs_devices->devices, devid_cmp);
Anand Jain897fb572018-04-12 10:29:28 +08001277 ret = open_fs_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001278 }
Anand Jain542c5902018-04-12 10:29:34 +08001279
Chris Mason8a4b83c2008-03-24 15:02:07 -04001280 return ret;
1281}
1282
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001283void btrfs_release_disk_super(struct btrfs_super_block *super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001284{
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001285 struct page *page = virt_to_page(super);
1286
Anand Jain6cf86a002016-02-13 10:01:29 +08001287 put_page(page);
1288}
1289
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001290static struct btrfs_super_block *btrfs_read_disk_super(struct block_device *bdev,
Naohiro Aota12659252020-11-10 20:26:14 +09001291 u64 bytenr, u64 bytenr_orig)
Anand Jain6cf86a002016-02-13 10:01:29 +08001292{
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001293 struct btrfs_super_block *disk_super;
1294 struct page *page;
Anand Jain6cf86a002016-02-13 10:01:29 +08001295 void *p;
1296 pgoff_t index;
1297
1298 /* make sure our super fits in the device */
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02001299 if (bytenr + PAGE_SIZE >= bdev_nr_bytes(bdev))
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001300 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001301
1302 /* make sure our super fits in the page */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001303 if (sizeof(*disk_super) > PAGE_SIZE)
1304 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001305
1306 /* make sure our super doesn't straddle pages on disk */
1307 index = bytenr >> PAGE_SHIFT;
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001308 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_SHIFT != index)
1309 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001310
1311 /* pull in the page with our super */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001312 page = read_cache_page_gfp(bdev->bd_inode->i_mapping, index, GFP_KERNEL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001313
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001314 if (IS_ERR(page))
1315 return ERR_CAST(page);
Anand Jain6cf86a002016-02-13 10:01:29 +08001316
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001317 p = page_address(page);
Anand Jain6cf86a002016-02-13 10:01:29 +08001318
1319 /* align our pointer to the offset of the super block */
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001320 disk_super = p + offset_in_page(bytenr);
Anand Jain6cf86a002016-02-13 10:01:29 +08001321
Naohiro Aota12659252020-11-10 20:26:14 +09001322 if (btrfs_super_bytenr(disk_super) != bytenr_orig ||
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001323 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001324 btrfs_release_disk_super(p);
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001325 return ERR_PTR(-EINVAL);
Anand Jain6cf86a002016-02-13 10:01:29 +08001326 }
1327
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001328 if (disk_super->label[0] && disk_super->label[BTRFS_LABEL_SIZE - 1])
1329 disk_super->label[BTRFS_LABEL_SIZE - 1] = 0;
Anand Jain6cf86a002016-02-13 10:01:29 +08001330
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001331 return disk_super;
Anand Jain6cf86a002016-02-13 10:01:29 +08001332}
1333
Anand Jain228a73a2019-01-04 13:31:54 +08001334int btrfs_forget_devices(const char *path)
1335{
1336 int ret;
1337
1338 mutex_lock(&uuid_mutex);
1339 ret = btrfs_free_stale_devices(strlen(path) ? path : NULL, NULL);
1340 mutex_unlock(&uuid_mutex);
1341
1342 return ret;
1343}
1344
David Sterba6f60cbd2013-02-15 11:31:02 -07001345/*
1346 * Look for a btrfs signature on a device. This may be called out of the mount path
1347 * and we are not allowed to call set_blocksize during the scan. The superblock
1348 * is read via pagecache
1349 */
Gu Jinxiang36350e92018-07-12 14:23:16 +08001350struct btrfs_device *btrfs_scan_one_device(const char *path, fmode_t flags,
1351 void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001352{
1353 struct btrfs_super_block *disk_super;
Anand Jain4306a972018-05-29 12:28:37 +08001354 bool new_device_added = false;
Gu Jinxiang36350e92018-07-12 14:23:16 +08001355 struct btrfs_device *device = NULL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001356 struct block_device *bdev;
Naohiro Aota12659252020-11-10 20:26:14 +09001357 u64 bytenr, bytenr_orig;
1358 int ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001359
David Sterba899f9302018-06-19 16:37:36 +02001360 lockdep_assert_held(&uuid_mutex);
1361
David Sterba6f60cbd2013-02-15 11:31:02 -07001362 /*
1363 * we would like to check all the supers, but that would make
1364 * a btrfs mount succeed after a mkfs from a different FS.
1365 * So, we need to add a special mount option to scan for
1366 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1367 */
Tejun Heod4d77622010-11-13 11:55:18 +01001368 flags |= FMODE_EXCL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001369
1370 bdev = blkdev_get_by_path(path, flags, holder);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001371 if (IS_ERR(bdev))
Gu Jinxiang36350e92018-07-12 14:23:16 +08001372 return ERR_CAST(bdev);
David Sterba6f60cbd2013-02-15 11:31:02 -07001373
Naohiro Aota12659252020-11-10 20:26:14 +09001374 bytenr_orig = btrfs_sb_offset(0);
1375 ret = btrfs_sb_log_location_bdev(bdev, 0, READ, &bytenr);
Shin'ichiro Kawasaki4989d4a2021-12-15 19:38:43 +09001376 if (ret) {
1377 device = ERR_PTR(ret);
1378 goto error_bdev_put;
1379 }
Naohiro Aota12659252020-11-10 20:26:14 +09001380
1381 disk_super = btrfs_read_disk_super(bdev, bytenr, bytenr_orig);
Nikolay Borisovb335eab2020-04-15 15:53:46 +03001382 if (IS_ERR(disk_super)) {
1383 device = ERR_CAST(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001384 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001385 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001386
Anand Jain4306a972018-05-29 12:28:37 +08001387 device = device_list_add(path, disk_super, &new_device_added);
Gu Jinxiang36350e92018-07-12 14:23:16 +08001388 if (!IS_ERR(device)) {
Anand Jain4306a972018-05-29 12:28:37 +08001389 if (new_device_added)
1390 btrfs_free_stale_devices(path, device);
1391 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001392
Johannes Thumshirn8f323802020-02-14 00:24:32 +09001393 btrfs_release_disk_super(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001394
1395error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001396 blkdev_put(bdev, flags);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001397
Gu Jinxiang36350e92018-07-12 14:23:16 +08001398 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001399}
Chris Mason0b86a832008-03-24 15:01:56 -04001400
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001401/*
1402 * Try to find a chunk that intersects [start, start + len] range and when one
1403 * such is found, record the end of it in *start
1404 */
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001405static bool contains_pending_extent(struct btrfs_device *device, u64 *start,
1406 u64 len)
Josef Bacik6df9a952013-06-27 13:22:46 -04001407{
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001408 u64 physical_start, physical_end;
Josef Bacik6df9a952013-06-27 13:22:46 -04001409
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001410 lockdep_assert_held(&device->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04001411
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001412 if (!find_first_extent_bit(&device->alloc_state, *start,
1413 &physical_start, &physical_end,
1414 CHUNK_ALLOCATED, NULL)) {
Filipe Mananac152b632015-05-14 10:46:03 +01001415
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001416 if (in_range(physical_start, *start, len) ||
1417 in_range(*start, physical_start,
1418 physical_end - physical_start)) {
1419 *start = physical_end + 1;
1420 return true;
Josef Bacik6df9a952013-06-27 13:22:46 -04001421 }
1422 }
Jeff Mahoney1c11b632019-03-27 14:24:12 +02001423 return false;
Josef Bacik6df9a952013-06-27 13:22:46 -04001424}
1425
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001426static u64 dev_extent_search_start(struct btrfs_device *device, u64 start)
1427{
1428 switch (device->fs_devices->chunk_alloc_policy) {
1429 case BTRFS_CHUNK_ALLOC_REGULAR:
1430 /*
1431 * We don't want to overwrite the superblock on the drive nor
1432 * any area used by the boot loader (grub for example), so we
1433 * make sure to start at an offset of at least 1MB.
1434 */
1435 return max_t(u64, start, SZ_1M);
Naohiro Aota1cd61212021-02-04 19:21:48 +09001436 case BTRFS_CHUNK_ALLOC_ZONED:
1437 /*
1438 * We don't care about the starting region like regular
1439 * allocator, because we anyway use/reserve the first two zones
1440 * for superblock logging.
1441 */
1442 return ALIGN(start, device->zone_info->zone_size);
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001443 default:
1444 BUG();
1445 }
1446}
1447
Naohiro Aota1cd61212021-02-04 19:21:48 +09001448static bool dev_extent_hole_check_zoned(struct btrfs_device *device,
1449 u64 *hole_start, u64 *hole_size,
1450 u64 num_bytes)
1451{
1452 u64 zone_size = device->zone_info->zone_size;
1453 u64 pos;
1454 int ret;
1455 bool changed = false;
1456
1457 ASSERT(IS_ALIGNED(*hole_start, zone_size));
1458
1459 while (*hole_size > 0) {
1460 pos = btrfs_find_allocatable_zones(device, *hole_start,
1461 *hole_start + *hole_size,
1462 num_bytes);
1463 if (pos != *hole_start) {
1464 *hole_size = *hole_start + *hole_size - pos;
1465 *hole_start = pos;
1466 changed = true;
1467 if (*hole_size < num_bytes)
1468 break;
1469 }
1470
1471 ret = btrfs_ensure_empty_zones(device, pos, num_bytes);
1472
1473 /* Range is ensured to be empty */
1474 if (!ret)
1475 return changed;
1476
1477 /* Given hole range was invalid (outside of device) */
1478 if (ret == -ERANGE) {
1479 *hole_start += *hole_size;
Johannes Thumshirnd6f67af2021-05-10 22:39:38 +09001480 *hole_size = 0;
Jiapeng Chong7000bab2021-03-03 17:45:28 +08001481 return true;
Naohiro Aota1cd61212021-02-04 19:21:48 +09001482 }
1483
1484 *hole_start += zone_size;
1485 *hole_size -= zone_size;
1486 changed = true;
1487 }
1488
1489 return changed;
1490}
1491
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001492/**
1493 * dev_extent_hole_check - check if specified hole is suitable for allocation
1494 * @device: the device which we have the hole
1495 * @hole_start: starting position of the hole
1496 * @hole_size: the size of the hole
1497 * @num_bytes: the size of the free space that we need
1498 *
Naohiro Aota1cd61212021-02-04 19:21:48 +09001499 * This function may modify @hole_start and @hole_size to reflect the suitable
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001500 * position for allocation. Returns 1 if hole position is updated, 0 otherwise.
1501 */
1502static bool dev_extent_hole_check(struct btrfs_device *device, u64 *hole_start,
1503 u64 *hole_size, u64 num_bytes)
1504{
1505 bool changed = false;
1506 u64 hole_end = *hole_start + *hole_size;
1507
Naohiro Aota1cd61212021-02-04 19:21:48 +09001508 for (;;) {
1509 /*
1510 * Check before we set max_hole_start, otherwise we could end up
1511 * sending back this offset anyway.
1512 */
1513 if (contains_pending_extent(device, hole_start, *hole_size)) {
1514 if (hole_end >= *hole_start)
1515 *hole_size = hole_end - *hole_start;
1516 else
1517 *hole_size = 0;
1518 changed = true;
1519 }
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001520
Naohiro Aota1cd61212021-02-04 19:21:48 +09001521 switch (device->fs_devices->chunk_alloc_policy) {
1522 case BTRFS_CHUNK_ALLOC_REGULAR:
1523 /* No extra check */
1524 break;
1525 case BTRFS_CHUNK_ALLOC_ZONED:
1526 if (dev_extent_hole_check_zoned(device, hole_start,
1527 hole_size, num_bytes)) {
1528 changed = true;
1529 /*
1530 * The changed hole can contain pending extent.
1531 * Loop again to check that.
1532 */
1533 continue;
1534 }
1535 break;
1536 default:
1537 BUG();
1538 }
1539
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001540 break;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001541 }
1542
1543 return changed;
1544}
Josef Bacik6df9a952013-06-27 13:22:46 -04001545
Chris Mason0b86a832008-03-24 15:01:56 -04001546/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001547 * find_free_dev_extent_start - find free space in the specified device
1548 * @device: the device which we search the free space in
1549 * @num_bytes: the size of the free space that we need
1550 * @search_start: the position from which to begin the search
1551 * @start: store the start of the free space.
1552 * @len: the size of the free space. that we find, or the size
1553 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001554 *
Chris Mason0b86a832008-03-24 15:01:56 -04001555 * this uses a pretty simple search, the expectation is that it is
1556 * called very infrequently and that a given device has a small number
1557 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001558 *
1559 * @start is used to store the start of the free space if we find. But if we
1560 * don't find suitable free space, it will be used to store the start position
1561 * of the max free space.
1562 *
1563 * @len is used to store the size of the free space that we find.
1564 * But if we don't find suitable free space, it is used to store the size of
1565 * the max free space.
Qu Wenruo135da972019-07-19 14:51:42 +08001566 *
1567 * NOTE: This function will search *commit* root of device tree, and does extra
1568 * check to ensure dev extents are not double allocated.
1569 * This makes the function safe to allocate dev extents but may not report
1570 * correct usable device space, as device extent freed in current transaction
David Sterba1a9fd412021-05-21 17:42:23 +02001571 * is not reported as available.
Chris Mason0b86a832008-03-24 15:01:56 -04001572 */
Qu Wenruo9e3246a2019-07-19 14:51:41 +08001573static int find_free_dev_extent_start(struct btrfs_device *device,
1574 u64 num_bytes, u64 search_start, u64 *start,
1575 u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001576{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001577 struct btrfs_fs_info *fs_info = device->fs_info;
1578 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001579 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001580 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001581 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001582 u64 hole_size;
1583 u64 max_hole_start;
1584 u64 max_hole_size;
1585 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001586 u64 search_end = device->total_bytes;
1587 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001588 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001589 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001590
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001591 search_start = dev_extent_search_start(device, search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001592
Naohiro Aota1cd61212021-02-04 19:21:48 +09001593 WARN_ON(device->zone_info &&
1594 !IS_ALIGNED(num_bytes, device->zone_info->zone_size));
1595
Josef Bacik6df9a952013-06-27 13:22:46 -04001596 path = btrfs_alloc_path();
1597 if (!path)
1598 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001599
Miao Xie7bfc8372011-01-05 10:07:26 +00001600 max_hole_start = search_start;
1601 max_hole_size = 0;
1602
Zhao Leif2ab7612015-02-16 18:52:17 +08001603again:
Anand Jain401e29c2017-12-04 12:54:55 +08001604 if (search_start >= search_end ||
1605 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001606 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001607 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001608 }
1609
David Sterbae4058b52015-11-27 16:31:35 +01001610 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001611 path->search_commit_root = 1;
1612 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001613
Chris Mason0b86a832008-03-24 15:01:56 -04001614 key.objectid = device->devid;
1615 key.offset = search_start;
1616 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001617
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03001618 ret = btrfs_search_backwards(root, &key, path);
Chris Mason0b86a832008-03-24 15:01:56 -04001619 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001620 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001621
Chris Mason0b86a832008-03-24 15:01:56 -04001622 while (1) {
1623 l = path->nodes[0];
1624 slot = path->slots[0];
1625 if (slot >= btrfs_header_nritems(l)) {
1626 ret = btrfs_next_leaf(root, path);
1627 if (ret == 0)
1628 continue;
1629 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001630 goto out;
1631
1632 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001633 }
1634 btrfs_item_key_to_cpu(l, &key, slot);
1635
1636 if (key.objectid < device->devid)
1637 goto next;
1638
1639 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001640 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001641
David Sterba962a2982014-06-04 18:41:45 +02001642 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001643 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001644
Miao Xie7bfc8372011-01-05 10:07:26 +00001645 if (key.offset > search_start) {
1646 hole_size = key.offset - search_start;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001647 dev_extent_hole_check(device, &search_start, &hole_size,
1648 num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04001649
Miao Xie7bfc8372011-01-05 10:07:26 +00001650 if (hole_size > max_hole_size) {
1651 max_hole_start = search_start;
1652 max_hole_size = hole_size;
1653 }
1654
1655 /*
1656 * If this free space is greater than which we need,
1657 * it must be the max free space that we have found
1658 * until now, so max_hole_start must point to the start
1659 * of this free space and the length of this free space
1660 * is stored in max_hole_size. Thus, we return
1661 * max_hole_start and max_hole_size and go back to the
1662 * caller.
1663 */
1664 if (hole_size >= num_bytes) {
1665 ret = 0;
1666 goto out;
1667 }
1668 }
1669
Chris Mason0b86a832008-03-24 15:01:56 -04001670 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001671 extent_end = key.offset + btrfs_dev_extent_length(l,
1672 dev_extent);
1673 if (extent_end > search_start)
1674 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001675next:
1676 path->slots[0]++;
1677 cond_resched();
1678 }
Chris Mason0b86a832008-03-24 15:01:56 -04001679
liubo38c01b92011-08-02 02:39:03 +00001680 /*
1681 * At this point, search_start should be the end of
1682 * allocated dev extents, and when shrinking the device,
1683 * search_end may be smaller than search_start.
1684 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001685 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001686 hole_size = search_end - search_start;
Naohiro Aota3b4ffa42020-02-25 12:56:09 +09001687 if (dev_extent_hole_check(device, &search_start, &hole_size,
1688 num_bytes)) {
Zhao Leif2ab7612015-02-16 18:52:17 +08001689 btrfs_release_path(path);
1690 goto again;
1691 }
Chris Mason0b86a832008-03-24 15:01:56 -04001692
Zhao Leif2ab7612015-02-16 18:52:17 +08001693 if (hole_size > max_hole_size) {
1694 max_hole_start = search_start;
1695 max_hole_size = hole_size;
1696 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001697 }
1698
Miao Xie7bfc8372011-01-05 10:07:26 +00001699 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001700 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001701 ret = -ENOSPC;
1702 else
1703 ret = 0;
1704
1705out:
Yan Zheng2b820322008-11-17 21:11:30 -05001706 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001707 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001708 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001709 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001710 return ret;
1711}
1712
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02001713int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes,
Jeff Mahoney499f3772015-06-15 09:41:17 -04001714 u64 *start, u64 *len)
1715{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001716 /* FIXME use last free of some kind */
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02001717 return find_free_dev_extent_start(device, num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001718}
1719
Christoph Hellwigb2950862008-12-02 09:54:17 -05001720static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001721 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001722 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001723{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001724 struct btrfs_fs_info *fs_info = device->fs_info;
1725 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001726 int ret;
1727 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001728 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001729 struct btrfs_key found_key;
1730 struct extent_buffer *leaf = NULL;
1731 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001732
1733 path = btrfs_alloc_path();
1734 if (!path)
1735 return -ENOMEM;
1736
1737 key.objectid = device->devid;
1738 key.offset = start;
1739 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001740again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001741 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001742 if (ret > 0) {
1743 ret = btrfs_previous_item(root, path, key.objectid,
1744 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001745 if (ret)
1746 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001747 leaf = path->nodes[0];
1748 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1749 extent = btrfs_item_ptr(leaf, path->slots[0],
1750 struct btrfs_dev_extent);
1751 BUG_ON(found_key.offset > start || found_key.offset +
1752 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001753 key = found_key;
1754 btrfs_release_path(path);
1755 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001756 } else if (ret == 0) {
1757 leaf = path->nodes[0];
1758 extent = btrfs_item_ptr(leaf, path->slots[0],
1759 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001760 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001761 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001762 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001763
Miao Xie2196d6e2014-09-03 21:35:41 +08001764 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1765
Chris Mason8f18cf12008-04-25 16:53:30 -04001766 ret = btrfs_del_item(trans, root, path);
Filipe Manana79bd3712021-06-29 14:43:06 +01001767 if (ret == 0)
Josef Bacik3204d332015-09-24 10:46:10 -04001768 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001769out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001770 btrfs_free_path(path);
1771 return ret;
1772}
1773
Josef Bacik6df9a952013-06-27 13:22:46 -04001774static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001775{
Josef Bacik6df9a952013-06-27 13:22:46 -04001776 struct extent_map_tree *em_tree;
1777 struct extent_map *em;
1778 struct rb_node *n;
1779 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001780
David Sterbac8bf1b62019-05-17 11:43:17 +02001781 em_tree = &fs_info->mapping_tree;
Josef Bacik6df9a952013-06-27 13:22:46 -04001782 read_lock(&em_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08001783 n = rb_last(&em_tree->map.rb_root);
Josef Bacik6df9a952013-06-27 13:22:46 -04001784 if (n) {
1785 em = rb_entry(n, struct extent_map, rb_node);
1786 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001787 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001788 read_unlock(&em_tree->lock);
1789
Chris Mason0b86a832008-03-24 15:01:56 -04001790 return ret;
1791}
1792
Ilya Dryomov53f10652013-08-12 14:33:01 +03001793static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1794 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001795{
1796 int ret;
1797 struct btrfs_key key;
1798 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001799 struct btrfs_path *path;
1800
Yan Zheng2b820322008-11-17 21:11:30 -05001801 path = btrfs_alloc_path();
1802 if (!path)
1803 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001804
1805 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1806 key.type = BTRFS_DEV_ITEM_KEY;
1807 key.offset = (u64)-1;
1808
Ilya Dryomov53f10652013-08-12 14:33:01 +03001809 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001810 if (ret < 0)
1811 goto error;
1812
Anand Jaina06dee4d2019-08-27 15:40:44 +08001813 if (ret == 0) {
1814 /* Corruption */
1815 btrfs_err(fs_info, "corrupted chunk tree devid -1 matched");
1816 ret = -EUCLEAN;
1817 goto error;
1818 }
Chris Mason0b86a832008-03-24 15:01:56 -04001819
Ilya Dryomov53f10652013-08-12 14:33:01 +03001820 ret = btrfs_previous_item(fs_info->chunk_root, path,
1821 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001822 BTRFS_DEV_ITEM_KEY);
1823 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001824 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001825 } else {
1826 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1827 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001828 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001829 }
1830 ret = 0;
1831error:
Yan Zheng2b820322008-11-17 21:11:30 -05001832 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001833 return ret;
1834}
1835
1836/*
1837 * the device information is stored in the chunk root
1838 * the btrfs_device struct should be fully filled in
1839 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001840static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001841 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001842{
1843 int ret;
1844 struct btrfs_path *path;
1845 struct btrfs_dev_item *dev_item;
1846 struct extent_buffer *leaf;
1847 struct btrfs_key key;
1848 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001849
Chris Mason0b86a832008-03-24 15:01:56 -04001850 path = btrfs_alloc_path();
1851 if (!path)
1852 return -ENOMEM;
1853
Chris Mason0b86a832008-03-24 15:01:56 -04001854 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1855 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001856 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001857
Filipe Manana2bb2e002021-10-13 10:12:49 +01001858 btrfs_reserve_chunk_metadata(trans, true);
Nikolay Borisov8e87e852018-07-20 19:37:47 +03001859 ret = btrfs_insert_empty_item(trans, trans->fs_info->chunk_root, path,
1860 &key, sizeof(*dev_item));
Filipe Manana2bb2e002021-10-13 10:12:49 +01001861 btrfs_trans_release_chunk_metadata(trans);
Chris Mason0b86a832008-03-24 15:01:56 -04001862 if (ret)
1863 goto out;
1864
1865 leaf = path->nodes[0];
1866 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1867
1868 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001869 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001870 btrfs_set_device_type(leaf, dev_item, device->type);
1871 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1872 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1873 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001874 btrfs_set_device_total_bytes(leaf, dev_item,
1875 btrfs_device_get_disk_total_bytes(device));
1876 btrfs_set_device_bytes_used(leaf, dev_item,
1877 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001878 btrfs_set_device_group(leaf, dev_item, 0);
1879 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1880 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001881 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001882
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001883 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001884 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001885 ptr = btrfs_device_fsid(dev_item);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02001886 write_extent_buffer(leaf, trans->fs_info->fs_devices->metadata_uuid,
1887 ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001888 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001889
Yan Zheng2b820322008-11-17 21:11:30 -05001890 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001891out:
1892 btrfs_free_path(path);
1893 return ret;
1894}
Chris Mason8f18cf12008-04-25 16:53:30 -04001895
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001896/*
1897 * Function to update ctime/mtime for a given device path.
1898 * Mainly used for ctime/mtime based probe like libblkid.
Josef Bacik54fde912021-10-14 13:11:01 -04001899 *
1900 * We don't care about errors here, this is just to be kind to userspace.
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001901 */
Josef Bacik54fde912021-10-14 13:11:01 -04001902static void update_dev_time(const char *device_path)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001903{
Josef Bacik54fde912021-10-14 13:11:01 -04001904 struct path path;
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001905 struct timespec64 now;
Josef Bacik54fde912021-10-14 13:11:01 -04001906 int ret;
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001907
Josef Bacik54fde912021-10-14 13:11:01 -04001908 ret = kern_path(device_path, LOOKUP_FOLLOW, &path);
1909 if (ret)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001910 return;
Josef Bacik8f96a5b2021-07-27 17:01:16 -04001911
Josef Bacik54fde912021-10-14 13:11:01 -04001912 now = current_time(d_inode(path.dentry));
1913 inode_update_time(d_inode(path.dentry), &now, S_MTIME | S_CTIME);
1914 path_put(&path);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001915}
1916
David Sterbaf331a952019-03-20 16:31:53 +01001917static int btrfs_rm_dev_item(struct btrfs_device *device)
Chris Masona061fc82008-05-07 11:43:44 -04001918{
David Sterbaf331a952019-03-20 16:31:53 +01001919 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001920 int ret;
1921 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001922 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001923 struct btrfs_trans_handle *trans;
1924
Chris Masona061fc82008-05-07 11:43:44 -04001925 path = btrfs_alloc_path();
1926 if (!path)
1927 return -ENOMEM;
1928
Yan, Zhenga22285a2010-05-16 10:48:46 -04001929 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001930 if (IS_ERR(trans)) {
1931 btrfs_free_path(path);
1932 return PTR_ERR(trans);
1933 }
Chris Masona061fc82008-05-07 11:43:44 -04001934 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1935 key.type = BTRFS_DEV_ITEM_KEY;
1936 key.offset = device->devid;
1937
Filipe Manana2bb2e002021-10-13 10:12:49 +01001938 btrfs_reserve_chunk_metadata(trans, false);
Chris Masona061fc82008-05-07 11:43:44 -04001939 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Filipe Manana2bb2e002021-10-13 10:12:49 +01001940 btrfs_trans_release_chunk_metadata(trans);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001941 if (ret) {
1942 if (ret > 0)
1943 ret = -ENOENT;
1944 btrfs_abort_transaction(trans, ret);
1945 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001946 goto out;
1947 }
1948
1949 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001950 if (ret) {
1951 btrfs_abort_transaction(trans, ret);
1952 btrfs_end_transaction(trans);
1953 }
1954
Chris Masona061fc82008-05-07 11:43:44 -04001955out:
1956 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001957 if (!ret)
1958 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001959 return ret;
1960}
1961
David Sterba3cc31a02016-02-15 16:00:26 +01001962/*
1963 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1964 * filesystem. It's up to the caller to adjust that number regarding eg. device
1965 * replace.
1966 */
1967static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1968 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001969{
Chris Masona061fc82008-05-07 11:43:44 -04001970 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001971 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001972 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001973
Miao Xiede98ced2013-01-29 10:13:12 +00001974 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001975 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001976
Anand Jainbd45ffb2016-02-13 10:01:34 +08001977 all_avail = fs_info->avail_data_alloc_bits |
1978 fs_info->avail_system_alloc_bits |
1979 fs_info->avail_metadata_alloc_bits;
1980 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001981
David Sterba418775a2016-02-15 16:28:14 +01001982 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
Anand Jain41a6e892018-04-25 19:01:43 +08001983 if (!(all_avail & btrfs_raid_array[i].bg_flag))
David Sterba418775a2016-02-15 16:28:14 +01001984 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001985
Anand Jainefc222f2021-07-28 07:03:05 +08001986 if (num_devices < btrfs_raid_array[i].devs_min)
1987 return btrfs_raid_array[i].mindev_error;
Anand Jainbd45ffb2016-02-13 10:01:34 +08001988 }
1989
1990 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001991}
1992
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001993static struct btrfs_device * btrfs_find_next_active_device(
1994 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001995{
1996 struct btrfs_device *next_device;
1997
1998 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1999 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08002000 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
2001 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08002002 return next_device;
2003 }
2004
2005 return NULL;
2006}
2007
2008/*
Anand Jaind24fa5c2021-08-24 13:05:19 +08002009 * Helper function to check if the given device is part of s_bdev / latest_dev
Anand Jain88acff62016-05-03 17:44:43 +08002010 * and replace it with the provided or the next active device, in the context
2011 * where this function called, there should be always be another device (or
2012 * this_dev) which is active.
2013 */
David Sterbab105e922019-10-01 19:57:35 +02002014void __cold btrfs_assign_next_active_device(struct btrfs_device *device,
Anand Jaine493e8f2020-09-05 01:34:34 +08002015 struct btrfs_device *next_device)
Anand Jain88acff62016-05-03 17:44:43 +08002016{
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002017 struct btrfs_fs_info *fs_info = device->fs_info;
Anand Jain88acff62016-05-03 17:44:43 +08002018
Anand Jaine493e8f2020-09-05 01:34:34 +08002019 if (!next_device)
Anand Jain88acff62016-05-03 17:44:43 +08002020 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
Anand Jaine493e8f2020-09-05 01:34:34 +08002021 device);
Anand Jain88acff62016-05-03 17:44:43 +08002022 ASSERT(next_device);
2023
2024 if (fs_info->sb->s_bdev &&
2025 (fs_info->sb->s_bdev == device->bdev))
2026 fs_info->sb->s_bdev = next_device->bdev;
2027
Anand Jaind24fa5c2021-08-24 13:05:19 +08002028 if (fs_info->fs_devices->latest_dev->bdev == device->bdev)
2029 fs_info->fs_devices->latest_dev = next_device;
Anand Jain88acff62016-05-03 17:44:43 +08002030}
2031
Anand Jain1da73962018-08-10 13:53:21 +08002032/*
2033 * Return btrfs_fs_devices::num_devices excluding the device that's being
2034 * currently replaced.
2035 */
2036static u64 btrfs_num_devices(struct btrfs_fs_info *fs_info)
2037{
2038 u64 num_devices = fs_info->fs_devices->num_devices;
2039
David Sterbacb5583d2018-09-07 16:11:23 +02002040 down_read(&fs_info->dev_replace.rwsem);
Anand Jain1da73962018-08-10 13:53:21 +08002041 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
2042 ASSERT(num_devices > 1);
2043 num_devices--;
2044 }
David Sterbacb5583d2018-09-07 16:11:23 +02002045 up_read(&fs_info->dev_replace.rwsem);
Anand Jain1da73962018-08-10 13:53:21 +08002046
2047 return num_devices;
2048}
2049
Josef Bacik313b0852020-08-20 11:18:26 -04002050void btrfs_scratch_superblocks(struct btrfs_fs_info *fs_info,
2051 struct block_device *bdev,
2052 const char *device_path)
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002053{
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002054 struct btrfs_super_block *disk_super;
2055 int copy_num;
2056
2057 if (!bdev)
2058 return;
2059
2060 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; copy_num++) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002061 struct page *page;
2062 int ret;
2063
2064 disk_super = btrfs_read_dev_one_super(bdev, copy_num);
2065 if (IS_ERR(disk_super))
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002066 continue;
2067
Naohiro Aota12659252020-11-10 20:26:14 +09002068 if (bdev_is_zoned(bdev)) {
2069 btrfs_reset_sb_log_zones(bdev, copy_num);
2070 continue;
2071 }
2072
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002073 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002074
2075 page = virt_to_page(disk_super);
2076 set_page_dirty(page);
2077 lock_page(page);
2078 /* write_on_page() unlocks the page */
2079 ret = write_one_page(page);
2080 if (ret)
2081 btrfs_warn(fs_info,
2082 "error clearing superblock number %d (%d)",
2083 copy_num, ret);
2084 btrfs_release_disk_super(disk_super);
2085
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002086 }
2087
2088 /* Notify udev that device has changed */
2089 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
2090
2091 /* Update ctime/mtime for device path for libblkid */
Josef Bacik54fde912021-10-14 13:11:01 -04002092 update_dev_time(device_path);
Johannes Thumshirn6fbceb92020-02-14 00:24:31 +09002093}
2094
Josef Bacik1a15eb72021-10-05 16:12:44 -04002095int btrfs_rm_device(struct btrfs_fs_info *fs_info,
2096 struct btrfs_dev_lookup_args *args,
2097 struct block_device **bdev, fmode_t *mode)
Anand Jainf1fa7f22016-02-13 10:01:33 +08002098{
2099 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002100 struct btrfs_fs_devices *cur_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002101 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002102 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002103 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08002104
Josef Bacik8ef9dc02021-07-27 17:01:14 -04002105 /*
2106 * The device list in fs_devices is accessed without locks (neither
2107 * uuid_mutex nor device_list_mutex) as it won't change on a mounted
2108 * filesystem and another device rm cannot run.
2109 */
Anand Jain1da73962018-08-10 13:53:21 +08002110 num_devices = btrfs_num_devices(fs_info);
Chris Masona061fc82008-05-07 11:43:44 -04002111
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002112 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08002113 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04002114 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002115
Josef Bacik1a15eb72021-10-05 16:12:44 -04002116 device = btrfs_find_device(fs_info->fs_devices, args);
2117 if (!device) {
2118 if (args->missing)
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002119 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
2120 else
Josef Bacik1a15eb72021-10-05 16:12:44 -04002121 ret = -ENOENT;
Chris Masona061fc82008-05-07 11:43:44 -04002122 goto out;
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002123 }
Yan Zheng2b820322008-11-17 21:11:30 -05002124
Omar Sandovaleede2bf2016-11-03 10:28:12 -07002125 if (btrfs_pinned_by_swapfile(fs_info, device)) {
2126 btrfs_warn_in_rcu(fs_info,
2127 "cannot remove device %s (devid %llu) due to active swapfile",
2128 rcu_str_deref(device->name), device->devid);
2129 ret = -ETXTBSY;
2130 goto out;
2131 }
2132
Anand Jain401e29c2017-12-04 12:54:55 +08002133 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00002134 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08002135 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002136 }
2137
Anand Jainebbede42017-12-04 12:54:52 +08002138 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
2139 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00002140 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08002141 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05002142 }
2143
Anand Jainebbede42017-12-04 12:54:52 +08002144 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002145 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002146 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002147 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02002148 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002149 }
Chris Masona061fc82008-05-07 11:43:44 -04002150
2151 ret = btrfs_shrink_device(device, 0);
2152 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002153 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002154
Stefan Behrens63a212a2012-11-05 18:29:28 +01002155 /*
2156 * TODO: the superblock still includes this device in its num_devices
2157 * counter although write_all_supers() is not locked out. This
2158 * could give a filesystem state which requires a degraded mount.
2159 */
David Sterbaf331a952019-03-20 16:31:53 +01002160 ret = btrfs_rm_dev_item(device);
Chris Masona061fc82008-05-07 11:43:44 -04002161 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002162 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002163
Anand Jaine12c9622017-12-04 12:54:53 +08002164 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
David Sterba163e97e2019-03-20 16:32:55 +01002165 btrfs_scrub_cancel_dev(device);
Chris Masone5e9a522009-06-10 15:17:02 -04002166
2167 /*
2168 * the device list mutex makes sure that we don't change
2169 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01002170 * the device supers. Whoever is writing all supers, should
2171 * lock the device list mutex before getting the number of
2172 * devices in the super block (super_copy). Conversely,
2173 * whoever updates the number of devices in the super block
2174 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04002175 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002176
Anand Jain41a52a02018-04-12 10:29:31 +08002177 /*
2178 * In normal cases the cur_devices == fs_devices. But in case
2179 * of deleting a seed device, the cur_devices should point to
Su Yue9675ea82021-08-18 12:15:48 +08002180 * its own fs_devices listed under the fs_devices->seed_list.
Anand Jain41a52a02018-04-12 10:29:31 +08002181 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002182 cur_devices = device->fs_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002183 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002184 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002185
Anand Jain41a52a02018-04-12 10:29:31 +08002186 cur_devices->num_devices--;
2187 cur_devices->total_devices--;
Anand Jainb4993e62018-07-03 17:07:23 +08002188 /* Update total_devices of the parent fs_devices if it's seed */
2189 if (cur_devices != fs_devices)
2190 fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05002191
Anand Jaine6e674b2017-12-04 12:54:54 +08002192 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jain41a52a02018-04-12 10:29:31 +08002193 cur_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05002194
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002195 btrfs_assign_next_active_device(device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05002196
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002197 if (device->bdev) {
Anand Jain41a52a02018-04-12 10:29:31 +08002198 cur_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002199 /* remove sysfs entry */
Anand Jain53f8a742020-09-05 01:34:27 +08002200 btrfs_sysfs_remove_device(device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002201 }
Anand Jain99994cd2014-06-03 11:36:00 +08002202
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002203 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
2204 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
Anand Jainb5185192018-04-12 10:29:30 +08002205 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002206
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002207 /*
Josef Bacik3fa421d2021-07-27 17:01:17 -04002208 * At this point, the device is zero sized and detached from the
2209 * devices list. All that's left is to zero out the old supers and
2210 * free the device.
2211 *
2212 * We cannot call btrfs_close_bdev() here because we're holding the sb
2213 * write lock, and blkdev_put() will pull in the ->open_mutex on the
2214 * block device and it's dependencies. Instead just flush the device
2215 * and let the caller do the final blkdev_put.
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002216 */
Josef Bacik3fa421d2021-07-27 17:01:17 -04002217 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002218 btrfs_scratch_superblocks(fs_info, device->bdev,
2219 device->name->str);
Josef Bacik3fa421d2021-07-27 17:01:17 -04002220 if (device->bdev) {
2221 sync_blockdev(device->bdev);
2222 invalidate_bdev(device->bdev);
2223 }
2224 }
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002225
Josef Bacik3fa421d2021-07-27 17:01:17 -04002226 *bdev = device->bdev;
2227 *mode = device->mode;
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002228 synchronize_rcu();
2229 btrfs_free_device(device);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002230
Josef Bacik8b413932021-10-05 16:12:41 -04002231 /*
2232 * This can happen if cur_devices is the private seed devices list. We
2233 * cannot call close_fs_devices() here because it expects the uuid_mutex
2234 * to be held, but in fact we don't need that for the private
2235 * seed_devices, we can simply decrement cur_devices->opened and then
2236 * remove it from our list and free the fs_devices.
2237 */
Anand Jain8e906942021-10-05 16:12:39 -04002238 if (cur_devices->num_devices == 0) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002239 list_del_init(&cur_devices->seed_list);
Josef Bacik8b413932021-10-05 16:12:41 -04002240 ASSERT(cur_devices->opened == 1);
2241 cur_devices->opened--;
Xiao Guangrong1f781602011-04-20 10:09:16 +00002242 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002243 }
2244
Chris Masona061fc82008-05-07 11:43:44 -04002245out:
Chris Masona061fc82008-05-07 11:43:44 -04002246 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08002247
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002248error_undo:
Anand Jainebbede42017-12-04 12:54:52 +08002249 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002250 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002251 list_add(&device->dev_alloc_list,
Anand Jainb5185192018-04-12 10:29:30 +08002252 &fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002253 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002254 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002255 }
Anand Jain24fc5722016-02-13 10:01:36 +08002256 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002257}
2258
Nikolay Borisov68a9db52018-07-20 19:37:48 +03002259void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002260{
Anand Jaind51908c2014-08-13 14:24:19 +08002261 struct btrfs_fs_devices *fs_devices;
2262
Nikolay Borisov68a9db52018-07-20 19:37:48 +03002263 lockdep_assert_held(&srcdev->fs_info->fs_devices->device_list_mutex);
Ilya Dryomov13572722013-10-02 20:41:01 +03002264
Anand Jain25e8e912014-08-20 10:56:56 +08002265 /*
2266 * in case of fs with no seed, srcdev->fs_devices will point
2267 * to fs_devices of fs_info. However when the dev being replaced is
2268 * a seed dev it will point to the seed's local fs_devices. In short
2269 * srcdev will have its correct fs_devices in both the cases.
2270 */
2271 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002272
Stefan Behrense93c89c2012-11-05 17:33:06 +01002273 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002274 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002275 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002276 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002277 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002278
Anand Jainebbede42017-12-04 12:54:52 +08002279 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002280 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002281
Miao Xie82372bc2014-09-03 21:35:44 +08002282 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002283 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002284}
2285
David Sterba65237ee2019-03-20 16:34:54 +01002286void btrfs_rm_dev_replace_free_srcdev(struct btrfs_device *srcdev)
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002287{
2288 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002289
Josef Bacika466c852020-08-20 11:18:27 -04002290 mutex_lock(&uuid_mutex);
2291
Anand Jain14238812016-07-22 06:04:53 +08002292 btrfs_close_bdev(srcdev);
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002293 synchronize_rcu();
2294 btrfs_free_device(srcdev);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002295
Anand Jain94d5f0c2014-08-13 14:24:22 +08002296 /* if this is no devs we rather delete the fs_devices */
2297 if (!fs_devices->num_devices) {
Anand Jain6dd38f82017-10-17 06:53:50 +08002298 /*
2299 * On a mounted FS, num_devices can't be zero unless it's a
2300 * seed. In case of a seed device being replaced, the replace
2301 * target added to the sprout FS, so there will be no more
2302 * device left under the seed FS.
2303 */
2304 ASSERT(fs_devices->seeding);
2305
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002306 list_del_init(&fs_devices->seed_list);
Anand Jain0226e0e2018-04-12 10:29:27 +08002307 close_fs_devices(fs_devices);
Anand Jain8bef8402014-08-13 14:24:23 +08002308 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002309 }
Josef Bacika466c852020-08-20 11:18:27 -04002310 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002311}
2312
Nikolay Borisov4f5ad7b2018-07-20 19:37:51 +03002313void btrfs_destroy_dev_replace_tgtdev(struct btrfs_device *tgtdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002314{
Nikolay Borisov4f5ad7b2018-07-20 19:37:51 +03002315 struct btrfs_fs_devices *fs_devices = tgtdev->fs_info->fs_devices;
Anand Jaind2ff1b22015-03-10 06:38:42 +08002316
Anand Jaind9a071f2018-04-12 10:29:38 +08002317 mutex_lock(&fs_devices->device_list_mutex);
2318
Anand Jain53f8a742020-09-05 01:34:27 +08002319 btrfs_sysfs_remove_device(tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002320
Anand Jain779bf3fe2016-04-18 16:51:23 +08002321 if (tgtdev->bdev)
Anand Jaind9a071f2018-04-12 10:29:38 +08002322 fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002323
Anand Jaind9a071f2018-04-12 10:29:38 +08002324 fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002325
Nikolay Borisovd6507cf2018-07-20 19:37:50 +03002326 btrfs_assign_next_active_device(tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002327
Stefan Behrense93c89c2012-11-05 17:33:06 +01002328 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002329
Anand Jaind9a071f2018-04-12 10:29:38 +08002330 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002331
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002332 btrfs_scratch_superblocks(tgtdev->fs_info, tgtdev->bdev,
2333 tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002334
2335 btrfs_close_bdev(tgtdev);
Nikolay Borisov8e75fd82019-03-27 14:24:11 +02002336 synchronize_rcu();
2337 btrfs_free_device(tgtdev);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002338}
2339
Josef Bacikfaa775c2021-10-05 16:12:43 -04002340/**
2341 * Populate args from device at path
2342 *
2343 * @fs_info: the filesystem
2344 * @args: the args to populate
2345 * @path: the path to the device
2346 *
2347 * This will read the super block of the device at @path and populate @args with
2348 * the devid, fsid, and uuid. This is meant to be used for ioctls that need to
2349 * lookup a device to operate on, but need to do it before we take any locks.
2350 * This properly handles the special case of "missing" that a user may pass in,
2351 * and does some basic sanity checks. The caller must make sure that @path is
2352 * properly NUL terminated before calling in, and must call
2353 * btrfs_put_dev_args_from_path() in order to free up the temporary fsid and
2354 * uuid buffers.
2355 *
2356 * Return: 0 for success, -errno for failure
2357 */
2358int btrfs_get_dev_args_from_path(struct btrfs_fs_info *fs_info,
2359 struct btrfs_dev_lookup_args *args,
2360 const char *path)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002361{
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002362 struct btrfs_super_block *disk_super;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002363 struct block_device *bdev;
Josef Bacikfaa775c2021-10-05 16:12:43 -04002364 int ret;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002365
Josef Bacikfaa775c2021-10-05 16:12:43 -04002366 if (!path || !path[0])
2367 return -EINVAL;
2368 if (!strcmp(path, "missing")) {
2369 args->missing = true;
2370 return 0;
2371 }
2372
2373 args->uuid = kzalloc(BTRFS_UUID_SIZE, GFP_KERNEL);
2374 args->fsid = kzalloc(BTRFS_FSID_SIZE, GFP_KERNEL);
2375 if (!args->uuid || !args->fsid) {
2376 btrfs_put_dev_args_from_path(args);
2377 return -ENOMEM;
2378 }
2379
2380 ret = btrfs_get_bdev_and_sb(path, FMODE_READ, fs_info->bdev_holder, 0,
2381 &bdev, &disk_super);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002382 if (ret)
Josef Bacikfaa775c2021-10-05 16:12:43 -04002383 return ret;
2384 args->devid = btrfs_stack_device_id(&disk_super->dev_item);
2385 memcpy(args->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002386 if (btrfs_fs_incompat(fs_info, METADATA_UUID))
Josef Bacikfaa775c2021-10-05 16:12:43 -04002387 memcpy(args->fsid, disk_super->metadata_uuid, BTRFS_FSID_SIZE);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002388 else
Josef Bacikfaa775c2021-10-05 16:12:43 -04002389 memcpy(args->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
Johannes Thumshirn8f323802020-02-14 00:24:32 +09002390 btrfs_release_disk_super(disk_super);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002391 blkdev_put(bdev, FMODE_READ);
Josef Bacikfaa775c2021-10-05 16:12:43 -04002392 return 0;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002393}
2394
Yan Zheng2b820322008-11-17 21:11:30 -05002395/*
Josef Bacikfaa775c2021-10-05 16:12:43 -04002396 * Only use this jointly with btrfs_get_dev_args_from_path() because we will
2397 * allocate our ->uuid and ->fsid pointers, everybody else uses local variables
2398 * that don't need to be freed.
David Sterba5c5c0df2016-02-15 16:39:55 +01002399 */
Josef Bacikfaa775c2021-10-05 16:12:43 -04002400void btrfs_put_dev_args_from_path(struct btrfs_dev_lookup_args *args)
2401{
2402 kfree(args->uuid);
2403 kfree(args->fsid);
2404 args->uuid = NULL;
2405 args->fsid = NULL;
2406}
2407
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002408struct btrfs_device *btrfs_find_device_by_devspec(
Anand Jain6e927ce2019-01-17 23:32:29 +08002409 struct btrfs_fs_info *fs_info, u64 devid,
2410 const char *device_path)
Anand Jain24e04742016-02-13 10:01:35 +08002411{
Josef Bacik562d7b12021-10-05 16:12:42 -04002412 BTRFS_DEV_LOOKUP_ARGS(args);
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002413 struct btrfs_device *device;
Josef Bacikfaa775c2021-10-05 16:12:43 -04002414 int ret;
Anand Jain24e04742016-02-13 10:01:35 +08002415
David Sterba5c5c0df2016-02-15 16:39:55 +01002416 if (devid) {
Josef Bacik562d7b12021-10-05 16:12:42 -04002417 args.devid = devid;
2418 device = btrfs_find_device(fs_info->fs_devices, &args);
Nikolay Borisova27a94c2018-09-03 12:46:14 +03002419 if (!device)
2420 return ERR_PTR(-ENOENT);
Anand Jain6e927ce2019-01-17 23:32:29 +08002421 return device;
Anand Jain24e04742016-02-13 10:01:35 +08002422 }
Anand Jain6e927ce2019-01-17 23:32:29 +08002423
Josef Bacikfaa775c2021-10-05 16:12:43 -04002424 ret = btrfs_get_dev_args_from_path(fs_info, &args, device_path);
2425 if (ret)
2426 return ERR_PTR(ret);
2427 device = btrfs_find_device(fs_info->fs_devices, &args);
2428 btrfs_put_dev_args_from_path(&args);
2429 if (!device)
Anand Jain6e927ce2019-01-17 23:32:29 +08002430 return ERR_PTR(-ENOENT);
Josef Bacikfaa775c2021-10-05 16:12:43 -04002431 return device;
Anand Jain24e04742016-02-13 10:01:35 +08002432}
2433
Anand Jain849eae52021-11-09 17:51:58 +08002434static struct btrfs_fs_devices *btrfs_init_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002435{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002436 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002437 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002438 struct btrfs_fs_devices *seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002439
David Sterbaa32bf9a2018-03-16 02:21:22 +01002440 lockdep_assert_held(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002441 if (!fs_devices->seeding)
Anand Jain849eae52021-11-09 17:51:58 +08002442 return ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05002443
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03002444 /*
2445 * Private copy of the seed devices, anchored at
2446 * fs_info->fs_devices->seed_list
2447 */
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002448 seed_devices = alloc_fs_devices(NULL, NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002449 if (IS_ERR(seed_devices))
Anand Jain849eae52021-11-09 17:51:58 +08002450 return seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002451
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03002452 /*
2453 * It's necessary to retain a copy of the original seed fs_devices in
2454 * fs_uuids so that filesystems which have been seeded can successfully
2455 * reference the seed device from open_seed_devices. This also supports
2456 * multiple fs seed.
2457 */
Yan Zhenge4404d62008-12-12 10:03:26 -05002458 old_devices = clone_fs_devices(fs_devices);
2459 if (IS_ERR(old_devices)) {
2460 kfree(seed_devices);
Anand Jain849eae52021-11-09 17:51:58 +08002461 return old_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002462 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002463
Anand Jainc4babc52018-04-12 10:29:25 +08002464 list_add(&old_devices->fs_list, &fs_uuids);
Yan Zheng2b820322008-11-17 21:11:30 -05002465
Yan Zhenge4404d62008-12-12 10:03:26 -05002466 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2467 seed_devices->opened = 1;
2468 INIT_LIST_HEAD(&seed_devices->devices);
2469 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002470 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002471
Anand Jain849eae52021-11-09 17:51:58 +08002472 return seed_devices;
2473}
2474
2475/*
2476 * Splice seed devices into the sprout fs_devices.
2477 * Generate a new fsid for the sprouted read-write filesystem.
2478 */
2479static void btrfs_setup_sprout(struct btrfs_fs_info *fs_info,
2480 struct btrfs_fs_devices *seed_devices)
2481{
2482 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
2483 struct btrfs_super_block *disk_super = fs_info->super_copy;
2484 struct btrfs_device *device;
2485 u64 super_flags;
2486
2487 /*
2488 * We are updating the fsid, the thread leading to device_list_add()
2489 * could race, so uuid_mutex is needed.
2490 */
2491 lockdep_assert_held(&uuid_mutex);
2492
2493 /*
2494 * The threads listed below may traverse dev_list but can do that without
2495 * device_list_mutex:
2496 * - All device ops and balance - as we are in btrfs_exclop_start.
2497 * - Various dev_list readers - are using RCU.
2498 * - btrfs_ioctl_fitrim() - is using RCU.
2499 *
2500 * For-read threads as below are using device_list_mutex:
2501 * - Readonly scrub btrfs_scrub_dev()
2502 * - Readonly scrub btrfs_scrub_progress()
2503 * - btrfs_get_dev_stats()
2504 */
2505 lockdep_assert_held(&fs_devices->device_list_mutex);
2506
Xiao Guangrong1f781602011-04-20 10:09:16 +00002507 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2508 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002509 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002510 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002511
Johannes Thumshirn0395d842019-11-13 11:27:27 +01002512 fs_devices->seeding = false;
Yan Zheng2b820322008-11-17 21:11:30 -05002513 fs_devices->num_devices = 0;
2514 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002515 fs_devices->missing_devices = 0;
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +01002516 fs_devices->rotating = false;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03002517 list_add(&seed_devices->seed_list, &fs_devices->seed_list);
Yan Zheng2b820322008-11-17 21:11:30 -05002518
2519 generate_random_uuid(fs_devices->fsid);
Nikolay Borisov7239ff42018-10-30 16:43:23 +02002520 memcpy(fs_devices->metadata_uuid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002521 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002522
Yan Zheng2b820322008-11-17 21:11:30 -05002523 super_flags = btrfs_super_flags(disk_super) &
2524 ~BTRFS_SUPER_FLAG_SEEDING;
2525 btrfs_set_super_flags(disk_super, super_flags);
Yan Zheng2b820322008-11-17 21:11:30 -05002526}
2527
2528/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002529 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002530 */
David Sterba5c4666292019-03-20 16:36:39 +01002531static int btrfs_finish_sprout(struct btrfs_trans_handle *trans)
Yan Zheng2b820322008-11-17 21:11:30 -05002532{
Josef Bacik562d7b12021-10-05 16:12:42 -04002533 BTRFS_DEV_LOOKUP_ARGS(args);
David Sterba5c4666292019-03-20 16:36:39 +01002534 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002535 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002536 struct btrfs_path *path;
2537 struct extent_buffer *leaf;
2538 struct btrfs_dev_item *dev_item;
2539 struct btrfs_device *device;
2540 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002541 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002542 u8 dev_uuid[BTRFS_UUID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002543 int ret;
2544
2545 path = btrfs_alloc_path();
2546 if (!path)
2547 return -ENOMEM;
2548
Yan Zheng2b820322008-11-17 21:11:30 -05002549 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2550 key.offset = 0;
2551 key.type = BTRFS_DEV_ITEM_KEY;
2552
2553 while (1) {
Filipe Manana2bb2e002021-10-13 10:12:49 +01002554 btrfs_reserve_chunk_metadata(trans, false);
Yan Zheng2b820322008-11-17 21:11:30 -05002555 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Filipe Manana2bb2e002021-10-13 10:12:49 +01002556 btrfs_trans_release_chunk_metadata(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002557 if (ret < 0)
2558 goto error;
2559
2560 leaf = path->nodes[0];
2561next_slot:
2562 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2563 ret = btrfs_next_leaf(root, path);
2564 if (ret > 0)
2565 break;
2566 if (ret < 0)
2567 goto error;
2568 leaf = path->nodes[0];
2569 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002570 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002571 continue;
2572 }
2573
2574 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2575 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2576 key.type != BTRFS_DEV_ITEM_KEY)
2577 break;
2578
2579 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2580 struct btrfs_dev_item);
Josef Bacik562d7b12021-10-05 16:12:42 -04002581 args.devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002582 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002583 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002584 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002585 BTRFS_FSID_SIZE);
Josef Bacik562d7b12021-10-05 16:12:42 -04002586 args.uuid = dev_uuid;
2587 args.fsid = fs_uuid;
2588 device = btrfs_find_device(fs_info->fs_devices, &args);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002589 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002590
2591 if (device->fs_devices->seeding) {
2592 btrfs_set_device_generation(leaf, dev_item,
2593 device->generation);
2594 btrfs_mark_buffer_dirty(leaf);
2595 }
2596
2597 path->slots[0]++;
2598 goto next_slot;
2599 }
2600 ret = 0;
2601error:
2602 btrfs_free_path(path);
2603 return ret;
2604}
2605
David Sterbada353f62017-02-14 17:55:53 +01002606int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002607{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002608 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002609 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002610 struct btrfs_trans_handle *trans;
2611 struct btrfs_device *device;
2612 struct block_device *bdev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002613 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002614 struct rcu_string *name;
Anand Jain5da54bc2018-07-03 13:14:50 +08002615 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jain849eae52021-11-09 17:51:58 +08002616 struct btrfs_fs_devices *seed_devices;
Naohiro Aota39379fa2018-07-27 09:04:55 +09002617 u64 orig_super_total_bytes;
2618 u64 orig_super_num_devices;
Chris Mason788f20e2008-04-28 15:29:42 -04002619 int ret = 0;
Anand Jainfd880802021-09-21 12:33:23 +08002620 bool seeding_dev = false;
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002621 bool locked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002622
Anand Jain5da54bc2018-07-03 13:14:50 +08002623 if (sb_rdonly(sb) && !fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002624 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002625
Li Zefana5d163332011-12-07 20:08:40 -05002626 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002627 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002628 if (IS_ERR(bdev))
2629 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002630
Naohiro Aotab70f5092020-11-10 20:26:08 +09002631 if (!btrfs_check_device_zone_type(fs_info, bdev)) {
2632 ret = -EINVAL;
2633 goto error;
2634 }
2635
Anand Jain5da54bc2018-07-03 13:14:50 +08002636 if (fs_devices->seeding) {
Anand Jainfd880802021-09-21 12:33:23 +08002637 seeding_dev = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002638 down_write(&sb->s_umount);
2639 mutex_lock(&uuid_mutex);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002640 locked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002641 }
2642
Nikolay Borisovb9ba0172020-07-22 11:09:25 +03002643 sync_blockdev(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002644
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002645 rcu_read_lock();
2646 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002647 if (device->bdev == bdev) {
2648 ret = -EEXIST;
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002649 rcu_read_unlock();
Yan Zheng2b820322008-11-17 21:11:30 -05002650 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002651 }
2652 }
Nikolay Borisovf4cfa9b2020-07-22 11:09:22 +03002653 rcu_read_unlock();
Chris Mason788f20e2008-04-28 15:29:42 -04002654
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002655 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002656 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002657 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002658 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002659 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002660 }
2661
David Sterba78f2c9e2016-02-11 14:25:38 +01002662 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002663 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002664 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002665 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002666 }
Josef Bacik606686e2012-06-04 14:03:51 -04002667 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002668
Naohiro Aota5b316462020-11-10 20:26:07 +09002669 device->fs_info = fs_info;
2670 device->bdev = bdev;
2671
Naohiro Aota16beac82021-11-11 14:14:38 +09002672 ret = btrfs_get_dev_zone_info(device, false);
Naohiro Aota5b316462020-11-10 20:26:07 +09002673 if (ret)
2674 goto error_free_device;
2675
Yan, Zhenga22285a2010-05-16 10:48:46 -04002676 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002677 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002678 ret = PTR_ERR(trans);
Naohiro Aota5b316462020-11-10 20:26:07 +09002679 goto error_free_zone;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002680 }
2681
Josef Bacikd5e20032011-08-04 14:52:27 +00002682 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002683 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002684 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002685 device->io_width = fs_info->sectorsize;
2686 device->io_align = fs_info->sectorsize;
2687 device->sector_size = fs_info->sectorsize;
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02002688 device->total_bytes =
2689 round_down(bdev_nr_bytes(bdev), fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002690 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002691 device->commit_total_bytes = device->total_bytes;
Anand Jaine12c9622017-12-04 12:54:53 +08002692 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002693 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002694 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002695 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002696 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002697
Yan Zheng2b820322008-11-17 21:11:30 -05002698 if (seeding_dev) {
Filipe Mananaa0a1db72020-12-14 10:10:47 +00002699 btrfs_clear_sb_rdonly(sb);
Anand Jain849eae52021-11-09 17:51:58 +08002700
2701 /* GFP_KERNEL allocation must not be under device_list_mutex */
2702 seed_devices = btrfs_init_sprout(fs_info);
2703 if (IS_ERR(seed_devices)) {
2704 ret = PTR_ERR(seed_devices);
Anand Jaind31c32f2017-09-28 14:51:10 +08002705 btrfs_abort_transaction(trans, ret);
2706 goto error_trans;
2707 }
Anand Jain849eae52021-11-09 17:51:58 +08002708 }
2709
2710 mutex_lock(&fs_devices->device_list_mutex);
2711 if (seeding_dev) {
2712 btrfs_setup_sprout(fs_info, seed_devices);
Anand Jainb7cb29e2021-08-24 13:05:21 +08002713 btrfs_assign_next_active_device(fs_info->fs_devices->latest_dev,
2714 device);
Yan Zheng2b820322008-11-17 21:11:30 -05002715 }
2716
Anand Jain5da54bc2018-07-03 13:14:50 +08002717 device->fs_devices = fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002718
David Sterba34441362016-10-04 19:34:27 +02002719 mutex_lock(&fs_info->chunk_mutex);
Anand Jain5da54bc2018-07-03 13:14:50 +08002720 list_add_rcu(&device->dev_list, &fs_devices->devices);
2721 list_add(&device->dev_alloc_list, &fs_devices->alloc_list);
2722 fs_devices->num_devices++;
2723 fs_devices->open_devices++;
2724 fs_devices->rw_devices++;
2725 fs_devices->total_devices++;
2726 fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002727
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002728 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002729
Anand Jaine884f4f2017-04-04 18:40:19 +08002730 if (!blk_queue_nonrot(q))
Johannes Thumshirn7f0432d2019-11-13 11:27:28 +01002731 fs_devices->rotating = true;
Chris Masonc2898112009-06-10 09:51:32 -04002732
Naohiro Aota39379fa2018-07-27 09:04:55 +09002733 orig_super_total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002734 btrfs_set_super_total_bytes(fs_info->super_copy,
Naohiro Aota39379fa2018-07-27 09:04:55 +09002735 round_down(orig_super_total_bytes + device->total_bytes,
2736 fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002737
Naohiro Aota39379fa2018-07-27 09:04:55 +09002738 orig_super_num_devices = btrfs_super_num_devices(fs_info->super_copy);
2739 btrfs_set_super_num_devices(fs_info->super_copy,
2740 orig_super_num_devices + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002741
Miao Xie2196d6e2014-09-03 21:35:41 +08002742 /*
2743 * we've got more storage, clear any full flags on the space
2744 * infos
2745 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002746 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002747
David Sterba34441362016-10-04 19:34:27 +02002748 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacikca108452020-09-01 08:09:01 -04002749
2750 /* Add sysfs device entry */
Anand Jaincd36da22020-09-05 01:34:26 +08002751 btrfs_sysfs_add_device(device);
Josef Bacikca108452020-09-01 08:09:01 -04002752
Anand Jain5da54bc2018-07-03 13:14:50 +08002753 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002754
Yan Zheng2b820322008-11-17 21:11:30 -05002755 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002756 mutex_lock(&fs_info->chunk_mutex);
David Sterba6f8e0fc2019-03-20 16:29:13 +01002757 ret = init_first_rw_device(trans);
David Sterba34441362016-10-04 19:34:27 +02002758 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002759 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002760 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002761 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002762 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002763 }
2764
Nikolay Borisov8e87e852018-07-20 19:37:47 +03002765 ret = btrfs_add_dev_item(trans, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002766 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002767 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002768 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002769 }
2770
2771 if (seeding_dev) {
David Sterba5c4666292019-03-20 16:36:39 +01002772 ret = btrfs_finish_sprout(trans);
David Sterba005d6422012-09-18 07:52:32 -06002773 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002774 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002775 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002776 }
Anand Jainb2373f22014-06-03 11:36:03 +08002777
Nikolay Borisov8e560082020-08-12 16:18:51 +03002778 /*
2779 * fs_devices now represents the newly sprouted filesystem and
Anand Jain849eae52021-11-09 17:51:58 +08002780 * its fsid has been changed by btrfs_sprout_splice().
Nikolay Borisov8e560082020-08-12 16:18:51 +03002781 */
2782 btrfs_sysfs_update_sprout_fsid(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002783 }
2784
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002785 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002786
2787 if (seeding_dev) {
2788 mutex_unlock(&uuid_mutex);
2789 up_write(&sb->s_umount);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002790 locked = false;
Yan Zheng2b820322008-11-17 21:11:30 -05002791
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002792 if (ret) /* transaction commit */
2793 return ret;
2794
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002795 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002796 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002797 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002798 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002799 trans = btrfs_attach_transaction(root);
2800 if (IS_ERR(trans)) {
2801 if (PTR_ERR(trans) == -ENOENT)
2802 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002803 ret = PTR_ERR(trans);
2804 trans = NULL;
2805 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002806 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002807 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002808 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002809
Anand Jain7f551d92020-05-05 02:58:26 +08002810 /*
2811 * Now that we have written a new super block to this device, check all
2812 * other fs_devices list if device_path alienates any other scanned
2813 * device.
2814 * We can ignore the return value as it typically returns -EINVAL and
2815 * only succeeds if the device was an alien.
2816 */
2817 btrfs_forget_devices(device_path);
2818
2819 /* Update ctime/mtime for blkid or udev */
Josef Bacik54fde912021-10-14 13:11:01 -04002820 update_dev_time(device_path);
Anand Jain7f551d92020-05-05 02:58:26 +08002821
Chris Mason788f20e2008-04-28 15:29:42 -04002822 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002823
Anand Jaind31c32f2017-09-28 14:51:10 +08002824error_sysfs:
Anand Jain53f8a742020-09-05 01:34:27 +08002825 btrfs_sysfs_remove_device(device);
Naohiro Aota39379fa2018-07-27 09:04:55 +09002826 mutex_lock(&fs_info->fs_devices->device_list_mutex);
2827 mutex_lock(&fs_info->chunk_mutex);
2828 list_del_rcu(&device->dev_list);
2829 list_del(&device->dev_alloc_list);
2830 fs_info->fs_devices->num_devices--;
2831 fs_info->fs_devices->open_devices--;
2832 fs_info->fs_devices->rw_devices--;
2833 fs_info->fs_devices->total_devices--;
2834 fs_info->fs_devices->total_rw_bytes -= device->total_bytes;
2835 atomic64_sub(device->total_bytes, &fs_info->free_chunk_space);
2836 btrfs_set_super_total_bytes(fs_info->super_copy,
2837 orig_super_total_bytes);
2838 btrfs_set_super_num_devices(fs_info->super_copy,
2839 orig_super_num_devices);
2840 mutex_unlock(&fs_info->chunk_mutex);
2841 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002842error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002843 if (seeding_dev)
Filipe Mananaa0a1db72020-12-14 10:10:47 +00002844 btrfs_set_sb_rdonly(sb);
Anand Jain7132a262017-09-28 14:51:11 +08002845 if (trans)
2846 btrfs_end_transaction(trans);
Naohiro Aota5b316462020-11-10 20:26:07 +09002847error_free_zone:
2848 btrfs_destroy_dev_zone_info(device);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002849error_free_device:
David Sterbaa425f9d2018-03-20 15:47:33 +01002850 btrfs_free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002851error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002852 blkdev_put(bdev, FMODE_EXCL);
Nikolay Borisov44cab9b2020-07-22 11:09:23 +03002853 if (locked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002854 mutex_unlock(&uuid_mutex);
2855 up_write(&sb->s_umount);
2856 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002857 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002858}
2859
Chris Masond3977122009-01-05 21:25:51 -05002860static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2861 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002862{
2863 int ret;
2864 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002865 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002866 struct btrfs_dev_item *dev_item;
2867 struct extent_buffer *leaf;
2868 struct btrfs_key key;
2869
Chris Mason0b86a832008-03-24 15:01:56 -04002870 path = btrfs_alloc_path();
2871 if (!path)
2872 return -ENOMEM;
2873
2874 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2875 key.type = BTRFS_DEV_ITEM_KEY;
2876 key.offset = device->devid;
2877
2878 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2879 if (ret < 0)
2880 goto out;
2881
2882 if (ret > 0) {
2883 ret = -ENOENT;
2884 goto out;
2885 }
2886
2887 leaf = path->nodes[0];
2888 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2889
2890 btrfs_set_device_id(leaf, dev_item, device->devid);
2891 btrfs_set_device_type(leaf, dev_item, device->type);
2892 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2893 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2894 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002895 btrfs_set_device_total_bytes(leaf, dev_item,
2896 btrfs_device_get_disk_total_bytes(device));
2897 btrfs_set_device_bytes_used(leaf, dev_item,
2898 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002899 btrfs_mark_buffer_dirty(leaf);
2900
2901out:
2902 btrfs_free_path(path);
2903 return ret;
2904}
2905
Miao Xie2196d6e2014-09-03 21:35:41 +08002906int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002907 struct btrfs_device *device, u64 new_size)
2908{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002909 struct btrfs_fs_info *fs_info = device->fs_info;
2910 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie2196d6e2014-09-03 21:35:41 +08002911 u64 old_total;
2912 u64 diff;
Filipe Manana2bb2e002021-10-13 10:12:49 +01002913 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002914
Anand Jainebbede42017-12-04 12:54:52 +08002915 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002916 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002917
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002918 new_size = round_down(new_size, fs_info->sectorsize);
2919
David Sterba34441362016-10-04 19:34:27 +02002920 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002921 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002922 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002923
Stefan Behrens63a212a2012-11-05 18:29:28 +01002924 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002925 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002926 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002927 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002928 }
Yan Zheng2b820322008-11-17 21:11:30 -05002929
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002930 btrfs_set_super_total_bytes(super_copy,
2931 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002932 device->fs_devices->total_rw_bytes += diff;
2933
Miao Xie7cc8e582014-09-03 21:35:38 +08002934 btrfs_device_set_total_bytes(device, new_size);
2935 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002936 btrfs_clear_space_info_full(device->fs_info);
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02002937 if (list_empty(&device->post_commit_list))
2938 list_add_tail(&device->post_commit_list,
2939 &trans->transaction->dev_update_list);
David Sterba34441362016-10-04 19:34:27 +02002940 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002941
Filipe Manana2bb2e002021-10-13 10:12:49 +01002942 btrfs_reserve_chunk_metadata(trans, false);
2943 ret = btrfs_update_device(trans, device);
2944 btrfs_trans_release_chunk_metadata(trans);
2945
2946 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002947}
2948
Nikolay Borisovf4208792018-07-20 19:37:52 +03002949static int btrfs_free_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002950{
Nikolay Borisovf4208792018-07-20 19:37:52 +03002951 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002952 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002953 int ret;
2954 struct btrfs_path *path;
2955 struct btrfs_key key;
2956
Chris Mason8f18cf12008-04-25 16:53:30 -04002957 path = btrfs_alloc_path();
2958 if (!path)
2959 return -ENOMEM;
2960
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002961 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002962 key.offset = chunk_offset;
2963 key.type = BTRFS_CHUNK_ITEM_KEY;
2964
2965 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002966 if (ret < 0)
2967 goto out;
2968 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002969 btrfs_handle_fs_error(fs_info, -ENOENT,
2970 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002971 ret = -ENOENT;
2972 goto out;
2973 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002974
2975 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002976 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002977 btrfs_handle_fs_error(fs_info, ret,
2978 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002979out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002980 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002981 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002982}
2983
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002984static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002985{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002986 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002987 struct btrfs_disk_key *disk_key;
2988 struct btrfs_chunk *chunk;
2989 u8 *ptr;
2990 int ret = 0;
2991 u32 num_stripes;
2992 u32 array_size;
2993 u32 len = 0;
2994 u32 cur;
2995 struct btrfs_key key;
2996
Filipe Manana79bd3712021-06-29 14:43:06 +01002997 lockdep_assert_held(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002998 array_size = btrfs_super_sys_array_size(super_copy);
2999
3000 ptr = super_copy->sys_chunk_array;
3001 cur = 0;
3002
3003 while (cur < array_size) {
3004 disk_key = (struct btrfs_disk_key *)ptr;
3005 btrfs_disk_key_to_cpu(&key, disk_key);
3006
3007 len = sizeof(*disk_key);
3008
3009 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
3010 chunk = (struct btrfs_chunk *)(ptr + len);
3011 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
3012 len += btrfs_chunk_item_size(num_stripes);
3013 } else {
3014 ret = -EIO;
3015 break;
3016 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03003017 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04003018 key.offset == chunk_offset) {
3019 memmove(ptr, ptr + len, array_size - (cur + len));
3020 array_size -= len;
3021 btrfs_set_super_sys_array_size(super_copy, array_size);
3022 } else {
3023 ptr += len;
3024 cur += len;
3025 }
3026 }
3027 return ret;
3028}
3029
Omar Sandoval60ca8422018-05-16 16:34:31 -07003030/*
3031 * btrfs_get_chunk_map() - Find the mapping containing the given logical extent.
3032 * @logical: Logical block offset in bytes.
3033 * @length: Length of extent in bytes.
3034 *
3035 * Return: Chunk mapping or ERR_PTR.
3036 */
3037struct extent_map *btrfs_get_chunk_map(struct btrfs_fs_info *fs_info,
3038 u64 logical, u64 length)
Liu Bo592d92e2017-03-14 13:33:55 -07003039{
3040 struct extent_map_tree *em_tree;
3041 struct extent_map *em;
3042
David Sterbac8bf1b62019-05-17 11:43:17 +02003043 em_tree = &fs_info->mapping_tree;
Liu Bo592d92e2017-03-14 13:33:55 -07003044 read_lock(&em_tree->lock);
3045 em = lookup_extent_mapping(em_tree, logical, length);
3046 read_unlock(&em_tree->lock);
3047
3048 if (!em) {
3049 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
3050 logical, length);
3051 return ERR_PTR(-EINVAL);
3052 }
3053
3054 if (em->start > logical || em->start + em->len < logical) {
3055 btrfs_crit(fs_info,
3056 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
3057 logical, length, em->start, em->start + em->len);
3058 free_extent_map(em);
3059 return ERR_PTR(-EINVAL);
3060 }
3061
3062 /* callers are responsible for dropping em's ref. */
3063 return em;
3064}
3065
Filipe Manana79bd3712021-06-29 14:43:06 +01003066static int remove_chunk_item(struct btrfs_trans_handle *trans,
3067 struct map_lookup *map, u64 chunk_offset)
3068{
3069 int i;
3070
3071 /*
3072 * Removing chunk items and updating the device items in the chunks btree
3073 * requires holding the chunk_mutex.
3074 * See the comment at btrfs_chunk_alloc() for the details.
3075 */
3076 lockdep_assert_held(&trans->fs_info->chunk_mutex);
3077
3078 for (i = 0; i < map->num_stripes; i++) {
3079 int ret;
3080
3081 ret = btrfs_update_device(trans, map->stripes[i].dev);
3082 if (ret)
3083 return ret;
3084 }
3085
3086 return btrfs_free_chunk(trans, chunk_offset);
3087}
3088
Nikolay Borisov97aff912018-07-20 19:37:53 +03003089int btrfs_remove_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04003090{
Nikolay Borisov97aff912018-07-20 19:37:53 +03003091 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003092 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003093 struct map_lookup *map;
3094 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003095 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003096 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003097
Omar Sandoval60ca8422018-05-16 16:34:31 -07003098 em = btrfs_get_chunk_map(fs_info, chunk_offset, 1);
Liu Bo592d92e2017-03-14 13:33:55 -07003099 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04003100 /*
3101 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08003102 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04003103 * do anything we still error out.
3104 */
3105 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07003106 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003107 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04003108 map = em->map_lookup;
Josef Bacik47ab2a62014-09-18 11:20:02 -04003109
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003110 /*
Filipe Manana79bd3712021-06-29 14:43:06 +01003111 * First delete the device extent items from the devices btree.
3112 * We take the device_list_mutex to avoid racing with the finishing phase
3113 * of a device replace operation. See the comment below before acquiring
3114 * fs_info->chunk_mutex. Note that here we do not acquire the chunk_mutex
3115 * because that can result in a deadlock when deleting the device extent
3116 * items from the devices btree - COWing an extent buffer from the btree
3117 * may result in allocating a new metadata chunk, which would attempt to
3118 * lock again fs_info->chunk_mutex.
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003119 */
3120 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003121 for (i = 0; i < map->num_stripes; i++) {
3122 struct btrfs_device *device = map->stripes[i].dev;
3123 ret = btrfs_free_dev_extent(trans, device,
3124 map->stripes[i].physical,
3125 &dev_extent_len);
3126 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003127 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04003128 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003129 goto out;
3130 }
3131
3132 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02003133 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003134 btrfs_device_set_bytes_used(device,
3135 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03003136 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003137 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02003138 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003139 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04003140 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01003141 mutex_unlock(&fs_devices->device_list_mutex);
3142
Filipe Manana79bd3712021-06-29 14:43:06 +01003143 /*
3144 * We acquire fs_info->chunk_mutex for 2 reasons:
3145 *
3146 * 1) Just like with the first phase of the chunk allocation, we must
3147 * reserve system space, do all chunk btree updates and deletions, and
3148 * update the system chunk array in the superblock while holding this
3149 * mutex. This is for similar reasons as explained on the comment at
3150 * the top of btrfs_chunk_alloc();
3151 *
3152 * 2) Prevent races with the final phase of a device replace operation
3153 * that replaces the device object associated with the map's stripes,
3154 * because the device object's id can change at any time during that
3155 * final phase of the device replace operation
3156 * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the
3157 * replaced device and then see it with an ID of
3158 * BTRFS_DEV_REPLACE_DEVID, which would cause a failure when updating
3159 * the device item, which does not exists on the chunk btree.
3160 * The finishing phase of device replace acquires both the
3161 * device_list_mutex and the chunk_mutex, in that order, so we are
3162 * safe by just acquiring the chunk_mutex.
3163 */
3164 trans->removing_chunk = true;
3165 mutex_lock(&fs_info->chunk_mutex);
3166
3167 check_system_chunk(trans, map->type);
3168
3169 ret = remove_chunk_item(trans, map, chunk_offset);
3170 /*
3171 * Normally we should not get -ENOSPC since we reserved space before
3172 * through the call to check_system_chunk().
3173 *
3174 * Despite our system space_info having enough free space, we may not
3175 * be able to allocate extents from its block groups, because all have
3176 * an incompatible profile, which will force us to allocate a new system
3177 * block group with the right profile, or right after we called
3178 * check_system_space() above, a scrub turned the only system block group
3179 * with enough free space into RO mode.
3180 * This is explained with more detail at do_chunk_alloc().
3181 *
3182 * So if we get -ENOSPC, allocate a new system chunk and retry once.
3183 */
3184 if (ret == -ENOSPC) {
3185 const u64 sys_flags = btrfs_system_alloc_profile(fs_info);
3186 struct btrfs_block_group *sys_bg;
3187
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03003188 sys_bg = btrfs_create_chunk(trans, sys_flags);
Filipe Manana79bd3712021-06-29 14:43:06 +01003189 if (IS_ERR(sys_bg)) {
3190 ret = PTR_ERR(sys_bg);
3191 btrfs_abort_transaction(trans, ret);
3192 goto out;
3193 }
3194
3195 ret = btrfs_chunk_alloc_add_chunk_item(trans, sys_bg);
3196 if (ret) {
3197 btrfs_abort_transaction(trans, ret);
3198 goto out;
3199 }
3200
3201 ret = remove_chunk_item(trans, map, chunk_offset);
3202 if (ret) {
3203 btrfs_abort_transaction(trans, ret);
3204 goto out;
3205 }
3206 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003207 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003208 goto out;
3209 }
3210
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003211 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003212
3213 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03003214 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003215 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003216 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003217 goto out;
3218 }
3219 }
3220
Filipe Manana79bd3712021-06-29 14:43:06 +01003221 mutex_unlock(&fs_info->chunk_mutex);
3222 trans->removing_chunk = false;
3223
3224 /*
3225 * We are done with chunk btree updates and deletions, so release the
3226 * system space we previously reserved (with check_system_chunk()).
3227 */
3228 btrfs_trans_release_chunk_metadata(trans);
3229
Nikolay Borisov5a98ec02018-06-20 15:48:56 +03003230 ret = btrfs_remove_block_group(trans, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003231 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003232 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04003233 goto out;
3234 }
3235
Josef Bacik47ab2a62014-09-18 11:20:02 -04003236out:
Filipe Manana79bd3712021-06-29 14:43:06 +01003237 if (trans->removing_chunk) {
3238 mutex_unlock(&fs_info->chunk_mutex);
3239 trans->removing_chunk = false;
3240 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04003241 /* once for us */
3242 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04003243 return ret;
3244}
3245
Johannes Thumshirn18bb8bb2021-04-19 16:41:02 +09003246int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04003247{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003248 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07003249 struct btrfs_trans_handle *trans;
Dennis Zhoub0643e52019-12-13 16:22:14 -08003250 struct btrfs_block_group *block_group;
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003251 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04003252 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003253
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003254 /*
3255 * Prevent races with automatic removal of unused block groups.
3256 * After we relocate and before we remove the chunk with offset
3257 * chunk_offset, automatic removal of the block group can kick in,
3258 * resulting in a failure when calling btrfs_remove_chunk() below.
3259 *
3260 * Make sure to acquire this mutex before doing a tree search (dev
3261 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
3262 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
3263 * we release the path used to search the chunk/dev tree and before
3264 * the current task acquires this mutex and calls us.
3265 */
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003266 lockdep_assert_held(&fs_info->reclaim_bgs_lock);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003267
Chris Mason8f18cf12008-04-25 16:53:30 -04003268 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003269 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003270 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003271 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003272 if (ret)
3273 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003274
Dennis Zhoub0643e52019-12-13 16:22:14 -08003275 block_group = btrfs_lookup_block_group(fs_info, chunk_offset);
3276 if (!block_group)
3277 return -ENOENT;
3278 btrfs_discard_cancel_work(&fs_info->discard_ctl, block_group);
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003279 length = block_group->length;
Dennis Zhoub0643e52019-12-13 16:22:14 -08003280 btrfs_put_block_group(block_group);
3281
Johannes Thumshirn01e86002021-04-19 16:41:00 +09003282 /*
3283 * On a zoned file system, discard the whole block group, this will
3284 * trigger a REQ_OP_ZONE_RESET operation on the device zone. If
3285 * resetting the zone fails, don't treat it as a fatal problem from the
3286 * filesystem's point of view.
3287 */
3288 if (btrfs_is_zoned(fs_info)) {
3289 ret = btrfs_discard_extent(fs_info, chunk_offset, length, NULL);
3290 if (ret)
3291 btrfs_info(fs_info,
3292 "failed to reset zone %llu after relocation",
3293 chunk_offset);
3294 }
3295
Chris Mason19c4d2f2016-10-10 13:43:31 -07003296 trans = btrfs_start_trans_remove_block_group(root->fs_info,
3297 chunk_offset);
3298 if (IS_ERR(trans)) {
3299 ret = PTR_ERR(trans);
3300 btrfs_handle_fs_error(root->fs_info, ret, NULL);
3301 return ret;
3302 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09003303
Chris Mason19c4d2f2016-10-10 13:43:31 -07003304 /*
3305 * step two, delete the device extents and the
3306 * chunk tree entries
3307 */
Nikolay Borisov97aff912018-07-20 19:37:53 +03003308 ret = btrfs_remove_chunk(trans, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003309 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07003310 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003311}
3312
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003313static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05003314{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003315 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05003316 struct btrfs_path *path;
3317 struct extent_buffer *leaf;
3318 struct btrfs_chunk *chunk;
3319 struct btrfs_key key;
3320 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05003321 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04003322 bool retried = false;
3323 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05003324 int ret;
3325
3326 path = btrfs_alloc_path();
3327 if (!path)
3328 return -ENOMEM;
3329
Josef Bacikba1bf482009-09-11 16:11:19 -04003330again:
Yan Zheng2b820322008-11-17 21:11:30 -05003331 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3332 key.offset = (u64)-1;
3333 key.type = BTRFS_CHUNK_ITEM_KEY;
3334
3335 while (1) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003336 mutex_lock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003337 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003338 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003339 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003340 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003341 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003342 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05003343
3344 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3345 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003346 if (ret)
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003347 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003348 if (ret < 0)
3349 goto error;
3350 if (ret > 0)
3351 break;
3352
3353 leaf = path->nodes[0];
3354 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3355
3356 chunk = btrfs_item_ptr(leaf, path->slots[0],
3357 struct btrfs_chunk);
3358 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003359 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003360
3361 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003362 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003363 if (ret == -ENOSPC)
3364 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303365 else
3366 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003367 }
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003368 mutex_unlock(&fs_info->reclaim_bgs_lock);
Yan Zheng2b820322008-11-17 21:11:30 -05003369
3370 if (found_key.offset == 0)
3371 break;
3372 key.offset = found_key.offset - 1;
3373 }
3374 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003375 if (failed && !retried) {
3376 failed = 0;
3377 retried = true;
3378 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303379 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003380 ret = -ENOSPC;
3381 }
Yan Zheng2b820322008-11-17 21:11:30 -05003382error:
3383 btrfs_free_path(path);
3384 return ret;
3385}
3386
Liu Boa6f93c72017-11-15 16:28:11 -07003387/*
3388 * return 1 : allocate a data chunk successfully,
3389 * return <0: errors during allocating a data chunk,
3390 * return 0 : no need to allocate a data chunk.
3391 */
3392static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
3393 u64 chunk_offset)
3394{
David Sterba32da53862019-10-29 19:20:18 +01003395 struct btrfs_block_group *cache;
Liu Boa6f93c72017-11-15 16:28:11 -07003396 u64 bytes_used;
3397 u64 chunk_type;
3398
3399 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3400 ASSERT(cache);
3401 chunk_type = cache->flags;
3402 btrfs_put_block_group(cache);
3403
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003404 if (!(chunk_type & BTRFS_BLOCK_GROUP_DATA))
3405 return 0;
Liu Boa6f93c72017-11-15 16:28:11 -07003406
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003407 spin_lock(&fs_info->data_sinfo->lock);
3408 bytes_used = fs_info->data_sinfo->bytes_used;
3409 spin_unlock(&fs_info->data_sinfo->lock);
Liu Boa6f93c72017-11-15 16:28:11 -07003410
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003411 if (!bytes_used) {
3412 struct btrfs_trans_handle *trans;
3413 int ret;
Liu Boa6f93c72017-11-15 16:28:11 -07003414
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003415 trans = btrfs_join_transaction(fs_info->tree_root);
3416 if (IS_ERR(trans))
3417 return PTR_ERR(trans);
3418
3419 ret = btrfs_force_chunk_alloc(trans, BTRFS_BLOCK_GROUP_DATA);
3420 btrfs_end_transaction(trans);
3421 if (ret < 0)
3422 return ret;
3423 return 1;
Liu Boa6f93c72017-11-15 16:28:11 -07003424 }
Johannes Thumshirn5ae21692019-10-18 11:58:22 +02003425
Liu Boa6f93c72017-11-15 16:28:11 -07003426 return 0;
3427}
3428
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003429static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003430 struct btrfs_balance_control *bctl)
3431{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003432 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003433 struct btrfs_trans_handle *trans;
3434 struct btrfs_balance_item *item;
3435 struct btrfs_disk_balance_args disk_bargs;
3436 struct btrfs_path *path;
3437 struct extent_buffer *leaf;
3438 struct btrfs_key key;
3439 int ret, err;
3440
3441 path = btrfs_alloc_path();
3442 if (!path)
3443 return -ENOMEM;
3444
3445 trans = btrfs_start_transaction(root, 0);
3446 if (IS_ERR(trans)) {
3447 btrfs_free_path(path);
3448 return PTR_ERR(trans);
3449 }
3450
3451 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003452 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003453 key.offset = 0;
3454
3455 ret = btrfs_insert_empty_item(trans, root, path, &key,
3456 sizeof(*item));
3457 if (ret)
3458 goto out;
3459
3460 leaf = path->nodes[0];
3461 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3462
David Sterbab159fa22016-11-08 18:09:03 +01003463 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003464
3465 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3466 btrfs_set_balance_data(leaf, item, &disk_bargs);
3467 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3468 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3469 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3470 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3471
3472 btrfs_set_balance_flags(leaf, item, bctl->flags);
3473
3474 btrfs_mark_buffer_dirty(leaf);
3475out:
3476 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003477 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003478 if (err && !ret)
3479 ret = err;
3480 return ret;
3481}
3482
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003483static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003484{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003485 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003486 struct btrfs_trans_handle *trans;
3487 struct btrfs_path *path;
3488 struct btrfs_key key;
3489 int ret, err;
3490
3491 path = btrfs_alloc_path();
3492 if (!path)
3493 return -ENOMEM;
3494
David Sterba3502a8c2020-06-25 12:35:28 +02003495 trans = btrfs_start_transaction_fallback_global_rsv(root, 0);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003496 if (IS_ERR(trans)) {
3497 btrfs_free_path(path);
3498 return PTR_ERR(trans);
3499 }
3500
3501 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003502 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003503 key.offset = 0;
3504
3505 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3506 if (ret < 0)
3507 goto out;
3508 if (ret > 0) {
3509 ret = -ENOENT;
3510 goto out;
3511 }
3512
3513 ret = btrfs_del_item(trans, root, path);
3514out:
3515 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003516 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003517 if (err && !ret)
3518 ret = err;
3519 return ret;
3520}
3521
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003522/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003523 * This is a heuristic used to reduce the number of chunks balanced on
3524 * resume after balance was interrupted.
3525 */
3526static void update_balance_args(struct btrfs_balance_control *bctl)
3527{
3528 /*
3529 * Turn on soft mode for chunk types that were being converted.
3530 */
3531 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3532 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3533 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3534 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3535 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3536 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3537
3538 /*
3539 * Turn on usage filter if is not already used. The idea is
3540 * that chunks that we have already balanced should be
3541 * reasonably full. Don't do it for chunks that are being
3542 * converted - that will keep us from relocating unconverted
3543 * (albeit full) chunks.
3544 */
3545 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003546 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003547 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3548 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3549 bctl->data.usage = 90;
3550 }
3551 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003552 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003553 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3554 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3555 bctl->sys.usage = 90;
3556 }
3557 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003558 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003559 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3560 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3561 bctl->meta.usage = 90;
3562 }
3563}
3564
3565/*
David Sterba149196a2018-03-20 20:23:09 +01003566 * Clear the balance status in fs_info and delete the balance item from disk.
3567 */
3568static void reset_balance_state(struct btrfs_fs_info *fs_info)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003569{
3570 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
David Sterba149196a2018-03-20 20:23:09 +01003571 int ret;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003572
3573 BUG_ON(!fs_info->balance_ctl);
3574
3575 spin_lock(&fs_info->balance_lock);
3576 fs_info->balance_ctl = NULL;
3577 spin_unlock(&fs_info->balance_lock);
3578
3579 kfree(bctl);
David Sterba149196a2018-03-20 20:23:09 +01003580 ret = del_balance_item(fs_info);
3581 if (ret)
3582 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003583}
3584
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003585/*
3586 * Balance filters. Return 1 if chunk should be filtered out
3587 * (should not be balanced).
3588 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003589static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003590 struct btrfs_balance_args *bargs)
3591{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003592 chunk_type = chunk_to_extended(chunk_type) &
3593 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003594
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003595 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003596 return 0;
3597
3598 return 1;
3599}
3600
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003601static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003602 struct btrfs_balance_args *bargs)
3603{
David Sterba32da53862019-10-29 19:20:18 +01003604 struct btrfs_block_group *cache;
David Sterbabc309462015-10-20 18:22:13 +02003605 u64 chunk_used;
3606 u64 user_thresh_min;
3607 u64 user_thresh_max;
3608 int ret = 1;
3609
3610 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
David Sterbabf38be62019-10-23 18:48:11 +02003611 chunk_used = cache->used;
David Sterbabc309462015-10-20 18:22:13 +02003612
3613 if (bargs->usage_min == 0)
3614 user_thresh_min = 0;
3615 else
David Sterbab3470b52019-10-23 18:48:22 +02003616 user_thresh_min = div_factor_fine(cache->length,
3617 bargs->usage_min);
David Sterbabc309462015-10-20 18:22:13 +02003618
3619 if (bargs->usage_max == 0)
3620 user_thresh_max = 1;
3621 else if (bargs->usage_max > 100)
David Sterbab3470b52019-10-23 18:48:22 +02003622 user_thresh_max = cache->length;
David Sterbabc309462015-10-20 18:22:13 +02003623 else
David Sterbab3470b52019-10-23 18:48:22 +02003624 user_thresh_max = div_factor_fine(cache->length,
3625 bargs->usage_max);
David Sterbabc309462015-10-20 18:22:13 +02003626
3627 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3628 ret = 0;
3629
3630 btrfs_put_block_group(cache);
3631 return ret;
3632}
3633
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003634static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003635 u64 chunk_offset, struct btrfs_balance_args *bargs)
3636{
David Sterba32da53862019-10-29 19:20:18 +01003637 struct btrfs_block_group *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003638 u64 chunk_used, user_thresh;
3639 int ret = 1;
3640
3641 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
David Sterbabf38be62019-10-23 18:48:11 +02003642 chunk_used = cache->used;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003643
David Sterbabc309462015-10-20 18:22:13 +02003644 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003645 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003646 else if (bargs->usage > 100)
David Sterbab3470b52019-10-23 18:48:22 +02003647 user_thresh = cache->length;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003648 else
David Sterbab3470b52019-10-23 18:48:22 +02003649 user_thresh = div_factor_fine(cache->length, bargs->usage);
Ilya Dryomova105bb82013-01-21 15:15:56 +02003650
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003651 if (chunk_used < user_thresh)
3652 ret = 0;
3653
3654 btrfs_put_block_group(cache);
3655 return ret;
3656}
3657
Ilya Dryomov409d4042012-01-16 22:04:47 +02003658static int chunk_devid_filter(struct extent_buffer *leaf,
3659 struct btrfs_chunk *chunk,
3660 struct btrfs_balance_args *bargs)
3661{
3662 struct btrfs_stripe *stripe;
3663 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3664 int i;
3665
3666 for (i = 0; i < num_stripes; i++) {
3667 stripe = btrfs_stripe_nr(chunk, i);
3668 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3669 return 0;
3670 }
3671
3672 return 1;
3673}
3674
David Sterba946c9252019-05-17 11:43:34 +02003675static u64 calc_data_stripes(u64 type, int num_stripes)
3676{
3677 const int index = btrfs_bg_flags_to_raid_index(type);
3678 const int ncopies = btrfs_raid_array[index].ncopies;
3679 const int nparity = btrfs_raid_array[index].nparity;
3680
David Sterbad58ede82021-07-26 14:15:24 +02003681 return (num_stripes - nparity) / ncopies;
David Sterba946c9252019-05-17 11:43:34 +02003682}
3683
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003684/* [pstart, pend) */
3685static int chunk_drange_filter(struct extent_buffer *leaf,
3686 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003687 struct btrfs_balance_args *bargs)
3688{
3689 struct btrfs_stripe *stripe;
3690 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3691 u64 stripe_offset;
3692 u64 stripe_length;
David Sterba946c9252019-05-17 11:43:34 +02003693 u64 type;
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003694 int factor;
3695 int i;
3696
3697 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3698 return 0;
3699
David Sterba946c9252019-05-17 11:43:34 +02003700 type = btrfs_chunk_type(leaf, chunk);
3701 factor = calc_data_stripes(type, num_stripes);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003702
3703 for (i = 0; i < num_stripes; i++) {
3704 stripe = btrfs_stripe_nr(chunk, i);
3705 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3706 continue;
3707
3708 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3709 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003710 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003711
3712 if (stripe_offset < bargs->pend &&
3713 stripe_offset + stripe_length > bargs->pstart)
3714 return 0;
3715 }
3716
3717 return 1;
3718}
3719
Ilya Dryomovea671762012-01-16 22:04:48 +02003720/* [vstart, vend) */
3721static int chunk_vrange_filter(struct extent_buffer *leaf,
3722 struct btrfs_chunk *chunk,
3723 u64 chunk_offset,
3724 struct btrfs_balance_args *bargs)
3725{
3726 if (chunk_offset < bargs->vend &&
3727 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3728 /* at least part of the chunk is inside this vrange */
3729 return 0;
3730
3731 return 1;
3732}
3733
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003734static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3735 struct btrfs_chunk *chunk,
3736 struct btrfs_balance_args *bargs)
3737{
3738 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3739
3740 if (bargs->stripes_min <= num_stripes
3741 && num_stripes <= bargs->stripes_max)
3742 return 0;
3743
3744 return 1;
3745}
3746
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003747static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003748 struct btrfs_balance_args *bargs)
3749{
3750 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3751 return 0;
3752
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003753 chunk_type = chunk_to_extended(chunk_type) &
3754 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003755
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003756 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003757 return 1;
3758
3759 return 0;
3760}
3761
David Sterba6ec08962019-03-20 16:38:52 +01003762static int should_balance_chunk(struct extent_buffer *leaf,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003763 struct btrfs_chunk *chunk, u64 chunk_offset)
3764{
David Sterba6ec08962019-03-20 16:38:52 +01003765 struct btrfs_fs_info *fs_info = leaf->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003766 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003767 struct btrfs_balance_args *bargs = NULL;
3768 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3769
3770 /* type filter */
3771 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3772 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3773 return 0;
3774 }
3775
3776 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3777 bargs = &bctl->data;
3778 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3779 bargs = &bctl->sys;
3780 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3781 bargs = &bctl->meta;
3782
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003783 /* profiles filter */
3784 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3785 chunk_profiles_filter(chunk_type, bargs)) {
3786 return 0;
3787 }
3788
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003789 /* usage filter */
3790 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003791 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003792 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003793 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003794 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003795 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003796 }
3797
Ilya Dryomov409d4042012-01-16 22:04:47 +02003798 /* devid filter */
3799 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3800 chunk_devid_filter(leaf, chunk, bargs)) {
3801 return 0;
3802 }
3803
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003804 /* drange filter, makes sense only with devid filter */
3805 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003806 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003807 return 0;
3808 }
3809
Ilya Dryomovea671762012-01-16 22:04:48 +02003810 /* vrange filter */
3811 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3812 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3813 return 0;
3814 }
3815
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003816 /* stripes filter */
3817 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3818 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3819 return 0;
3820 }
3821
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003822 /* soft profile changing mode */
3823 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3824 chunk_soft_convert_filter(chunk_type, bargs)) {
3825 return 0;
3826 }
3827
David Sterba7d824b62014-05-07 17:37:51 +02003828 /*
3829 * limited by count, must be the last filter
3830 */
3831 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3832 if (bargs->limit == 0)
3833 return 0;
3834 else
3835 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003836 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3837 /*
3838 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003839 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003840 * about the count of all chunks that satisfy the filters.
3841 */
3842 if (bargs->limit_max == 0)
3843 return 0;
3844 else
3845 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003846 }
3847
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003848 return 1;
3849}
3850
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003851static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003852{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003853 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003854 struct btrfs_root *chunk_root = fs_info->chunk_root;
David Sterba12907fc2015-10-10 17:16:50 +02003855 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003856 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003857 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003858 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003859 struct btrfs_key found_key;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003860 struct extent_buffer *leaf;
3861 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003862 int ret;
3863 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003864 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003865 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003866 u64 limit_data = bctl->data.limit;
3867 u64 limit_meta = bctl->meta.limit;
3868 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003869 u32 count_data = 0;
3870 u32 count_meta = 0;
3871 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003872 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003873
Chris Masonec44a352008-04-28 15:29:52 -04003874 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003875 if (!path) {
3876 ret = -ENOMEM;
3877 goto error;
3878 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003879
3880 /* zero out stat counters */
3881 spin_lock(&fs_info->balance_lock);
3882 memset(&bctl->stat, 0, sizeof(bctl->stat));
3883 spin_unlock(&fs_info->balance_lock);
3884again:
David Sterba7d824b62014-05-07 17:37:51 +02003885 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003886 /*
3887 * The single value limit and min/max limits use the same bytes
3888 * in the
3889 */
David Sterba7d824b62014-05-07 17:37:51 +02003890 bctl->data.limit = limit_data;
3891 bctl->meta.limit = limit_meta;
3892 bctl->sys.limit = limit_sys;
3893 }
Chris Masonec44a352008-04-28 15:29:52 -04003894 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3895 key.offset = (u64)-1;
3896 key.type = BTRFS_CHUNK_ITEM_KEY;
3897
Chris Masond3977122009-01-05 21:25:51 -05003898 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003899 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003900 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003901 ret = -ECANCELED;
3902 goto error;
3903 }
3904
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003905 mutex_lock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003906 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003907 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003908 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003909 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003910 }
Chris Masonec44a352008-04-28 15:29:52 -04003911
3912 /*
3913 * this shouldn't happen, it means the last relocate
3914 * failed
3915 */
3916 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003917 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003918
3919 ret = btrfs_previous_item(chunk_root, path, 0,
3920 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003921 if (ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003922 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003923 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003924 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003925 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003926
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003927 leaf = path->nodes[0];
3928 slot = path->slots[0];
3929 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3930
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003931 if (found_key.objectid != key.objectid) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003932 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Masonec44a352008-04-28 15:29:52 -04003933 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003934 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003935
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003936 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003937 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003938
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003939 if (!counting) {
3940 spin_lock(&fs_info->balance_lock);
3941 bctl->stat.considered++;
3942 spin_unlock(&fs_info->balance_lock);
3943 }
3944
David Sterba6ec08962019-03-20 16:38:52 +01003945 ret = should_balance_chunk(leaf, chunk, found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003946
David Sterbab3b4aa72011-04-21 01:20:15 +02003947 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003948 if (!ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003949 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003950 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003951 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003952
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003953 if (counting) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003954 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003955 spin_lock(&fs_info->balance_lock);
3956 bctl->stat.expected++;
3957 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003958
3959 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3960 count_data++;
3961 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3962 count_sys++;
3963 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3964 count_meta++;
3965
3966 goto loop;
3967 }
3968
3969 /*
3970 * Apply limit_min filter, no need to check if the LIMITS
3971 * filter is used, limit_min is 0 by default
3972 */
3973 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3974 count_data < bctl->data.limit_min)
3975 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3976 count_meta < bctl->meta.limit_min)
3977 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3978 count_sys < bctl->sys.limit_min)) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003979 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003980 goto loop;
3981 }
3982
Liu Boa6f93c72017-11-15 16:28:11 -07003983 if (!chunk_reserved) {
3984 /*
3985 * We may be relocating the only data chunk we have,
3986 * which could potentially end up with losing data's
3987 * raid profile, so lets allocate an empty one in
3988 * advance.
3989 */
3990 ret = btrfs_may_alloc_data_chunk(fs_info,
3991 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003992 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09003993 mutex_unlock(&fs_info->reclaim_bgs_lock);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003994 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003995 } else if (ret == 1) {
3996 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003997 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003998 }
3999
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04004000 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004001 mutex_unlock(&fs_info->reclaim_bgs_lock);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004002 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004003 enospc_errors++;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004004 } else if (ret == -ETXTBSY) {
4005 btrfs_info(fs_info,
4006 "skipping relocation of block group %llu due to active swapfile",
4007 found_key.offset);
4008 ret = 0;
4009 } else if (ret) {
4010 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004011 } else {
4012 spin_lock(&fs_info->balance_lock);
4013 bctl->stat.completed++;
4014 spin_unlock(&fs_info->balance_lock);
4015 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004016loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03004017 if (found_key.offset == 0)
4018 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004019 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04004020 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004021
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004022 if (counting) {
4023 btrfs_release_path(path);
4024 counting = false;
4025 goto again;
4026 }
Chris Masonec44a352008-04-28 15:29:52 -04004027error:
4028 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004029 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004030 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004031 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004032 if (!ret)
4033 ret = -ENOSPC;
4034 }
4035
Chris Masonec44a352008-04-28 15:29:52 -04004036 return ret;
4037}
4038
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004039/**
4040 * alloc_profile_is_valid - see if a given profile is valid and reduced
4041 * @flags: profile to validate
4042 * @extended: if true @flags is treated as an extended profile
4043 */
4044static int alloc_profile_is_valid(u64 flags, int extended)
4045{
4046 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
4047 BTRFS_BLOCK_GROUP_PROFILE_MASK);
4048
4049 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
4050
4051 /* 1) check that all other bits are zeroed */
4052 if (flags & ~mask)
4053 return 0;
4054
4055 /* 2) see if profile is reduced */
4056 if (flags == 0)
4057 return !extended; /* "0" is valid for usual profiles */
4058
David Sterbac1499162019-10-01 19:44:42 +02004059 return has_single_bit_set(flags);
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004060}
4061
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004062static inline int balance_need_close(struct btrfs_fs_info *fs_info)
4063{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004064 /* cancel requested || normal exit path */
4065 return atomic_read(&fs_info->balance_cancel_req) ||
4066 (atomic_read(&fs_info->balance_pause_req) == 0 &&
4067 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004068}
4069
David Sterba5ba366c2020-02-27 21:00:52 +01004070/*
4071 * Validate target profile against allowed profiles and return true if it's OK.
4072 * Otherwise print the error message and return false.
4073 */
4074static inline int validate_convert_profile(struct btrfs_fs_info *fs_info,
4075 const struct btrfs_balance_args *bargs,
4076 u64 allowed, const char *type)
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00004077{
David Sterba5ba366c2020-02-27 21:00:52 +01004078 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
4079 return true;
4080
Qu Wenruoc8050b32021-07-26 14:35:01 +08004081 if (fs_info->sectorsize < PAGE_SIZE &&
4082 bargs->target & BTRFS_BLOCK_GROUP_RAID56_MASK) {
4083 btrfs_err(fs_info,
4084 "RAID56 is not yet supported for sectorsize %u with page size %lu",
4085 fs_info->sectorsize, PAGE_SIZE);
4086 return false;
4087 }
David Sterba5ba366c2020-02-27 21:00:52 +01004088 /* Profile is valid and does not have bits outside of the allowed set */
4089 if (alloc_profile_is_valid(bargs->target, 1) &&
4090 (bargs->target & ~allowed) == 0)
4091 return true;
4092
4093 btrfs_err(fs_info, "balance: invalid convert %s profile %s",
4094 type, btrfs_bg_type_to_raid_name(bargs->target));
4095 return false;
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00004096}
4097
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004098/*
Anand Jain56fc37d2018-11-20 16:12:56 +08004099 * Fill @buf with textual description of balance filter flags @bargs, up to
4100 * @size_buf including the terminating null. The output may be trimmed if it
4101 * does not fit into the provided buffer.
4102 */
4103static void describe_balance_args(struct btrfs_balance_args *bargs, char *buf,
4104 u32 size_buf)
4105{
4106 int ret;
4107 u32 size_bp = size_buf;
4108 char *bp = buf;
4109 u64 flags = bargs->flags;
4110 char tmp_buf[128] = {'\0'};
4111
4112 if (!flags)
4113 return;
4114
4115#define CHECK_APPEND_NOARG(a) \
4116 do { \
4117 ret = snprintf(bp, size_bp, (a)); \
4118 if (ret < 0 || ret >= size_bp) \
4119 goto out_overflow; \
4120 size_bp -= ret; \
4121 bp += ret; \
4122 } while (0)
4123
4124#define CHECK_APPEND_1ARG(a, v1) \
4125 do { \
4126 ret = snprintf(bp, size_bp, (a), (v1)); \
4127 if (ret < 0 || ret >= size_bp) \
4128 goto out_overflow; \
4129 size_bp -= ret; \
4130 bp += ret; \
4131 } while (0)
4132
4133#define CHECK_APPEND_2ARG(a, v1, v2) \
4134 do { \
4135 ret = snprintf(bp, size_bp, (a), (v1), (v2)); \
4136 if (ret < 0 || ret >= size_bp) \
4137 goto out_overflow; \
4138 size_bp -= ret; \
4139 bp += ret; \
4140 } while (0)
4141
David Sterba158da512019-05-17 11:43:41 +02004142 if (flags & BTRFS_BALANCE_ARGS_CONVERT)
4143 CHECK_APPEND_1ARG("convert=%s,",
4144 btrfs_bg_type_to_raid_name(bargs->target));
Anand Jain56fc37d2018-11-20 16:12:56 +08004145
4146 if (flags & BTRFS_BALANCE_ARGS_SOFT)
4147 CHECK_APPEND_NOARG("soft,");
4148
4149 if (flags & BTRFS_BALANCE_ARGS_PROFILES) {
4150 btrfs_describe_block_groups(bargs->profiles, tmp_buf,
4151 sizeof(tmp_buf));
4152 CHECK_APPEND_1ARG("profiles=%s,", tmp_buf);
4153 }
4154
4155 if (flags & BTRFS_BALANCE_ARGS_USAGE)
4156 CHECK_APPEND_1ARG("usage=%llu,", bargs->usage);
4157
4158 if (flags & BTRFS_BALANCE_ARGS_USAGE_RANGE)
4159 CHECK_APPEND_2ARG("usage=%u..%u,",
4160 bargs->usage_min, bargs->usage_max);
4161
4162 if (flags & BTRFS_BALANCE_ARGS_DEVID)
4163 CHECK_APPEND_1ARG("devid=%llu,", bargs->devid);
4164
4165 if (flags & BTRFS_BALANCE_ARGS_DRANGE)
4166 CHECK_APPEND_2ARG("drange=%llu..%llu,",
4167 bargs->pstart, bargs->pend);
4168
4169 if (flags & BTRFS_BALANCE_ARGS_VRANGE)
4170 CHECK_APPEND_2ARG("vrange=%llu..%llu,",
4171 bargs->vstart, bargs->vend);
4172
4173 if (flags & BTRFS_BALANCE_ARGS_LIMIT)
4174 CHECK_APPEND_1ARG("limit=%llu,", bargs->limit);
4175
4176 if (flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)
4177 CHECK_APPEND_2ARG("limit=%u..%u,",
4178 bargs->limit_min, bargs->limit_max);
4179
4180 if (flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE)
4181 CHECK_APPEND_2ARG("stripes=%u..%u,",
4182 bargs->stripes_min, bargs->stripes_max);
4183
4184#undef CHECK_APPEND_2ARG
4185#undef CHECK_APPEND_1ARG
4186#undef CHECK_APPEND_NOARG
4187
4188out_overflow:
4189
4190 if (size_bp < size_buf)
4191 buf[size_buf - size_bp - 1] = '\0'; /* remove last , */
4192 else
4193 buf[0] = '\0';
4194}
4195
4196static void describe_balance_start_or_resume(struct btrfs_fs_info *fs_info)
4197{
4198 u32 size_buf = 1024;
4199 char tmp_buf[192] = {'\0'};
4200 char *buf;
4201 char *bp;
4202 u32 size_bp = size_buf;
4203 int ret;
4204 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4205
4206 buf = kzalloc(size_buf, GFP_KERNEL);
4207 if (!buf)
4208 return;
4209
4210 bp = buf;
4211
4212#define CHECK_APPEND_1ARG(a, v1) \
4213 do { \
4214 ret = snprintf(bp, size_bp, (a), (v1)); \
4215 if (ret < 0 || ret >= size_bp) \
4216 goto out_overflow; \
4217 size_bp -= ret; \
4218 bp += ret; \
4219 } while (0)
4220
4221 if (bctl->flags & BTRFS_BALANCE_FORCE)
4222 CHECK_APPEND_1ARG("%s", "-f ");
4223
4224 if (bctl->flags & BTRFS_BALANCE_DATA) {
4225 describe_balance_args(&bctl->data, tmp_buf, sizeof(tmp_buf));
4226 CHECK_APPEND_1ARG("-d%s ", tmp_buf);
4227 }
4228
4229 if (bctl->flags & BTRFS_BALANCE_METADATA) {
4230 describe_balance_args(&bctl->meta, tmp_buf, sizeof(tmp_buf));
4231 CHECK_APPEND_1ARG("-m%s ", tmp_buf);
4232 }
4233
4234 if (bctl->flags & BTRFS_BALANCE_SYSTEM) {
4235 describe_balance_args(&bctl->sys, tmp_buf, sizeof(tmp_buf));
4236 CHECK_APPEND_1ARG("-s%s ", tmp_buf);
4237 }
4238
4239#undef CHECK_APPEND_1ARG
4240
4241out_overflow:
4242
4243 if (size_bp < size_buf)
4244 buf[size_buf - size_bp - 1] = '\0'; /* remove last " " */
4245 btrfs_info(fs_info, "balance: %s %s",
4246 (bctl->flags & BTRFS_BALANCE_RESUME) ?
4247 "resume" : "start", buf);
4248
4249 kfree(buf);
4250}
4251
4252/*
David Sterbadccdb072018-03-21 00:20:05 +01004253 * Should be called with balance mutexe held
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004254 */
David Sterba6fcf6e22018-05-07 17:44:03 +02004255int btrfs_balance(struct btrfs_fs_info *fs_info,
4256 struct btrfs_balance_control *bctl,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004257 struct btrfs_ioctl_balance_args *bargs)
4258{
Adam Borowski14506122017-03-07 23:34:44 +01004259 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004260 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03004261 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004262 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01004263 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00004264 unsigned seq;
Anand Jaine62869b2019-09-25 14:29:28 +08004265 bool reducing_redundancy;
David Sterba081db892019-05-17 11:43:27 +02004266 int i;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004267
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004268 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004269 atomic_read(&fs_info->balance_pause_req) ||
Qu Wenruo726a3422020-02-17 14:16:52 +08004270 btrfs_should_cancel_balance(fs_info)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004271 ret = -EINVAL;
4272 goto out;
4273 }
4274
Ilya Dryomove4837f82012-03-27 17:09:17 +03004275 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
4276 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
4277 mixed = 1;
4278
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004279 /*
4280 * In case of mixed groups both data and meta should be picked,
4281 * and identical options should be given for both of them.
4282 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03004283 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
4284 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004285 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
4286 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
4287 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004288 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004289 "balance: mixed groups data and metadata options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004290 ret = -EINVAL;
4291 goto out;
4292 }
4293 }
4294
Josef Bacikb35cf1f2020-01-10 11:11:24 -05004295 /*
4296 * rw_devices will not change at the moment, device add/delete/replace
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004297 * are exclusive
Josef Bacikb35cf1f2020-01-10 11:11:24 -05004298 */
4299 num_devices = fs_info->fs_devices->rw_devices;
Qu Wenruofab27352019-09-25 10:13:27 +08004300
4301 /*
4302 * SINGLE profile on-disk has no profile bit, but in-memory we have a
4303 * special bit for it, to make it easier to distinguish. Thus we need
4304 * to set it manually, or balance would refuse the profile.
4305 */
4306 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
David Sterba081db892019-05-17 11:43:27 +02004307 for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++)
4308 if (num_devices >= btrfs_raid_array[i].devs_min)
4309 allowed |= btrfs_raid_array[i].bg_flag;
Anand Jain1da73962018-08-10 13:53:21 +08004310
David Sterba5ba366c2020-02-27 21:00:52 +01004311 if (!validate_convert_profile(fs_info, &bctl->data, allowed, "data") ||
4312 !validate_convert_profile(fs_info, &bctl->meta, allowed, "metadata") ||
4313 !validate_convert_profile(fs_info, &bctl->sys, allowed, "system")) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004314 ret = -EINVAL;
4315 goto out;
4316 }
4317
David Sterba6079e122019-05-17 11:43:29 +02004318 /*
4319 * Allow to reduce metadata or system integrity only if force set for
4320 * profiles with redundancy (copies, parity)
4321 */
4322 allowed = 0;
4323 for (i = 0; i < ARRAY_SIZE(btrfs_raid_array); i++) {
4324 if (btrfs_raid_array[i].ncopies >= 2 ||
4325 btrfs_raid_array[i].tolerated_failures >= 1)
4326 allowed |= btrfs_raid_array[i].bg_flag;
4327 }
Miao Xiede98ced2013-01-29 10:13:12 +00004328 do {
4329 seq = read_seqbegin(&fs_info->profiles_lock);
4330
4331 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
4332 (fs_info->avail_system_alloc_bits & allowed) &&
4333 !(bctl->sys.target & allowed)) ||
4334 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
4335 (fs_info->avail_metadata_alloc_bits & allowed) &&
Filipe Manana5a8067c2018-11-19 09:48:12 +00004336 !(bctl->meta.target & allowed)))
Anand Jaine62869b2019-09-25 14:29:28 +08004337 reducing_redundancy = true;
Filipe Manana5a8067c2018-11-19 09:48:12 +00004338 else
Anand Jaine62869b2019-09-25 14:29:28 +08004339 reducing_redundancy = false;
Filipe Manana5a8067c2018-11-19 09:48:12 +00004340
4341 /* if we're not converting, the target field is uninitialized */
4342 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
4343 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
4344 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
4345 bctl->data.target : fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004346 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004347
Anand Jaine62869b2019-09-25 14:29:28 +08004348 if (reducing_redundancy) {
Filipe Manana5a8067c2018-11-19 09:48:12 +00004349 if (bctl->flags & BTRFS_BALANCE_FORCE) {
4350 btrfs_info(fs_info,
Anand Jaine62869b2019-09-25 14:29:28 +08004351 "balance: force reducing metadata redundancy");
Filipe Manana5a8067c2018-11-19 09:48:12 +00004352 } else {
4353 btrfs_err(fs_info,
Anand Jaine62869b2019-09-25 14:29:28 +08004354 "balance: reduces metadata redundancy, use --force if you want this");
Filipe Manana5a8067c2018-11-19 09:48:12 +00004355 ret = -EINVAL;
4356 goto out;
4357 }
4358 }
4359
Adam Borowski14506122017-03-07 23:34:44 +01004360 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
4361 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00004362 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004363 "balance: metadata profile %s has lower redundancy than data profile %s",
David Sterba158da512019-05-17 11:43:41 +02004364 btrfs_bg_type_to_raid_name(meta_target),
4365 btrfs_bg_type_to_raid_name(data_target));
Sam Tygieree592d02016-01-06 08:46:12 +00004366 }
4367
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004368 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02004369 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02004370 goto out;
4371
Ilya Dryomov59641012012-01-16 22:04:48 +02004372 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
4373 BUG_ON(ret == -EEXIST);
David Sterba833aae12018-03-21 02:41:30 +01004374 BUG_ON(fs_info->balance_ctl);
4375 spin_lock(&fs_info->balance_lock);
4376 fs_info->balance_ctl = bctl;
4377 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov59641012012-01-16 22:04:48 +02004378 } else {
4379 BUG_ON(ret != -EEXIST);
4380 spin_lock(&fs_info->balance_lock);
4381 update_balance_args(bctl);
4382 spin_unlock(&fs_info->balance_lock);
4383 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004384
David Sterba3009a622018-03-21 01:31:04 +01004385 ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
4386 set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Anand Jain56fc37d2018-11-20 16:12:56 +08004387 describe_balance_start_or_resume(fs_info);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004388 mutex_unlock(&fs_info->balance_mutex);
4389
4390 ret = __btrfs_balance(fs_info);
4391
4392 mutex_lock(&fs_info->balance_mutex);
Nikolay Borisovefc0e692021-11-25 11:14:41 +02004393 if (ret == -ECANCELED && atomic_read(&fs_info->balance_pause_req)) {
Anand Jain7333bd02018-11-20 16:12:57 +08004394 btrfs_info(fs_info, "balance: paused");
Nikolay Borisovefc0e692021-11-25 11:14:41 +02004395 btrfs_exclop_balance(fs_info, BTRFS_EXCLOP_BALANCE_PAUSED);
4396 }
Qu Wenruo44d354a2020-07-13 09:03:21 +08004397 /*
4398 * Balance can be canceled by:
4399 *
4400 * - Regular cancel request
4401 * Then ret == -ECANCELED and balance_cancel_req > 0
4402 *
4403 * - Fatal signal to "btrfs" process
4404 * Either the signal caught by wait_reserve_ticket() and callers
4405 * got -EINTR, or caught by btrfs_should_cancel_balance() and
4406 * got -ECANCELED.
4407 * Either way, in this case balance_cancel_req = 0, and
4408 * ret == -EINTR or ret == -ECANCELED.
4409 *
4410 * So here we only check the return value to catch canceled balance.
4411 */
4412 else if (ret == -ECANCELED || ret == -EINTR)
Anand Jain7333bd02018-11-20 16:12:57 +08004413 btrfs_info(fs_info, "balance: canceled");
4414 else
4415 btrfs_info(fs_info, "balance: ended with status: %d", ret);
4416
David Sterba3009a622018-03-21 01:31:04 +01004417 clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004418
4419 if (bargs) {
4420 memset(bargs, 0, sizeof(*bargs));
David Sterba008ef092018-03-21 02:05:27 +01004421 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004422 }
4423
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07004424 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
4425 balance_need_close(fs_info)) {
David Sterba149196a2018-03-20 20:23:09 +01004426 reset_balance_state(fs_info);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004427 btrfs_exclop_finish(fs_info);
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07004428 }
4429
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004430 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004431
4432 return ret;
4433out:
Ilya Dryomov59641012012-01-16 22:04:48 +02004434 if (bctl->flags & BTRFS_BALANCE_RESUME)
David Sterba149196a2018-03-20 20:23:09 +01004435 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004436 else
Ilya Dryomov59641012012-01-16 22:04:48 +02004437 kfree(bctl);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004438 btrfs_exclop_finish(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004439
Ilya Dryomov59641012012-01-16 22:04:48 +02004440 return ret;
4441}
4442
4443static int balance_kthread(void *data)
4444{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004445 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02004446 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02004447
Ilya Dryomov59641012012-01-16 22:04:48 +02004448 mutex_lock(&fs_info->balance_mutex);
Anand Jain56fc37d2018-11-20 16:12:56 +08004449 if (fs_info->balance_ctl)
David Sterba6fcf6e22018-05-07 17:44:03 +02004450 ret = btrfs_balance(fs_info, fs_info->balance_ctl, NULL);
Ilya Dryomov59641012012-01-16 22:04:48 +02004451 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004452
Ilya Dryomov59641012012-01-16 22:04:48 +02004453 return ret;
4454}
4455
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004456int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
4457{
4458 struct task_struct *tsk;
4459
David Sterba1354e1a2018-03-21 02:29:13 +01004460 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004461 if (!fs_info->balance_ctl) {
David Sterba1354e1a2018-03-21 02:29:13 +01004462 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004463 return 0;
4464 }
David Sterba1354e1a2018-03-21 02:29:13 +01004465 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004466
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004467 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08004468 btrfs_info(fs_info, "balance: resume skipped");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004469 return 0;
4470 }
4471
Nikolay Borisovefc0e692021-11-25 11:14:41 +02004472 spin_lock(&fs_info->super_lock);
4473 ASSERT(fs_info->exclusive_operation == BTRFS_EXCLOP_BALANCE_PAUSED);
4474 fs_info->exclusive_operation = BTRFS_EXCLOP_BALANCE;
4475 spin_unlock(&fs_info->super_lock);
Anand Jain02ee6542018-05-17 15:16:51 +08004476 /*
4477 * A ro->rw remount sequence should continue with the paused balance
4478 * regardless of who pauses it, system or the user as of now, so set
4479 * the resume flag.
4480 */
4481 spin_lock(&fs_info->balance_lock);
4482 fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME;
4483 spin_unlock(&fs_info->balance_lock);
4484
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004485 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05304486 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004487}
4488
Ilya Dryomov68310a52012-06-22 12:24:12 -06004489int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02004490{
Ilya Dryomov59641012012-01-16 22:04:48 +02004491 struct btrfs_balance_control *bctl;
4492 struct btrfs_balance_item *item;
4493 struct btrfs_disk_balance_args disk_bargs;
4494 struct btrfs_path *path;
4495 struct extent_buffer *leaf;
4496 struct btrfs_key key;
4497 int ret;
4498
4499 path = btrfs_alloc_path();
4500 if (!path)
4501 return -ENOMEM;
4502
Ilya Dryomov68310a52012-06-22 12:24:12 -06004503 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01004504 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06004505 key.offset = 0;
4506
4507 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4508 if (ret < 0)
4509 goto out;
4510 if (ret > 0) { /* ret = -ENOENT; */
4511 ret = 0;
4512 goto out;
4513 }
4514
Ilya Dryomov59641012012-01-16 22:04:48 +02004515 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4516 if (!bctl) {
4517 ret = -ENOMEM;
4518 goto out;
4519 }
4520
Ilya Dryomov59641012012-01-16 22:04:48 +02004521 leaf = path->nodes[0];
4522 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4523
Ilya Dryomov68310a52012-06-22 12:24:12 -06004524 bctl->flags = btrfs_balance_flags(leaf, item);
4525 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004526
4527 btrfs_balance_data(leaf, item, &disk_bargs);
4528 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4529 btrfs_balance_meta(leaf, item, &disk_bargs);
4530 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4531 btrfs_balance_sys(leaf, item, &disk_bargs);
4532 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4533
David Sterbaeee95e32018-03-20 20:07:58 +01004534 /*
4535 * This should never happen, as the paused balance state is recovered
4536 * during mount without any chance of other exclusive ops to collide.
4537 *
4538 * This gives the exclusive op status to balance and keeps in paused
4539 * state until user intervention (cancel or umount). If the ownership
4540 * cannot be assigned, show a message but do not fail. The balance
4541 * is in a paused state and must have fs_info::balance_ctl properly
4542 * set up.
4543 */
Nikolay Borisovefc0e692021-11-25 11:14:41 +02004544 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE_PAUSED))
David Sterbaeee95e32018-03-20 20:07:58 +01004545 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08004546 "balance: cannot set exclusive op status, resume manually");
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004547
Josef Bacikfb286102020-12-16 11:22:14 -05004548 btrfs_release_path(path);
4549
Ilya Dryomov68310a52012-06-22 12:24:12 -06004550 mutex_lock(&fs_info->balance_mutex);
David Sterba833aae12018-03-21 02:41:30 +01004551 BUG_ON(fs_info->balance_ctl);
4552 spin_lock(&fs_info->balance_lock);
4553 fs_info->balance_ctl = bctl;
4554 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov68310a52012-06-22 12:24:12 -06004555 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004556out:
4557 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004558 return ret;
4559}
4560
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004561int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4562{
4563 int ret = 0;
4564
4565 mutex_lock(&fs_info->balance_mutex);
4566 if (!fs_info->balance_ctl) {
4567 mutex_unlock(&fs_info->balance_mutex);
4568 return -ENOTCONN;
4569 }
4570
David Sterba3009a622018-03-21 01:31:04 +01004571 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004572 atomic_inc(&fs_info->balance_pause_req);
4573 mutex_unlock(&fs_info->balance_mutex);
4574
4575 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004576 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004577
4578 mutex_lock(&fs_info->balance_mutex);
4579 /* we are good with balance_ctl ripped off from under us */
David Sterba3009a622018-03-21 01:31:04 +01004580 BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004581 atomic_dec(&fs_info->balance_pause_req);
4582 } else {
4583 ret = -ENOTCONN;
4584 }
4585
4586 mutex_unlock(&fs_info->balance_mutex);
4587 return ret;
4588}
4589
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004590int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4591{
4592 mutex_lock(&fs_info->balance_mutex);
4593 if (!fs_info->balance_ctl) {
4594 mutex_unlock(&fs_info->balance_mutex);
4595 return -ENOTCONN;
4596 }
4597
David Sterbacf7d20f2018-03-21 01:45:32 +01004598 /*
4599 * A paused balance with the item stored on disk can be resumed at
4600 * mount time if the mount is read-write. Otherwise it's still paused
4601 * and we must not allow cancelling as it deletes the item.
4602 */
4603 if (sb_rdonly(fs_info->sb)) {
4604 mutex_unlock(&fs_info->balance_mutex);
4605 return -EROFS;
4606 }
4607
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004608 atomic_inc(&fs_info->balance_cancel_req);
4609 /*
4610 * if we are running just wait and return, balance item is
4611 * deleted in btrfs_balance in this case
4612 */
David Sterba3009a622018-03-21 01:31:04 +01004613 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004614 mutex_unlock(&fs_info->balance_mutex);
4615 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004616 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004617 mutex_lock(&fs_info->balance_mutex);
4618 } else {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004619 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004620 /*
4621 * Lock released to allow other waiters to continue, we'll
4622 * reexamine the status again.
4623 */
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004624 mutex_lock(&fs_info->balance_mutex);
4625
David Sterbaa17c95d2018-03-20 17:28:05 +01004626 if (fs_info->balance_ctl) {
David Sterba149196a2018-03-20 20:23:09 +01004627 reset_balance_state(fs_info);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004628 btrfs_exclop_finish(fs_info);
Anand Jain6dac13f2018-05-16 10:51:26 +08004629 btrfs_info(fs_info, "balance: canceled");
David Sterbaa17c95d2018-03-20 17:28:05 +01004630 }
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004631 }
4632
David Sterba3009a622018-03-21 01:31:04 +01004633 BUG_ON(fs_info->balance_ctl ||
4634 test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004635 atomic_dec(&fs_info->balance_cancel_req);
4636 mutex_unlock(&fs_info->balance_mutex);
4637 return 0;
4638}
4639
Nikolay Borisov97f4dd02020-02-18 16:56:08 +02004640int btrfs_uuid_scan_kthread(void *data)
Stefan Behrens803b2f52013-08-15 17:11:21 +02004641{
4642 struct btrfs_fs_info *fs_info = data;
4643 struct btrfs_root *root = fs_info->tree_root;
4644 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004645 struct btrfs_path *path = NULL;
4646 int ret = 0;
4647 struct extent_buffer *eb;
4648 int slot;
4649 struct btrfs_root_item root_item;
4650 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004651 struct btrfs_trans_handle *trans = NULL;
Josef Bacikc94bec22020-02-14 15:05:01 -05004652 bool closing = false;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004653
4654 path = btrfs_alloc_path();
4655 if (!path) {
4656 ret = -ENOMEM;
4657 goto out;
4658 }
4659
4660 key.objectid = 0;
4661 key.type = BTRFS_ROOT_ITEM_KEY;
4662 key.offset = 0;
4663
Stefan Behrens803b2f52013-08-15 17:11:21 +02004664 while (1) {
Josef Bacikc94bec22020-02-14 15:05:01 -05004665 if (btrfs_fs_closing(fs_info)) {
4666 closing = true;
4667 break;
4668 }
Anand Jain7c829b72018-03-07 17:29:18 +08004669 ret = btrfs_search_forward(root, &key, path,
4670 BTRFS_OLDEST_GENERATION);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004671 if (ret) {
4672 if (ret > 0)
4673 ret = 0;
4674 break;
4675 }
4676
4677 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4678 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4679 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4680 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4681 goto skip;
4682
4683 eb = path->nodes[0];
4684 slot = path->slots[0];
Josef Bacik3212fa12021-10-21 14:58:35 -04004685 item_size = btrfs_item_size(eb, slot);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004686 if (item_size < sizeof(root_item))
4687 goto skip;
4688
Stefan Behrens803b2f52013-08-15 17:11:21 +02004689 read_extent_buffer(eb, &root_item,
4690 btrfs_item_ptr_offset(eb, slot),
4691 (int)sizeof(root_item));
4692 if (btrfs_root_refs(&root_item) == 0)
4693 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004694
4695 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4696 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4697 if (trans)
4698 goto update_tree;
4699
4700 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004701 /*
4702 * 1 - subvol uuid item
4703 * 1 - received_subvol uuid item
4704 */
4705 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4706 if (IS_ERR(trans)) {
4707 ret = PTR_ERR(trans);
4708 break;
4709 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004710 continue;
4711 } else {
4712 goto skip;
4713 }
4714update_tree:
Josef Bacik9771a5cf2020-08-10 11:42:26 -04004715 btrfs_release_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004716 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004717 ret = btrfs_uuid_tree_add(trans, root_item.uuid,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004718 BTRFS_UUID_KEY_SUBVOL,
4719 key.objectid);
4720 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004721 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004722 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004723 break;
4724 }
4725 }
4726
4727 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004728 ret = btrfs_uuid_tree_add(trans,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004729 root_item.received_uuid,
4730 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4731 key.objectid);
4732 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004733 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004734 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004735 break;
4736 }
4737 }
4738
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004739skip:
Josef Bacik9771a5cf2020-08-10 11:42:26 -04004740 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004741 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004742 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004743 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004744 if (ret)
4745 break;
4746 }
4747
Stefan Behrens803b2f52013-08-15 17:11:21 +02004748 if (key.offset < (u64)-1) {
4749 key.offset++;
4750 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4751 key.offset = 0;
4752 key.type = BTRFS_ROOT_ITEM_KEY;
4753 } else if (key.objectid < (u64)-1) {
4754 key.offset = 0;
4755 key.type = BTRFS_ROOT_ITEM_KEY;
4756 key.objectid++;
4757 } else {
4758 break;
4759 }
4760 cond_resched();
4761 }
4762
4763out:
4764 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004765 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004766 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004767 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004768 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Josef Bacikc94bec22020-02-14 15:05:01 -05004769 else if (!closing)
Josef Bacikafcdd122016-09-02 15:40:02 -04004770 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004771 up(&fs_info->uuid_tree_rescan_sem);
4772 return 0;
4773}
4774
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004775int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4776{
4777 struct btrfs_trans_handle *trans;
4778 struct btrfs_root *tree_root = fs_info->tree_root;
4779 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004780 struct task_struct *task;
4781 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004782
4783 /*
4784 * 1 - root node
4785 * 1 - root item
4786 */
4787 trans = btrfs_start_transaction(tree_root, 2);
4788 if (IS_ERR(trans))
4789 return PTR_ERR(trans);
4790
David Sterba9b7a2442019-03-20 13:20:49 +01004791 uuid_root = btrfs_create_tree(trans, BTRFS_UUID_TREE_OBJECTID);
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004792 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004793 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004794 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004795 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004796 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004797 }
4798
4799 fs_info->uuid_root = uuid_root;
4800
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004801 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004802 if (ret)
4803 return ret;
4804
4805 down(&fs_info->uuid_tree_rescan_sem);
4806 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4807 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004808 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004809 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004810 up(&fs_info->uuid_tree_rescan_sem);
4811 return PTR_ERR(task);
4812 }
4813
4814 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004815}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004816
Chris Mason8f18cf12008-04-25 16:53:30 -04004817/*
4818 * shrinking a device means finding all of the device extents past
4819 * the new size, and then following the back refs to the chunks.
4820 * The chunk relocation code actually frees the device extent
4821 */
4822int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4823{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004824 struct btrfs_fs_info *fs_info = device->fs_info;
4825 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004826 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004827 struct btrfs_dev_extent *dev_extent = NULL;
4828 struct btrfs_path *path;
4829 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004830 u64 chunk_offset;
4831 int ret;
4832 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004833 int failed = 0;
4834 bool retried = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004835 struct extent_buffer *l;
4836 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004837 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004838 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004839 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004840 u64 diff;
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004841 u64 start;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004842
4843 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004844 start = new_size;
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004845 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004846
Anand Jain401e29c2017-12-04 12:54:55 +08004847 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004848 return -EINVAL;
4849
Chris Mason8f18cf12008-04-25 16:53:30 -04004850 path = btrfs_alloc_path();
4851 if (!path)
4852 return -ENOMEM;
4853
Gu Jinxiang0338dff2018-04-27 16:22:07 +08004854 path->reada = READA_BACK;
Chris Mason8f18cf12008-04-25 16:53:30 -04004855
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004856 trans = btrfs_start_transaction(root, 0);
4857 if (IS_ERR(trans)) {
4858 btrfs_free_path(path);
4859 return PTR_ERR(trans);
4860 }
4861
David Sterba34441362016-10-04 19:34:27 +02004862 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004863
Miao Xie7cc8e582014-09-03 21:35:38 +08004864 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004865 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004866 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004867 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004868 }
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004869
4870 /*
4871 * Once the device's size has been set to the new size, ensure all
4872 * in-memory chunks are synced to disk so that the loop below sees them
4873 * and relocates them accordingly.
4874 */
Jeff Mahoney1c11b632019-03-27 14:24:12 +02004875 if (contains_pending_extent(device, &start, diff)) {
Nikolay Borisov61d0d0d2019-03-25 14:31:23 +02004876 mutex_unlock(&fs_info->chunk_mutex);
4877 ret = btrfs_commit_transaction(trans);
4878 if (ret)
4879 goto done;
4880 } else {
4881 mutex_unlock(&fs_info->chunk_mutex);
4882 btrfs_end_transaction(trans);
4883 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004884
Josef Bacikba1bf482009-09-11 16:11:19 -04004885again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004886 key.objectid = device->devid;
4887 key.offset = (u64)-1;
4888 key.type = BTRFS_DEV_EXTENT_KEY;
4889
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004890 do {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004891 mutex_lock(&fs_info->reclaim_bgs_lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04004892 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004893 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004894 mutex_unlock(&fs_info->reclaim_bgs_lock);
Chris Mason8f18cf12008-04-25 16:53:30 -04004895 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004896 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004897
4898 ret = btrfs_previous_item(root, path, 0, key.type);
Chris Mason8f18cf12008-04-25 16:53:30 -04004899 if (ret) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004900 mutex_unlock(&fs_info->reclaim_bgs_lock);
Nikolay Borisov7056bf62020-12-17 15:21:16 +02004901 if (ret < 0)
4902 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004903 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004904 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004905 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004906 }
4907
4908 l = path->nodes[0];
4909 slot = path->slots[0];
4910 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4911
Josef Bacikba1bf482009-09-11 16:11:19 -04004912 if (key.objectid != device->devid) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004913 mutex_unlock(&fs_info->reclaim_bgs_lock);
David Sterbab3b4aa72011-04-21 01:20:15 +02004914 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004915 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004916 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004917
4918 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4919 length = btrfs_dev_extent_length(l, dev_extent);
4920
Josef Bacikba1bf482009-09-11 16:11:19 -04004921 if (key.offset + length <= new_size) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004922 mutex_unlock(&fs_info->reclaim_bgs_lock);
David Sterbab3b4aa72011-04-21 01:20:15 +02004923 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004924 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004925 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004926
Chris Mason8f18cf12008-04-25 16:53:30 -04004927 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004928 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004929
Liu Boa6f93c72017-11-15 16:28:11 -07004930 /*
4931 * We may be relocating the only data chunk we have,
4932 * which could potentially end up with losing data's
4933 * raid profile, so lets allocate an empty one in
4934 * advance.
4935 */
4936 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4937 if (ret < 0) {
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004938 mutex_unlock(&fs_info->reclaim_bgs_lock);
Liu Boa6f93c72017-11-15 16:28:11 -07004939 goto done;
4940 }
4941
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004942 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09004943 mutex_unlock(&fs_info->reclaim_bgs_lock);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004944 if (ret == -ENOSPC) {
Josef Bacikba1bf482009-09-11 16:11:19 -04004945 failed++;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004946 } else if (ret) {
4947 if (ret == -ETXTBSY) {
4948 btrfs_warn(fs_info,
4949 "could not shrink block group %llu due to active swapfile",
4950 chunk_offset);
4951 }
4952 goto done;
4953 }
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004954 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004955
4956 if (failed && !retried) {
4957 failed = 0;
4958 retried = true;
4959 goto again;
4960 } else if (failed && retried) {
4961 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004962 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004963 }
4964
Chris Balld6397ba2009-04-27 07:29:03 -04004965 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004966 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004967 if (IS_ERR(trans)) {
4968 ret = PTR_ERR(trans);
4969 goto done;
4970 }
4971
David Sterba34441362016-10-04 19:34:27 +02004972 mutex_lock(&fs_info->chunk_mutex);
Qu Wenruoc57dd1f2020-07-31 19:29:11 +08004973 /* Clear all state bits beyond the shrunk device size */
4974 clear_extent_bits(&device->alloc_state, new_size, (u64)-1,
4975 CHUNK_STATE_MASK);
4976
Miao Xie7cc8e582014-09-03 21:35:38 +08004977 btrfs_device_set_disk_total_bytes(device, new_size);
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02004978 if (list_empty(&device->post_commit_list))
4979 list_add_tail(&device->post_commit_list,
4980 &trans->transaction->dev_update_list);
Chris Balld6397ba2009-04-27 07:29:03 -04004981
Chris Balld6397ba2009-04-27 07:29:03 -04004982 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004983 btrfs_set_super_total_bytes(super_copy,
4984 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004985 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004986
Filipe Manana2bb2e002021-10-13 10:12:49 +01004987 btrfs_reserve_chunk_metadata(trans, false);
Miao Xie2196d6e2014-09-03 21:35:41 +08004988 /* Now btrfs_update_device() will change the on-disk size. */
4989 ret = btrfs_update_device(trans, device);
Filipe Manana2bb2e002021-10-13 10:12:49 +01004990 btrfs_trans_release_chunk_metadata(trans);
Anand Jain801660b2018-08-06 18:12:37 +08004991 if (ret < 0) {
4992 btrfs_abort_transaction(trans, ret);
4993 btrfs_end_transaction(trans);
4994 } else {
4995 ret = btrfs_commit_transaction(trans);
4996 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004997done:
4998 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004999 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02005000 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01005001 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08005002 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01005003 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03005004 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02005005 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01005006 }
Chris Mason8f18cf12008-04-25 16:53:30 -04005007 return ret;
5008}
5009
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005010static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04005011 struct btrfs_key *key,
5012 struct btrfs_chunk *chunk, int item_size)
5013{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005014 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04005015 struct btrfs_disk_key disk_key;
5016 u32 array_size;
5017 u8 *ptr;
5018
Filipe Manana79bd3712021-06-29 14:43:06 +01005019 lockdep_assert_held(&fs_info->chunk_mutex);
5020
Chris Mason0b86a832008-03-24 15:01:56 -04005021 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08005022 if (array_size + item_size + sizeof(disk_key)
Filipe Manana79bd3712021-06-29 14:43:06 +01005023 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
Chris Mason0b86a832008-03-24 15:01:56 -04005024 return -EFBIG;
5025
5026 ptr = super_copy->sys_chunk_array + array_size;
5027 btrfs_cpu_key_to_disk(&disk_key, key);
5028 memcpy(ptr, &disk_key, sizeof(disk_key));
5029 ptr += sizeof(disk_key);
5030 memcpy(ptr, chunk, item_size);
5031 item_size += sizeof(disk_key);
5032 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08005033
Chris Mason0b86a832008-03-24 15:01:56 -04005034 return 0;
5035}
5036
Miao Xieb2117a32011-01-05 10:07:28 +00005037/*
Arne Jansen73c5de02011-04-12 12:07:57 +02005038 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00005039 */
Arne Jansen73c5de02011-04-12 12:07:57 +02005040static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00005041{
Arne Jansen73c5de02011-04-12 12:07:57 +02005042 const struct btrfs_device_info *di_a = a;
5043 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00005044
Arne Jansen73c5de02011-04-12 12:07:57 +02005045 if (di_a->max_avail > di_b->max_avail)
5046 return -1;
5047 if (di_a->max_avail < di_b->max_avail)
5048 return 1;
5049 if (di_a->total_avail > di_b->total_avail)
5050 return -1;
5051 if (di_a->total_avail < di_b->total_avail)
5052 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00005053 return 0;
5054}
5055
David Woodhouse53b381b2013-01-29 18:40:14 -05005056static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
5057{
Zhao Leiffe2d202015-01-20 15:11:44 +08005058 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05005059 return;
5060
Miao Xieceda0862013-04-11 10:30:16 +00005061 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05005062}
5063
David Sterbacfbb8252018-07-10 18:15:05 +02005064static void check_raid1c34_incompat_flag(struct btrfs_fs_info *info, u64 type)
5065{
5066 if (!(type & (BTRFS_BLOCK_GROUP_RAID1C3 | BTRFS_BLOCK_GROUP_RAID1C4)))
5067 return;
5068
5069 btrfs_set_fs_incompat(info, RAID1C34);
5070}
5071
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005072/*
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005073 * Structure used internally for btrfs_create_chunk() function.
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005074 * Wraps needed parameters.
5075 */
5076struct alloc_chunk_ctl {
5077 u64 start;
5078 u64 type;
5079 /* Total number of stripes to allocate */
5080 int num_stripes;
5081 /* sub_stripes info for map */
5082 int sub_stripes;
5083 /* Stripes per device */
5084 int dev_stripes;
5085 /* Maximum number of devices to use */
5086 int devs_max;
5087 /* Minimum number of devices to use */
5088 int devs_min;
5089 /* ndevs has to be a multiple of this */
5090 int devs_increment;
5091 /* Number of copies */
5092 int ncopies;
5093 /* Number of stripes worth of bytes to store parity information */
5094 int nparity;
5095 u64 max_stripe_size;
5096 u64 max_chunk_size;
Naohiro Aota6aafb302020-02-25 12:56:15 +09005097 u64 dev_extent_min;
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005098 u64 stripe_size;
5099 u64 chunk_size;
5100 int ndevs;
5101};
5102
Naohiro Aota27c314d2020-02-25 12:56:11 +09005103static void init_alloc_chunk_ctl_policy_regular(
5104 struct btrfs_fs_devices *fs_devices,
5105 struct alloc_chunk_ctl *ctl)
5106{
5107 u64 type = ctl->type;
5108
5109 if (type & BTRFS_BLOCK_GROUP_DATA) {
5110 ctl->max_stripe_size = SZ_1G;
5111 ctl->max_chunk_size = BTRFS_MAX_DATA_CHUNK_SIZE;
5112 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
5113 /* For larger filesystems, use larger metadata chunks */
5114 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
5115 ctl->max_stripe_size = SZ_1G;
5116 else
5117 ctl->max_stripe_size = SZ_256M;
5118 ctl->max_chunk_size = ctl->max_stripe_size;
5119 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
5120 ctl->max_stripe_size = SZ_32M;
5121 ctl->max_chunk_size = 2 * ctl->max_stripe_size;
5122 ctl->devs_max = min_t(int, ctl->devs_max,
5123 BTRFS_MAX_DEVS_SYS_CHUNK);
5124 } else {
5125 BUG();
5126 }
5127
5128 /* We don't want a chunk larger than 10% of writable space */
5129 ctl->max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
5130 ctl->max_chunk_size);
Naohiro Aota6aafb302020-02-25 12:56:15 +09005131 ctl->dev_extent_min = BTRFS_STRIPE_LEN * ctl->dev_stripes;
Naohiro Aota27c314d2020-02-25 12:56:11 +09005132}
5133
Naohiro Aota1cd61212021-02-04 19:21:48 +09005134static void init_alloc_chunk_ctl_policy_zoned(
5135 struct btrfs_fs_devices *fs_devices,
5136 struct alloc_chunk_ctl *ctl)
5137{
5138 u64 zone_size = fs_devices->fs_info->zone_size;
5139 u64 limit;
5140 int min_num_stripes = ctl->devs_min * ctl->dev_stripes;
5141 int min_data_stripes = (min_num_stripes - ctl->nparity) / ctl->ncopies;
5142 u64 min_chunk_size = min_data_stripes * zone_size;
5143 u64 type = ctl->type;
5144
5145 ctl->max_stripe_size = zone_size;
5146 if (type & BTRFS_BLOCK_GROUP_DATA) {
5147 ctl->max_chunk_size = round_down(BTRFS_MAX_DATA_CHUNK_SIZE,
5148 zone_size);
5149 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
5150 ctl->max_chunk_size = ctl->max_stripe_size;
5151 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
5152 ctl->max_chunk_size = 2 * ctl->max_stripe_size;
5153 ctl->devs_max = min_t(int, ctl->devs_max,
5154 BTRFS_MAX_DEVS_SYS_CHUNK);
Arnd Bergmannbb05b292021-03-23 15:31:19 +01005155 } else {
5156 BUG();
Naohiro Aota1cd61212021-02-04 19:21:48 +09005157 }
5158
5159 /* We don't want a chunk larger than 10% of writable space */
5160 limit = max(round_down(div_factor(fs_devices->total_rw_bytes, 1),
5161 zone_size),
5162 min_chunk_size);
5163 ctl->max_chunk_size = min(limit, ctl->max_chunk_size);
5164 ctl->dev_extent_min = zone_size * ctl->dev_stripes;
5165}
5166
Naohiro Aota27c314d2020-02-25 12:56:11 +09005167static void init_alloc_chunk_ctl(struct btrfs_fs_devices *fs_devices,
5168 struct alloc_chunk_ctl *ctl)
5169{
5170 int index = btrfs_bg_flags_to_raid_index(ctl->type);
5171
5172 ctl->sub_stripes = btrfs_raid_array[index].sub_stripes;
5173 ctl->dev_stripes = btrfs_raid_array[index].dev_stripes;
5174 ctl->devs_max = btrfs_raid_array[index].devs_max;
5175 if (!ctl->devs_max)
5176 ctl->devs_max = BTRFS_MAX_DEVS(fs_devices->fs_info);
5177 ctl->devs_min = btrfs_raid_array[index].devs_min;
5178 ctl->devs_increment = btrfs_raid_array[index].devs_increment;
5179 ctl->ncopies = btrfs_raid_array[index].ncopies;
5180 ctl->nparity = btrfs_raid_array[index].nparity;
5181 ctl->ndevs = 0;
5182
5183 switch (fs_devices->chunk_alloc_policy) {
5184 case BTRFS_CHUNK_ALLOC_REGULAR:
5185 init_alloc_chunk_ctl_policy_regular(fs_devices, ctl);
5186 break;
Naohiro Aota1cd61212021-02-04 19:21:48 +09005187 case BTRFS_CHUNK_ALLOC_ZONED:
5188 init_alloc_chunk_ctl_policy_zoned(fs_devices, ctl);
5189 break;
Naohiro Aota27c314d2020-02-25 12:56:11 +09005190 default:
5191 BUG();
5192 }
5193}
5194
Naohiro Aota560156c2020-02-25 12:56:12 +09005195static int gather_device_info(struct btrfs_fs_devices *fs_devices,
5196 struct alloc_chunk_ctl *ctl,
5197 struct btrfs_device_info *devices_info)
5198{
5199 struct btrfs_fs_info *info = fs_devices->fs_info;
5200 struct btrfs_device *device;
5201 u64 total_avail;
5202 u64 dev_extent_want = ctl->max_stripe_size * ctl->dev_stripes;
Naohiro Aota560156c2020-02-25 12:56:12 +09005203 int ret;
5204 int ndevs = 0;
5205 u64 max_avail;
5206 u64 dev_offset;
5207
5208 /*
5209 * in the first pass through the devices list, we gather information
5210 * about the available holes on each device.
5211 */
5212 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
5213 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
5214 WARN(1, KERN_ERR
5215 "BTRFS: read-only device in alloc_list\n");
5216 continue;
5217 }
5218
5219 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
5220 &device->dev_state) ||
5221 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
5222 continue;
5223
5224 if (device->total_bytes > device->bytes_used)
5225 total_avail = device->total_bytes - device->bytes_used;
5226 else
5227 total_avail = 0;
5228
5229 /* If there is no space on this device, skip it. */
Naohiro Aota6aafb302020-02-25 12:56:15 +09005230 if (total_avail < ctl->dev_extent_min)
Naohiro Aota560156c2020-02-25 12:56:12 +09005231 continue;
5232
5233 ret = find_free_dev_extent(device, dev_extent_want, &dev_offset,
5234 &max_avail);
5235 if (ret && ret != -ENOSPC)
5236 return ret;
5237
5238 if (ret == 0)
5239 max_avail = dev_extent_want;
5240
Naohiro Aota6aafb302020-02-25 12:56:15 +09005241 if (max_avail < ctl->dev_extent_min) {
Naohiro Aota560156c2020-02-25 12:56:12 +09005242 if (btrfs_test_opt(info, ENOSPC_DEBUG))
5243 btrfs_debug(info,
5244 "%s: devid %llu has no free space, have=%llu want=%llu",
5245 __func__, device->devid, max_avail,
Naohiro Aota6aafb302020-02-25 12:56:15 +09005246 ctl->dev_extent_min);
Naohiro Aota560156c2020-02-25 12:56:12 +09005247 continue;
5248 }
5249
5250 if (ndevs == fs_devices->rw_devices) {
5251 WARN(1, "%s: found more than %llu devices\n",
5252 __func__, fs_devices->rw_devices);
5253 break;
5254 }
5255 devices_info[ndevs].dev_offset = dev_offset;
5256 devices_info[ndevs].max_avail = max_avail;
5257 devices_info[ndevs].total_avail = total_avail;
5258 devices_info[ndevs].dev = device;
5259 ++ndevs;
5260 }
5261 ctl->ndevs = ndevs;
5262
5263 /*
5264 * now sort the devices by hole size / available space
5265 */
5266 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
5267 btrfs_cmp_device_info, NULL);
5268
5269 return 0;
5270}
5271
Naohiro Aota5badf512020-02-25 12:56:13 +09005272static int decide_stripe_size_regular(struct alloc_chunk_ctl *ctl,
5273 struct btrfs_device_info *devices_info)
5274{
5275 /* Number of stripes that count for block group size */
5276 int data_stripes;
5277
5278 /*
5279 * The primary goal is to maximize the number of stripes, so use as
5280 * many devices as possible, even if the stripes are not maximum sized.
5281 *
5282 * The DUP profile stores more than one stripe per device, the
5283 * max_avail is the total size so we have to adjust.
5284 */
5285 ctl->stripe_size = div_u64(devices_info[ctl->ndevs - 1].max_avail,
5286 ctl->dev_stripes);
5287 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5288
5289 /* This will have to be fixed for RAID1 and RAID10 over more drives */
5290 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5291
5292 /*
5293 * Use the number of data stripes to figure out how big this chunk is
5294 * really going to be in terms of logical address space, and compare
5295 * that answer with the max chunk size. If it's higher, we try to
5296 * reduce stripe_size.
5297 */
5298 if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) {
5299 /*
5300 * Reduce stripe_size, round it up to a 16MB boundary again and
5301 * then use it, unless it ends up being even bigger than the
5302 * previous value we had already.
5303 */
5304 ctl->stripe_size = min(round_up(div_u64(ctl->max_chunk_size,
5305 data_stripes), SZ_16M),
5306 ctl->stripe_size);
5307 }
5308
5309 /* Align to BTRFS_STRIPE_LEN */
5310 ctl->stripe_size = round_down(ctl->stripe_size, BTRFS_STRIPE_LEN);
5311 ctl->chunk_size = ctl->stripe_size * data_stripes;
5312
5313 return 0;
5314}
5315
Naohiro Aota1cd61212021-02-04 19:21:48 +09005316static int decide_stripe_size_zoned(struct alloc_chunk_ctl *ctl,
5317 struct btrfs_device_info *devices_info)
5318{
5319 u64 zone_size = devices_info[0].dev->zone_info->zone_size;
5320 /* Number of stripes that count for block group size */
5321 int data_stripes;
5322
5323 /*
5324 * It should hold because:
5325 * dev_extent_min == dev_extent_want == zone_size * dev_stripes
5326 */
5327 ASSERT(devices_info[ctl->ndevs - 1].max_avail == ctl->dev_extent_min);
5328
5329 ctl->stripe_size = zone_size;
5330 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5331 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5332
5333 /* stripe_size is fixed in zoned filesysmte. Reduce ndevs instead. */
5334 if (ctl->stripe_size * data_stripes > ctl->max_chunk_size) {
5335 ctl->ndevs = div_u64(div_u64(ctl->max_chunk_size * ctl->ncopies,
5336 ctl->stripe_size) + ctl->nparity,
5337 ctl->dev_stripes);
5338 ctl->num_stripes = ctl->ndevs * ctl->dev_stripes;
5339 data_stripes = (ctl->num_stripes - ctl->nparity) / ctl->ncopies;
5340 ASSERT(ctl->stripe_size * data_stripes <= ctl->max_chunk_size);
5341 }
5342
5343 ctl->chunk_size = ctl->stripe_size * data_stripes;
5344
5345 return 0;
5346}
5347
Naohiro Aota5badf512020-02-25 12:56:13 +09005348static int decide_stripe_size(struct btrfs_fs_devices *fs_devices,
5349 struct alloc_chunk_ctl *ctl,
5350 struct btrfs_device_info *devices_info)
5351{
5352 struct btrfs_fs_info *info = fs_devices->fs_info;
5353
5354 /*
5355 * Round down to number of usable stripes, devs_increment can be any
5356 * number so we can't use round_down() that requires power of 2, while
5357 * rounddown is safe.
5358 */
5359 ctl->ndevs = rounddown(ctl->ndevs, ctl->devs_increment);
5360
5361 if (ctl->ndevs < ctl->devs_min) {
5362 if (btrfs_test_opt(info, ENOSPC_DEBUG)) {
5363 btrfs_debug(info,
5364 "%s: not enough devices with free space: have=%d minimum required=%d",
5365 __func__, ctl->ndevs, ctl->devs_min);
5366 }
5367 return -ENOSPC;
5368 }
5369
5370 ctl->ndevs = min(ctl->ndevs, ctl->devs_max);
5371
5372 switch (fs_devices->chunk_alloc_policy) {
5373 case BTRFS_CHUNK_ALLOC_REGULAR:
5374 return decide_stripe_size_regular(ctl, devices_info);
Naohiro Aota1cd61212021-02-04 19:21:48 +09005375 case BTRFS_CHUNK_ALLOC_ZONED:
5376 return decide_stripe_size_zoned(ctl, devices_info);
Naohiro Aota5badf512020-02-25 12:56:13 +09005377 default:
5378 BUG();
5379 }
5380}
5381
Filipe Manana79bd3712021-06-29 14:43:06 +01005382static struct btrfs_block_group *create_chunk(struct btrfs_trans_handle *trans,
Naohiro Aotadce580c2020-02-25 12:56:14 +09005383 struct alloc_chunk_ctl *ctl,
5384 struct btrfs_device_info *devices_info)
5385{
5386 struct btrfs_fs_info *info = trans->fs_info;
5387 struct map_lookup *map = NULL;
5388 struct extent_map_tree *em_tree;
Filipe Manana79bd3712021-06-29 14:43:06 +01005389 struct btrfs_block_group *block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005390 struct extent_map *em;
5391 u64 start = ctl->start;
5392 u64 type = ctl->type;
5393 int ret;
5394 int i;
5395 int j;
5396
5397 map = kmalloc(map_lookup_size(ctl->num_stripes), GFP_NOFS);
5398 if (!map)
Filipe Manana79bd3712021-06-29 14:43:06 +01005399 return ERR_PTR(-ENOMEM);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005400 map->num_stripes = ctl->num_stripes;
5401
5402 for (i = 0; i < ctl->ndevs; ++i) {
5403 for (j = 0; j < ctl->dev_stripes; ++j) {
5404 int s = i * ctl->dev_stripes + j;
5405 map->stripes[s].dev = devices_info[i].dev;
5406 map->stripes[s].physical = devices_info[i].dev_offset +
5407 j * ctl->stripe_size;
5408 }
5409 }
5410 map->stripe_len = BTRFS_STRIPE_LEN;
5411 map->io_align = BTRFS_STRIPE_LEN;
5412 map->io_width = BTRFS_STRIPE_LEN;
5413 map->type = type;
5414 map->sub_stripes = ctl->sub_stripes;
5415
5416 trace_btrfs_chunk_alloc(info, map, start, ctl->chunk_size);
5417
5418 em = alloc_extent_map();
5419 if (!em) {
5420 kfree(map);
Filipe Manana79bd3712021-06-29 14:43:06 +01005421 return ERR_PTR(-ENOMEM);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005422 }
5423 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
5424 em->map_lookup = map;
5425 em->start = start;
5426 em->len = ctl->chunk_size;
5427 em->block_start = 0;
5428 em->block_len = em->len;
5429 em->orig_block_len = ctl->stripe_size;
5430
5431 em_tree = &info->mapping_tree;
5432 write_lock(&em_tree->lock);
5433 ret = add_extent_mapping(em_tree, em, 0);
5434 if (ret) {
5435 write_unlock(&em_tree->lock);
5436 free_extent_map(em);
Filipe Manana79bd3712021-06-29 14:43:06 +01005437 return ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005438 }
5439 write_unlock(&em_tree->lock);
5440
Filipe Manana79bd3712021-06-29 14:43:06 +01005441 block_group = btrfs_make_block_group(trans, 0, type, start, ctl->chunk_size);
5442 if (IS_ERR(block_group))
Naohiro Aotadce580c2020-02-25 12:56:14 +09005443 goto error_del_extent;
5444
5445 for (i = 0; i < map->num_stripes; i++) {
5446 struct btrfs_device *dev = map->stripes[i].dev;
5447
5448 btrfs_device_set_bytes_used(dev,
5449 dev->bytes_used + ctl->stripe_size);
5450 if (list_empty(&dev->post_commit_list))
5451 list_add_tail(&dev->post_commit_list,
5452 &trans->transaction->dev_update_list);
5453 }
5454
5455 atomic64_sub(ctl->stripe_size * map->num_stripes,
5456 &info->free_chunk_space);
5457
5458 free_extent_map(em);
5459 check_raid56_incompat_flag(info, type);
5460 check_raid1c34_incompat_flag(info, type);
5461
Filipe Manana79bd3712021-06-29 14:43:06 +01005462 return block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005463
5464error_del_extent:
5465 write_lock(&em_tree->lock);
5466 remove_extent_mapping(em_tree, em);
5467 write_unlock(&em_tree->lock);
5468
5469 /* One for our allocation */
5470 free_extent_map(em);
5471 /* One for the tree reference */
5472 free_extent_map(em);
5473
Filipe Manana79bd3712021-06-29 14:43:06 +01005474 return block_group;
Naohiro Aotadce580c2020-02-25 12:56:14 +09005475}
5476
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005477struct btrfs_block_group *btrfs_create_chunk(struct btrfs_trans_handle *trans,
Filipe Manana79bd3712021-06-29 14:43:06 +01005478 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00005479{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005480 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00005481 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Arne Jansen73c5de02011-04-12 12:07:57 +02005482 struct btrfs_device_info *devices_info = NULL;
Naohiro Aota4f2bafe2020-02-25 12:56:10 +09005483 struct alloc_chunk_ctl ctl;
Filipe Manana79bd3712021-06-29 14:43:06 +01005484 struct btrfs_block_group *block_group;
Miao Xieb2117a32011-01-05 10:07:28 +00005485 int ret;
Miao Xieb2117a32011-01-05 10:07:28 +00005486
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005487 lockdep_assert_held(&info->chunk_mutex);
5488
Naohiro Aotab25c19f2020-02-25 12:56:07 +09005489 if (!alloc_profile_is_valid(type, 0)) {
5490 ASSERT(0);
Filipe Manana79bd3712021-06-29 14:43:06 +01005491 return ERR_PTR(-EINVAL);
Naohiro Aotab25c19f2020-02-25 12:56:07 +09005492 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005493
Qu Wenruo4117f202018-01-22 13:50:54 +08005494 if (list_empty(&fs_devices->alloc_list)) {
5495 if (btrfs_test_opt(info, ENOSPC_DEBUG))
5496 btrfs_debug(info, "%s: no writable device", __func__);
Filipe Manana79bd3712021-06-29 14:43:06 +01005497 return ERR_PTR(-ENOSPC);
Qu Wenruo4117f202018-01-22 13:50:54 +08005498 }
Miao Xieb2117a32011-01-05 10:07:28 +00005499
Naohiro Aota27c314d2020-02-25 12:56:11 +09005500 if (!(type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
5501 btrfs_err(info, "invalid chunk type 0x%llx requested", type);
5502 ASSERT(0);
Filipe Manana79bd3712021-06-29 14:43:06 +01005503 return ERR_PTR(-EINVAL);
Arne Jansen73c5de02011-04-12 12:07:57 +02005504 }
5505
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005506 ctl.start = find_next_chunk(info);
Naohiro Aota27c314d2020-02-25 12:56:11 +09005507 ctl.type = type;
5508 init_alloc_chunk_ctl(fs_devices, &ctl);
Miao Xieb2117a32011-01-05 10:07:28 +00005509
David Sterba31e818f2015-02-20 18:00:26 +01005510 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00005511 GFP_NOFS);
5512 if (!devices_info)
Filipe Manana79bd3712021-06-29 14:43:06 +01005513 return ERR_PTR(-ENOMEM);
Miao Xieb2117a32011-01-05 10:07:28 +00005514
Naohiro Aota560156c2020-02-25 12:56:12 +09005515 ret = gather_device_info(fs_devices, &ctl, devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005516 if (ret < 0) {
5517 block_group = ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005518 goto out;
Filipe Manana79bd3712021-06-29 14:43:06 +01005519 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005520
Naohiro Aota5badf512020-02-25 12:56:13 +09005521 ret = decide_stripe_size(fs_devices, &ctl, devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005522 if (ret < 0) {
5523 block_group = ERR_PTR(ret);
Naohiro Aotadce580c2020-02-25 12:56:14 +09005524 goto out;
Filipe Manana79bd3712021-06-29 14:43:06 +01005525 }
Arne Jansen73c5de02011-04-12 12:07:57 +02005526
Filipe Manana79bd3712021-06-29 14:43:06 +01005527 block_group = create_chunk(trans, &ctl, devices_info);
Chris Mason9b3f68b2008-04-18 10:29:51 -04005528
Naohiro Aotadce580c2020-02-25 12:56:14 +09005529out:
Miao Xieb2117a32011-01-05 10:07:28 +00005530 kfree(devices_info);
Filipe Manana79bd3712021-06-29 14:43:06 +01005531 return block_group;
Yan Zheng2b820322008-11-17 21:11:30 -05005532}
5533
Nikolay Borisov11c67b12020-03-02 12:29:25 +02005534/*
Filipe Manana79bd3712021-06-29 14:43:06 +01005535 * This function, btrfs_chunk_alloc_add_chunk_item(), typically belongs to the
5536 * phase 1 of chunk allocation. It belongs to phase 2 only when allocating system
5537 * chunks.
5538 *
5539 * See the comment at btrfs_chunk_alloc() for details about the chunk allocation
5540 * phases.
5541 */
5542int btrfs_chunk_alloc_add_chunk_item(struct btrfs_trans_handle *trans,
5543 struct btrfs_block_group *bg)
5544{
5545 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana79bd3712021-06-29 14:43:06 +01005546 struct btrfs_root *chunk_root = fs_info->chunk_root;
5547 struct btrfs_key key;
5548 struct btrfs_chunk *chunk;
5549 struct btrfs_stripe *stripe;
5550 struct extent_map *em;
5551 struct map_lookup *map;
5552 size_t item_size;
5553 int i;
5554 int ret;
5555
5556 /*
5557 * We take the chunk_mutex for 2 reasons:
5558 *
5559 * 1) Updates and insertions in the chunk btree must be done while holding
5560 * the chunk_mutex, as well as updating the system chunk array in the
5561 * superblock. See the comment on top of btrfs_chunk_alloc() for the
5562 * details;
5563 *
5564 * 2) To prevent races with the final phase of a device replace operation
5565 * that replaces the device object associated with the map's stripes,
5566 * because the device object's id can change at any time during that
5567 * final phase of the device replace operation
5568 * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the
5569 * replaced device and then see it with an ID of BTRFS_DEV_REPLACE_DEVID,
5570 * which would cause a failure when updating the device item, which does
5571 * not exists, or persisting a stripe of the chunk item with such ID.
5572 * Here we can't use the device_list_mutex because our caller already
5573 * has locked the chunk_mutex, and the final phase of device replace
5574 * acquires both mutexes - first the device_list_mutex and then the
5575 * chunk_mutex. Using any of those two mutexes protects us from a
5576 * concurrent device replace.
5577 */
5578 lockdep_assert_held(&fs_info->chunk_mutex);
5579
5580 em = btrfs_get_chunk_map(fs_info, bg->start, bg->length);
5581 if (IS_ERR(em)) {
5582 ret = PTR_ERR(em);
5583 btrfs_abort_transaction(trans, ret);
5584 return ret;
5585 }
5586
5587 map = em->map_lookup;
5588 item_size = btrfs_chunk_item_size(map->num_stripes);
5589
5590 chunk = kzalloc(item_size, GFP_NOFS);
5591 if (!chunk) {
5592 ret = -ENOMEM;
5593 btrfs_abort_transaction(trans, ret);
Filipe Manana50460e32015-11-20 10:42:47 +00005594 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005595 }
5596
Filipe Manana79bd3712021-06-29 14:43:06 +01005597 for (i = 0; i < map->num_stripes; i++) {
5598 struct btrfs_device *device = map->stripes[i].dev;
5599
5600 ret = btrfs_update_device(trans, device);
5601 if (ret)
5602 goto out;
5603 }
5604
Yan Zheng2b820322008-11-17 21:11:30 -05005605 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04005606 for (i = 0; i < map->num_stripes; i++) {
Filipe Manana79bd3712021-06-29 14:43:06 +01005607 struct btrfs_device *device = map->stripes[i].dev;
5608 const u64 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05005609
5610 btrfs_set_stack_stripe_devid(stripe, device->devid);
5611 btrfs_set_stack_stripe_offset(stripe, dev_offset);
5612 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
5613 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05005614 }
5615
Filipe Manana79bd3712021-06-29 14:43:06 +01005616 btrfs_set_stack_chunk_length(chunk, bg->length);
Josef Bacikfd51eb22021-11-05 16:45:41 -04005617 btrfs_set_stack_chunk_owner(chunk, BTRFS_EXTENT_TREE_OBJECTID);
Yan Zheng2b820322008-11-17 21:11:30 -05005618 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
5619 btrfs_set_stack_chunk_type(chunk, map->type);
5620 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
5621 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
5622 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005623 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05005624 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
5625
5626 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
5627 key.type = BTRFS_CHUNK_ITEM_KEY;
Filipe Manana79bd3712021-06-29 14:43:06 +01005628 key.offset = bg->start;
Yan Zheng2b820322008-11-17 21:11:30 -05005629
5630 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Filipe Manana79bd3712021-06-29 14:43:06 +01005631 if (ret)
5632 goto out;
5633
5634 bg->chunk_item_inserted = 1;
5635
5636 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005637 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Filipe Manana79bd3712021-06-29 14:43:06 +01005638 if (ret)
5639 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005640 }
liubo1abe9b82011-03-24 11:18:59 +00005641
Josef Bacik6df9a952013-06-27 13:22:46 -04005642out:
Yan Zheng2b820322008-11-17 21:11:30 -05005643 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005644 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005645 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005646}
5647
David Sterba6f8e0fc2019-03-20 16:29:13 +01005648static noinline int init_first_rw_device(struct btrfs_trans_handle *trans)
Yan Zheng2b820322008-11-17 21:11:30 -05005649{
David Sterba6f8e0fc2019-03-20 16:29:13 +01005650 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng2b820322008-11-17 21:11:30 -05005651 u64 alloc_profile;
Filipe Manana79bd3712021-06-29 14:43:06 +01005652 struct btrfs_block_group *meta_bg;
5653 struct btrfs_block_group *sys_bg;
5654
5655 /*
5656 * When adding a new device for sprouting, the seed device is read-only
5657 * so we must first allocate a metadata and a system chunk. But before
5658 * adding the block group items to the extent, device and chunk btrees,
5659 * we must first:
5660 *
5661 * 1) Create both chunks without doing any changes to the btrees, as
5662 * otherwise we would get -ENOSPC since the block groups from the
5663 * seed device are read-only;
5664 *
5665 * 2) Add the device item for the new sprout device - finishing the setup
5666 * of a new block group requires updating the device item in the chunk
5667 * btree, so it must exist when we attempt to do it. The previous step
5668 * ensures this does not fail with -ENOSPC.
5669 *
5670 * After that we can add the block group items to their btrees:
5671 * update existing device item in the chunk btree, add a new block group
5672 * item to the extent btree, add a new chunk item to the chunk btree and
5673 * finally add the new device extent items to the devices btree.
5674 */
Yan Zheng2b820322008-11-17 21:11:30 -05005675
Jeff Mahoney1b868262017-05-17 11:38:35 -04005676 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005677 meta_bg = btrfs_create_chunk(trans, alloc_profile);
Filipe Manana79bd3712021-06-29 14:43:06 +01005678 if (IS_ERR(meta_bg))
5679 return PTR_ERR(meta_bg);
Yan Zheng2b820322008-11-17 21:11:30 -05005680
Jeff Mahoney1b868262017-05-17 11:38:35 -04005681 alloc_profile = btrfs_system_alloc_profile(fs_info);
Nikolay Borisovf6f39f72021-08-18 13:41:19 +03005682 sys_bg = btrfs_create_chunk(trans, alloc_profile);
Filipe Manana79bd3712021-06-29 14:43:06 +01005683 if (IS_ERR(sys_bg))
5684 return PTR_ERR(sys_bg);
5685
5686 return 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005687}
5688
Miao Xied20983b2014-07-03 18:22:13 +08005689static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5690{
David Sterbafc9a2ac2019-05-17 11:43:22 +02005691 const int index = btrfs_bg_flags_to_raid_index(map->type);
Miao Xied20983b2014-07-03 18:22:13 +08005692
David Sterbafc9a2ac2019-05-17 11:43:22 +02005693 return btrfs_raid_array[index].tolerated_failures;
Yan Zheng2b820322008-11-17 21:11:30 -05005694}
5695
Anand Jaina09f23c2021-08-24 13:27:42 +08005696bool btrfs_chunk_writeable(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005697{
5698 struct extent_map *em;
5699 struct map_lookup *map;
Miao Xied20983b2014-07-03 18:22:13 +08005700 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005701 int i;
Anand Jaina09f23c2021-08-24 13:27:42 +08005702 bool ret = true;
Yan Zheng2b820322008-11-17 21:11:30 -05005703
Omar Sandoval60ca8422018-05-16 16:34:31 -07005704 em = btrfs_get_chunk_map(fs_info, chunk_offset, 1);
Liu Bo592d92e2017-03-14 13:33:55 -07005705 if (IS_ERR(em))
Anand Jaina09f23c2021-08-24 13:27:42 +08005706 return false;
Yan Zheng2b820322008-11-17 21:11:30 -05005707
Jeff Mahoney95617d62015-06-03 10:55:48 -04005708 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005709 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005710 if (test_bit(BTRFS_DEV_STATE_MISSING,
5711 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005712 miss_ndevs++;
5713 continue;
5714 }
Anand Jainebbede42017-12-04 12:54:52 +08005715 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5716 &map->stripes[i].dev->dev_state)) {
Anand Jaina09f23c2021-08-24 13:27:42 +08005717 ret = false;
Miao Xied20983b2014-07-03 18:22:13 +08005718 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005719 }
5720 }
Miao Xied20983b2014-07-03 18:22:13 +08005721
5722 /*
Anand Jaina09f23c2021-08-24 13:27:42 +08005723 * If the number of missing devices is larger than max errors, we can
5724 * not write the data into that chunk successfully.
Miao Xied20983b2014-07-03 18:22:13 +08005725 */
5726 if (miss_ndevs > btrfs_chunk_max_errors(map))
Anand Jaina09f23c2021-08-24 13:27:42 +08005727 ret = false;
Miao Xied20983b2014-07-03 18:22:13 +08005728end:
Yan Zheng2b820322008-11-17 21:11:30 -05005729 free_extent_map(em);
Anand Jaina09f23c2021-08-24 13:27:42 +08005730 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005731}
5732
David Sterbac8bf1b62019-05-17 11:43:17 +02005733void btrfs_mapping_tree_free(struct extent_map_tree *tree)
Chris Mason0b86a832008-03-24 15:01:56 -04005734{
5735 struct extent_map *em;
5736
Chris Masond3977122009-01-05 21:25:51 -05005737 while (1) {
David Sterbac8bf1b62019-05-17 11:43:17 +02005738 write_lock(&tree->lock);
5739 em = lookup_extent_mapping(tree, 0, (u64)-1);
Chris Mason0b86a832008-03-24 15:01:56 -04005740 if (em)
David Sterbac8bf1b62019-05-17 11:43:17 +02005741 remove_extent_mapping(tree, em);
5742 write_unlock(&tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005743 if (!em)
5744 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005745 /* once for us */
5746 free_extent_map(em);
5747 /* once for the tree */
5748 free_extent_map(em);
5749 }
5750}
5751
Stefan Behrens5d964052012-11-05 14:59:07 +01005752int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005753{
5754 struct extent_map *em;
5755 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005756 int ret;
5757
Omar Sandoval60ca8422018-05-16 16:34:31 -07005758 em = btrfs_get_chunk_map(fs_info, logical, len);
Liu Bo592d92e2017-03-14 13:33:55 -07005759 if (IS_ERR(em))
5760 /*
5761 * We could return errors for these cases, but that could get
5762 * ugly and we'd probably do the same thing which is just not do
5763 * anything else and exit, so return 1 so the callers don't try
5764 * to use other copies.
5765 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005766 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005767
Jeff Mahoney95617d62015-06-03 10:55:48 -04005768 map = em->map_lookup;
David Sterbac7369b32019-05-31 15:39:31 +02005769 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1_MASK))
Chris Masonf1885912008-04-09 16:28:12 -04005770 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005771 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5772 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005773 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5774 ret = 2;
5775 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005776 /*
5777 * There could be two corrupted data stripes, we need
5778 * to loop retry in order to rebuild the correct data.
Nikolay Borisove7e02092018-06-20 15:48:55 +03005779 *
Liu Bo8810f752018-01-02 13:36:41 -07005780 * Fail a stripe at a time on every retry except the
5781 * stripe under reconstruction.
5782 */
5783 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005784 else
5785 ret = 1;
5786 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005787
David Sterbacb5583d2018-09-07 16:11:23 +02005788 down_read(&fs_info->dev_replace.rwsem);
Liu Bo6fad8232017-03-14 13:33:59 -07005789 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5790 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005791 ret++;
David Sterbacb5583d2018-09-07 16:11:23 +02005792 up_read(&fs_info->dev_replace.rwsem);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005793
Chris Masonf1885912008-04-09 16:28:12 -04005794 return ret;
5795}
5796
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005797unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005798 u64 logical)
5799{
5800 struct extent_map *em;
5801 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005802 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005803
Omar Sandoval60ca8422018-05-16 16:34:31 -07005804 em = btrfs_get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005805
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005806 if (!WARN_ON(IS_ERR(em))) {
5807 map = em->map_lookup;
5808 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5809 len = map->stripe_len * nr_data_stripes(map);
5810 free_extent_map(em);
5811 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005812 return len;
5813}
5814
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005815int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005816{
5817 struct extent_map *em;
5818 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005819 int ret = 0;
5820
Omar Sandoval60ca8422018-05-16 16:34:31 -07005821 em = btrfs_get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005822
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005823 if(!WARN_ON(IS_ERR(em))) {
5824 map = em->map_lookup;
5825 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5826 ret = 1;
5827 free_extent_map(em);
5828 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005829 return ret;
5830}
5831
Stefan Behrens30d98612012-11-06 14:52:18 +01005832static int find_live_mirror(struct btrfs_fs_info *fs_info,
Anand Jain99f92a72018-03-14 16:29:12 +08005833 struct map_lookup *map, int first,
Anand Jain8ba0ae72018-03-14 16:29:13 +08005834 int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005835{
5836 int i;
Anand Jain99f92a72018-03-14 16:29:12 +08005837 int num_stripes;
Anand Jain8ba0ae72018-03-14 16:29:13 +08005838 int preferred_mirror;
Stefan Behrens30d98612012-11-06 14:52:18 +01005839 int tolerance;
5840 struct btrfs_device *srcdev;
5841
Anand Jain99f92a72018-03-14 16:29:12 +08005842 ASSERT((map->type &
David Sterbac7369b32019-05-31 15:39:31 +02005843 (BTRFS_BLOCK_GROUP_RAID1_MASK | BTRFS_BLOCK_GROUP_RAID10)));
Anand Jain99f92a72018-03-14 16:29:12 +08005844
5845 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5846 num_stripes = map->sub_stripes;
5847 else
5848 num_stripes = map->num_stripes;
5849
Anand Jain33fd2f72020-10-28 21:14:46 +08005850 switch (fs_info->fs_devices->read_policy) {
5851 default:
5852 /* Shouldn't happen, just warn and use pid instead of failing */
5853 btrfs_warn_rl(fs_info,
5854 "unknown read_policy type %u, reset to pid",
5855 fs_info->fs_devices->read_policy);
5856 fs_info->fs_devices->read_policy = BTRFS_READ_POLICY_PID;
5857 fallthrough;
5858 case BTRFS_READ_POLICY_PID:
5859 preferred_mirror = first + (current->pid % num_stripes);
5860 break;
5861 }
Anand Jain8ba0ae72018-03-14 16:29:13 +08005862
Stefan Behrens30d98612012-11-06 14:52:18 +01005863 if (dev_replace_is_ongoing &&
5864 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5865 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5866 srcdev = fs_info->dev_replace.srcdev;
5867 else
5868 srcdev = NULL;
5869
5870 /*
5871 * try to avoid the drive that is the source drive for a
5872 * dev-replace procedure, only choose it if no other non-missing
5873 * mirror is available
5874 */
5875 for (tolerance = 0; tolerance < 2; tolerance++) {
Anand Jain8ba0ae72018-03-14 16:29:13 +08005876 if (map->stripes[preferred_mirror].dev->bdev &&
5877 (tolerance || map->stripes[preferred_mirror].dev != srcdev))
5878 return preferred_mirror;
Anand Jain99f92a72018-03-14 16:29:12 +08005879 for (i = first; i < first + num_stripes; i++) {
Stefan Behrens30d98612012-11-06 14:52:18 +01005880 if (map->stripes[i].dev->bdev &&
5881 (tolerance || map->stripes[i].dev != srcdev))
5882 return i;
5883 }
Chris Masondfe25022008-05-13 13:46:40 -04005884 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005885
Chris Masondfe25022008-05-13 13:46:40 -04005886 /* we couldn't find one that doesn't fail. Just return something
5887 * and the io error handling code will clean up eventually
5888 */
Anand Jain8ba0ae72018-03-14 16:29:13 +08005889 return preferred_mirror;
Chris Masondfe25022008-05-13 13:46:40 -04005890}
5891
David Woodhouse53b381b2013-01-29 18:40:14 -05005892/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Qu Wenruo4c664612021-09-15 15:17:16 +08005893static void sort_parity_stripes(struct btrfs_io_context *bioc, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005894{
David Woodhouse53b381b2013-01-29 18:40:14 -05005895 int i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005896 int again = 1;
5897
5898 while (again) {
5899 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005900 for (i = 0; i < num_stripes - 1; i++) {
David Sterbaeeb6f172019-11-28 15:31:17 +01005901 /* Swap if parity is on a smaller index */
Qu Wenruo4c664612021-09-15 15:17:16 +08005902 if (bioc->raid_map[i] > bioc->raid_map[i + 1]) {
5903 swap(bioc->stripes[i], bioc->stripes[i + 1]);
5904 swap(bioc->raid_map[i], bioc->raid_map[i + 1]);
David Woodhouse53b381b2013-01-29 18:40:14 -05005905 again = 1;
5906 }
5907 }
5908 }
5909}
5910
Qu Wenruo731ccf12021-09-23 14:00:08 +08005911static struct btrfs_io_context *alloc_btrfs_io_context(struct btrfs_fs_info *fs_info,
5912 int total_stripes,
Qu Wenruo4c664612021-09-15 15:17:16 +08005913 int real_stripes)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005914{
Qu Wenruo4c664612021-09-15 15:17:16 +08005915 struct btrfs_io_context *bioc = kzalloc(
5916 /* The size of btrfs_io_context */
5917 sizeof(struct btrfs_io_context) +
5918 /* Plus the variable array for the stripes */
5919 sizeof(struct btrfs_io_stripe) * (total_stripes) +
5920 /* Plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005921 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005922 /*
Qu Wenruo4c664612021-09-15 15:17:16 +08005923 * Plus the raid_map, which includes both the tgt dev
5924 * and the stripes.
Chris Masone57cf212015-02-19 17:51:39 -08005925 */
5926 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005927 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005928
Qu Wenruo4c664612021-09-15 15:17:16 +08005929 atomic_set(&bioc->error, 0);
5930 refcount_set(&bioc->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005931
Qu Wenruo731ccf12021-09-23 14:00:08 +08005932 bioc->fs_info = fs_info;
Qu Wenruo4c664612021-09-15 15:17:16 +08005933 bioc->tgtdev_map = (int *)(bioc->stripes + total_stripes);
5934 bioc->raid_map = (u64 *)(bioc->tgtdev_map + real_stripes);
Nikolay Borisov608769a2020-07-02 16:46:41 +03005935
Qu Wenruo4c664612021-09-15 15:17:16 +08005936 return bioc;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005937}
5938
Qu Wenruo4c664612021-09-15 15:17:16 +08005939void btrfs_get_bioc(struct btrfs_io_context *bioc)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005940{
Qu Wenruo4c664612021-09-15 15:17:16 +08005941 WARN_ON(!refcount_read(&bioc->refs));
5942 refcount_inc(&bioc->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005943}
5944
Qu Wenruo4c664612021-09-15 15:17:16 +08005945void btrfs_put_bioc(struct btrfs_io_context *bioc)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005946{
Qu Wenruo4c664612021-09-15 15:17:16 +08005947 if (!bioc)
Zhao Lei6e9606d2015-01-20 15:11:34 +08005948 return;
Qu Wenruo4c664612021-09-15 15:17:16 +08005949 if (refcount_dec_and_test(&bioc->refs))
5950 kfree(bioc);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005951}
5952
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005953/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5954/*
5955 * Please note that, discard won't be sent to target device of device
5956 * replace.
5957 */
5958static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005959 u64 logical, u64 *length_ret,
Qu Wenruo4c664612021-09-15 15:17:16 +08005960 struct btrfs_io_context **bioc_ret)
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005961{
5962 struct extent_map *em;
5963 struct map_lookup *map;
Qu Wenruo4c664612021-09-15 15:17:16 +08005964 struct btrfs_io_context *bioc;
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005965 u64 length = *length_ret;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005966 u64 offset;
5967 u64 stripe_nr;
5968 u64 stripe_nr_end;
5969 u64 stripe_end_offset;
5970 u64 stripe_cnt;
5971 u64 stripe_len;
5972 u64 stripe_offset;
5973 u64 num_stripes;
5974 u32 stripe_index;
5975 u32 factor = 0;
5976 u32 sub_stripes = 0;
5977 u64 stripes_per_dev = 0;
5978 u32 remaining_stripes = 0;
5979 u32 last_stripe = 0;
5980 int ret = 0;
5981 int i;
5982
Qu Wenruo4c664612021-09-15 15:17:16 +08005983 /* Discard always returns a bioc. */
5984 ASSERT(bioc_ret);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005985
Omar Sandoval60ca8422018-05-16 16:34:31 -07005986 em = btrfs_get_chunk_map(fs_info, logical, length);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005987 if (IS_ERR(em))
5988 return PTR_ERR(em);
5989
5990 map = em->map_lookup;
5991 /* we don't discard raid56 yet */
5992 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5993 ret = -EOPNOTSUPP;
5994 goto out;
5995 }
5996
5997 offset = logical - em->start;
Qu Wenruo2d974612019-10-23 21:57:26 +08005998 length = min_t(u64, em->start + em->len - logical, length);
Qu Wenruo6b7faad2019-10-23 21:57:27 +08005999 *length_ret = length;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006000
6001 stripe_len = map->stripe_len;
6002 /*
6003 * stripe_nr counts the total number of stripes we have to stride
6004 * to get to this block
6005 */
6006 stripe_nr = div64_u64(offset, stripe_len);
6007
6008 /* stripe_offset is the offset of this block in its stripe */
6009 stripe_offset = offset - stripe_nr * stripe_len;
6010
6011 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07006012 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006013 stripe_cnt = stripe_nr_end - stripe_nr;
6014 stripe_end_offset = stripe_nr_end * map->stripe_len -
6015 (offset + length);
6016 /*
6017 * after this, stripe_nr is the number of stripes on this
6018 * device we have to walk to find the data, and stripe_index is
6019 * the number of our device in the stripe array
6020 */
6021 num_stripes = 1;
6022 stripe_index = 0;
6023 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
6024 BTRFS_BLOCK_GROUP_RAID10)) {
6025 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
6026 sub_stripes = 1;
6027 else
6028 sub_stripes = map->sub_stripes;
6029
6030 factor = map->num_stripes / sub_stripes;
6031 num_stripes = min_t(u64, map->num_stripes,
6032 sub_stripes * stripe_cnt);
6033 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
6034 stripe_index *= sub_stripes;
6035 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
6036 &remaining_stripes);
6037 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
6038 last_stripe *= sub_stripes;
David Sterbac7369b32019-05-31 15:39:31 +02006039 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1_MASK |
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006040 BTRFS_BLOCK_GROUP_DUP)) {
6041 num_stripes = map->num_stripes;
6042 } else {
6043 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6044 &stripe_index);
6045 }
6046
Qu Wenruo731ccf12021-09-23 14:00:08 +08006047 bioc = alloc_btrfs_io_context(fs_info, num_stripes, 0);
Qu Wenruo4c664612021-09-15 15:17:16 +08006048 if (!bioc) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006049 ret = -ENOMEM;
6050 goto out;
6051 }
6052
6053 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006054 bioc->stripes[i].physical =
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006055 map->stripes[stripe_index].physical +
6056 stripe_offset + stripe_nr * map->stripe_len;
Qu Wenruo4c664612021-09-15 15:17:16 +08006057 bioc->stripes[i].dev = map->stripes[stripe_index].dev;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006058
6059 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
6060 BTRFS_BLOCK_GROUP_RAID10)) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006061 bioc->stripes[i].length = stripes_per_dev *
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006062 map->stripe_len;
6063
6064 if (i / sub_stripes < remaining_stripes)
Qu Wenruo4c664612021-09-15 15:17:16 +08006065 bioc->stripes[i].length += map->stripe_len;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006066
6067 /*
6068 * Special for the first stripe and
6069 * the last stripe:
6070 *
6071 * |-------|...|-------|
6072 * |----------|
6073 * off end_off
6074 */
6075 if (i < sub_stripes)
Qu Wenruo4c664612021-09-15 15:17:16 +08006076 bioc->stripes[i].length -= stripe_offset;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006077
6078 if (stripe_index >= last_stripe &&
6079 stripe_index <= (last_stripe +
6080 sub_stripes - 1))
Qu Wenruo4c664612021-09-15 15:17:16 +08006081 bioc->stripes[i].length -= stripe_end_offset;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006082
6083 if (i == sub_stripes - 1)
6084 stripe_offset = 0;
6085 } else {
Qu Wenruo4c664612021-09-15 15:17:16 +08006086 bioc->stripes[i].length = length;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006087 }
6088
6089 stripe_index++;
6090 if (stripe_index == map->num_stripes) {
6091 stripe_index = 0;
6092 stripe_nr++;
6093 }
6094 }
6095
Qu Wenruo4c664612021-09-15 15:17:16 +08006096 *bioc_ret = bioc;
6097 bioc->map_type = map->type;
6098 bioc->num_stripes = num_stripes;
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006099out:
6100 free_extent_map(em);
6101 return ret;
6102}
6103
Liu Bo5ab56092017-03-14 13:33:57 -07006104/*
6105 * In dev-replace case, for repair case (that's the only case where the mirror
6106 * is selected explicitly when calling btrfs_map_block), blocks left of the
6107 * left cursor can also be read from the target drive.
6108 *
6109 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
6110 * array of stripes.
6111 * For READ, it also needs to be supported using the same mirror number.
6112 *
6113 * If the requested block is not left of the left cursor, EIO is returned. This
6114 * can happen because btrfs_num_copies() returns one more in the dev-replace
6115 * case.
6116 */
6117static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
6118 u64 logical, u64 length,
6119 u64 srcdev_devid, int *mirror_num,
6120 u64 *physical)
6121{
Qu Wenruo4c664612021-09-15 15:17:16 +08006122 struct btrfs_io_context *bioc = NULL;
Liu Bo5ab56092017-03-14 13:33:57 -07006123 int num_stripes;
6124 int index_srcdev = 0;
6125 int found = 0;
6126 u64 physical_of_found = 0;
6127 int i;
6128 int ret = 0;
6129
6130 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
Qu Wenruo4c664612021-09-15 15:17:16 +08006131 logical, &length, &bioc, 0, 0);
Liu Bo5ab56092017-03-14 13:33:57 -07006132 if (ret) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006133 ASSERT(bioc == NULL);
Liu Bo5ab56092017-03-14 13:33:57 -07006134 return ret;
6135 }
6136
Qu Wenruo4c664612021-09-15 15:17:16 +08006137 num_stripes = bioc->num_stripes;
Liu Bo5ab56092017-03-14 13:33:57 -07006138 if (*mirror_num > num_stripes) {
6139 /*
6140 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
6141 * that means that the requested area is not left of the left
6142 * cursor
6143 */
Qu Wenruo4c664612021-09-15 15:17:16 +08006144 btrfs_put_bioc(bioc);
Liu Bo5ab56092017-03-14 13:33:57 -07006145 return -EIO;
6146 }
6147
6148 /*
6149 * process the rest of the function using the mirror_num of the source
6150 * drive. Therefore look it up first. At the end, patch the device
6151 * pointer to the one of the target drive.
6152 */
6153 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006154 if (bioc->stripes[i].dev->devid != srcdev_devid)
Liu Bo5ab56092017-03-14 13:33:57 -07006155 continue;
6156
6157 /*
6158 * In case of DUP, in order to keep it simple, only add the
6159 * mirror with the lowest physical address
6160 */
6161 if (found &&
Qu Wenruo4c664612021-09-15 15:17:16 +08006162 physical_of_found <= bioc->stripes[i].physical)
Liu Bo5ab56092017-03-14 13:33:57 -07006163 continue;
6164
6165 index_srcdev = i;
6166 found = 1;
Qu Wenruo4c664612021-09-15 15:17:16 +08006167 physical_of_found = bioc->stripes[i].physical;
Liu Bo5ab56092017-03-14 13:33:57 -07006168 }
6169
Qu Wenruo4c664612021-09-15 15:17:16 +08006170 btrfs_put_bioc(bioc);
Liu Bo5ab56092017-03-14 13:33:57 -07006171
6172 ASSERT(found);
6173 if (!found)
6174 return -EIO;
6175
6176 *mirror_num = index_srcdev + 1;
6177 *physical = physical_of_found;
6178 return ret;
6179}
6180
Naohiro Aota6143c232021-02-04 19:22:12 +09006181static bool is_block_group_to_copy(struct btrfs_fs_info *fs_info, u64 logical)
6182{
6183 struct btrfs_block_group *cache;
6184 bool ret;
6185
Naohiro Aotade17add2021-02-04 19:22:13 +09006186 /* Non zoned filesystem does not use "to_copy" flag */
Naohiro Aota6143c232021-02-04 19:22:12 +09006187 if (!btrfs_is_zoned(fs_info))
6188 return false;
6189
6190 cache = btrfs_lookup_block_group(fs_info, logical);
6191
6192 spin_lock(&cache->lock);
6193 ret = cache->to_copy;
6194 spin_unlock(&cache->lock);
6195
6196 btrfs_put_block_group(cache);
6197 return ret;
6198}
6199
Liu Bo73c0f222017-03-14 13:33:58 -07006200static void handle_ops_on_dev_replace(enum btrfs_map_op op,
Qu Wenruo4c664612021-09-15 15:17:16 +08006201 struct btrfs_io_context **bioc_ret,
Liu Bo73c0f222017-03-14 13:33:58 -07006202 struct btrfs_dev_replace *dev_replace,
Naohiro Aota6143c232021-02-04 19:22:12 +09006203 u64 logical,
Liu Bo73c0f222017-03-14 13:33:58 -07006204 int *num_stripes_ret, int *max_errors_ret)
6205{
Qu Wenruo4c664612021-09-15 15:17:16 +08006206 struct btrfs_io_context *bioc = *bioc_ret;
Liu Bo73c0f222017-03-14 13:33:58 -07006207 u64 srcdev_devid = dev_replace->srcdev->devid;
6208 int tgtdev_indexes = 0;
6209 int num_stripes = *num_stripes_ret;
6210 int max_errors = *max_errors_ret;
6211 int i;
6212
6213 if (op == BTRFS_MAP_WRITE) {
6214 int index_where_to_add;
6215
6216 /*
Naohiro Aota6143c232021-02-04 19:22:12 +09006217 * A block group which have "to_copy" set will eventually
6218 * copied by dev-replace process. We can avoid cloning IO here.
6219 */
6220 if (is_block_group_to_copy(dev_replace->srcdev->fs_info, logical))
6221 return;
6222
6223 /*
Liu Bo73c0f222017-03-14 13:33:58 -07006224 * duplicate the write operations while the dev replace
6225 * procedure is running. Since the copying of the old disk to
6226 * the new disk takes place at run time while the filesystem is
6227 * mounted writable, the regular write operations to the old
6228 * disk have to be duplicated to go to the new disk as well.
6229 *
6230 * Note that device->missing is handled by the caller, and that
6231 * the write to the old disk is already set up in the stripes
6232 * array.
6233 */
6234 index_where_to_add = num_stripes;
6235 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006236 if (bioc->stripes[i].dev->devid == srcdev_devid) {
Liu Bo73c0f222017-03-14 13:33:58 -07006237 /* write to new disk, too */
Qu Wenruo4c664612021-09-15 15:17:16 +08006238 struct btrfs_io_stripe *new =
6239 bioc->stripes + index_where_to_add;
6240 struct btrfs_io_stripe *old =
6241 bioc->stripes + i;
Liu Bo73c0f222017-03-14 13:33:58 -07006242
6243 new->physical = old->physical;
6244 new->length = old->length;
6245 new->dev = dev_replace->tgtdev;
Qu Wenruo4c664612021-09-15 15:17:16 +08006246 bioc->tgtdev_map[i] = index_where_to_add;
Liu Bo73c0f222017-03-14 13:33:58 -07006247 index_where_to_add++;
6248 max_errors++;
6249 tgtdev_indexes++;
6250 }
6251 }
6252 num_stripes = index_where_to_add;
6253 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
6254 int index_srcdev = 0;
6255 int found = 0;
6256 u64 physical_of_found = 0;
6257
6258 /*
6259 * During the dev-replace procedure, the target drive can also
6260 * be used to read data in case it is needed to repair a corrupt
6261 * block elsewhere. This is possible if the requested area is
6262 * left of the left cursor. In this area, the target drive is a
6263 * full copy of the source drive.
6264 */
6265 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006266 if (bioc->stripes[i].dev->devid == srcdev_devid) {
Liu Bo73c0f222017-03-14 13:33:58 -07006267 /*
6268 * In case of DUP, in order to keep it simple,
6269 * only add the mirror with the lowest physical
6270 * address
6271 */
6272 if (found &&
Qu Wenruo4c664612021-09-15 15:17:16 +08006273 physical_of_found <= bioc->stripes[i].physical)
Liu Bo73c0f222017-03-14 13:33:58 -07006274 continue;
6275 index_srcdev = i;
6276 found = 1;
Qu Wenruo4c664612021-09-15 15:17:16 +08006277 physical_of_found = bioc->stripes[i].physical;
Liu Bo73c0f222017-03-14 13:33:58 -07006278 }
6279 }
6280 if (found) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006281 struct btrfs_io_stripe *tgtdev_stripe =
6282 bioc->stripes + num_stripes;
Liu Bo73c0f222017-03-14 13:33:58 -07006283
6284 tgtdev_stripe->physical = physical_of_found;
6285 tgtdev_stripe->length =
Qu Wenruo4c664612021-09-15 15:17:16 +08006286 bioc->stripes[index_srcdev].length;
Liu Bo73c0f222017-03-14 13:33:58 -07006287 tgtdev_stripe->dev = dev_replace->tgtdev;
Qu Wenruo4c664612021-09-15 15:17:16 +08006288 bioc->tgtdev_map[index_srcdev] = num_stripes;
Liu Bo73c0f222017-03-14 13:33:58 -07006289
6290 tgtdev_indexes++;
6291 num_stripes++;
6292 }
6293 }
6294
6295 *num_stripes_ret = num_stripes;
6296 *max_errors_ret = max_errors;
Qu Wenruo4c664612021-09-15 15:17:16 +08006297 bioc->num_tgtdevs = tgtdev_indexes;
6298 *bioc_ret = bioc;
Liu Bo73c0f222017-03-14 13:33:58 -07006299}
6300
Liu Bo2b19a1f2017-03-14 13:34:00 -07006301static bool need_full_stripe(enum btrfs_map_op op)
6302{
6303 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
6304}
6305
Nikolay Borisov5f141122019-06-03 12:05:03 +03006306/*
Michal Rostecki42034312021-01-27 14:57:27 +01006307 * Calculate the geometry of a particular (address, len) tuple. This
6308 * information is used to calculate how big a particular bio can get before it
6309 * straddles a stripe.
Nikolay Borisov5f141122019-06-03 12:05:03 +03006310 *
Michal Rostecki42034312021-01-27 14:57:27 +01006311 * @fs_info: the filesystem
6312 * @em: mapping containing the logical extent
6313 * @op: type of operation - write or read
6314 * @logical: address that we want to figure out the geometry of
Michal Rostecki42034312021-01-27 14:57:27 +01006315 * @io_geom: pointer used to return values
Nikolay Borisov5f141122019-06-03 12:05:03 +03006316 *
6317 * Returns < 0 in case a chunk for the given logical address cannot be found,
6318 * usually shouldn't happen unless @logical is corrupted, 0 otherwise.
6319 */
Michal Rostecki42034312021-01-27 14:57:27 +01006320int btrfs_get_io_geometry(struct btrfs_fs_info *fs_info, struct extent_map *em,
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006321 enum btrfs_map_op op, u64 logical,
Michal Rostecki42034312021-01-27 14:57:27 +01006322 struct btrfs_io_geometry *io_geom)
Nikolay Borisov5f141122019-06-03 12:05:03 +03006323{
Nikolay Borisov5f141122019-06-03 12:05:03 +03006324 struct map_lookup *map;
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006325 u64 len;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006326 u64 offset;
6327 u64 stripe_offset;
6328 u64 stripe_nr;
6329 u64 stripe_len;
6330 u64 raid56_full_stripe_start = (u64)-1;
6331 int data_stripes;
6332
6333 ASSERT(op != BTRFS_MAP_DISCARD);
6334
Nikolay Borisov5f141122019-06-03 12:05:03 +03006335 map = em->map_lookup;
6336 /* Offset of this logical address in the chunk */
6337 offset = logical - em->start;
6338 /* Len of a stripe in a chunk */
6339 stripe_len = map->stripe_len;
David Sterba1a9fd412021-05-21 17:42:23 +02006340 /* Stripe where this block falls in */
Nikolay Borisov5f141122019-06-03 12:05:03 +03006341 stripe_nr = div64_u64(offset, stripe_len);
6342 /* Offset of stripe in the chunk */
6343 stripe_offset = stripe_nr * stripe_len;
6344 if (offset < stripe_offset) {
6345 btrfs_crit(fs_info,
6346"stripe math has gone wrong, stripe_offset=%llu offset=%llu start=%llu logical=%llu stripe_len=%llu",
6347 stripe_offset, offset, em->start, logical, stripe_len);
Michal Rostecki42034312021-01-27 14:57:27 +01006348 return -EINVAL;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006349 }
6350
6351 /* stripe_offset is the offset of this block in its stripe */
6352 stripe_offset = offset - stripe_offset;
6353 data_stripes = nr_data_stripes(map);
6354
Qu Wenruobf083872021-11-19 14:19:33 +08006355 /* Only stripe based profiles needs to check against stripe length. */
6356 if (map->type & BTRFS_BLOCK_GROUP_STRIPE_MASK) {
Nikolay Borisov5f141122019-06-03 12:05:03 +03006357 u64 max_len = stripe_len - stripe_offset;
6358
6359 /*
6360 * In case of raid56, we need to know the stripe aligned start
6361 */
6362 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
6363 unsigned long full_stripe_len = stripe_len * data_stripes;
6364 raid56_full_stripe_start = offset;
6365
6366 /*
6367 * Allow a write of a full stripe, but make sure we
6368 * don't allow straddling of stripes
6369 */
6370 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
6371 full_stripe_len);
6372 raid56_full_stripe_start *= full_stripe_len;
6373
6374 /*
6375 * For writes to RAID[56], allow a full stripeset across
6376 * all disks. For other RAID types and for RAID[56]
6377 * reads, just allow a single stripe (on a single disk).
6378 */
6379 if (op == BTRFS_MAP_WRITE) {
6380 max_len = stripe_len * data_stripes -
6381 (offset - raid56_full_stripe_start);
6382 }
6383 }
6384 len = min_t(u64, em->len - offset, max_len);
6385 } else {
6386 len = em->len - offset;
6387 }
6388
6389 io_geom->len = len;
6390 io_geom->offset = offset;
6391 io_geom->stripe_len = stripe_len;
6392 io_geom->stripe_nr = stripe_nr;
6393 io_geom->stripe_offset = stripe_offset;
6394 io_geom->raid56_stripe_offset = raid56_full_stripe_start;
6395
Michal Rostecki42034312021-01-27 14:57:27 +01006396 return 0;
Nikolay Borisov5f141122019-06-03 12:05:03 +03006397}
6398
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006399static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
6400 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04006401 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +08006402 struct btrfs_io_context **bioc_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006403 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04006404{
6405 struct extent_map *em;
6406 struct map_lookup *map;
Chris Mason593060d2008-03-25 16:50:33 -04006407 u64 stripe_offset;
6408 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006409 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01006410 u32 stripe_index;
David Sterbacff82672019-05-17 11:43:45 +02006411 int data_stripes;
Chris Masoncea9e442008-04-09 16:28:12 -04006412 int i;
Li Zefande11cc12011-12-01 12:55:47 +08006413 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04006414 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04006415 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08006416 int tgtdev_indexes = 0;
Qu Wenruo4c664612021-09-15 15:17:16 +08006417 struct btrfs_io_context *bioc = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01006418 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
6419 int dev_replace_is_ongoing = 0;
6420 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006421 int patch_the_first_stripe_for_dev_replace = 0;
6422 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006423 u64 raid56_full_stripe_start = (u64)-1;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006424 struct btrfs_io_geometry geom;
6425
Qu Wenruo4c664612021-09-15 15:17:16 +08006426 ASSERT(bioc_ret);
David Sterba75fb2e92018-08-03 00:36:29 +02006427 ASSERT(op != BTRFS_MAP_DISCARD);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006428
Michal Rostecki42034312021-01-27 14:57:27 +01006429 em = btrfs_get_chunk_map(fs_info, logical, *length);
6430 ASSERT(!IS_ERR(em));
6431
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08006432 ret = btrfs_get_io_geometry(fs_info, em, op, logical, &geom);
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006433 if (ret < 0)
6434 return ret;
6435
Jeff Mahoney95617d62015-06-03 10:55:48 -04006436 map = em->map_lookup;
Chris Mason593060d2008-03-25 16:50:33 -04006437
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006438 *length = geom.len;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03006439 stripe_len = geom.stripe_len;
6440 stripe_nr = geom.stripe_nr;
6441 stripe_offset = geom.stripe_offset;
6442 raid56_full_stripe_start = geom.raid56_stripe_offset;
David Sterbacff82672019-05-17 11:43:45 +02006443 data_stripes = nr_data_stripes(map);
Chris Mason593060d2008-03-25 16:50:33 -04006444
David Sterbacb5583d2018-09-07 16:11:23 +02006445 down_read(&dev_replace->rwsem);
Stefan Behrens472262f2012-11-06 14:43:46 +01006446 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
David Sterba53176dd2018-04-05 01:41:06 +02006447 /*
6448 * Hold the semaphore for read during the whole operation, write is
6449 * requested at commit time but must wait.
6450 */
Stefan Behrens472262f2012-11-06 14:43:46 +01006451 if (!dev_replace_is_ongoing)
David Sterbacb5583d2018-09-07 16:11:23 +02006452 up_read(&dev_replace->rwsem);
Stefan Behrens472262f2012-11-06 14:43:46 +01006453
Stefan Behrensad6d6202012-11-06 15:06:47 +01006454 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07006455 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07006456 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
6457 dev_replace->srcdev->devid,
6458 &mirror_num,
6459 &physical_to_patch_in_first_stripe);
6460 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006461 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07006462 else
6463 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006464 } else if (mirror_num > map->num_stripes) {
6465 mirror_num = 0;
6466 }
6467
Chris Masonf2d8d742008-04-21 10:03:05 -04006468 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04006469 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00006470 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01006471 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6472 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08006473 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08006474 mirror_num = 1;
David Sterbac7369b32019-05-31 15:39:31 +02006475 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08006476 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04006477 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04006478 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04006479 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04006480 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01006481 stripe_index = find_live_mirror(fs_info, map, 0,
Stefan Behrens30d98612012-11-06 14:52:18 +01006482 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006483 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04006484 }
Chris Mason2fff7342008-04-29 14:12:09 -04006485
Chris Mason611f0e02008-04-03 16:29:03 -04006486 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08006487 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04006488 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006489 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04006490 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006491 } else {
6492 mirror_num = 1;
6493 }
Chris Mason2fff7342008-04-29 14:12:09 -04006494
Chris Mason321aecc2008-04-16 10:49:51 -04006495 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01006496 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04006497
David Sterba47c57132015-02-20 18:43:47 +01006498 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04006499 stripe_index *= map->sub_stripes;
6500
Anand Jainde483732017-10-12 16:43:00 +08006501 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04006502 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04006503 else if (mirror_num)
6504 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04006505 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04006506 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01006507 stripe_index = find_live_mirror(fs_info, map,
6508 stripe_index,
Stefan Behrens30d98612012-11-06 14:52:18 +01006509 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04006510 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04006511 }
David Woodhouse53b381b2013-01-29 18:40:14 -05006512
Zhao Leiffe2d202015-01-20 15:11:44 +08006513 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08006514 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006515 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07006516 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbacff82672019-05-17 11:43:45 +02006517 stripe_len * data_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05006518
6519 /* RAID[56] write or recovery. Return all stripes */
6520 num_stripes = map->num_stripes;
6521 max_errors = nr_parity_stripes(map);
6522
David Woodhouse53b381b2013-01-29 18:40:14 -05006523 *length = map->stripe_len;
6524 stripe_index = 0;
6525 stripe_offset = 0;
6526 } else {
6527 /*
6528 * Mirror #0 or #1 means the original data block.
6529 * Mirror #2 is RAID5 parity block.
6530 * Mirror #3 is RAID6 Q block.
6531 */
David Sterba47c57132015-02-20 18:43:47 +01006532 stripe_nr = div_u64_rem(stripe_nr,
David Sterbacff82672019-05-17 11:43:45 +02006533 data_stripes, &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05006534 if (mirror_num > 1)
David Sterbacff82672019-05-17 11:43:45 +02006535 stripe_index = data_stripes + mirror_num - 2;
David Woodhouse53b381b2013-01-29 18:40:14 -05006536
6537 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01006538 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
6539 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08006540 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08006541 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05006542 }
Chris Mason8790d502008-04-03 16:29:03 -04006543 } else {
6544 /*
David Sterba47c57132015-02-20 18:43:47 +01006545 * after this, stripe_nr is the number of stripes on this
6546 * device we have to walk to find the data, and stripe_index is
6547 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04006548 */
David Sterba47c57132015-02-20 18:43:47 +01006549 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
6550 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006551 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04006552 }
Josef Bacike042d1e2016-04-12 12:54:40 -04006553 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006554 btrfs_crit(fs_info,
6555 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04006556 stripe_index, map->num_stripes);
6557 ret = -EINVAL;
6558 goto out;
6559 }
Chris Mason593060d2008-03-25 16:50:33 -04006560
Stefan Behrens472262f2012-11-06 14:43:46 +01006561 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07006562 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07006563 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006564 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006565 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01006566 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08006567 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006568 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08006569
Qu Wenruo731ccf12021-09-23 14:00:08 +08006570 bioc = alloc_btrfs_io_context(fs_info, num_alloc_stripes, tgtdev_indexes);
Qu Wenruo4c664612021-09-15 15:17:16 +08006571 if (!bioc) {
Li Zefande11cc12011-12-01 12:55:47 +08006572 ret = -ENOMEM;
6573 goto out;
6574 }
Nikolay Borisov608769a2020-07-02 16:46:41 +03006575
6576 for (i = 0; i < num_stripes; i++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006577 bioc->stripes[i].physical = map->stripes[stripe_index].physical +
Nikolay Borisov608769a2020-07-02 16:46:41 +03006578 stripe_offset + stripe_nr * map->stripe_len;
Qu Wenruo4c664612021-09-15 15:17:16 +08006579 bioc->stripes[i].dev = map->stripes[stripe_index].dev;
Nikolay Borisov608769a2020-07-02 16:46:41 +03006580 stripe_index++;
6581 }
Li Zefande11cc12011-12-01 12:55:47 +08006582
Qu Wenruo4c664612021-09-15 15:17:16 +08006583 /* Build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07006584 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
6585 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006586 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01006587 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006588
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006589 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01006590 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006591
6592 /* Fill in the logical address of each stripe */
David Sterbacff82672019-05-17 11:43:45 +02006593 tmp = stripe_nr * data_stripes;
6594 for (i = 0; i < data_stripes; i++)
Qu Wenruo4c664612021-09-15 15:17:16 +08006595 bioc->raid_map[(i + rot) % num_stripes] =
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006596 em->start + (tmp + i) * map->stripe_len;
6597
Qu Wenruo4c664612021-09-15 15:17:16 +08006598 bioc->raid_map[(i + rot) % map->num_stripes] = RAID5_P_STRIPE;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006599 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Qu Wenruo4c664612021-09-15 15:17:16 +08006600 bioc->raid_map[(i + rot + 1) % num_stripes] =
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006601 RAID6_Q_STRIPE;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006602
Qu Wenruo4c664612021-09-15 15:17:16 +08006603 sort_parity_stripes(bioc, num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04006604 }
Li Zefande11cc12011-12-01 12:55:47 +08006605
Liu Bo2b19a1f2017-03-14 13:34:00 -07006606 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08006607 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08006608
Liu Bo73c0f222017-03-14 13:33:58 -07006609 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07006610 need_full_stripe(op)) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006611 handle_ops_on_dev_replace(op, &bioc, dev_replace, logical,
Naohiro Aota6143c232021-02-04 19:22:12 +09006612 &num_stripes, &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01006613 }
6614
Qu Wenruo4c664612021-09-15 15:17:16 +08006615 *bioc_ret = bioc;
6616 bioc->map_type = map->type;
6617 bioc->num_stripes = num_stripes;
6618 bioc->max_errors = max_errors;
6619 bioc->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006620
6621 /*
6622 * this is the case that REQ_READ && dev_replace_is_ongoing &&
6623 * mirror_num == num_stripes + 1 && dev_replace target drive is
6624 * available as a mirror
6625 */
6626 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
6627 WARN_ON(num_stripes > 1);
Qu Wenruo4c664612021-09-15 15:17:16 +08006628 bioc->stripes[0].dev = dev_replace->tgtdev;
6629 bioc->stripes[0].physical = physical_to_patch_in_first_stripe;
6630 bioc->mirror_num = map->num_stripes + 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01006631 }
Chris Masoncea9e442008-04-09 16:28:12 -04006632out:
Liu Bo73beece2015-07-17 16:49:19 +08006633 if (dev_replace_is_ongoing) {
David Sterba53176dd2018-04-05 01:41:06 +02006634 lockdep_assert_held(&dev_replace->rwsem);
6635 /* Unlock and let waiting writers proceed */
David Sterbacb5583d2018-09-07 16:11:23 +02006636 up_read(&dev_replace->rwsem);
Liu Bo73beece2015-07-17 16:49:19 +08006637 }
Chris Mason0b86a832008-03-24 15:01:56 -04006638 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08006639 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04006640}
6641
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006642int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04006643 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +08006644 struct btrfs_io_context **bioc_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04006645{
David Sterba75fb2e92018-08-03 00:36:29 +02006646 if (op == BTRFS_MAP_DISCARD)
6647 return __btrfs_map_block_for_discard(fs_info, logical,
Qu Wenruo4c664612021-09-15 15:17:16 +08006648 length, bioc_ret);
David Sterba75fb2e92018-08-03 00:36:29 +02006649
Qu Wenruo4c664612021-09-15 15:17:16 +08006650 return __btrfs_map_block(fs_info, op, logical, length, bioc_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006651 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04006652}
6653
Miao Xieaf8e2d12014-10-23 14:42:50 +08006654/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006655int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08006656 u64 logical, u64 *length,
Qu Wenruo4c664612021-09-15 15:17:16 +08006657 struct btrfs_io_context **bioc_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08006658{
Qu Wenruo4c664612021-09-15 15:17:16 +08006659 return __btrfs_map_block(fs_info, op, logical, length, bioc_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08006660}
6661
Qu Wenruo4c664612021-09-15 15:17:16 +08006662static inline void btrfs_end_bioc(struct btrfs_io_context *bioc, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006663{
Qu Wenruo4c664612021-09-15 15:17:16 +08006664 bio->bi_private = bioc->private;
6665 bio->bi_end_io = bioc->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006666 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006667
Qu Wenruo4c664612021-09-15 15:17:16 +08006668 btrfs_put_bioc(bioc);
Miao Xie8408c712014-06-19 10:42:55 +08006669}
6670
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006671static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006672{
Qu Wenruo4c664612021-09-15 15:17:16 +08006673 struct btrfs_io_context *bioc = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006674 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006675
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006676 if (bio->bi_status) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006677 atomic_inc(&bioc->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006678 if (bio->bi_status == BLK_STS_IOERR ||
6679 bio->bi_status == BLK_STS_TARGET) {
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006680 struct btrfs_device *dev = btrfs_bio(bio)->device;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006681
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006682 ASSERT(dev->bdev);
Naohiro Aotacfe94442021-02-04 19:21:59 +09006683 if (btrfs_op(bio) == BTRFS_MAP_WRITE)
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006684 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006685 BTRFS_DEV_STAT_WRITE_ERRS);
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006686 else if (!(bio->bi_opf & REQ_RAHEAD))
6687 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006688 BTRFS_DEV_STAT_READ_ERRS);
Nikolay Borisov3eee86c2020-07-02 15:23:31 +03006689 if (bio->bi_opf & REQ_PREFLUSH)
6690 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006691 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens442a4f62012-05-25 16:06:08 +02006692 }
6693 }
Chris Mason8790d502008-04-03 16:29:03 -04006694
Qu Wenruo4c664612021-09-15 15:17:16 +08006695 if (bio == bioc->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006696 is_orig_bio = 1;
6697
Qu Wenruo4c664612021-09-15 15:17:16 +08006698 btrfs_bio_counter_dec(bioc->fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006699
Qu Wenruo4c664612021-09-15 15:17:16 +08006700 if (atomic_dec_and_test(&bioc->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006701 if (!is_orig_bio) {
6702 bio_put(bio);
Qu Wenruo4c664612021-09-15 15:17:16 +08006703 bio = bioc->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006704 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006705
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006706 btrfs_bio(bio)->mirror_num = bioc->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006707 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006708 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006709 */
Qu Wenruo4c664612021-09-15 15:17:16 +08006710 if (atomic_read(&bioc->error) > bioc->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006711 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006712 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006713 /*
6714 * this bio is actually up to date, we didn't
6715 * go over the max number of errors
6716 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006717 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006718 }
Miao Xiec55f1392014-06-19 10:42:54 +08006719
Qu Wenruo4c664612021-09-15 15:17:16 +08006720 btrfs_end_bioc(bioc, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006721 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006722 bio_put(bio);
6723 }
Chris Mason8790d502008-04-03 16:29:03 -04006724}
6725
Qu Wenruo4c664612021-09-15 15:17:16 +08006726static void submit_stripe_bio(struct btrfs_io_context *bioc, struct bio *bio,
Nikolay Borisovc31efbd2020-07-03 11:14:27 +03006727 u64 physical, struct btrfs_device *dev)
Josef Bacikde1ee922012-10-19 16:50:56 -04006728{
Qu Wenruo4c664612021-09-15 15:17:16 +08006729 struct btrfs_fs_info *fs_info = bioc->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006730
Qu Wenruo4c664612021-09-15 15:17:16 +08006731 bio->bi_private = bioc;
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006732 btrfs_bio(bio)->device = dev;
Josef Bacikde1ee922012-10-19 16:50:56 -04006733 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006734 bio->bi_iter.bi_sector = physical >> 9;
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09006735 /*
6736 * For zone append writing, bi_sector must point the beginning of the
6737 * zone
6738 */
6739 if (bio_op(bio) == REQ_OP_ZONE_APPEND) {
6740 if (btrfs_dev_is_sequential(dev, physical)) {
6741 u64 zone_start = round_down(physical, fs_info->zone_size);
6742
6743 bio->bi_iter.bi_sector = zone_start >> SECTOR_SHIFT;
6744 } else {
6745 bio->bi_opf &= ~REQ_OP_ZONE_APPEND;
6746 bio->bi_opf |= REQ_OP_WRITE;
6747 }
6748 }
Misono Tomohiro672d5992018-08-02 16:19:07 +09006749 btrfs_debug_in_rcu(fs_info,
6750 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
David Sterba1201b582020-11-26 15:41:27 +01006751 bio_op(bio), bio->bi_opf, bio->bi_iter.bi_sector,
David Sterba1db45a32019-11-28 15:31:46 +01006752 (unsigned long)dev->bdev->bd_dev, rcu_str_deref(dev->name),
6753 dev->devid, bio->bi_iter.bi_size);
Christoph Hellwig74d46992017-08-23 19:10:32 +02006754 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006755
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006756 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006757
Chris Mason08635ba2019-07-10 12:28:14 -07006758 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006759}
6760
Qu Wenruo4c664612021-09-15 15:17:16 +08006761static void bioc_error(struct btrfs_io_context *bioc, struct bio *bio, u64 logical)
Josef Bacikde1ee922012-10-19 16:50:56 -04006762{
Qu Wenruo4c664612021-09-15 15:17:16 +08006763 atomic_inc(&bioc->error);
6764 if (atomic_dec_and_test(&bioc->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006765 /* Should be the original bio. */
Qu Wenruo4c664612021-09-15 15:17:16 +08006766 WARN_ON(bio != bioc->orig_bio);
Miao Xie8408c712014-06-19 10:42:55 +08006767
Qu Wenruoc3a3b192021-09-15 15:17:18 +08006768 btrfs_bio(bio)->mirror_num = bioc->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006769 bio->bi_iter.bi_sector = logical >> 9;
Qu Wenruo4c664612021-09-15 15:17:16 +08006770 if (atomic_read(&bioc->error) > bioc->max_errors)
Anand Jain102ed2c2017-10-14 08:34:02 +08006771 bio->bi_status = BLK_STS_IOERR;
6772 else
6773 bio->bi_status = BLK_STS_OK;
Qu Wenruo4c664612021-09-15 15:17:16 +08006774 btrfs_end_bioc(bioc, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006775 }
6776}
6777
Omar Sandoval58efbc92017-08-22 23:45:59 -07006778blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
Chris Mason08635ba2019-07-10 12:28:14 -07006779 int mirror_num)
Chris Mason0b86a832008-03-24 15:01:56 -04006780{
Chris Mason0b86a832008-03-24 15:01:56 -04006781 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006782 struct bio *first_bio = bio;
David Sterba1201b582020-11-26 15:41:27 +01006783 u64 logical = bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006784 u64 length = 0;
6785 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006786 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006787 int dev_nr;
6788 int total_devs;
Qu Wenruo4c664612021-09-15 15:17:16 +08006789 struct btrfs_io_context *bioc = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006790
Kent Overstreet4f024f32013-10-11 15:44:27 -07006791 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006792 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006793
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006794 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006795 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Qu Wenruo4c664612021-09-15 15:17:16 +08006796 &map_length, &bioc, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006797 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006798 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006799 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006800 }
Chris Masoncea9e442008-04-09 16:28:12 -04006801
Qu Wenruo4c664612021-09-15 15:17:16 +08006802 total_devs = bioc->num_stripes;
6803 bioc->orig_bio = first_bio;
6804 bioc->private = first_bio->bi_private;
6805 bioc->end_io = first_bio->bi_end_io;
Qu Wenruo4c664612021-09-15 15:17:16 +08006806 atomic_set(&bioc->stripes_pending, bioc->num_stripes);
David Woodhouse53b381b2013-01-29 18:40:14 -05006807
Qu Wenruo4c664612021-09-15 15:17:16 +08006808 if ((bioc->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Naohiro Aotacfe94442021-02-04 19:21:59 +09006809 ((btrfs_op(bio) == BTRFS_MAP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006810 /* In this case, map_length has been set to the length of
6811 a single stripe; not the whole write */
Naohiro Aotacfe94442021-02-04 19:21:59 +09006812 if (btrfs_op(bio) == BTRFS_MAP_WRITE) {
Qu Wenruo6a258d72021-09-23 14:00:09 +08006813 ret = raid56_parity_write(bio, bioc, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006814 } else {
Qu Wenruo6a258d72021-09-23 14:00:09 +08006815 ret = raid56_parity_recover(bio, bioc, map_length,
6816 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006817 }
Miao Xie42452152014-11-25 16:39:28 +08006818
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006819 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006820 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006821 }
6822
Chris Masoncea9e442008-04-09 16:28:12 -04006823 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006824 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006825 "mapping failed logical %llu bio len %llu len %llu",
6826 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006827 BUG();
6828 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006829
Zhao Lei08da7572015-02-12 15:42:16 +08006830 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006831 dev = bioc->stripes[dev_nr].dev;
Nikolay Borisovfc8a1682018-11-08 16:16:38 +02006832 if (!dev || !dev->bdev || test_bit(BTRFS_DEV_STATE_MISSING,
6833 &dev->dev_state) ||
Naohiro Aotacfe94442021-02-04 19:21:59 +09006834 (btrfs_op(first_bio) == BTRFS_MAP_WRITE &&
Anand Jainebbede42017-12-04 12:54:52 +08006835 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Qu Wenruo4c664612021-09-15 15:17:16 +08006836 bioc_error(bioc, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006837 continue;
6838 }
6839
David Sterba3aa8e072017-06-02 17:38:30 +02006840 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006841 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006842 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006843 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006844
Qu Wenruo4c664612021-09-15 15:17:16 +08006845 submit_stripe_bio(bioc, bio, bioc->stripes[dev_nr].physical, dev);
Chris Mason239b14b2008-03-24 15:02:07 -04006846 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006847 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006848 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006849}
6850
Josef Bacik562d7b12021-10-05 16:12:42 -04006851static bool dev_args_match_fs_devices(const struct btrfs_dev_lookup_args *args,
6852 const struct btrfs_fs_devices *fs_devices)
6853{
6854 if (args->fsid == NULL)
6855 return true;
6856 if (memcmp(fs_devices->metadata_uuid, args->fsid, BTRFS_FSID_SIZE) == 0)
6857 return true;
6858 return false;
6859}
6860
6861static bool dev_args_match_device(const struct btrfs_dev_lookup_args *args,
6862 const struct btrfs_device *device)
6863{
6864 ASSERT((args->devid != (u64)-1) || args->missing);
6865
6866 if ((args->devid != (u64)-1) && device->devid != args->devid)
6867 return false;
6868 if (args->uuid && memcmp(device->uuid, args->uuid, BTRFS_UUID_SIZE) != 0)
6869 return false;
6870 if (!args->missing)
6871 return true;
6872 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state) &&
6873 !device->bdev)
6874 return true;
6875 return false;
6876}
6877
Anand Jain09ba3bc2019-01-19 14:48:55 +08006878/*
6879 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
6880 * return NULL.
6881 *
6882 * If devid and uuid are both specified, the match must be exact, otherwise
6883 * only devid is used.
Anand Jain09ba3bc2019-01-19 14:48:55 +08006884 */
Josef Bacik562d7b12021-10-05 16:12:42 -04006885struct btrfs_device *btrfs_find_device(const struct btrfs_fs_devices *fs_devices,
6886 const struct btrfs_dev_lookup_args *args)
Chris Mason0b86a832008-03-24 15:01:56 -04006887{
Yan Zheng2b820322008-11-17 21:11:30 -05006888 struct btrfs_device *device;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006889 struct btrfs_fs_devices *seed_devs;
Chris Mason0b86a832008-03-24 15:01:56 -04006890
Josef Bacik562d7b12021-10-05 16:12:42 -04006891 if (dev_args_match_fs_devices(args, fs_devices)) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006892 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Josef Bacik562d7b12021-10-05 16:12:42 -04006893 if (dev_args_match_device(args, device))
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006894 return device;
6895 }
6896 }
6897
6898 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
Josef Bacik562d7b12021-10-05 16:12:42 -04006899 if (!dev_args_match_fs_devices(args, seed_devs))
6900 continue;
6901 list_for_each_entry(device, &seed_devs->devices, dev_list) {
6902 if (dev_args_match_device(args, device))
6903 return device;
Yan Zheng2b820322008-11-17 21:11:30 -05006904 }
Yan Zheng2b820322008-11-17 21:11:30 -05006905 }
Nikolay Borisov944d3f92020-07-16 10:25:33 +03006906
Yan Zheng2b820322008-11-17 21:11:30 -05006907 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006908}
6909
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006910static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006911 u64 devid, u8 *dev_uuid)
6912{
6913 struct btrfs_device *device;
Josef Bacikfccc0002020-08-31 10:52:42 -04006914 unsigned int nofs_flag;
Chris Masondfe25022008-05-13 13:46:40 -04006915
Josef Bacikfccc0002020-08-31 10:52:42 -04006916 /*
6917 * We call this under the chunk_mutex, so we want to use NOFS for this
6918 * allocation, however we don't want to change btrfs_alloc_device() to
6919 * always do NOFS because we use it in a lot of other GFP_KERNEL safe
6920 * places.
6921 */
6922 nofs_flag = memalloc_nofs_save();
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006923 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
Josef Bacikfccc0002020-08-31 10:52:42 -04006924 memalloc_nofs_restore(nofs_flag);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006925 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006926 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006927
6928 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006929 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006930 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006931
Anand Jaine6e674b2017-12-04 12:54:54 +08006932 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006933 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006934
Chris Masondfe25022008-05-13 13:46:40 -04006935 return device;
6936}
6937
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006938/**
6939 * btrfs_alloc_device - allocate struct btrfs_device
6940 * @fs_info: used only for generating a new devid, can be NULL if
6941 * devid is provided (i.e. @devid != NULL).
6942 * @devid: a pointer to devid for this device. If NULL a new devid
6943 * is generated.
6944 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6945 * is generated.
6946 *
6947 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006948 * on error. Returned struct is not linked onto any lists and must be
David Sterbaa425f9d2018-03-20 15:47:33 +01006949 * destroyed with btrfs_free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006950 */
6951struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6952 const u64 *devid,
6953 const u8 *uuid)
6954{
6955 struct btrfs_device *dev;
6956 u64 tmp;
6957
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306958 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006959 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006960
David Sterbafe4f46d2021-07-26 14:15:21 +02006961 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
6962 if (!dev)
6963 return ERR_PTR(-ENOMEM);
6964
6965 /*
6966 * Preallocate a bio that's always going to be used for flushing device
6967 * barriers and matches the device lifespan
6968 */
6969 dev->flush_bio = bio_kmalloc(GFP_KERNEL, 0);
6970 if (!dev->flush_bio) {
6971 kfree(dev);
6972 return ERR_PTR(-ENOMEM);
6973 }
6974
6975 INIT_LIST_HEAD(&dev->dev_list);
6976 INIT_LIST_HEAD(&dev->dev_alloc_list);
6977 INIT_LIST_HEAD(&dev->post_commit_list);
6978
David Sterbafe4f46d2021-07-26 14:15:21 +02006979 atomic_set(&dev->dev_stats_ccnt, 0);
6980 btrfs_device_data_ordered_init(dev);
David Sterbafe4f46d2021-07-26 14:15:21 +02006981 extent_io_tree_init(fs_info, &dev->alloc_state,
6982 IO_TREE_DEVICE_ALLOC_STATE, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006983
6984 if (devid)
6985 tmp = *devid;
6986 else {
6987 int ret;
6988
6989 ret = find_next_devid(fs_info, &tmp);
6990 if (ret) {
David Sterbaa425f9d2018-03-20 15:47:33 +01006991 btrfs_free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006992 return ERR_PTR(ret);
6993 }
6994 }
6995 dev->devid = tmp;
6996
6997 if (uuid)
6998 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6999 else
7000 generate_random_uuid(dev->uuid);
7001
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03007002 return dev;
7003}
7004
Anand Jain5a2b8e62017-10-09 11:07:45 +08007005static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08007006 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08007007{
Anand Jain2b902df2017-10-09 11:07:46 +08007008 if (error)
7009 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
7010 devid, uuid);
7011 else
7012 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
7013 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08007014}
7015
Nikolay Borisov39e264a2019-03-25 14:31:25 +02007016static u64 calc_stripe_length(u64 type, u64 chunk_len, int num_stripes)
7017{
David Sterbad58ede82021-07-26 14:15:24 +02007018 const int data_stripes = calc_data_stripes(type, num_stripes);
David Sterbae4f6c6b2019-05-14 01:59:54 +02007019
Nikolay Borisov39e264a2019-03-25 14:31:25 +02007020 return div_u64(chunk_len, data_stripes);
7021}
7022
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007023#if BITS_PER_LONG == 32
7024/*
7025 * Due to page cache limit, metadata beyond BTRFS_32BIT_MAX_FILE_SIZE
7026 * can't be accessed on 32bit systems.
7027 *
7028 * This function do mount time check to reject the fs if it already has
7029 * metadata chunk beyond that limit.
7030 */
7031static int check_32bit_meta_chunk(struct btrfs_fs_info *fs_info,
7032 u64 logical, u64 length, u64 type)
7033{
7034 if (!(type & BTRFS_BLOCK_GROUP_METADATA))
7035 return 0;
7036
7037 if (logical + length < MAX_LFS_FILESIZE)
7038 return 0;
7039
7040 btrfs_err_32bit_limit(fs_info);
7041 return -EOVERFLOW;
7042}
7043
7044/*
7045 * This is to give early warning for any metadata chunk reaching
7046 * BTRFS_32BIT_EARLY_WARN_THRESHOLD.
7047 * Although we can still access the metadata, it's not going to be possible
7048 * once the limit is reached.
7049 */
7050static void warn_32bit_meta_chunk(struct btrfs_fs_info *fs_info,
7051 u64 logical, u64 length, u64 type)
7052{
7053 if (!(type & BTRFS_BLOCK_GROUP_METADATA))
7054 return;
7055
7056 if (logical + length < BTRFS_32BIT_EARLY_WARN_THRESHOLD)
7057 return;
7058
7059 btrfs_warn_32bit_limit(fs_info);
7060}
7061#endif
7062
David Sterba9690ac02019-03-20 16:43:07 +01007063static int read_one_chunk(struct btrfs_key *key, struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007064 struct btrfs_chunk *chunk)
7065{
Josef Bacik562d7b12021-10-05 16:12:42 -04007066 BTRFS_DEV_LOOKUP_ARGS(args);
David Sterba9690ac02019-03-20 16:43:07 +01007067 struct btrfs_fs_info *fs_info = leaf->fs_info;
David Sterbac8bf1b62019-05-17 11:43:17 +02007068 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04007069 struct map_lookup *map;
7070 struct extent_map *em;
7071 u64 logical;
7072 u64 length;
7073 u64 devid;
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007074 u64 type;
Chris Masona4437552008-04-18 10:29:38 -04007075 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04007076 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04007077 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04007078 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04007079
Chris Masone17cade2008-04-15 15:41:47 -04007080 logical = key->offset;
7081 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007082 type = btrfs_chunk_type(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08007083 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07007084
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007085#if BITS_PER_LONG == 32
7086 ret = check_32bit_meta_chunk(fs_info, logical, length, type);
7087 if (ret < 0)
7088 return ret;
7089 warn_32bit_meta_chunk(fs_info, logical, length, type);
7090#endif
7091
Qu Wenruo075cb3c2019-03-20 13:42:33 +08007092 /*
7093 * Only need to verify chunk item if we're reading from sys chunk array,
7094 * as chunk item in tree block is already verified by tree-checker.
7095 */
7096 if (leaf->start == BTRFS_SUPER_INFO_OFFSET) {
David Sterbaddaf1d52019-03-20 16:40:48 +01007097 ret = btrfs_check_chunk_valid(leaf, chunk, logical);
Qu Wenruo075cb3c2019-03-20 13:42:33 +08007098 if (ret)
7099 return ret;
7100 }
Chris Masona061fc82008-05-07 11:43:44 -04007101
David Sterbac8bf1b62019-05-17 11:43:17 +02007102 read_lock(&map_tree->lock);
7103 em = lookup_extent_mapping(map_tree, logical, 1);
7104 read_unlock(&map_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04007105
7106 /* already mapped? */
7107 if (em && em->start <= logical && em->start + em->len > logical) {
7108 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04007109 return 0;
7110 } else if (em) {
7111 free_extent_map(em);
7112 }
Chris Mason0b86a832008-03-24 15:01:56 -04007113
David Sterba172ddd62011-04-21 00:48:27 +02007114 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04007115 if (!em)
7116 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04007117 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04007118 if (!map) {
7119 free_extent_map(em);
7120 return -ENOMEM;
7121 }
7122
Wang Shilong298a8f92014-06-19 10:42:52 +08007123 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04007124 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04007125 em->start = logical;
7126 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04007127 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007128 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04007129 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04007130
Chris Mason593060d2008-03-25 16:50:33 -04007131 map->num_stripes = num_stripes;
7132 map->io_width = btrfs_chunk_io_width(leaf, chunk);
7133 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04007134 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007135 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04007136 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Qu Wenruocf90d882018-08-01 10:37:19 +08007137 map->verified_stripes = 0;
Qu Wenruoe9306ad2021-02-25 09:18:14 +08007138 em->orig_block_len = calc_stripe_length(type, em->len,
Nikolay Borisov39e264a2019-03-25 14:31:25 +02007139 map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04007140 for (i = 0; i < num_stripes; i++) {
7141 map->stripes[i].physical =
7142 btrfs_stripe_offset_nr(leaf, chunk, i);
7143 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Josef Bacik562d7b12021-10-05 16:12:42 -04007144 args.devid = devid;
Chris Masona4437552008-04-18 10:29:38 -04007145 read_extent_buffer(leaf, uuid, (unsigned long)
7146 btrfs_stripe_dev_uuid_nr(chunk, i),
7147 BTRFS_UUID_SIZE);
Josef Bacik562d7b12021-10-05 16:12:42 -04007148 args.uuid = uuid;
7149 map->stripes[i].dev = btrfs_find_device(fs_info->fs_devices, &args);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04007150 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007151 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04007152 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08007153 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007154 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04007155 }
Chris Masondfe25022008-05-13 13:46:40 -04007156 if (!map->stripes[i].dev) {
7157 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007158 add_missing_dev(fs_info->fs_devices, devid,
7159 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08007160 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04007161 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08007162 btrfs_err(fs_info,
7163 "failed to init missing dev %llu: %ld",
7164 devid, PTR_ERR(map->stripes[i].dev));
7165 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04007166 }
Anand Jain2b902df2017-10-09 11:07:46 +08007167 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04007168 }
Anand Jaine12c9622017-12-04 12:54:53 +08007169 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
7170 &(map->stripes[i].dev->dev_state));
7171
Chris Mason0b86a832008-03-24 15:01:56 -04007172 }
7173
David Sterbac8bf1b62019-05-17 11:43:17 +02007174 write_lock(&map_tree->lock);
7175 ret = add_extent_mapping(map_tree, em, 0);
7176 write_unlock(&map_tree->lock);
Qu Wenruo64f64f42018-08-01 10:37:20 +08007177 if (ret < 0) {
7178 btrfs_err(fs_info,
7179 "failed to add chunk map, start=%llu len=%llu: %d",
7180 em->start, em->len, ret);
7181 }
Chris Mason0b86a832008-03-24 15:01:56 -04007182 free_extent_map(em);
7183
Qu Wenruo64f64f42018-08-01 10:37:20 +08007184 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04007185}
7186
Jeff Mahoney143bede2012-03-01 14:56:26 +01007187static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007188 struct btrfs_dev_item *dev_item,
7189 struct btrfs_device *device)
7190{
7191 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04007192
7193 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04007194 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
7195 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08007196 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04007197 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08007198 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04007199 device->type = btrfs_device_type(leaf, dev_item);
7200 device->io_align = btrfs_device_io_align(leaf, dev_item);
7201 device->io_width = btrfs_device_io_width(leaf, dev_item);
7202 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01007203 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08007204 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04007205
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02007206 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04007207 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04007208}
7209
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007210static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08007211 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05007212{
7213 struct btrfs_fs_devices *fs_devices;
7214 int ret;
7215
David Sterbaa32bf9a2018-03-16 02:21:22 +01007216 lockdep_assert_held(&uuid_mutex);
David Sterba2dfeca92017-06-14 02:48:07 +02007217 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05007218
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03007219 /* This will match only for multi-device seed fs */
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007220 list_for_each_entry(fs_devices, &fs_info->fs_devices->seed_list, seed_list)
Anand Jain44880fd2017-07-29 17:50:09 +08007221 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08007222 return fs_devices;
7223
Yan Zheng2b820322008-11-17 21:11:30 -05007224
Nikolay Borisov7239ff42018-10-30 16:43:23 +02007225 fs_devices = find_fsid(fsid, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05007226 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007227 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08007228 return ERR_PTR(-ENOENT);
7229
Nikolay Borisov7239ff42018-10-30 16:43:23 +02007230 fs_devices = alloc_fs_devices(fsid, NULL);
Miao Xie5f375832014-09-03 21:35:46 +08007231 if (IS_ERR(fs_devices))
7232 return fs_devices;
7233
Johannes Thumshirn0395d842019-11-13 11:27:27 +01007234 fs_devices->seeding = true;
Miao Xie5f375832014-09-03 21:35:46 +08007235 fs_devices->opened = 1;
7236 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007237 }
Yan Zhenge4404d62008-12-12 10:03:26 -05007238
Nikolay Borisov427c8fd2020-08-12 17:04:36 +03007239 /*
7240 * Upon first call for a seed fs fsid, just create a private copy of the
7241 * respective fs_devices and anchor it at fs_info->fs_devices->seed_list
7242 */
Yan Zhenge4404d62008-12-12 10:03:26 -05007243 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08007244 if (IS_ERR(fs_devices))
7245 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007246
Anand Jain897fb572018-04-12 10:29:28 +08007247 ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02007248 if (ret) {
7249 free_fs_devices(fs_devices);
Anand Jainc83b60c2020-09-05 01:34:35 +08007250 return ERR_PTR(ret);
Julia Lawall48d28232012-04-14 11:24:33 +02007251 }
Yan Zheng2b820322008-11-17 21:11:30 -05007252
7253 if (!fs_devices->seeding) {
Anand Jain0226e0e2018-04-12 10:29:27 +08007254 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05007255 free_fs_devices(fs_devices);
Anand Jainc83b60c2020-09-05 01:34:35 +08007256 return ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05007257 }
7258
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007259 list_add(&fs_devices->seed_list, &fs_info->fs_devices->seed_list);
Anand Jainc83b60c2020-09-05 01:34:35 +08007260
Miao Xie5f375832014-09-03 21:35:46 +08007261 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05007262}
7263
David Sterba17850752019-03-20 16:45:15 +01007264static int read_one_dev(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04007265 struct btrfs_dev_item *dev_item)
7266{
Josef Bacik562d7b12021-10-05 16:12:42 -04007267 BTRFS_DEV_LOOKUP_ARGS(args);
David Sterba17850752019-03-20 16:45:15 +01007268 struct btrfs_fs_info *fs_info = leaf->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007269 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04007270 struct btrfs_device *device;
7271 u64 devid;
7272 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08007273 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04007274 u8 dev_uuid[BTRFS_UUID_SIZE];
7275
Josef Bacik562d7b12021-10-05 16:12:42 -04007276 devid = args.devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02007277 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04007278 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02007279 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08007280 BTRFS_FSID_SIZE);
Josef Bacik562d7b12021-10-05 16:12:42 -04007281 args.uuid = dev_uuid;
7282 args.fsid = fs_uuid;
Yan Zheng2b820322008-11-17 21:11:30 -05007283
Nikolay Borisovde37aa52018-10-30 16:43:24 +02007284 if (memcmp(fs_uuid, fs_devices->metadata_uuid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007285 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08007286 if (IS_ERR(fs_devices))
7287 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05007288 }
7289
Josef Bacik562d7b12021-10-05 16:12:42 -04007290 device = btrfs_find_device(fs_info->fs_devices, &args);
Miao Xie5f375832014-09-03 21:35:46 +08007291 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08007292 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08007293 btrfs_report_missing_device(fs_info, devid,
7294 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007295 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08007296 }
Yan Zheng2b820322008-11-17 21:11:30 -05007297
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007298 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08007299 if (IS_ERR(device)) {
7300 btrfs_err(fs_info,
7301 "failed to add missing dev %llu: %ld",
7302 devid, PTR_ERR(device));
7303 return PTR_ERR(device);
7304 }
Anand Jain2b902df2017-10-09 11:07:46 +08007305 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08007306 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08007307 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08007308 if (!btrfs_test_opt(fs_info, DEGRADED)) {
7309 btrfs_report_missing_device(fs_info,
7310 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08007311 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08007312 }
7313 btrfs_report_missing_device(fs_info, devid,
7314 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08007315 }
Miao Xie5f375832014-09-03 21:35:46 +08007316
Anand Jaine6e674b2017-12-04 12:54:54 +08007317 if (!device->bdev &&
7318 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05007319 /*
7320 * this happens when a device that was properly setup
7321 * in the device info lists suddenly goes bad.
7322 * device->bdev is NULL, and so we have to set
7323 * device->missing to one here
7324 */
Miao Xie5f375832014-09-03 21:35:46 +08007325 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08007326 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05007327 }
Miao Xie5f375832014-09-03 21:35:46 +08007328
7329 /* Move the device to its own fs_devices */
7330 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08007331 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
7332 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08007333
7334 list_move(&device->dev_list, &fs_devices->devices);
7335 device->fs_devices->num_devices--;
7336 fs_devices->num_devices++;
7337
7338 device->fs_devices->missing_devices--;
7339 fs_devices->missing_devices++;
7340
7341 device->fs_devices = fs_devices;
7342 }
Yan Zheng2b820322008-11-17 21:11:30 -05007343 }
7344
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007345 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08007346 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05007347 if (device->generation !=
7348 btrfs_device_generation(leaf, dev_item))
7349 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04007350 }
Chris Mason0b86a832008-03-24 15:01:56 -04007351
7352 fill_device_from_item(leaf, dev_item, device);
Anand Jain3a160a92020-11-03 13:49:42 +08007353 if (device->bdev) {
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02007354 u64 max_total_bytes = bdev_nr_bytes(device->bdev);
Anand Jain3a160a92020-11-03 13:49:42 +08007355
7356 if (device->total_bytes > max_total_bytes) {
7357 btrfs_err(fs_info,
7358 "device total_bytes should be at most %llu but found %llu",
7359 max_total_bytes, device->total_bytes);
7360 return -EINVAL;
7361 }
7362 }
Anand Jaine12c9622017-12-04 12:54:53 +08007363 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08007364 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08007365 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05007366 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03007367 atomic64_add(device->total_bytes - device->bytes_used,
7368 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04007369 }
Chris Mason0b86a832008-03-24 15:01:56 -04007370 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007371 return ret;
7372}
7373
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007374int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04007375{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007376 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007377 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04007378 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04007379 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04007380 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01007381 u8 *array_ptr;
7382 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04007383 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007384 u32 num_stripes;
7385 u32 array_size;
7386 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01007387 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07007388 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04007389 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04007390
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007391 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02007392 /*
7393 * This will create extent buffer of nodesize, superblock size is
7394 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
7395 * overallocate but we can keep it as-is, only the first page is used.
7396 */
Josef Bacik3fbaf252020-11-05 10:45:20 -05007397 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET,
7398 root->root_key.objectid, 0);
Liu Boc871b0f2016-06-06 12:01:23 -07007399 if (IS_ERR(sb))
7400 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01007401 set_extent_buffer_uptodate(sb);
David Sterba8a334422011-10-07 18:06:13 +02007402 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04007403 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01007404 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02007405 * pages up-to-date when the page is larger: extent does not cover the
7406 * whole page and consequently check_page_uptodate does not find all
7407 * the page's extents up-to-date (the hole beyond sb),
7408 * write_extent_buffer then triggers a WARN_ON.
7409 *
7410 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
7411 * but sb spans only this function. Add an explicit SetPageUptodate call
7412 * to silence the warning eg. on PowerPC 64.
7413 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007414 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04007415 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05007416
Chris Masona061fc82008-05-07 11:43:44 -04007417 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04007418 array_size = btrfs_super_sys_array_size(super_copy);
7419
David Sterba1ffb22c2014-10-31 19:02:42 +01007420 array_ptr = super_copy->sys_chunk_array;
7421 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
7422 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007423
David Sterba1ffb22c2014-10-31 19:02:42 +01007424 while (cur_offset < array_size) {
7425 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01007426 len = sizeof(*disk_key);
7427 if (cur_offset + len > array_size)
7428 goto out_short_read;
7429
Chris Mason0b86a832008-03-24 15:01:56 -04007430 btrfs_disk_key_to_cpu(&key, disk_key);
7431
David Sterba1ffb22c2014-10-31 19:02:42 +01007432 array_ptr += len;
7433 sb_array_offset += len;
7434 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04007435
Johannes Thumshirn32ab3d12019-10-18 11:58:23 +02007436 if (key.type != BTRFS_CHUNK_ITEM_KEY) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007437 btrfs_err(fs_info,
7438 "unexpected item type %u in sys_array at offset %u",
7439 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04007440 ret = -EIO;
7441 break;
Chris Mason0b86a832008-03-24 15:01:56 -04007442 }
Johannes Thumshirn32ab3d12019-10-18 11:58:23 +02007443
7444 chunk = (struct btrfs_chunk *)sb_array_offset;
7445 /*
7446 * At least one btrfs_chunk with one stripe must be present,
7447 * exact stripe count check comes afterwards
7448 */
7449 len = btrfs_chunk_item_size(1);
7450 if (cur_offset + len > array_size)
7451 goto out_short_read;
7452
7453 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
7454 if (!num_stripes) {
7455 btrfs_err(fs_info,
7456 "invalid number of stripes %u in sys_array at offset %u",
7457 num_stripes, cur_offset);
7458 ret = -EIO;
7459 break;
7460 }
7461
7462 type = btrfs_chunk_type(sb, chunk);
7463 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
7464 btrfs_err(fs_info,
7465 "invalid chunk type %llu in sys_array at offset %u",
7466 type, cur_offset);
7467 ret = -EIO;
7468 break;
7469 }
7470
7471 len = btrfs_chunk_item_size(num_stripes);
7472 if (cur_offset + len > array_size)
7473 goto out_short_read;
7474
7475 ret = read_one_chunk(&key, sb, chunk);
7476 if (ret)
7477 break;
7478
David Sterba1ffb22c2014-10-31 19:02:42 +01007479 array_ptr += len;
7480 sb_array_offset += len;
7481 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04007482 }
Liu Bod8651772016-06-03 17:41:42 -07007483 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07007484 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04007485 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01007486
7487out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007488 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01007489 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07007490 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07007491 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01007492 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04007493}
7494
Qu Wenruo21634a12017-03-09 09:34:36 +08007495/*
7496 * Check if all chunks in the fs are OK for read-write degraded mount
7497 *
Anand Jain6528b992017-12-18 17:08:59 +08007498 * If the @failing_dev is specified, it's accounted as missing.
7499 *
Qu Wenruo21634a12017-03-09 09:34:36 +08007500 * Return true if all chunks meet the minimal RW mount requirements.
7501 * Return false if any chunk doesn't meet the minimal RW mount requirements.
7502 */
Anand Jain6528b992017-12-18 17:08:59 +08007503bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
7504 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08007505{
David Sterbac8bf1b62019-05-17 11:43:17 +02007506 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Qu Wenruo21634a12017-03-09 09:34:36 +08007507 struct extent_map *em;
7508 u64 next_start = 0;
7509 bool ret = true;
7510
David Sterbac8bf1b62019-05-17 11:43:17 +02007511 read_lock(&map_tree->lock);
7512 em = lookup_extent_mapping(map_tree, 0, (u64)-1);
7513 read_unlock(&map_tree->lock);
Qu Wenruo21634a12017-03-09 09:34:36 +08007514 /* No chunk at all? Return false anyway */
7515 if (!em) {
7516 ret = false;
7517 goto out;
7518 }
7519 while (em) {
7520 struct map_lookup *map;
7521 int missing = 0;
7522 int max_tolerated;
7523 int i;
7524
7525 map = em->map_lookup;
7526 max_tolerated =
7527 btrfs_get_num_tolerated_disk_barrier_failures(
7528 map->type);
7529 for (i = 0; i < map->num_stripes; i++) {
7530 struct btrfs_device *dev = map->stripes[i].dev;
7531
Anand Jaine6e674b2017-12-04 12:54:54 +08007532 if (!dev || !dev->bdev ||
7533 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08007534 dev->last_flush_error)
7535 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08007536 else if (failing_dev && failing_dev == dev)
7537 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08007538 }
7539 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08007540 if (!failing_dev)
7541 btrfs_warn(fs_info,
Andrea Gelmini52042d82018-11-28 12:05:13 +01007542 "chunk %llu missing %d devices, max tolerance is %d for writable mount",
Qu Wenruo21634a12017-03-09 09:34:36 +08007543 em->start, missing, max_tolerated);
7544 free_extent_map(em);
7545 ret = false;
7546 goto out;
7547 }
7548 next_start = extent_map_end(em);
7549 free_extent_map(em);
7550
David Sterbac8bf1b62019-05-17 11:43:17 +02007551 read_lock(&map_tree->lock);
7552 em = lookup_extent_mapping(map_tree, next_start,
Qu Wenruo21634a12017-03-09 09:34:36 +08007553 (u64)(-1) - next_start);
David Sterbac8bf1b62019-05-17 11:43:17 +02007554 read_unlock(&map_tree->lock);
Qu Wenruo21634a12017-03-09 09:34:36 +08007555 }
7556out:
7557 return ret;
7558}
7559
David Sterbad85327b12020-07-08 22:55:14 +02007560static void readahead_tree_node_children(struct extent_buffer *node)
7561{
7562 int i;
7563 const int nr_items = btrfs_header_nritems(node);
7564
Josef Bacikbfb484d2020-11-05 10:45:09 -05007565 for (i = 0; i < nr_items; i++)
7566 btrfs_readahead_node_child(node, i);
David Sterbad85327b12020-07-08 22:55:14 +02007567}
7568
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007569int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04007570{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007571 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04007572 struct btrfs_path *path;
7573 struct extent_buffer *leaf;
7574 struct btrfs_key key;
7575 struct btrfs_key found_key;
7576 int ret;
7577 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07007578 u64 total_dev = 0;
David Sterbad85327b12020-07-08 22:55:14 +02007579 u64 last_ra_node = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007580
Chris Mason0b86a832008-03-24 15:01:56 -04007581 path = btrfs_alloc_path();
7582 if (!path)
7583 return -ENOMEM;
7584
Anand Jain3dd0f7a2018-04-12 10:29:32 +08007585 /*
7586 * uuid_mutex is needed only if we are mounting a sprout FS
7587 * otherwise we don't need it.
7588 */
Li Zefanb367e472011-12-07 11:38:24 +08007589 mutex_lock(&uuid_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08007590
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007591 /*
Boris Burkov48cfa612020-07-16 13:29:46 -07007592 * It is possible for mount and umount to race in such a way that
7593 * we execute this code path, but open_fs_devices failed to clear
7594 * total_rw_bytes. We certainly want it cleared before reading the
7595 * device items, so clear it here.
7596 */
7597 fs_info->fs_devices->total_rw_bytes = 0;
7598
7599 /*
Filipe Manana4d9380e2021-11-04 12:43:08 +00007600 * Lockdep complains about possible circular locking dependency between
7601 * a disk's open_mutex (struct gendisk.open_mutex), the rw semaphores
7602 * used for freeze procection of a fs (struct super_block.s_writers),
7603 * which we take when starting a transaction, and extent buffers of the
7604 * chunk tree if we call read_one_dev() while holding a lock on an
7605 * extent buffer of the chunk tree. Since we are mounting the filesystem
7606 * and at this point there can't be any concurrent task modifying the
7607 * chunk tree, to keep it simple, just skip locking on the chunk tree.
7608 */
7609 ASSERT(!test_bit(BTRFS_FS_OPEN, &fs_info->flags));
7610 path->skip_locking = 1;
7611
7612 /*
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007613 * Read all device items, and then all the chunk items. All
7614 * device items are found before any chunk item (their object id
7615 * is smaller than the lowest possible object id for a chunk
7616 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04007617 */
7618 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
7619 key.offset = 0;
7620 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007621 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00007622 if (ret < 0)
7623 goto error;
Chris Masond3977122009-01-05 21:25:51 -05007624 while (1) {
David Sterbad85327b12020-07-08 22:55:14 +02007625 struct extent_buffer *node;
7626
Chris Mason0b86a832008-03-24 15:01:56 -04007627 leaf = path->nodes[0];
7628 slot = path->slots[0];
7629 if (slot >= btrfs_header_nritems(leaf)) {
7630 ret = btrfs_next_leaf(root, path);
7631 if (ret == 0)
7632 continue;
7633 if (ret < 0)
7634 goto error;
7635 break;
7636 }
David Sterbad85327b12020-07-08 22:55:14 +02007637 node = path->nodes[1];
7638 if (node) {
7639 if (last_ra_node != node->start) {
7640 readahead_tree_node_children(node);
7641 last_ra_node = node->start;
7642 }
7643 }
Chris Mason0b86a832008-03-24 15:01:56 -04007644 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007645 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
7646 struct btrfs_dev_item *dev_item;
7647 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04007648 struct btrfs_dev_item);
David Sterba17850752019-03-20 16:45:15 +01007649 ret = read_one_dev(leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007650 if (ret)
7651 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07007652 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04007653 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
7654 struct btrfs_chunk *chunk;
Filipe Manana79bd3712021-06-29 14:43:06 +01007655
7656 /*
7657 * We are only called at mount time, so no need to take
7658 * fs_info->chunk_mutex. Plus, to avoid lockdep warnings,
7659 * we always lock first fs_info->chunk_mutex before
7660 * acquiring any locks on the chunk tree. This is a
7661 * requirement for chunk allocation, see the comment on
7662 * top of btrfs_chunk_alloc() for details.
7663 */
Chris Mason0b86a832008-03-24 15:01:56 -04007664 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba9690ac02019-03-20 16:43:07 +01007665 ret = read_one_chunk(&found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05007666 if (ret)
7667 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04007668 }
7669 path->slots[0]++;
7670 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07007671
7672 /*
7673 * After loading chunk tree, we've got all device information,
7674 * do another round of validation checks.
7675 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007676 if (total_dev != fs_info->fs_devices->total_devices) {
7677 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007678 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007679 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07007680 total_dev);
7681 ret = -EINVAL;
7682 goto error;
7683 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007684 if (btrfs_super_total_bytes(fs_info->super_copy) <
7685 fs_info->fs_devices->total_rw_bytes) {
7686 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007687 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007688 btrfs_super_total_bytes(fs_info->super_copy),
7689 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07007690 ret = -EINVAL;
7691 goto error;
7692 }
Chris Mason0b86a832008-03-24 15:01:56 -04007693 ret = 0;
7694error:
Li Zefanb367e472011-12-07 11:38:24 +08007695 mutex_unlock(&uuid_mutex);
7696
Yan Zheng2b820322008-11-17 21:11:30 -05007697 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007698 return ret;
7699}
Stefan Behrens442a4f62012-05-25 16:06:08 +02007700
Miao Xiecb517ea2013-05-15 07:48:19 +00007701void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
7702{
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007703 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs;
Miao Xiecb517ea2013-05-15 07:48:19 +00007704 struct btrfs_device *device;
7705
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007706 fs_devices->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007707
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007708 mutex_lock(&fs_devices->device_list_mutex);
7709 list_for_each_entry(device, &fs_devices->devices, dev_list)
7710 device->fs_info = fs_info;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007711
7712 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007713 list_for_each_entry(device, &seed_devs->devices, dev_list)
7714 device->fs_info = fs_info;
Nikolay Borisov944d3f92020-07-16 10:25:33 +03007715
7716 seed_devs->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007717 }
Anand Jaine17125b2020-09-05 01:34:31 +08007718 mutex_unlock(&fs_devices->device_list_mutex);
Miao Xiecb517ea2013-05-15 07:48:19 +00007719}
7720
David Sterba1dc990d2019-08-21 20:05:32 +02007721static u64 btrfs_dev_stats_value(const struct extent_buffer *eb,
7722 const struct btrfs_dev_stats_item *ptr,
7723 int index)
7724{
7725 u64 val;
7726
7727 read_extent_buffer(eb, &val,
7728 offsetof(struct btrfs_dev_stats_item, values) +
7729 ((unsigned long)ptr) + (index * sizeof(u64)),
7730 sizeof(val));
7731 return val;
7732}
7733
7734static void btrfs_set_dev_stats_value(struct extent_buffer *eb,
7735 struct btrfs_dev_stats_item *ptr,
7736 int index, u64 val)
7737{
7738 write_extent_buffer(eb, &val,
7739 offsetof(struct btrfs_dev_stats_item, values) +
7740 ((unsigned long)ptr) + (index * sizeof(u64)),
7741 sizeof(val));
7742}
7743
Josef Bacik92e26df2020-09-18 16:44:33 -04007744static int btrfs_device_init_dev_stats(struct btrfs_device *device,
7745 struct btrfs_path *path)
Josef Bacik124604e2020-09-18 16:44:32 -04007746{
7747 struct btrfs_dev_stats_item *ptr;
7748 struct extent_buffer *eb;
7749 struct btrfs_key key;
7750 int item_size;
7751 int i, ret, slot;
7752
Josef Bacik82d62d02021-03-11 11:23:15 -05007753 if (!device->fs_info->dev_root)
7754 return 0;
7755
Josef Bacik124604e2020-09-18 16:44:32 -04007756 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7757 key.type = BTRFS_PERSISTENT_ITEM_KEY;
7758 key.offset = device->devid;
7759 ret = btrfs_search_slot(NULL, device->fs_info->dev_root, &key, path, 0, 0);
7760 if (ret) {
7761 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7762 btrfs_dev_stat_set(device, i, 0);
7763 device->dev_stats_valid = 1;
7764 btrfs_release_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007765 return ret < 0 ? ret : 0;
Josef Bacik124604e2020-09-18 16:44:32 -04007766 }
7767 slot = path->slots[0];
7768 eb = path->nodes[0];
Josef Bacik3212fa12021-10-21 14:58:35 -04007769 item_size = btrfs_item_size(eb, slot);
Josef Bacik124604e2020-09-18 16:44:32 -04007770
7771 ptr = btrfs_item_ptr(eb, slot, struct btrfs_dev_stats_item);
7772
7773 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7774 if (item_size >= (1 + i) * sizeof(__le64))
7775 btrfs_dev_stat_set(device, i,
7776 btrfs_dev_stats_value(eb, ptr, i));
7777 else
7778 btrfs_dev_stat_set(device, i, 0);
7779 }
7780
7781 device->dev_stats_valid = 1;
7782 btrfs_dev_stat_print_on_load(device);
7783 btrfs_release_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007784
7785 return 0;
Josef Bacik124604e2020-09-18 16:44:32 -04007786}
7787
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007788int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
7789{
Josef Bacik124604e2020-09-18 16:44:32 -04007790 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices, *seed_devs;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007791 struct btrfs_device *device;
7792 struct btrfs_path *path = NULL;
Josef Bacik92e26df2020-09-18 16:44:33 -04007793 int ret = 0;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007794
7795 path = btrfs_alloc_path();
Anand Jain3b80a9842019-08-21 17:26:32 +08007796 if (!path)
7797 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007798
7799 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik92e26df2020-09-18 16:44:33 -04007800 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7801 ret = btrfs_device_init_dev_stats(device, path);
7802 if (ret)
7803 goto out;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007804 }
Josef Bacik92e26df2020-09-18 16:44:33 -04007805 list_for_each_entry(seed_devs, &fs_devices->seed_list, seed_list) {
7806 list_for_each_entry(device, &seed_devs->devices, dev_list) {
7807 ret = btrfs_device_init_dev_stats(device, path);
7808 if (ret)
7809 goto out;
7810 }
7811 }
7812out:
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007813 mutex_unlock(&fs_devices->device_list_mutex);
7814
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007815 btrfs_free_path(path);
Josef Bacik92e26df2020-09-18 16:44:33 -04007816 return ret;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007817}
7818
7819static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007820 struct btrfs_device *device)
7821{
Nikolay Borisov5495f192018-07-20 19:37:49 +03007822 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007823 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007824 struct btrfs_path *path;
7825 struct btrfs_key key;
7826 struct extent_buffer *eb;
7827 struct btrfs_dev_stats_item *ptr;
7828 int ret;
7829 int i;
7830
David Sterba242e2952016-01-25 17:51:31 +01007831 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7832 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007833 key.offset = device->devid;
7834
7835 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007836 if (!path)
7837 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007838 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7839 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007840 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007841 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007842 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007843 goto out;
7844 }
7845
7846 if (ret == 0 &&
Josef Bacik3212fa12021-10-21 14:58:35 -04007847 btrfs_item_size(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007848 /* need to delete old one and insert a new one */
7849 ret = btrfs_del_item(trans, dev_root, path);
7850 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007851 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007852 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007853 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007854 goto out;
7855 }
7856 ret = 1;
7857 }
7858
7859 if (ret == 1) {
7860 /* need to insert a new item */
7861 btrfs_release_path(path);
7862 ret = btrfs_insert_empty_item(trans, dev_root, path,
7863 &key, sizeof(*ptr));
7864 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007865 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007866 "insert dev_stats item for device %s failed %d",
7867 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007868 goto out;
7869 }
7870 }
7871
7872 eb = path->nodes[0];
7873 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7874 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7875 btrfs_set_dev_stats_value(eb, ptr, i,
7876 btrfs_dev_stat_read(device, i));
7877 btrfs_mark_buffer_dirty(eb);
7878
7879out:
7880 btrfs_free_path(path);
7881 return ret;
7882}
7883
7884/*
7885 * called from commit_transaction. Writes all changed device stats to disk.
7886 */
David Sterba196c9d82019-03-20 16:50:38 +01007887int btrfs_run_dev_stats(struct btrfs_trans_handle *trans)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007888{
David Sterba196c9d82019-03-20 16:50:38 +01007889 struct btrfs_fs_info *fs_info = trans->fs_info;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007890 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7891 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007892 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007893 int ret = 0;
7894
7895 mutex_lock(&fs_devices->device_list_mutex);
7896 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007897 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7898 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007899 continue;
7900
Nikolay Borisov9deae962017-10-24 13:47:37 +03007901
7902 /*
7903 * There is a LOAD-LOAD control dependency between the value of
7904 * dev_stats_ccnt and updating the on-disk values which requires
7905 * reading the in-memory counters. Such control dependencies
7906 * require explicit read memory barriers.
7907 *
7908 * This memory barriers pairs with smp_mb__before_atomic in
7909 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7910 * barrier implied by atomic_xchg in
7911 * btrfs_dev_stats_read_and_reset
7912 */
7913 smp_rmb();
7914
Nikolay Borisov5495f192018-07-20 19:37:49 +03007915 ret = update_dev_stat_item(trans, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007916 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007917 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007918 }
7919 mutex_unlock(&fs_devices->device_list_mutex);
7920
7921 return ret;
7922}
7923
Stefan Behrens442a4f62012-05-25 16:06:08 +02007924void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7925{
7926 btrfs_dev_stat_inc(dev, index);
7927 btrfs_dev_stat_print_on_error(dev);
7928}
7929
Eric Sandeen48a3b632013-04-25 20:41:01 +00007930static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007931{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007932 if (!dev->dev_stats_valid)
7933 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007934 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007935 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007936 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007937 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7938 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7939 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007940 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7941 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007942}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007943
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007944static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7945{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007946 int i;
7947
7948 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7949 if (btrfs_dev_stat_read(dev, i) != 0)
7950 break;
7951 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7952 return; /* all values == 0, suppress message */
7953
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007954 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007955 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007956 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007957 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7958 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7959 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7960 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7961 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7962}
7963
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007964int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007965 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007966{
Josef Bacik562d7b12021-10-05 16:12:42 -04007967 BTRFS_DEV_LOOKUP_ARGS(args);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007968 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007969 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007970 int i;
7971
7972 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik562d7b12021-10-05 16:12:42 -04007973 args.devid = stats->devid;
7974 dev = btrfs_find_device(fs_info->fs_devices, &args);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007975 mutex_unlock(&fs_devices->device_list_mutex);
7976
7977 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007978 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007979 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007980 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007981 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007982 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007983 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007984 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7985 if (stats->nr_items > i)
7986 stats->values[i] =
7987 btrfs_dev_stat_read_and_reset(dev, i);
7988 else
Anand Jain4e411a72019-08-07 16:21:19 +08007989 btrfs_dev_stat_set(dev, i, 0);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007990 }
Anand Jaina69976b2020-01-10 12:26:34 +08007991 btrfs_info(fs_info, "device stats zeroed by %s (%d)",
7992 current->comm, task_pid_nr(current));
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007993 } else {
7994 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7995 if (stats->nr_items > i)
7996 stats->values[i] = btrfs_dev_stat_read(dev, i);
7997 }
7998 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7999 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
8000 return 0;
8001}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01008002
Miao Xie935e5cc2014-09-03 21:35:33 +08008003/*
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02008004 * Update the size and bytes used for each device where it changed. This is
8005 * delayed since we would otherwise get errors while writing out the
8006 * superblocks.
8007 *
8008 * Must be invoked during transaction commit.
Miao Xie935e5cc2014-09-03 21:35:33 +08008009 */
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02008010void btrfs_commit_device_sizes(struct btrfs_transaction *trans)
Miao Xie935e5cc2014-09-03 21:35:33 +08008011{
Miao Xie935e5cc2014-09-03 21:35:33 +08008012 struct btrfs_device *curr, *next;
8013
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02008014 ASSERT(trans->state == TRANS_STATE_COMMIT_DOING);
8015
8016 if (list_empty(&trans->dev_update_list))
Miao Xie935e5cc2014-09-03 21:35:33 +08008017 return;
8018
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02008019 /*
8020 * We don't need the device_list_mutex here. This list is owned by the
8021 * transaction and the transaction must complete before the device is
8022 * released.
8023 */
8024 mutex_lock(&trans->fs_info->chunk_mutex);
8025 list_for_each_entry_safe(curr, next, &trans->dev_update_list,
8026 post_commit_list) {
8027 list_del_init(&curr->post_commit_list);
Miao Xie935e5cc2014-09-03 21:35:33 +08008028 curr->commit_total_bytes = curr->disk_total_bytes;
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02008029 curr->commit_bytes_used = curr->bytes_used;
Miao Xie935e5cc2014-09-03 21:35:33 +08008030 }
Nikolay Borisovbbbf7242019-03-25 14:31:22 +02008031 mutex_unlock(&trans->fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08008032}
Anand Jain5a13f432015-03-10 06:38:31 +08008033
David Sterba46df06b2018-07-13 20:46:30 +02008034/*
8035 * Multiplicity factor for simple profiles: DUP, RAID1-like and RAID10.
8036 */
8037int btrfs_bg_type_to_factor(u64 flags)
8038{
David Sterba44b28ad2019-05-17 11:43:31 +02008039 const int index = btrfs_bg_flags_to_raid_index(flags);
8040
8041 return btrfs_raid_array[index].ncopies;
David Sterba46df06b2018-07-13 20:46:30 +02008042}
Qu Wenruocf90d882018-08-01 10:37:19 +08008043
8044
Qu Wenruocf90d882018-08-01 10:37:19 +08008045
8046static int verify_one_dev_extent(struct btrfs_fs_info *fs_info,
8047 u64 chunk_offset, u64 devid,
8048 u64 physical_offset, u64 physical_len)
8049{
Josef Bacik562d7b12021-10-05 16:12:42 -04008050 struct btrfs_dev_lookup_args args = { .devid = devid };
David Sterbac8bf1b62019-05-17 11:43:17 +02008051 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Qu Wenruocf90d882018-08-01 10:37:19 +08008052 struct extent_map *em;
8053 struct map_lookup *map;
Qu Wenruo05a37c42018-10-05 17:45:55 +08008054 struct btrfs_device *dev;
Qu Wenruocf90d882018-08-01 10:37:19 +08008055 u64 stripe_len;
8056 bool found = false;
8057 int ret = 0;
8058 int i;
8059
8060 read_lock(&em_tree->lock);
8061 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
8062 read_unlock(&em_tree->lock);
8063
8064 if (!em) {
8065 btrfs_err(fs_info,
8066"dev extent physical offset %llu on devid %llu doesn't have corresponding chunk",
8067 physical_offset, devid);
8068 ret = -EUCLEAN;
8069 goto out;
8070 }
8071
8072 map = em->map_lookup;
8073 stripe_len = calc_stripe_length(map->type, em->len, map->num_stripes);
8074 if (physical_len != stripe_len) {
8075 btrfs_err(fs_info,
8076"dev extent physical offset %llu on devid %llu length doesn't match chunk %llu, have %llu expect %llu",
8077 physical_offset, devid, em->start, physical_len,
8078 stripe_len);
8079 ret = -EUCLEAN;
8080 goto out;
8081 }
8082
8083 for (i = 0; i < map->num_stripes; i++) {
8084 if (map->stripes[i].dev->devid == devid &&
8085 map->stripes[i].physical == physical_offset) {
8086 found = true;
8087 if (map->verified_stripes >= map->num_stripes) {
8088 btrfs_err(fs_info,
8089 "too many dev extents for chunk %llu found",
8090 em->start);
8091 ret = -EUCLEAN;
8092 goto out;
8093 }
8094 map->verified_stripes++;
8095 break;
8096 }
8097 }
8098 if (!found) {
8099 btrfs_err(fs_info,
8100 "dev extent physical offset %llu devid %llu has no corresponding chunk",
8101 physical_offset, devid);
8102 ret = -EUCLEAN;
8103 }
Qu Wenruo05a37c42018-10-05 17:45:55 +08008104
David Sterba1a9fd412021-05-21 17:42:23 +02008105 /* Make sure no dev extent is beyond device boundary */
Josef Bacik562d7b12021-10-05 16:12:42 -04008106 dev = btrfs_find_device(fs_info->fs_devices, &args);
Qu Wenruo05a37c42018-10-05 17:45:55 +08008107 if (!dev) {
8108 btrfs_err(fs_info, "failed to find devid %llu", devid);
8109 ret = -EUCLEAN;
8110 goto out;
8111 }
Qu Wenruo1b3922a2019-01-08 14:08:18 +08008112
Qu Wenruo05a37c42018-10-05 17:45:55 +08008113 if (physical_offset + physical_len > dev->disk_total_bytes) {
8114 btrfs_err(fs_info,
8115"dev extent devid %llu physical offset %llu len %llu is beyond device boundary %llu",
8116 devid, physical_offset, physical_len,
8117 dev->disk_total_bytes);
8118 ret = -EUCLEAN;
8119 goto out;
8120 }
Naohiro Aota381a6962021-02-04 19:21:49 +09008121
8122 if (dev->zone_info) {
8123 u64 zone_size = dev->zone_info->zone_size;
8124
8125 if (!IS_ALIGNED(physical_offset, zone_size) ||
8126 !IS_ALIGNED(physical_len, zone_size)) {
8127 btrfs_err(fs_info,
8128"zoned: dev extent devid %llu physical offset %llu len %llu is not aligned to device zone",
8129 devid, physical_offset, physical_len);
8130 ret = -EUCLEAN;
8131 goto out;
8132 }
8133 }
8134
Qu Wenruocf90d882018-08-01 10:37:19 +08008135out:
8136 free_extent_map(em);
8137 return ret;
8138}
8139
8140static int verify_chunk_dev_extent_mapping(struct btrfs_fs_info *fs_info)
8141{
David Sterbac8bf1b62019-05-17 11:43:17 +02008142 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Qu Wenruocf90d882018-08-01 10:37:19 +08008143 struct extent_map *em;
8144 struct rb_node *node;
8145 int ret = 0;
8146
8147 read_lock(&em_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08008148 for (node = rb_first_cached(&em_tree->map); node; node = rb_next(node)) {
Qu Wenruocf90d882018-08-01 10:37:19 +08008149 em = rb_entry(node, struct extent_map, rb_node);
8150 if (em->map_lookup->num_stripes !=
8151 em->map_lookup->verified_stripes) {
8152 btrfs_err(fs_info,
8153 "chunk %llu has missing dev extent, have %d expect %d",
8154 em->start, em->map_lookup->verified_stripes,
8155 em->map_lookup->num_stripes);
8156 ret = -EUCLEAN;
8157 goto out;
8158 }
8159 }
8160out:
8161 read_unlock(&em_tree->lock);
8162 return ret;
8163}
8164
8165/*
8166 * Ensure that all dev extents are mapped to correct chunk, otherwise
8167 * later chunk allocation/free would cause unexpected behavior.
8168 *
8169 * NOTE: This will iterate through the whole device tree, which should be of
8170 * the same size level as the chunk tree. This slightly increases mount time.
8171 */
8172int btrfs_verify_dev_extents(struct btrfs_fs_info *fs_info)
8173{
8174 struct btrfs_path *path;
8175 struct btrfs_root *root = fs_info->dev_root;
8176 struct btrfs_key key;
Qu Wenruo5eb19382018-10-05 17:45:54 +08008177 u64 prev_devid = 0;
8178 u64 prev_dev_ext_end = 0;
Qu Wenruocf90d882018-08-01 10:37:19 +08008179 int ret = 0;
8180
Josef Bacik42437a62020-10-16 11:29:18 -04008181 /*
8182 * We don't have a dev_root because we mounted with ignorebadroots and
8183 * failed to load the root, so we want to skip the verification in this
8184 * case for sure.
8185 *
8186 * However if the dev root is fine, but the tree itself is corrupted
8187 * we'd still fail to mount. This verification is only to make sure
8188 * writes can happen safely, so instead just bypass this check
8189 * completely in the case of IGNOREBADROOTS.
8190 */
8191 if (btrfs_test_opt(fs_info, IGNOREBADROOTS))
8192 return 0;
8193
Qu Wenruocf90d882018-08-01 10:37:19 +08008194 key.objectid = 1;
8195 key.type = BTRFS_DEV_EXTENT_KEY;
8196 key.offset = 0;
8197
8198 path = btrfs_alloc_path();
8199 if (!path)
8200 return -ENOMEM;
8201
8202 path->reada = READA_FORWARD;
8203 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8204 if (ret < 0)
8205 goto out;
8206
8207 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
Marcos Paulo de Souzaad9a9372021-07-13 10:58:03 -03008208 ret = btrfs_next_leaf(root, path);
Qu Wenruocf90d882018-08-01 10:37:19 +08008209 if (ret < 0)
8210 goto out;
8211 /* No dev extents at all? Not good */
8212 if (ret > 0) {
8213 ret = -EUCLEAN;
8214 goto out;
8215 }
8216 }
8217 while (1) {
8218 struct extent_buffer *leaf = path->nodes[0];
8219 struct btrfs_dev_extent *dext;
8220 int slot = path->slots[0];
8221 u64 chunk_offset;
8222 u64 physical_offset;
8223 u64 physical_len;
8224 u64 devid;
8225
8226 btrfs_item_key_to_cpu(leaf, &key, slot);
8227 if (key.type != BTRFS_DEV_EXTENT_KEY)
8228 break;
8229 devid = key.objectid;
8230 physical_offset = key.offset;
8231
8232 dext = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
8233 chunk_offset = btrfs_dev_extent_chunk_offset(leaf, dext);
8234 physical_len = btrfs_dev_extent_length(leaf, dext);
8235
Qu Wenruo5eb19382018-10-05 17:45:54 +08008236 /* Check if this dev extent overlaps with the previous one */
8237 if (devid == prev_devid && physical_offset < prev_dev_ext_end) {
8238 btrfs_err(fs_info,
8239"dev extent devid %llu physical offset %llu overlap with previous dev extent end %llu",
8240 devid, physical_offset, prev_dev_ext_end);
8241 ret = -EUCLEAN;
8242 goto out;
8243 }
8244
Qu Wenruocf90d882018-08-01 10:37:19 +08008245 ret = verify_one_dev_extent(fs_info, chunk_offset, devid,
8246 physical_offset, physical_len);
8247 if (ret < 0)
8248 goto out;
Qu Wenruo5eb19382018-10-05 17:45:54 +08008249 prev_devid = devid;
8250 prev_dev_ext_end = physical_offset + physical_len;
8251
Qu Wenruocf90d882018-08-01 10:37:19 +08008252 ret = btrfs_next_item(root, path);
8253 if (ret < 0)
8254 goto out;
8255 if (ret > 0) {
8256 ret = 0;
8257 break;
8258 }
8259 }
8260
8261 /* Ensure all chunks have corresponding dev extents */
8262 ret = verify_chunk_dev_extent_mapping(fs_info);
8263out:
8264 btrfs_free_path(path);
8265 return ret;
8266}
Omar Sandovaleede2bf2016-11-03 10:28:12 -07008267
8268/*
8269 * Check whether the given block group or device is pinned by any inode being
8270 * used as a swapfile.
8271 */
8272bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr)
8273{
8274 struct btrfs_swapfile_pin *sp;
8275 struct rb_node *node;
8276
8277 spin_lock(&fs_info->swapfile_pins_lock);
8278 node = fs_info->swapfile_pins.rb_node;
8279 while (node) {
8280 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
8281 if (ptr < sp->ptr)
8282 node = node->rb_left;
8283 else if (ptr > sp->ptr)
8284 node = node->rb_right;
8285 else
8286 break;
8287 }
8288 spin_unlock(&fs_info->swapfile_pins_lock);
8289 return node != NULL;
8290}
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008291
8292static int relocating_repair_kthread(void *data)
8293{
8294 struct btrfs_block_group *cache = (struct btrfs_block_group *)data;
8295 struct btrfs_fs_info *fs_info = cache->fs_info;
8296 u64 target;
8297 int ret = 0;
8298
8299 target = cache->start;
8300 btrfs_put_block_group(cache);
8301
8302 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
8303 btrfs_info(fs_info,
8304 "zoned: skip relocating block group %llu to repair: EBUSY",
8305 target);
8306 return -EBUSY;
8307 }
8308
Johannes Thumshirnf3372062021-04-19 16:41:01 +09008309 mutex_lock(&fs_info->reclaim_bgs_lock);
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008310
8311 /* Ensure block group still exists */
8312 cache = btrfs_lookup_block_group(fs_info, target);
8313 if (!cache)
8314 goto out;
8315
8316 if (!cache->relocating_repair)
8317 goto out;
8318
8319 ret = btrfs_may_alloc_data_chunk(fs_info, target);
8320 if (ret < 0)
8321 goto out;
8322
8323 btrfs_info(fs_info,
8324 "zoned: relocating block group %llu to repair IO failure",
8325 target);
8326 ret = btrfs_relocate_chunk(fs_info, target);
8327
8328out:
8329 if (cache)
8330 btrfs_put_block_group(cache);
Johannes Thumshirnf3372062021-04-19 16:41:01 +09008331 mutex_unlock(&fs_info->reclaim_bgs_lock);
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008332 btrfs_exclop_finish(fs_info);
8333
8334 return ret;
8335}
8336
Johannes Thumshirn554aed72021-12-07 06:28:36 -08008337bool btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical)
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008338{
8339 struct btrfs_block_group *cache;
8340
Johannes Thumshirn554aed72021-12-07 06:28:36 -08008341 if (!btrfs_is_zoned(fs_info))
8342 return false;
8343
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008344 /* Do not attempt to repair in degraded state */
8345 if (btrfs_test_opt(fs_info, DEGRADED))
Johannes Thumshirn554aed72021-12-07 06:28:36 -08008346 return true;
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008347
8348 cache = btrfs_lookup_block_group(fs_info, logical);
8349 if (!cache)
Johannes Thumshirn554aed72021-12-07 06:28:36 -08008350 return true;
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008351
8352 spin_lock(&cache->lock);
8353 if (cache->relocating_repair) {
8354 spin_unlock(&cache->lock);
8355 btrfs_put_block_group(cache);
Johannes Thumshirn554aed72021-12-07 06:28:36 -08008356 return true;
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008357 }
8358 cache->relocating_repair = 1;
8359 spin_unlock(&cache->lock);
8360
8361 kthread_run(relocating_repair_kthread, cache,
8362 "btrfs-relocating-repair");
8363
Johannes Thumshirn554aed72021-12-07 06:28:36 -08008364 return true;
Naohiro Aotaf7ef5282021-02-04 19:22:16 +09008365}