blob: 78f6cd1de33aca95a555ca19961f3da39fb6f3d7 [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>
7#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -04009#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040010#include <linux/blkdev.h>
Chris Masonb765ead2009-04-03 10:27:10 -040011#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000012#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020013#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020014#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050015#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020016#include <linux/semaphore.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070017#include <linux/uuid.h>
Anand Jainf8e10cd2018-01-22 14:49:36 -080018#include <linux/list_sort.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050019#include <asm/div64.h>
Chris Mason0b86a832008-03-24 15:01:56 -040020#include "ctree.h"
21#include "extent_map.h"
22#include "disk-io.h"
23#include "transaction.h"
24#include "print-tree.h"
25#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050026#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040027#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010028#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040029#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060030#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010031#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080032#include "sysfs.h"
Chris Mason0b86a832008-03-24 15:01:56 -040033
Zhao Leiaf902042015-09-15 21:08:06 +080034const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
35 [BTRFS_RAID_RAID10] = {
36 .sub_stripes = 2,
37 .dev_stripes = 1,
38 .devs_max = 0, /* 0 == as many as possible */
39 .devs_min = 4,
Zhao Lei8789f4f2015-09-15 21:08:07 +080040 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080041 .devs_increment = 2,
42 .ncopies = 2,
Anand Jained234672018-04-25 19:01:42 +080043 .raid_name = "raid10",
Anand Jain41a6e892018-04-25 19:01:43 +080044 .bg_flag = BTRFS_BLOCK_GROUP_RAID10,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080045 .mindev_error = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080046 },
47 [BTRFS_RAID_RAID1] = {
48 .sub_stripes = 1,
49 .dev_stripes = 1,
50 .devs_max = 2,
51 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080052 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080053 .devs_increment = 2,
54 .ncopies = 2,
Anand Jained234672018-04-25 19:01:42 +080055 .raid_name = "raid1",
Anand Jain41a6e892018-04-25 19:01:43 +080056 .bg_flag = BTRFS_BLOCK_GROUP_RAID1,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080057 .mindev_error = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080058 },
59 [BTRFS_RAID_DUP] = {
60 .sub_stripes = 1,
61 .dev_stripes = 2,
62 .devs_max = 1,
63 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080064 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080065 .devs_increment = 1,
66 .ncopies = 2,
Anand Jained234672018-04-25 19:01:42 +080067 .raid_name = "dup",
Anand Jain41a6e892018-04-25 19:01:43 +080068 .bg_flag = BTRFS_BLOCK_GROUP_DUP,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080069 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080070 },
71 [BTRFS_RAID_RAID0] = {
72 .sub_stripes = 1,
73 .dev_stripes = 1,
74 .devs_max = 0,
75 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080076 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080077 .devs_increment = 1,
78 .ncopies = 1,
Anand Jained234672018-04-25 19:01:42 +080079 .raid_name = "raid0",
Anand Jain41a6e892018-04-25 19:01:43 +080080 .bg_flag = BTRFS_BLOCK_GROUP_RAID0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080081 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080082 },
83 [BTRFS_RAID_SINGLE] = {
84 .sub_stripes = 1,
85 .dev_stripes = 1,
86 .devs_max = 1,
87 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080088 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080089 .devs_increment = 1,
90 .ncopies = 1,
Anand Jained234672018-04-25 19:01:42 +080091 .raid_name = "single",
Anand Jain41a6e892018-04-25 19:01:43 +080092 .bg_flag = 0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080093 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080094 },
95 [BTRFS_RAID_RAID5] = {
96 .sub_stripes = 1,
97 .dev_stripes = 1,
98 .devs_max = 0,
99 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800100 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +0800101 .devs_increment = 1,
102 .ncopies = 2,
Anand Jained234672018-04-25 19:01:42 +0800103 .raid_name = "raid5",
Anand Jain41a6e892018-04-25 19:01:43 +0800104 .bg_flag = BTRFS_BLOCK_GROUP_RAID5,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800105 .mindev_error = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800106 },
107 [BTRFS_RAID_RAID6] = {
108 .sub_stripes = 1,
109 .dev_stripes = 1,
110 .devs_max = 0,
111 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800112 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800113 .devs_increment = 1,
114 .ncopies = 3,
Anand Jained234672018-04-25 19:01:42 +0800115 .raid_name = "raid6",
Anand Jain41a6e892018-04-25 19:01:43 +0800116 .bg_flag = BTRFS_BLOCK_GROUP_RAID6,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800117 .mindev_error = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800118 },
119};
120
Anand Jained234672018-04-25 19:01:42 +0800121const char *get_raid_name(enum btrfs_raid_types type)
122{
123 if (type >= BTRFS_NR_RAID_TYPES)
124 return NULL;
125
126 return btrfs_raid_array[type].raid_name;
127}
128
Yan Zheng2b820322008-11-17 21:11:30 -0500129static int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +0100130 struct btrfs_fs_info *fs_info);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400131static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200132static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000133static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200134static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700135static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
136 enum btrfs_map_op op,
137 u64 logical, u64 *length,
138 struct btrfs_bio **bbio_ret,
139 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500140
David Sterba9c6b1c42017-06-16 22:30:00 +0200141/*
142 * Device locking
143 * ==============
144 *
145 * There are several mutexes that protect manipulation of devices and low-level
146 * structures like chunks but not block groups, extents or files
147 *
148 * uuid_mutex (global lock)
149 * ------------------------
150 * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from
151 * the SCAN_DEV ioctl registration or from mount either implicitly (the first
152 * device) or requested by the device= mount option
153 *
154 * the mutex can be very coarse and can cover long-running operations
155 *
156 * protects: updates to fs_devices counters like missing devices, rw devices,
157 * seeding, structure cloning, openning/closing devices at mount/umount time
158 *
159 * global::fs_devs - add, remove, updates to the global list
160 *
161 * does not protect: manipulation of the fs_devices::devices list!
162 *
163 * btrfs_device::name - renames (write side), read is RCU
164 *
165 * fs_devices::device_list_mutex (per-fs, with RCU)
166 * ------------------------------------------------
167 * protects updates to fs_devices::devices, ie. adding and deleting
168 *
169 * simple list traversal with read-only actions can be done with RCU protection
170 *
171 * may be used to exclude some operations from running concurrently without any
172 * modifications to the list (see write_all_supers)
173 *
David Sterba9c6b1c42017-06-16 22:30:00 +0200174 * balance_mutex
175 * -------------
176 * protects balance structures (status, state) and context accessed from
177 * several places (internally, ioctl)
178 *
179 * chunk_mutex
180 * -----------
181 * protects chunks, adding or removing during allocation, trim or when a new
182 * device is added/removed
183 *
184 * cleaner_mutex
185 * -------------
186 * a big lock that is held by the cleaner thread and prevents running subvolume
187 * cleaning together with relocation or delayed iputs
188 *
189 *
190 * Lock nesting
191 * ============
192 *
193 * uuid_mutex
194 * volume_mutex
195 * device_list_mutex
196 * chunk_mutex
197 * balance_mutex
Anand Jain89595e82018-04-18 14:59:25 +0800198 *
199 *
200 * Exclusive operations, BTRFS_FS_EXCL_OP
201 * ======================================
202 *
203 * Maintains the exclusivity of the following operations that apply to the
204 * whole filesystem and cannot run in parallel.
205 *
206 * - Balance (*)
207 * - Device add
208 * - Device remove
209 * - Device replace (*)
210 * - Resize
211 *
212 * The device operations (as above) can be in one of the following states:
213 *
214 * - Running state
215 * - Paused state
216 * - Completed state
217 *
218 * Only device operations marked with (*) can go into the Paused state for the
219 * following reasons:
220 *
221 * - ioctl (only Balance can be Paused through ioctl)
222 * - filesystem remounted as read-only
223 * - filesystem unmounted and mounted as read-only
224 * - system power-cycle and filesystem mounted as read-only
225 * - filesystem or device errors leading to forced read-only
226 *
227 * BTRFS_FS_EXCL_OP flag is set and cleared using atomic operations.
228 * During the course of Paused state, the BTRFS_FS_EXCL_OP remains set.
229 * A device operation in Paused or Running state can be canceled or resumed
230 * either by ioctl (Balance only) or when remounted as read-write.
231 * BTRFS_FS_EXCL_OP flag is cleared when the device operation is canceled or
232 * completed.
David Sterba9c6b1c42017-06-16 22:30:00 +0200233 */
234
Miao Xie67a2c452014-09-03 21:35:43 +0800235DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400236static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800237struct list_head *btrfs_get_fs_uuids(void)
238{
239 return &fs_uuids;
240}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400241
David Sterba2dfeca92017-06-14 02:48:07 +0200242/*
243 * alloc_fs_devices - allocate struct btrfs_fs_devices
244 * @fsid: if not NULL, copy the uuid to fs_devices::fsid
245 *
246 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
247 * The returned struct is not linked onto any lists and can be destroyed with
248 * kfree() right away.
249 */
250static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300251{
252 struct btrfs_fs_devices *fs_devs;
253
David Sterba78f2c9e2016-02-11 14:25:38 +0100254 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300255 if (!fs_devs)
256 return ERR_PTR(-ENOMEM);
257
258 mutex_init(&fs_devs->device_list_mutex);
259
260 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800261 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300262 INIT_LIST_HEAD(&fs_devs->alloc_list);
Anand Jainc4babc52018-04-12 10:29:25 +0800263 INIT_LIST_HEAD(&fs_devs->fs_list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300264 if (fsid)
265 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300266
267 return fs_devs;
268}
269
David Sterbaa425f9d2018-03-20 15:47:33 +0100270void btrfs_free_device(struct btrfs_device *device)
David Sterba48dae9c2017-10-30 18:10:25 +0100271{
272 rcu_string_free(device->name);
273 bio_put(device->flush_bio);
274 kfree(device);
275}
276
Yan Zhenge4404d62008-12-12 10:03:26 -0500277static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
278{
279 struct btrfs_device *device;
280 WARN_ON(fs_devices->opened);
281 while (!list_empty(&fs_devices->devices)) {
282 device = list_entry(fs_devices->devices.next,
283 struct btrfs_device, dev_list);
284 list_del(&device->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100285 btrfs_free_device(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500286 }
287 kfree(fs_devices);
288}
289
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000290static void btrfs_kobject_uevent(struct block_device *bdev,
291 enum kobject_action action)
292{
293 int ret;
294
295 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
296 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500297 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000298 action,
299 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
300 &disk_to_dev(bdev->bd_disk)->kobj);
301}
302
David Sterbaffc5a372018-02-19 17:24:15 +0100303void __exit btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400304{
305 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400306
Yan Zheng2b820322008-11-17 21:11:30 -0500307 while (!list_empty(&fs_uuids)) {
308 fs_devices = list_entry(fs_uuids.next,
Anand Jainc4babc52018-04-12 10:29:25 +0800309 struct btrfs_fs_devices, fs_list);
310 list_del(&fs_devices->fs_list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500311 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400312 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400313}
314
David Sterba48dae9c2017-10-30 18:10:25 +0100315/*
316 * Returns a pointer to a new btrfs_device on success; ERR_PTR() on error.
317 * Returned struct is not linked onto any lists and must be destroyed using
David Sterbaa425f9d2018-03-20 15:47:33 +0100318 * btrfs_free_device.
David Sterba48dae9c2017-10-30 18:10:25 +0100319 */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300320static struct btrfs_device *__alloc_device(void)
321{
322 struct btrfs_device *dev;
323
David Sterba78f2c9e2016-02-11 14:25:38 +0100324 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300325 if (!dev)
326 return ERR_PTR(-ENOMEM);
327
David Sterbae0ae9992017-06-06 17:06:06 +0200328 /*
329 * Preallocate a bio that's always going to be used for flushing device
330 * barriers and matches the device lifespan
331 */
332 dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL);
333 if (!dev->flush_bio) {
334 kfree(dev);
335 return ERR_PTR(-ENOMEM);
336 }
David Sterbae0ae9992017-06-06 17:06:06 +0200337
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300338 INIT_LIST_HEAD(&dev->dev_list);
339 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800340 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300341
342 spin_lock_init(&dev->io_lock);
343
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300344 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800345 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100346 btrfs_device_data_ordered_init(dev);
Chris Mason9bcaaea2017-05-04 16:08:08 -0700347 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Mel Gormand0164ad2015-11-06 16:28:21 -0800348 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300349
350 return dev;
351}
352
David Sterba35c70102017-06-15 19:51:51 +0200353/*
354 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
355 * return NULL.
356 *
357 * If devid and uuid are both specified, the match must be exact, otherwise
358 * only devid is used.
359 */
360static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices,
361 u64 devid, const u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400362{
363 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400364
Anand Jain636d2c92018-04-12 10:29:29 +0800365 list_for_each_entry(dev, &fs_devices->devices, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400366 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400367 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400368 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400369 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400370 }
371 return NULL;
372}
373
Chris Masona1b32a52008-09-05 16:09:51 -0400374static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400375{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400376 struct btrfs_fs_devices *fs_devices;
377
Anand Jainc4babc52018-04-12 10:29:25 +0800378 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400379 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
380 return fs_devices;
381 }
382 return NULL;
383}
384
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100385static int
386btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
387 int flush, struct block_device **bdev,
388 struct buffer_head **bh)
389{
390 int ret;
391
392 *bdev = blkdev_get_by_path(device_path, flags, holder);
393
394 if (IS_ERR(*bdev)) {
395 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100396 goto error;
397 }
398
399 if (flush)
400 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
David Sterba9f6d2512017-06-16 01:48:05 +0200401 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100402 if (ret) {
403 blkdev_put(*bdev, flags);
404 goto error;
405 }
406 invalidate_bdev(*bdev);
407 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800408 if (IS_ERR(*bh)) {
409 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100410 blkdev_put(*bdev, flags);
411 goto error;
412 }
413
414 return 0;
415
416error:
417 *bdev = NULL;
418 *bh = NULL;
419 return ret;
420}
421
Chris Masonffbd5172009-04-20 15:50:09 -0400422static void requeue_list(struct btrfs_pending_bios *pending_bios,
423 struct bio *head, struct bio *tail)
424{
425
426 struct bio *old_head;
427
428 old_head = pending_bios->head;
429 pending_bios->head = head;
430 if (pending_bios->tail)
431 tail->bi_next = old_head;
432 else
433 pending_bios->tail = tail;
434}
435
Chris Mason8b712842008-06-11 16:50:36 -0400436/*
437 * we try to collect pending bios for a device so we don't get a large
438 * number of procs sending bios down to the same device. This greatly
439 * improves the schedulers ability to collect and merge the bios.
440 *
441 * But, it also turns into a long list of bios to process and that is sure
442 * to eventually make the worker thread block. The solution here is to
443 * make some progress and then put this work struct back at the end of
444 * the list if the block device is congested. This way, multiple devices
445 * can make progress from a single worker thread.
446 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100447static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400448{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400449 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400450 struct bio *pending;
451 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400452 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400453 struct bio *tail;
454 struct bio *cur;
455 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400456 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400457 unsigned long batch_run = 0;
Chris Masonb765ead2009-04-03 10:27:10 -0400458 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400459 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000460 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400461 struct blk_plug plug;
462
463 /*
464 * this function runs all the bios we've collected for
465 * a particular device. We don't want to wander off to
466 * another device without first sending all of these down.
467 * So, setup a plug here and finish it off before we return
468 */
469 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400470
Jan Karaefa7c9f2017-02-02 15:56:53 +0100471 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400472
Chris Mason8b712842008-06-11 16:50:36 -0400473loop:
474 spin_lock(&device->io_lock);
475
Chris Masona6837052009-02-04 09:19:41 -0500476loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400477 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400478
Chris Mason8b712842008-06-11 16:50:36 -0400479 /* take all the bios off the list at once and process them
480 * later on (without the lock held). But, remember the
481 * tail and other pointers so the bios can be properly reinserted
482 * into the list if we hit congestion
483 */
Chris Masond84275c2009-06-09 15:39:08 -0400484 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400485 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400486 force_reg = 1;
487 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400488 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400489 force_reg = 0;
490 }
Chris Masonffbd5172009-04-20 15:50:09 -0400491
492 pending = pending_bios->head;
493 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400494 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400495
496 /*
497 * if pending was null this time around, no bios need processing
498 * at all and we can stop. Otherwise it'll loop back up again
499 * and do an additional check so no bios are missed.
500 *
501 * device->running_pending is used to synchronize with the
502 * schedule_bio code.
503 */
Chris Masonffbd5172009-04-20 15:50:09 -0400504 if (device->pending_sync_bios.head == NULL &&
505 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400506 again = 0;
507 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400508 } else {
509 again = 1;
510 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400511 }
Chris Masonffbd5172009-04-20 15:50:09 -0400512
513 pending_bios->head = NULL;
514 pending_bios->tail = NULL;
515
Chris Mason8b712842008-06-11 16:50:36 -0400516 spin_unlock(&device->io_lock);
517
Chris Masond3977122009-01-05 21:25:51 -0500518 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400519
520 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400521 /* we want to work on both lists, but do more bios on the
522 * sync list than the regular list
523 */
524 if ((num_run > 32 &&
525 pending_bios != &device->pending_sync_bios &&
526 device->pending_sync_bios.head) ||
527 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
528 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400529 spin_lock(&device->io_lock);
530 requeue_list(pending_bios, pending, tail);
531 goto loop_lock;
532 }
533
Chris Mason8b712842008-06-11 16:50:36 -0400534 cur = pending;
535 pending = pending->bi_next;
536 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400537
Jens Axboedac56212015-04-17 16:23:59 -0600538 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400539
Chris Mason2ab1ba62011-08-04 14:28:36 -0400540 /*
541 * if we're doing the sync list, record that our
542 * plug has some sync requests on it
543 *
544 * If we're doing the regular list and there are
545 * sync requests sitting around, unplug before
546 * we add more
547 */
548 if (pending_bios == &device->pending_sync_bios) {
549 sync_pending = 1;
550 } else if (sync_pending) {
551 blk_finish_plug(&plug);
552 blk_start_plug(&plug);
553 sync_pending = 0;
554 }
555
Mike Christie4e49ea42016-06-05 14:31:41 -0500556 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400557 num_run++;
558 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100559
560 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400561
562 /*
563 * we made progress, there is more work to do and the bdi
564 * is now congested. Back off and let other work structs
565 * run instead
566 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400567 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500568 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400569 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400570
Chris Masonb765ead2009-04-03 10:27:10 -0400571 ioc = current->io_context;
572
573 /*
574 * the main goal here is that we don't want to
575 * block if we're going to be able to submit
576 * more requests without blocking.
577 *
578 * This code does two great things, it pokes into
579 * the elevator code from a filesystem _and_
580 * it makes assumptions about how batching works.
581 */
582 if (ioc && ioc->nr_batch_requests > 0 &&
583 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
584 (last_waited == 0 ||
585 ioc->last_waited == last_waited)) {
586 /*
587 * we want to go through our batch of
588 * requests and stop. So, we copy out
589 * the ioc->last_waited time and test
590 * against it before looping
591 */
592 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100593 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400594 continue;
595 }
Chris Mason8b712842008-06-11 16:50:36 -0400596 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400597 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500598 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400599
600 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d4e2014-02-28 10:46:08 +0800601 btrfs_queue_work(fs_info->submit_workers,
602 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400603 goto done;
604 }
605 }
Chris Masonffbd5172009-04-20 15:50:09 -0400606
Chris Mason51684082010-03-10 15:33:32 -0500607 cond_resched();
608 if (again)
609 goto loop;
610
611 spin_lock(&device->io_lock);
612 if (device->pending_bios.head || device->pending_sync_bios.head)
613 goto loop_lock;
614 spin_unlock(&device->io_lock);
615
Chris Mason8b712842008-06-11 16:50:36 -0400616done:
Chris Mason211588a2011-04-19 20:12:40 -0400617 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400618}
619
Christoph Hellwigb2950862008-12-02 09:54:17 -0500620static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400621{
622 struct btrfs_device *device;
623
624 device = container_of(work, struct btrfs_device, work);
625 run_scheduled_bios(device);
626}
627
Anand Jaind8367db2018-01-18 22:00:37 +0800628/*
629 * Search and remove all stale (devices which are not mounted) devices.
630 * When both inputs are NULL, it will search and release all stale devices.
631 * path: Optional. When provided will it release all unmounted devices
632 * matching this path only.
633 * skip_dev: Optional. Will skip this device when searching for the stale
634 * devices.
635 */
636static void btrfs_free_stale_devices(const char *path,
637 struct btrfs_device *skip_dev)
Anand Jain4fde46f2015-06-17 21:10:48 +0800638{
Anand Jain38cf6652018-01-18 22:00:34 +0800639 struct btrfs_fs_devices *fs_devs, *tmp_fs_devs;
640 struct btrfs_device *dev, *tmp_dev;
Anand Jain4fde46f2015-06-17 21:10:48 +0800641
Anand Jainc4babc52018-04-12 10:29:25 +0800642 list_for_each_entry_safe(fs_devs, tmp_fs_devs, &fs_uuids, fs_list) {
Anand Jain4fde46f2015-06-17 21:10:48 +0800643
644 if (fs_devs->opened)
645 continue;
Anand Jain4fde46f2015-06-17 21:10:48 +0800646
Anand Jain38cf6652018-01-18 22:00:34 +0800647 list_for_each_entry_safe(dev, tmp_dev,
648 &fs_devs->devices, dev_list) {
Anand Jain522f1b42018-01-18 22:00:35 +0800649 int not_found = 0;
Anand Jain4fde46f2015-06-17 21:10:48 +0800650
Anand Jaind8367db2018-01-18 22:00:37 +0800651 if (skip_dev && skip_dev == dev)
652 continue;
653 if (path && !dev->name)
Anand Jain4fde46f2015-06-17 21:10:48 +0800654 continue;
655
Anand Jain4fde46f2015-06-17 21:10:48 +0800656 rcu_read_lock();
Anand Jaind8367db2018-01-18 22:00:37 +0800657 if (path)
Anand Jain522f1b42018-01-18 22:00:35 +0800658 not_found = strcmp(rcu_str_deref(dev->name),
Anand Jaind8367db2018-01-18 22:00:37 +0800659 path);
Anand Jain4fde46f2015-06-17 21:10:48 +0800660 rcu_read_unlock();
Anand Jain38cf6652018-01-18 22:00:34 +0800661 if (not_found)
662 continue;
Anand Jain4fde46f2015-06-17 21:10:48 +0800663
Anand Jain4fde46f2015-06-17 21:10:48 +0800664 /* delete the stale device */
665 if (fs_devs->num_devices == 1) {
666 btrfs_sysfs_remove_fsid(fs_devs);
Anand Jainc4babc52018-04-12 10:29:25 +0800667 list_del(&fs_devs->fs_list);
Anand Jain4fde46f2015-06-17 21:10:48 +0800668 free_fs_devices(fs_devs);
Nikolay Borisovfd649f12018-01-30 16:07:37 +0200669 break;
Anand Jain4fde46f2015-06-17 21:10:48 +0800670 } else {
671 fs_devs->num_devices--;
672 list_del(&dev->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100673 btrfs_free_device(dev);
Anand Jain4fde46f2015-06-17 21:10:48 +0800674 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800675 }
676 }
677}
678
Anand Jain0fb08bc2017-11-09 23:45:24 +0800679static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
680 struct btrfs_device *device, fmode_t flags,
681 void *holder)
682{
683 struct request_queue *q;
684 struct block_device *bdev;
685 struct buffer_head *bh;
686 struct btrfs_super_block *disk_super;
687 u64 devid;
688 int ret;
689
690 if (device->bdev)
691 return -EINVAL;
692 if (!device->name)
693 return -EINVAL;
694
695 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
696 &bdev, &bh);
697 if (ret)
698 return ret;
699
700 disk_super = (struct btrfs_super_block *)bh->b_data;
701 devid = btrfs_stack_device_id(&disk_super->dev_item);
702 if (devid != device->devid)
703 goto error_brelse;
704
705 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
706 goto error_brelse;
707
708 device->generation = btrfs_super_generation(disk_super);
709
710 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Anand Jainebbede42017-12-04 12:54:52 +0800711 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800712 fs_devices->seeding = 1;
713 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800714 if (bdev_read_only(bdev))
715 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
716 else
717 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800718 }
719
720 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800721 if (!blk_queue_nonrot(q))
722 fs_devices->rotating = 1;
723
724 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800725 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800726 device->mode = flags;
727
728 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800729 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
730 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800731 fs_devices->rw_devices++;
Anand Jainb1b8e382018-01-22 14:49:37 -0800732 list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800733 }
734 brelse(bh);
735
736 return 0;
737
738error_brelse:
739 brelse(bh);
740 blkdev_put(bdev, flags);
741
742 return -EINVAL;
743}
744
David Sterba60999ca2014-03-26 18:26:36 +0100745/*
746 * Add new device to list of registered devices
747 *
748 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800749 * device pointer which was just added or updated when successful
750 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100751 */
Anand Jaine124ece2018-01-18 22:02:35 +0800752static noinline struct btrfs_device *device_list_add(const char *path,
Anand Jain3acbcbf2018-01-18 22:02:36 +0800753 struct btrfs_super_block *disk_super)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400754{
755 struct btrfs_device *device;
756 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400757 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400758 u64 found_transid = btrfs_super_generation(disk_super);
Anand Jain3acbcbf2018-01-18 22:02:36 +0800759 u64 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400760
761 fs_devices = find_fsid(disk_super->fsid);
762 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300763 fs_devices = alloc_fs_devices(disk_super->fsid);
764 if (IS_ERR(fs_devices))
Anand Jaine124ece2018-01-18 22:02:35 +0800765 return ERR_CAST(fs_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300766
Anand Jainc4babc52018-04-12 10:29:25 +0800767 list_add(&fs_devices->fs_list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300768
Chris Mason8a4b83c2008-03-24 15:02:07 -0400769 device = NULL;
770 } else {
David Sterba35c70102017-06-15 19:51:51 +0200771 device = find_device(fs_devices, devid,
772 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400773 }
Miao Xie443f24f2014-07-24 11:37:15 +0800774
Chris Mason8a4b83c2008-03-24 15:02:07 -0400775 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500776 if (fs_devices->opened)
Anand Jaine124ece2018-01-18 22:02:35 +0800777 return ERR_PTR(-EBUSY);
Yan Zheng2b820322008-11-17 21:11:30 -0500778
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300779 device = btrfs_alloc_device(NULL, &devid,
780 disk_super->dev_item.uuid);
781 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400782 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800783 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400784 }
Josef Bacik606686e2012-06-04 14:03:51 -0400785
786 name = rcu_string_strdup(path, GFP_NOFS);
787 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100788 btrfs_free_device(device);
Anand Jaine124ece2018-01-18 22:02:35 +0800789 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400790 }
Josef Bacik606686e2012-06-04 14:03:51 -0400791 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200792
Chris Masone5e9a522009-06-10 15:17:02 -0400793 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000794 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100795 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400796 mutex_unlock(&fs_devices->device_list_mutex);
797
Yan Zheng2b820322008-11-17 21:11:30 -0500798 device->fs_devices = fs_devices;
Anand Jaind8367db2018-01-18 22:00:37 +0800799 btrfs_free_stale_devices(path, device);
Anand Jain327f18c2018-01-18 22:02:33 +0800800
801 if (disk_super->label[0])
802 pr_info("BTRFS: device label %s devid %llu transid %llu %s\n",
803 disk_super->label, devid, found_transid, path);
804 else
805 pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n",
806 disk_super->fsid, devid, found_transid, path);
807
Josef Bacik606686e2012-06-04 14:03:51 -0400808 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800809 /*
810 * When FS is already mounted.
811 * 1. If you are here and if the device->name is NULL that
812 * means this device was missing at time of FS mount.
813 * 2. If you are here and if the device->name is different
814 * from 'path' that means either
815 * a. The same device disappeared and reappeared with
816 * different name. or
817 * b. The missing-disk-which-was-replaced, has
818 * reappeared now.
819 *
820 * We must allow 1 and 2a above. But 2b would be a spurious
821 * and unintentional.
822 *
823 * Further in case of 1 and 2a above, the disk at 'path'
824 * would have missed some transaction when it was away and
825 * in case of 2a the stale bdev has to be updated as well.
826 * 2b must not be allowed at all time.
827 */
828
829 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700830 * For now, we do allow update to btrfs_fs_device through the
831 * btrfs dev scan cli after FS has been mounted. We're still
832 * tracking a problem where systems fail mount by subvolume id
833 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800834 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700835 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800836 /*
837 * That is if the FS is _not_ mounted and if you
838 * are here, that means there is more than one
839 * disk with same uuid and devid.We keep the one
840 * with larger generation number or the last-in if
841 * generation are equal.
842 */
Anand Jaine124ece2018-01-18 22:02:35 +0800843 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800844 }
Anand Jainb96de002014-07-03 18:22:05 +0800845
Josef Bacik606686e2012-06-04 14:03:51 -0400846 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000847 if (!name)
Anand Jaine124ece2018-01-18 22:02:35 +0800848 return ERR_PTR(-ENOMEM);
Josef Bacik606686e2012-06-04 14:03:51 -0400849 rcu_string_free(device->name);
850 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800851 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500852 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800853 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500854 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400855 }
856
Anand Jain77bdae42014-07-03 18:22:06 +0800857 /*
858 * Unmount does not free the btrfs_device struct but would zero
859 * generation along with most of the other members. So just update
860 * it back. We need it to pick the disk with largest generation
861 * (as above).
862 */
863 if (!fs_devices->opened)
864 device->generation = found_transid;
865
Anand Jainf2788d22018-01-18 22:02:34 +0800866 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
867
Anand Jaine124ece2018-01-18 22:02:35 +0800868 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400869}
870
Yan Zhenge4404d62008-12-12 10:03:26 -0500871static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
872{
873 struct btrfs_fs_devices *fs_devices;
874 struct btrfs_device *device;
875 struct btrfs_device *orig_dev;
876
Ilya Dryomov2208a372013-08-12 14:33:03 +0300877 fs_devices = alloc_fs_devices(orig->fsid);
878 if (IS_ERR(fs_devices))
879 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500880
Miao Xieadbbb862014-09-03 21:35:42 +0800881 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400882 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500883
Xiao Guangrong46224702011-04-20 10:08:47 +0000884 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500885 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400886 struct rcu_string *name;
887
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300888 device = btrfs_alloc_device(NULL, &orig_dev->devid,
889 orig_dev->uuid);
890 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500891 goto error;
892
Josef Bacik606686e2012-06-04 14:03:51 -0400893 /*
894 * This is ok to do without rcu read locked because we hold the
895 * uuid mutex so nothing we touch in here is going to disappear.
896 */
Anand Jaine755f782014-06-30 17:12:47 +0800897 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100898 name = rcu_string_strdup(orig_dev->name->str,
899 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800900 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100901 btrfs_free_device(device);
Anand Jaine755f782014-06-30 17:12:47 +0800902 goto error;
903 }
904 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400905 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500906
Yan Zhenge4404d62008-12-12 10:03:26 -0500907 list_add(&device->dev_list, &fs_devices->devices);
908 device->fs_devices = fs_devices;
909 fs_devices->num_devices++;
910 }
Miao Xieadbbb862014-09-03 21:35:42 +0800911 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500912 return fs_devices;
913error:
Miao Xieadbbb862014-09-03 21:35:42 +0800914 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500915 free_fs_devices(fs_devices);
916 return ERR_PTR(-ENOMEM);
917}
918
Anand Jain9b99b112018-02-27 12:41:59 +0800919/*
920 * After we have read the system tree and know devids belonging to
921 * this filesystem, remove the device which does not belong there.
922 */
923void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400924{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500925 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800926 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500927
Chris Masondfe25022008-05-13 13:46:40 -0400928 mutex_lock(&uuid_mutex);
929again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000930 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500931 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +0800932 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
933 &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +0800934 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
935 &device->dev_state) &&
936 (!latest_dev ||
937 device->generation > latest_dev->generation)) {
Miao Xie443f24f2014-07-24 11:37:15 +0800938 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500939 }
Yan Zheng2b820322008-11-17 21:11:30 -0500940 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500941 }
Yan Zheng2b820322008-11-17 21:11:30 -0500942
Stefan Behrens8dabb742012-11-06 13:15:27 +0100943 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
944 /*
945 * In the first step, keep the device which has
946 * the correct fsid and the devid that is used
947 * for the dev_replace procedure.
948 * In the second step, the dev_replace state is
949 * read from the device tree and it is known
950 * whether the procedure is really active or
951 * not, which means whether this device is
952 * used or whether it should be removed.
953 */
Anand Jain401e29c2017-12-04 12:54:55 +0800954 if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
955 &device->dev_state)) {
Stefan Behrens8dabb742012-11-06 13:15:27 +0100956 continue;
957 }
958 }
Yan Zheng2b820322008-11-17 21:11:30 -0500959 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100960 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500961 device->bdev = NULL;
962 fs_devices->open_devices--;
963 }
Anand Jainebbede42017-12-04 12:54:52 +0800964 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -0500965 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +0800966 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +0800967 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
968 &device->dev_state))
Stefan Behrens8dabb742012-11-06 13:15:27 +0100969 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500970 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500971 list_del_init(&device->dev_list);
972 fs_devices->num_devices--;
David Sterbaa425f9d2018-03-20 15:47:33 +0100973 btrfs_free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -0400974 }
Yan Zheng2b820322008-11-17 21:11:30 -0500975
976 if (fs_devices->seed) {
977 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500978 goto again;
979 }
980
Miao Xie443f24f2014-07-24 11:37:15 +0800981 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500982
Chris Masondfe25022008-05-13 13:46:40 -0400983 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400984}
Chris Masona0af4692008-05-13 16:03:06 -0400985
David Sterbaf06c5962017-06-06 17:08:23 +0200986static void free_device_rcu(struct rcu_head *head)
Xiao Guangrong1f781602011-04-20 10:09:16 +0000987{
988 struct btrfs_device *device;
989
990 device = container_of(head, struct btrfs_device, rcu);
David Sterbaa425f9d2018-03-20 15:47:33 +0100991 btrfs_free_device(device);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000992}
993
Anand Jain14238812016-07-22 06:04:53 +0800994static void btrfs_close_bdev(struct btrfs_device *device)
995{
David Sterba08ffcae2017-06-19 16:55:35 +0200996 if (!device->bdev)
997 return;
998
Anand Jainebbede42017-12-04 12:54:52 +0800999 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +08001000 sync_blockdev(device->bdev);
1001 invalidate_bdev(device->bdev);
1002 }
1003
David Sterba08ffcae2017-06-19 16:55:35 +02001004 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +08001005}
1006
Anand Jain0ccd0522016-09-22 12:56:13 +08001007static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +08001008{
1009 struct btrfs_fs_devices *fs_devices = device->fs_devices;
1010 struct btrfs_device *new_device;
1011 struct rcu_string *name;
1012
1013 if (device->bdev)
1014 fs_devices->open_devices--;
1015
Anand Jainebbede42017-12-04 12:54:52 +08001016 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +08001017 device->devid != BTRFS_DEV_REPLACE_DEVID) {
1018 list_del_init(&device->dev_alloc_list);
1019 fs_devices->rw_devices--;
1020 }
1021
Anand Jaine6e674b2017-12-04 12:54:54 +08001022 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jainf448341a2016-06-14 18:55:25 +08001023 fs_devices->missing_devices--;
1024
1025 new_device = btrfs_alloc_device(NULL, &device->devid,
1026 device->uuid);
1027 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
1028
1029 /* Safe because we are under uuid_mutex */
1030 if (device->name) {
1031 name = rcu_string_strdup(device->name->str, GFP_NOFS);
1032 BUG_ON(!name); /* -ENOMEM */
1033 rcu_assign_pointer(new_device->name, name);
1034 }
1035
1036 list_replace_rcu(&device->dev_list, &new_device->dev_list);
1037 new_device->fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +08001038}
1039
Anand Jain0226e0e2018-04-12 10:29:27 +08001040static int close_fs_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001041{
Sasha Levin2037a092015-05-12 19:31:37 -04001042 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +08001043 struct list_head pending_put;
1044
1045 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -05001046
Yan Zheng2b820322008-11-17 21:11:30 -05001047 if (--fs_devices->opened > 0)
1048 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001049
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001050 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -04001051 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +08001052 btrfs_prepare_close_one_device(device);
1053 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001054 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001055 mutex_unlock(&fs_devices->device_list_mutex);
1056
Anand Jain0ccd0522016-09-22 12:56:13 +08001057 /*
1058 * btrfs_show_devname() is using the device_list_mutex,
1059 * sometimes call to blkdev_put() leads vfs calling
1060 * into this func. So do put outside of device_list_mutex,
1061 * as of now.
1062 */
1063 while (!list_empty(&pending_put)) {
1064 device = list_first_entry(&pending_put,
1065 struct btrfs_device, dev_list);
1066 list_del(&device->dev_list);
1067 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02001068 call_rcu(&device->rcu, free_device_rcu);
Anand Jain0ccd0522016-09-22 12:56:13 +08001069 }
1070
Yan Zhenge4404d62008-12-12 10:03:26 -05001071 WARN_ON(fs_devices->open_devices);
1072 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001073 fs_devices->opened = 0;
1074 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001075
Chris Mason8a4b83c2008-03-24 15:02:07 -04001076 return 0;
1077}
1078
Yan Zheng2b820322008-11-17 21:11:30 -05001079int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
1080{
Yan Zhenge4404d62008-12-12 10:03:26 -05001081 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -05001082 int ret;
1083
1084 mutex_lock(&uuid_mutex);
Anand Jain0226e0e2018-04-12 10:29:27 +08001085 ret = close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001086 if (!fs_devices->opened) {
1087 seed_devices = fs_devices->seed;
1088 fs_devices->seed = NULL;
1089 }
Yan Zheng2b820322008-11-17 21:11:30 -05001090 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001091
1092 while (seed_devices) {
1093 fs_devices = seed_devices;
1094 seed_devices = fs_devices->seed;
Anand Jain0226e0e2018-04-12 10:29:27 +08001095 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001096 free_fs_devices(fs_devices);
1097 }
Yan Zheng2b820322008-11-17 21:11:30 -05001098 return ret;
1099}
1100
Anand Jain897fb572018-04-12 10:29:28 +08001101static int open_fs_devices(struct btrfs_fs_devices *fs_devices,
Yan Zhenge4404d62008-12-12 10:03:26 -05001102 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001103{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001104 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001105 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -04001106 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001107
Tejun Heod4d77622010-11-13 11:55:18 +01001108 flags |= FMODE_EXCL;
1109
Anand Jainf117e292018-04-12 10:29:26 +08001110 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Eric Sandeenf63e0cc2013-04-04 20:45:08 +00001111 /* Just open everything we can; ignore failures here */
Anand Jain0fb08bc2017-11-09 23:45:24 +08001112 if (btrfs_open_one_device(fs_devices, device, flags, holder))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001113 continue;
Chris Masona0af4692008-05-13 16:03:06 -04001114
Anand Jain9f050db2017-11-09 23:45:25 +08001115 if (!latest_dev ||
1116 device->generation > latest_dev->generation)
1117 latest_dev = device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001118 }
Chris Masona0af4692008-05-13 16:03:06 -04001119 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001120 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001121 goto out;
1122 }
Yan Zheng2b820322008-11-17 21:11:30 -05001123 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001124 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001125 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001126out:
Yan Zheng2b820322008-11-17 21:11:30 -05001127 return ret;
1128}
1129
Anand Jainf8e10cd2018-01-22 14:49:36 -08001130static int devid_cmp(void *priv, struct list_head *a, struct list_head *b)
1131{
1132 struct btrfs_device *dev1, *dev2;
1133
1134 dev1 = list_entry(a, struct btrfs_device, dev_list);
1135 dev2 = list_entry(b, struct btrfs_device, dev_list);
1136
1137 if (dev1->devid < dev2->devid)
1138 return -1;
1139 else if (dev1->devid > dev2->devid)
1140 return 1;
1141 return 0;
1142}
1143
Yan Zheng2b820322008-11-17 21:11:30 -05001144int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001145 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001146{
1147 int ret;
1148
1149 mutex_lock(&uuid_mutex);
1150 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001151 fs_devices->opened++;
1152 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001153 } else {
Anand Jainf8e10cd2018-01-22 14:49:36 -08001154 list_sort(NULL, &fs_devices->devices, devid_cmp);
Anand Jain897fb572018-04-12 10:29:28 +08001155 ret = open_fs_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001156 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001157 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001158 return ret;
1159}
1160
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001161static void btrfs_release_disk_super(struct page *page)
Anand Jain6cf86a002016-02-13 10:01:29 +08001162{
1163 kunmap(page);
1164 put_page(page);
1165}
1166
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001167static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1168 struct page **page,
1169 struct btrfs_super_block **disk_super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001170{
1171 void *p;
1172 pgoff_t index;
1173
1174 /* make sure our super fits in the device */
1175 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1176 return 1;
1177
1178 /* make sure our super fits in the page */
1179 if (sizeof(**disk_super) > PAGE_SIZE)
1180 return 1;
1181
1182 /* make sure our super doesn't straddle pages on disk */
1183 index = bytenr >> PAGE_SHIFT;
1184 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1185 return 1;
1186
1187 /* pull in the page with our super */
1188 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1189 index, GFP_KERNEL);
1190
1191 if (IS_ERR_OR_NULL(*page))
1192 return 1;
1193
1194 p = kmap(*page);
1195
1196 /* align our pointer to the offset of the super block */
1197 *disk_super = p + (bytenr & ~PAGE_MASK);
1198
1199 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1200 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1201 btrfs_release_disk_super(*page);
1202 return 1;
1203 }
1204
1205 if ((*disk_super)->label[0] &&
1206 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1207 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1208
1209 return 0;
1210}
1211
David Sterba6f60cbd2013-02-15 11:31:02 -07001212/*
1213 * Look for a btrfs signature on a device. This may be called out of the mount path
1214 * and we are not allowed to call set_blocksize during the scan. The superblock
1215 * is read via pagecache
1216 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001217int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001218 struct btrfs_fs_devices **fs_devices_ret)
1219{
1220 struct btrfs_super_block *disk_super;
Anand Jaine124ece2018-01-18 22:02:35 +08001221 struct btrfs_device *device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001222 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001223 struct page *page;
Anand Jaine124ece2018-01-18 22:02:35 +08001224 int ret = 0;
David Sterba6f60cbd2013-02-15 11:31:02 -07001225 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001226
David Sterba6f60cbd2013-02-15 11:31:02 -07001227 /*
1228 * we would like to check all the supers, but that would make
1229 * a btrfs mount succeed after a mkfs from a different FS.
1230 * So, we need to add a special mount option to scan for
1231 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1232 */
1233 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001234 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001235 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001236
1237 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001238 if (IS_ERR(bdev)) {
1239 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001240 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001241 }
1242
Anand Jain05a5c552017-12-15 15:40:16 +08001243 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) {
1244 ret = -EINVAL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001245 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001246 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001247
Anand Jain3acbcbf2018-01-18 22:02:36 +08001248 device = device_list_add(path, disk_super);
Anand Jaine124ece2018-01-18 22:02:35 +08001249 if (IS_ERR(device))
1250 ret = PTR_ERR(device);
1251 else
1252 *fs_devices_ret = device->fs_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001253
Anand Jain6cf86a002016-02-13 10:01:29 +08001254 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001255
1256error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001257 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001258error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001259 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001260 return ret;
1261}
Chris Mason0b86a832008-03-24 15:01:56 -04001262
Miao Xie6d07bce2011-01-05 10:07:31 +00001263/* helper to account the used device space in the range */
1264int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1265 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001266{
1267 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001268 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001269 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001270 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001271 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001272 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001273 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001274 struct extent_buffer *l;
1275
Miao Xie6d07bce2011-01-05 10:07:31 +00001276 *length = 0;
1277
Anand Jain401e29c2017-12-04 12:54:55 +08001278 if (start >= device->total_bytes ||
1279 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Miao Xie6d07bce2011-01-05 10:07:31 +00001280 return 0;
1281
Yan Zheng2b820322008-11-17 21:11:30 -05001282 path = btrfs_alloc_path();
1283 if (!path)
1284 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001285 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001286
Chris Mason0b86a832008-03-24 15:01:56 -04001287 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001288 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001289 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001290
1291 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001292 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001293 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001294 if (ret > 0) {
1295 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1296 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001297 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001298 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001299
Chris Mason0b86a832008-03-24 15:01:56 -04001300 while (1) {
1301 l = path->nodes[0];
1302 slot = path->slots[0];
1303 if (slot >= btrfs_header_nritems(l)) {
1304 ret = btrfs_next_leaf(root, path);
1305 if (ret == 0)
1306 continue;
1307 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001308 goto out;
1309
1310 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001311 }
1312 btrfs_item_key_to_cpu(l, &key, slot);
1313
1314 if (key.objectid < device->devid)
1315 goto next;
1316
1317 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001318 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001319
David Sterba962a2982014-06-04 18:41:45 +02001320 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001321 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001322
Chris Mason0b86a832008-03-24 15:01:56 -04001323 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001324 extent_end = key.offset + btrfs_dev_extent_length(l,
1325 dev_extent);
1326 if (key.offset <= start && extent_end > end) {
1327 *length = end - start + 1;
1328 break;
1329 } else if (key.offset <= start && extent_end > start)
1330 *length += extent_end - start;
1331 else if (key.offset > start && extent_end <= end)
1332 *length += extent_end - key.offset;
1333 else if (key.offset > start && key.offset <= end) {
1334 *length += end - key.offset + 1;
1335 break;
1336 } else if (key.offset > end)
1337 break;
1338
1339next:
1340 path->slots[0]++;
1341 }
1342 ret = 0;
1343out:
1344 btrfs_free_path(path);
1345 return ret;
1346}
1347
Jeff Mahoney499f3772015-06-15 09:41:17 -04001348static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001349 struct btrfs_device *device,
1350 u64 *start, u64 len)
1351{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001352 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001353 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001354 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001355 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001356 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001357
Jeff Mahoney499f3772015-06-15 09:41:17 -04001358 if (transaction)
1359 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001360again:
1361 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001362 struct map_lookup *map;
1363 int i;
1364
Jeff Mahoney95617d62015-06-03 10:55:48 -04001365 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001366 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001367 u64 end;
1368
Josef Bacik6df9a952013-06-27 13:22:46 -04001369 if (map->stripes[i].dev != device)
1370 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001371 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001372 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001373 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001374 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001375 /*
1376 * Make sure that while processing the pinned list we do
1377 * not override our *start with a lower value, because
1378 * we can have pinned chunks that fall within this
1379 * device hole and that have lower physical addresses
1380 * than the pending chunks we processed before. If we
1381 * do not take this special care we can end up getting
1382 * 2 pending chunks that start at the same physical
1383 * device offsets because the end offset of a pinned
1384 * chunk can be equal to the start offset of some
1385 * pending chunk.
1386 */
1387 end = map->stripes[i].physical + em->orig_block_len;
1388 if (end > *start) {
1389 *start = end;
1390 ret = 1;
1391 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001392 }
1393 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001394 if (search_list != &fs_info->pinned_chunks) {
1395 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001396 goto again;
1397 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001398
1399 return ret;
1400}
1401
1402
Chris Mason0b86a832008-03-24 15:01:56 -04001403/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001404 * find_free_dev_extent_start - find free space in the specified device
1405 * @device: the device which we search the free space in
1406 * @num_bytes: the size of the free space that we need
1407 * @search_start: the position from which to begin the search
1408 * @start: store the start of the free space.
1409 * @len: the size of the free space. that we find, or the size
1410 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001411 *
Chris Mason0b86a832008-03-24 15:01:56 -04001412 * this uses a pretty simple search, the expectation is that it is
1413 * called very infrequently and that a given device has a small number
1414 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001415 *
1416 * @start is used to store the start of the free space if we find. But if we
1417 * don't find suitable free space, it will be used to store the start position
1418 * of the max free space.
1419 *
1420 * @len is used to store the size of the free space that we find.
1421 * But if we don't find suitable free space, it is used to store the size of
1422 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001423 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001424int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1425 struct btrfs_device *device, u64 num_bytes,
1426 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001427{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001428 struct btrfs_fs_info *fs_info = device->fs_info;
1429 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001430 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001431 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001432 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001433 u64 hole_size;
1434 u64 max_hole_start;
1435 u64 max_hole_size;
1436 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001437 u64 search_end = device->total_bytes;
1438 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001439 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001440 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001441
1442 /*
1443 * We don't want to overwrite the superblock on the drive nor any area
1444 * used by the boot loader (grub for example), so we make sure to start
1445 * at an offset of at least 1MB.
1446 */
David Sterba0d0c71b2017-06-15 01:30:06 +02001447 search_start = max_t(u64, search_start, SZ_1M);
Chris Mason0b86a832008-03-24 15:01:56 -04001448
Josef Bacik6df9a952013-06-27 13:22:46 -04001449 path = btrfs_alloc_path();
1450 if (!path)
1451 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001452
Miao Xie7bfc8372011-01-05 10:07:26 +00001453 max_hole_start = search_start;
1454 max_hole_size = 0;
1455
Zhao Leif2ab7612015-02-16 18:52:17 +08001456again:
Anand Jain401e29c2017-12-04 12:54:55 +08001457 if (search_start >= search_end ||
1458 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001459 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001460 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001461 }
1462
David Sterbae4058b52015-11-27 16:31:35 +01001463 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001464 path->search_commit_root = 1;
1465 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001466
Chris Mason0b86a832008-03-24 15:01:56 -04001467 key.objectid = device->devid;
1468 key.offset = search_start;
1469 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001470
Li Zefan125ccb02011-12-08 15:07:24 +08001471 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001472 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001473 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001474 if (ret > 0) {
1475 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1476 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001477 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001478 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001479
Chris Mason0b86a832008-03-24 15:01:56 -04001480 while (1) {
1481 l = path->nodes[0];
1482 slot = path->slots[0];
1483 if (slot >= btrfs_header_nritems(l)) {
1484 ret = btrfs_next_leaf(root, path);
1485 if (ret == 0)
1486 continue;
1487 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001488 goto out;
1489
1490 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001491 }
1492 btrfs_item_key_to_cpu(l, &key, slot);
1493
1494 if (key.objectid < device->devid)
1495 goto next;
1496
1497 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001498 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001499
David Sterba962a2982014-06-04 18:41:45 +02001500 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001501 goto next;
1502
Miao Xie7bfc8372011-01-05 10:07:26 +00001503 if (key.offset > search_start) {
1504 hole_size = key.offset - search_start;
1505
Josef Bacik6df9a952013-06-27 13:22:46 -04001506 /*
1507 * Have to check before we set max_hole_start, otherwise
1508 * we could end up sending back this offset anyway.
1509 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001510 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001511 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001512 hole_size)) {
1513 if (key.offset >= search_start) {
1514 hole_size = key.offset - search_start;
1515 } else {
1516 WARN_ON_ONCE(1);
1517 hole_size = 0;
1518 }
1519 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001520
Miao Xie7bfc8372011-01-05 10:07:26 +00001521 if (hole_size > max_hole_size) {
1522 max_hole_start = search_start;
1523 max_hole_size = hole_size;
1524 }
1525
1526 /*
1527 * If this free space is greater than which we need,
1528 * it must be the max free space that we have found
1529 * until now, so max_hole_start must point to the start
1530 * of this free space and the length of this free space
1531 * is stored in max_hole_size. Thus, we return
1532 * max_hole_start and max_hole_size and go back to the
1533 * caller.
1534 */
1535 if (hole_size >= num_bytes) {
1536 ret = 0;
1537 goto out;
1538 }
1539 }
1540
Chris Mason0b86a832008-03-24 15:01:56 -04001541 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001542 extent_end = key.offset + btrfs_dev_extent_length(l,
1543 dev_extent);
1544 if (extent_end > search_start)
1545 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001546next:
1547 path->slots[0]++;
1548 cond_resched();
1549 }
Chris Mason0b86a832008-03-24 15:01:56 -04001550
liubo38c01b92011-08-02 02:39:03 +00001551 /*
1552 * At this point, search_start should be the end of
1553 * allocated dev extents, and when shrinking the device,
1554 * search_end may be smaller than search_start.
1555 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001556 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001557 hole_size = search_end - search_start;
1558
Jeff Mahoney499f3772015-06-15 09:41:17 -04001559 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001560 hole_size)) {
1561 btrfs_release_path(path);
1562 goto again;
1563 }
Chris Mason0b86a832008-03-24 15:01:56 -04001564
Zhao Leif2ab7612015-02-16 18:52:17 +08001565 if (hole_size > max_hole_size) {
1566 max_hole_start = search_start;
1567 max_hole_size = hole_size;
1568 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001569 }
1570
Miao Xie7bfc8372011-01-05 10:07:26 +00001571 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001572 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001573 ret = -ENOSPC;
1574 else
1575 ret = 0;
1576
1577out:
Yan Zheng2b820322008-11-17 21:11:30 -05001578 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001579 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001580 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001581 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001582 return ret;
1583}
1584
Jeff Mahoney499f3772015-06-15 09:41:17 -04001585int find_free_dev_extent(struct btrfs_trans_handle *trans,
1586 struct btrfs_device *device, u64 num_bytes,
1587 u64 *start, u64 *len)
1588{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001589 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001590 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001591 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001592}
1593
Christoph Hellwigb2950862008-12-02 09:54:17 -05001594static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001595 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001596 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001597{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001598 struct btrfs_fs_info *fs_info = device->fs_info;
1599 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001600 int ret;
1601 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001602 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001603 struct btrfs_key found_key;
1604 struct extent_buffer *leaf = NULL;
1605 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001606
1607 path = btrfs_alloc_path();
1608 if (!path)
1609 return -ENOMEM;
1610
1611 key.objectid = device->devid;
1612 key.offset = start;
1613 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001614again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001615 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001616 if (ret > 0) {
1617 ret = btrfs_previous_item(root, path, key.objectid,
1618 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001619 if (ret)
1620 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001621 leaf = path->nodes[0];
1622 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1623 extent = btrfs_item_ptr(leaf, path->slots[0],
1624 struct btrfs_dev_extent);
1625 BUG_ON(found_key.offset > start || found_key.offset +
1626 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001627 key = found_key;
1628 btrfs_release_path(path);
1629 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001630 } else if (ret == 0) {
1631 leaf = path->nodes[0];
1632 extent = btrfs_item_ptr(leaf, path->slots[0],
1633 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001634 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001635 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001636 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001637 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001638
Miao Xie2196d6e2014-09-03 21:35:41 +08001639 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1640
Chris Mason8f18cf12008-04-25 16:53:30 -04001641 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001642 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001643 btrfs_handle_fs_error(fs_info, ret,
1644 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001645 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001646 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001647 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001648out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001649 btrfs_free_path(path);
1650 return ret;
1651}
1652
Eric Sandeen48a3b632013-04-25 20:41:01 +00001653static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1654 struct btrfs_device *device,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001655 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001656{
1657 int ret;
1658 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001659 struct btrfs_fs_info *fs_info = device->fs_info;
1660 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001661 struct btrfs_dev_extent *extent;
1662 struct extent_buffer *leaf;
1663 struct btrfs_key key;
1664
Anand Jaine12c9622017-12-04 12:54:53 +08001665 WARN_ON(!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state));
Anand Jain401e29c2017-12-04 12:54:55 +08001666 WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
Chris Mason0b86a832008-03-24 15:01:56 -04001667 path = btrfs_alloc_path();
1668 if (!path)
1669 return -ENOMEM;
1670
Chris Mason0b86a832008-03-24 15:01:56 -04001671 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001672 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001673 key.type = BTRFS_DEV_EXTENT_KEY;
1674 ret = btrfs_insert_empty_item(trans, root, path, &key,
1675 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001676 if (ret)
1677 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001678
1679 leaf = path->nodes[0];
1680 extent = btrfs_item_ptr(leaf, path->slots[0],
1681 struct btrfs_dev_extent);
Nikolay Borisovb5d90712017-08-18 17:58:23 +03001682 btrfs_set_dev_extent_chunk_tree(leaf, extent,
1683 BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov0ca00af2017-08-18 17:58:22 +03001684 btrfs_set_dev_extent_chunk_objectid(leaf, extent,
1685 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Masone17cade2008-04-15 15:41:47 -04001686 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1687
Chris Mason0b86a832008-03-24 15:01:56 -04001688 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1689 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001690out:
Chris Mason0b86a832008-03-24 15:01:56 -04001691 btrfs_free_path(path);
1692 return ret;
1693}
1694
Josef Bacik6df9a952013-06-27 13:22:46 -04001695static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001696{
Josef Bacik6df9a952013-06-27 13:22:46 -04001697 struct extent_map_tree *em_tree;
1698 struct extent_map *em;
1699 struct rb_node *n;
1700 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001701
Josef Bacik6df9a952013-06-27 13:22:46 -04001702 em_tree = &fs_info->mapping_tree.map_tree;
1703 read_lock(&em_tree->lock);
1704 n = rb_last(&em_tree->map);
1705 if (n) {
1706 em = rb_entry(n, struct extent_map, rb_node);
1707 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001708 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001709 read_unlock(&em_tree->lock);
1710
Chris Mason0b86a832008-03-24 15:01:56 -04001711 return ret;
1712}
1713
Ilya Dryomov53f10652013-08-12 14:33:01 +03001714static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1715 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001716{
1717 int ret;
1718 struct btrfs_key key;
1719 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001720 struct btrfs_path *path;
1721
Yan Zheng2b820322008-11-17 21:11:30 -05001722 path = btrfs_alloc_path();
1723 if (!path)
1724 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001725
1726 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1727 key.type = BTRFS_DEV_ITEM_KEY;
1728 key.offset = (u64)-1;
1729
Ilya Dryomov53f10652013-08-12 14:33:01 +03001730 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001731 if (ret < 0)
1732 goto error;
1733
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001734 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001735
Ilya Dryomov53f10652013-08-12 14:33:01 +03001736 ret = btrfs_previous_item(fs_info->chunk_root, path,
1737 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001738 BTRFS_DEV_ITEM_KEY);
1739 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001740 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001741 } else {
1742 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1743 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001744 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001745 }
1746 ret = 0;
1747error:
Yan Zheng2b820322008-11-17 21:11:30 -05001748 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001749 return ret;
1750}
1751
1752/*
1753 * the device information is stored in the chunk root
1754 * the btrfs_device struct should be fully filled in
1755 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001756static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001757 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001758 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001759{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001760 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001761 int ret;
1762 struct btrfs_path *path;
1763 struct btrfs_dev_item *dev_item;
1764 struct extent_buffer *leaf;
1765 struct btrfs_key key;
1766 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001767
Chris Mason0b86a832008-03-24 15:01:56 -04001768 path = btrfs_alloc_path();
1769 if (!path)
1770 return -ENOMEM;
1771
Chris Mason0b86a832008-03-24 15:01:56 -04001772 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1773 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001774 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001775
1776 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001777 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001778 if (ret)
1779 goto out;
1780
1781 leaf = path->nodes[0];
1782 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1783
1784 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001785 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001786 btrfs_set_device_type(leaf, dev_item, device->type);
1787 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1788 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1789 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001790 btrfs_set_device_total_bytes(leaf, dev_item,
1791 btrfs_device_get_disk_total_bytes(device));
1792 btrfs_set_device_bytes_used(leaf, dev_item,
1793 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001794 btrfs_set_device_group(leaf, dev_item, 0);
1795 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1796 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001797 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001798
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001799 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001800 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001801 ptr = btrfs_device_fsid(dev_item);
Anand Jain44880fd2017-07-29 17:50:09 +08001802 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001803 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001804
Yan Zheng2b820322008-11-17 21:11:30 -05001805 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001806out:
1807 btrfs_free_path(path);
1808 return ret;
1809}
Chris Mason8f18cf12008-04-25 16:53:30 -04001810
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001811/*
1812 * Function to update ctime/mtime for a given device path.
1813 * Mainly used for ctime/mtime based probe like libblkid.
1814 */
David Sterbada353f62017-02-14 17:55:53 +01001815static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001816{
1817 struct file *filp;
1818
1819 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001820 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001821 return;
1822 file_update_time(filp);
1823 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001824}
1825
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001826static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001827 struct btrfs_device *device)
1828{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001829 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001830 int ret;
1831 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001832 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001833 struct btrfs_trans_handle *trans;
1834
Chris Masona061fc82008-05-07 11:43:44 -04001835 path = btrfs_alloc_path();
1836 if (!path)
1837 return -ENOMEM;
1838
Yan, Zhenga22285a2010-05-16 10:48:46 -04001839 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001840 if (IS_ERR(trans)) {
1841 btrfs_free_path(path);
1842 return PTR_ERR(trans);
1843 }
Chris Masona061fc82008-05-07 11:43:44 -04001844 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1845 key.type = BTRFS_DEV_ITEM_KEY;
1846 key.offset = device->devid;
1847
1848 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001849 if (ret) {
1850 if (ret > 0)
1851 ret = -ENOENT;
1852 btrfs_abort_transaction(trans, ret);
1853 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001854 goto out;
1855 }
1856
1857 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001858 if (ret) {
1859 btrfs_abort_transaction(trans, ret);
1860 btrfs_end_transaction(trans);
1861 }
1862
Chris Masona061fc82008-05-07 11:43:44 -04001863out:
1864 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001865 if (!ret)
1866 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001867 return ret;
1868}
1869
David Sterba3cc31a02016-02-15 16:00:26 +01001870/*
1871 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1872 * filesystem. It's up to the caller to adjust that number regarding eg. device
1873 * replace.
1874 */
1875static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1876 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001877{
Chris Masona061fc82008-05-07 11:43:44 -04001878 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001879 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001880 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001881
Miao Xiede98ced2013-01-29 10:13:12 +00001882 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001883 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001884
Anand Jainbd45ffb2016-02-13 10:01:34 +08001885 all_avail = fs_info->avail_data_alloc_bits |
1886 fs_info->avail_system_alloc_bits |
1887 fs_info->avail_metadata_alloc_bits;
1888 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001889
David Sterba418775a2016-02-15 16:28:14 +01001890 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
Anand Jain41a6e892018-04-25 19:01:43 +08001891 if (!(all_avail & btrfs_raid_array[i].bg_flag))
David Sterba418775a2016-02-15 16:28:14 +01001892 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001893
David Sterba418775a2016-02-15 16:28:14 +01001894 if (num_devices < btrfs_raid_array[i].devs_min) {
Anand Jainf9fbcaa2018-04-25 19:01:44 +08001895 int ret = btrfs_raid_array[i].mindev_error;
Chris Masona061fc82008-05-07 11:43:44 -04001896
David Sterba418775a2016-02-15 16:28:14 +01001897 if (ret)
1898 return ret;
1899 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001900 }
1901
1902 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001903}
1904
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001905static struct btrfs_device * btrfs_find_next_active_device(
1906 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001907{
1908 struct btrfs_device *next_device;
1909
1910 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1911 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08001912 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
1913 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08001914 return next_device;
1915 }
1916
1917 return NULL;
1918}
1919
1920/*
1921 * Helper function to check if the given device is part of s_bdev / latest_bdev
1922 * and replace it with the provided or the next active device, in the context
1923 * where this function called, there should be always be another device (or
1924 * this_dev) which is active.
1925 */
1926void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1927 struct btrfs_device *device, struct btrfs_device *this_dev)
1928{
1929 struct btrfs_device *next_device;
1930
1931 if (this_dev)
1932 next_device = this_dev;
1933 else
1934 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1935 device);
1936 ASSERT(next_device);
1937
1938 if (fs_info->sb->s_bdev &&
1939 (fs_info->sb->s_bdev == device->bdev))
1940 fs_info->sb->s_bdev = next_device->bdev;
1941
1942 if (fs_info->fs_devices->latest_bdev == device->bdev)
1943 fs_info->fs_devices->latest_bdev = next_device->bdev;
1944}
1945
David Sterbada353f62017-02-14 17:55:53 +01001946int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1947 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001948{
1949 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001950 struct btrfs_fs_devices *cur_devices;
Anand Jainb5185192018-04-12 10:29:30 +08001951 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001952 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001953 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001954
1955 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001956
Anand Jainb5185192018-04-12 10:29:30 +08001957 num_devices = fs_devices->num_devices;
David Sterba7e79cb82018-03-24 02:11:38 +01001958 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001959 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001960 WARN_ON(num_devices < 1);
1961 num_devices--;
1962 }
David Sterba7e79cb82018-03-24 02:11:38 +01001963 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Chris Masona061fc82008-05-07 11:43:44 -04001964
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001965 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001966 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001967 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001968
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001969 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1970 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001971 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001972 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001973
Anand Jain401e29c2017-12-04 12:54:55 +08001974 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00001975 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001976 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001977 }
1978
Anand Jainebbede42017-12-04 12:54:52 +08001979 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
1980 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001981 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001982 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001983 }
1984
Anand Jainebbede42017-12-04 12:54:52 +08001985 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02001986 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001987 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001988 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001989 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001990 }
Chris Masona061fc82008-05-07 11:43:44 -04001991
Carey Underwoodd7901552013-03-04 16:37:06 -06001992 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001993 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001994 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001995 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001996 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001997
Stefan Behrens63a212a2012-11-05 18:29:28 +01001998 /*
1999 * TODO: the superblock still includes this device in its num_devices
2000 * counter although write_all_supers() is not locked out. This
2001 * could give a filesystem state which requires a degraded mount.
2002 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002003 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04002004 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002005 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002006
Anand Jaine12c9622017-12-04 12:54:53 +08002007 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002008 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04002009
2010 /*
2011 * the device list mutex makes sure that we don't change
2012 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01002013 * the device supers. Whoever is writing all supers, should
2014 * lock the device list mutex before getting the number of
2015 * devices in the super block (super_copy). Conversely,
2016 * whoever updates the number of devices in the super block
2017 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04002018 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002019
2020 cur_devices = device->fs_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002021 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002022 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002023
Yan Zhenge4404d62008-12-12 10:03:26 -05002024 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04002025 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05002026
Anand Jaine6e674b2017-12-04 12:54:54 +08002027 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Miao Xie3a7d55c2014-07-16 18:38:01 +08002028 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05002029
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002030 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05002031
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002032 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05002033 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002034 /* remove sysfs entry */
Anand Jainb5185192018-04-12 10:29:30 +08002035 btrfs_sysfs_rm_device_link(fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002036 }
Anand Jain99994cd2014-06-03 11:36:00 +08002037
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002038 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
2039 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
Anand Jainb5185192018-04-12 10:29:30 +08002040 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002041
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002042 /*
2043 * at this point, the device is zero sized and detached from
2044 * the devices list. All that's left is to zero out the old
2045 * supers and free the device.
2046 */
Anand Jainebbede42017-12-04 12:54:52 +08002047 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002048 btrfs_scratch_superblocks(device->bdev, device->name->str);
2049
2050 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02002051 call_rcu(&device->rcu, free_device_rcu);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002052
Xiao Guangrong1f781602011-04-20 10:09:16 +00002053 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05002054 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002055 if (fs_devices->seed == cur_devices) {
2056 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05002057 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002058 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002059 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05002060 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00002061 cur_devices->seed = NULL;
Anand Jain0226e0e2018-04-12 10:29:27 +08002062 close_fs_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002063 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002064 }
2065
Chris Masona061fc82008-05-07 11:43:44 -04002066out:
2067 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002068 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08002069
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002070error_undo:
Anand Jainebbede42017-12-04 12:54:52 +08002071 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002072 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002073 list_add(&device->dev_alloc_list,
Anand Jainb5185192018-04-12 10:29:30 +08002074 &fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002075 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002076 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002077 }
Anand Jain24fc5722016-02-13 10:01:36 +08002078 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002079}
2080
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002081void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
2082 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002083{
Anand Jaind51908c2014-08-13 14:24:19 +08002084 struct btrfs_fs_devices *fs_devices;
2085
David Sterbaa32bf9a2018-03-16 02:21:22 +01002086 lockdep_assert_held(&fs_info->fs_devices->device_list_mutex);
Ilya Dryomov13572722013-10-02 20:41:01 +03002087
Anand Jain25e8e912014-08-20 10:56:56 +08002088 /*
2089 * in case of fs with no seed, srcdev->fs_devices will point
2090 * to fs_devices of fs_info. However when the dev being replaced is
2091 * a seed dev it will point to the seed's local fs_devices. In short
2092 * srcdev will have its correct fs_devices in both the cases.
2093 */
2094 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002095
Stefan Behrense93c89c2012-11-05 17:33:06 +01002096 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002097 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002098 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002099 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002100 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002101
Anand Jainebbede42017-12-04 12:54:52 +08002102 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002103 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002104
Miao Xie82372bc2014-09-03 21:35:44 +08002105 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002106 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002107}
2108
2109void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2110 struct btrfs_device *srcdev)
2111{
2112 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002113
Anand Jainebbede42017-12-04 12:54:52 +08002114 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) {
Anand Jain48b3b9d2016-04-12 21:36:16 +08002115 /* zero out the old super if it is writable */
2116 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2117 }
Anand Jain14238812016-07-22 06:04:53 +08002118
2119 btrfs_close_bdev(srcdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002120 call_rcu(&srcdev->rcu, free_device_rcu);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002121
Anand Jain94d5f0c2014-08-13 14:24:22 +08002122 /* if this is no devs we rather delete the fs_devices */
2123 if (!fs_devices->num_devices) {
2124 struct btrfs_fs_devices *tmp_fs_devices;
2125
Anand Jain6dd38f82017-10-17 06:53:50 +08002126 /*
2127 * On a mounted FS, num_devices can't be zero unless it's a
2128 * seed. In case of a seed device being replaced, the replace
2129 * target added to the sprout FS, so there will be no more
2130 * device left under the seed FS.
2131 */
2132 ASSERT(fs_devices->seeding);
2133
Anand Jain94d5f0c2014-08-13 14:24:22 +08002134 tmp_fs_devices = fs_info->fs_devices;
2135 while (tmp_fs_devices) {
2136 if (tmp_fs_devices->seed == fs_devices) {
2137 tmp_fs_devices->seed = fs_devices->seed;
2138 break;
2139 }
2140 tmp_fs_devices = tmp_fs_devices->seed;
2141 }
2142 fs_devices->seed = NULL;
Anand Jain0226e0e2018-04-12 10:29:27 +08002143 close_fs_devices(fs_devices);
Anand Jain8bef8402014-08-13 14:24:23 +08002144 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002145 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002146}
2147
2148void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2149 struct btrfs_device *tgtdev)
2150{
Miao Xie67a2c452014-09-03 21:35:43 +08002151 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002152 WARN_ON(!tgtdev);
2153 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002154
Anand Jain32576042015-08-14 18:32:49 +08002155 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002156
Anand Jain779bf3fe2016-04-18 16:51:23 +08002157 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002158 fs_info->fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002159
Stefan Behrense93c89c2012-11-05 17:33:06 +01002160 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002161
Anand Jain88acff62016-05-03 17:44:43 +08002162 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002163
Stefan Behrense93c89c2012-11-05 17:33:06 +01002164 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002165
2166 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002167 mutex_unlock(&uuid_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002168
2169 /*
2170 * The update_dev_time() with in btrfs_scratch_superblocks()
2171 * may lead to a call to btrfs_show_devname() which will try
2172 * to hold device_list_mutex. And here this device
2173 * is already out of device list, so we don't have to hold
2174 * the device_list_mutex lock.
2175 */
2176 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002177
2178 btrfs_close_bdev(tgtdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002179 call_rcu(&tgtdev->rcu, free_device_rcu);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002180}
2181
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002182static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002183 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002184 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002185{
2186 int ret = 0;
2187 struct btrfs_super_block *disk_super;
2188 u64 devid;
2189 u8 *dev_uuid;
2190 struct block_device *bdev;
2191 struct buffer_head *bh;
2192
2193 *device = NULL;
2194 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002195 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002196 if (ret)
2197 return ret;
2198 disk_super = (struct btrfs_super_block *)bh->b_data;
2199 devid = btrfs_stack_device_id(&disk_super->dev_item);
2200 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002201 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002202 brelse(bh);
2203 if (!*device)
2204 ret = -ENOENT;
2205 blkdev_put(bdev, FMODE_READ);
2206 return ret;
2207}
2208
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002209int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002210 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002211 struct btrfs_device **device)
2212{
2213 *device = NULL;
2214 if (strcmp(device_path, "missing") == 0) {
2215 struct list_head *devices;
2216 struct btrfs_device *tmp;
2217
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002218 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002219 list_for_each_entry(tmp, devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +08002220 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
2221 &tmp->dev_state) && !tmp->bdev) {
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002222 *device = tmp;
2223 break;
2224 }
2225 }
2226
Anand Jaind74a6252015-08-14 18:32:56 +08002227 if (!*device)
2228 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002229
2230 return 0;
2231 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002232 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002233 }
2234}
2235
Yan Zheng2b820322008-11-17 21:11:30 -05002236/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002237 * Lookup a device given by device id, or the path if the id is 0.
2238 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002239int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002240 const char *devpath,
2241 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002242{
2243 int ret;
2244
David Sterba5c5c0df2016-02-15 16:39:55 +01002245 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002246 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002247 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002248 if (!*device)
2249 ret = -ENOENT;
2250 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002251 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002252 return -EINVAL;
2253
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002254 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002255 device);
2256 }
2257 return ret;
2258}
2259
Yan Zheng2b820322008-11-17 21:11:30 -05002260/*
2261 * does all the dirty work required for changing file system's UUID.
2262 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002263static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002264{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002265 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002266 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002267 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002268 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002269 struct btrfs_device *device;
2270 u64 super_flags;
2271
David Sterbaa32bf9a2018-03-16 02:21:22 +01002272 lockdep_assert_held(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002273 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002274 return -EINVAL;
2275
David Sterba2dfeca92017-06-14 02:48:07 +02002276 seed_devices = alloc_fs_devices(NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002277 if (IS_ERR(seed_devices))
2278 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002279
Yan Zhenge4404d62008-12-12 10:03:26 -05002280 old_devices = clone_fs_devices(fs_devices);
2281 if (IS_ERR(old_devices)) {
2282 kfree(seed_devices);
2283 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002284 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002285
Anand Jainc4babc52018-04-12 10:29:25 +08002286 list_add(&old_devices->fs_list, &fs_uuids);
Yan Zheng2b820322008-11-17 21:11:30 -05002287
Yan Zhenge4404d62008-12-12 10:03:26 -05002288 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2289 seed_devices->opened = 1;
2290 INIT_LIST_HEAD(&seed_devices->devices);
2291 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002292 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002293
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002294 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002295 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2296 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002297 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002298 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002299
David Sterba34441362016-10-04 19:34:27 +02002300 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002301 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002302 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002303
Yan Zheng2b820322008-11-17 21:11:30 -05002304 fs_devices->seeding = 0;
2305 fs_devices->num_devices = 0;
2306 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002307 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002308 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002309 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002310
2311 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002312 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002313 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002314 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002315
Yan Zheng2b820322008-11-17 21:11:30 -05002316 super_flags = btrfs_super_flags(disk_super) &
2317 ~BTRFS_SUPER_FLAG_SEEDING;
2318 btrfs_set_super_flags(disk_super, super_flags);
2319
2320 return 0;
2321}
2322
2323/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002324 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002325 */
2326static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002327 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002328{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002329 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002330 struct btrfs_path *path;
2331 struct extent_buffer *leaf;
2332 struct btrfs_dev_item *dev_item;
2333 struct btrfs_device *device;
2334 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002335 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002336 u8 dev_uuid[BTRFS_UUID_SIZE];
2337 u64 devid;
2338 int ret;
2339
2340 path = btrfs_alloc_path();
2341 if (!path)
2342 return -ENOMEM;
2343
Yan Zheng2b820322008-11-17 21:11:30 -05002344 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2345 key.offset = 0;
2346 key.type = BTRFS_DEV_ITEM_KEY;
2347
2348 while (1) {
2349 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2350 if (ret < 0)
2351 goto error;
2352
2353 leaf = path->nodes[0];
2354next_slot:
2355 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2356 ret = btrfs_next_leaf(root, path);
2357 if (ret > 0)
2358 break;
2359 if (ret < 0)
2360 goto error;
2361 leaf = path->nodes[0];
2362 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002363 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002364 continue;
2365 }
2366
2367 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2368 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2369 key.type != BTRFS_DEV_ITEM_KEY)
2370 break;
2371
2372 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2373 struct btrfs_dev_item);
2374 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002375 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002376 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002377 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002378 BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002379 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002380 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002381
2382 if (device->fs_devices->seeding) {
2383 btrfs_set_device_generation(leaf, dev_item,
2384 device->generation);
2385 btrfs_mark_buffer_dirty(leaf);
2386 }
2387
2388 path->slots[0]++;
2389 goto next_slot;
2390 }
2391 ret = 0;
2392error:
2393 btrfs_free_path(path);
2394 return ret;
2395}
2396
David Sterbada353f62017-02-14 17:55:53 +01002397int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002398{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002399 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002400 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002401 struct btrfs_trans_handle *trans;
2402 struct btrfs_device *device;
2403 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002404 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002405 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002406 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002407 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002408 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002409 int ret = 0;
Anand Jain7132a262017-09-28 14:51:11 +08002410 bool unlocked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002411
David Howellsbc98a422017-07-17 08:45:34 +01002412 if (sb_rdonly(sb) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002413 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002414
Li Zefana5d16332011-12-07 20:08:40 -05002415 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002416 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002417 if (IS_ERR(bdev))
2418 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002419
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002420 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002421 seeding_dev = 1;
2422 down_write(&sb->s_umount);
2423 mutex_lock(&uuid_mutex);
2424 }
2425
Chris Mason8c8bee12008-09-29 11:19:10 -04002426 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002427
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002428 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002429
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002430 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002431 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002432 if (device->bdev == bdev) {
2433 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002434 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002435 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002436 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002437 }
2438 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002439 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002440
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002441 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002442 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002443 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002444 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002445 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002446 }
2447
David Sterba78f2c9e2016-02-11 14:25:38 +01002448 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002449 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002450 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002451 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002452 }
Josef Bacik606686e2012-06-04 14:03:51 -04002453 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002454
Yan, Zhenga22285a2010-05-16 10:48:46 -04002455 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002456 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002457 ret = PTR_ERR(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002458 goto error_free_device;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002459 }
2460
Josef Bacikd5e20032011-08-04 14:52:27 +00002461 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002462 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002463 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002464 device->io_width = fs_info->sectorsize;
2465 device->io_align = fs_info->sectorsize;
2466 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002467 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2468 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002469 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002470 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002471 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002472 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +08002473 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002474 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002475 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002476 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002477 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002478
Yan Zheng2b820322008-11-17 21:11:30 -05002479 if (seeding_dev) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002480 sb->s_flags &= ~SB_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002481 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002482 if (ret) {
2483 btrfs_abort_transaction(trans, ret);
2484 goto error_trans;
2485 }
Yan Zheng2b820322008-11-17 21:11:30 -05002486 }
2487
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002488 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002489
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002490 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002491 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002492 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002493 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002494 &fs_info->fs_devices->alloc_list);
2495 fs_info->fs_devices->num_devices++;
2496 fs_info->fs_devices->open_devices++;
2497 fs_info->fs_devices->rw_devices++;
2498 fs_info->fs_devices->total_devices++;
2499 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002500
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002501 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002502
Anand Jaine884f4f2017-04-04 18:40:19 +08002503 if (!blk_queue_nonrot(q))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002504 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002505
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002506 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2507 btrfs_set_super_total_bytes(fs_info->super_copy,
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002508 round_down(tmp + device->total_bytes, fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002509
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002510 tmp = btrfs_super_num_devices(fs_info->super_copy);
2511 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002512
2513 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002514 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002515
Miao Xie2196d6e2014-09-03 21:35:41 +08002516 /*
2517 * we've got more storage, clear any full flags on the space
2518 * infos
2519 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002520 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002521
David Sterba34441362016-10-04 19:34:27 +02002522 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002523 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002524
Yan Zheng2b820322008-11-17 21:11:30 -05002525 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002526 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002527 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002528 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002529 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002530 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002531 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002532 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002533 }
2534
Anand Jainc74a0b02017-11-06 16:36:15 +08002535 ret = btrfs_add_dev_item(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002536 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002537 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002538 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002539 }
2540
2541 if (seeding_dev) {
2542 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2543
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002544 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002545 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002546 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002547 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002548 }
Anand Jainb2373f22014-06-03 11:36:03 +08002549
2550 /* Sprouting would change fsid of the mounted root,
2551 * so rename the fsid on the sysfs
2552 */
2553 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002554 fs_info->fsid);
2555 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2556 btrfs_warn(fs_info,
2557 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002558 }
2559
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002560 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002561
2562 if (seeding_dev) {
2563 mutex_unlock(&uuid_mutex);
2564 up_write(&sb->s_umount);
Anand Jain7132a262017-09-28 14:51:11 +08002565 unlocked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002566
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002567 if (ret) /* transaction commit */
2568 return ret;
2569
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002570 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002571 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002572 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002573 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002574 trans = btrfs_attach_transaction(root);
2575 if (IS_ERR(trans)) {
2576 if (PTR_ERR(trans) == -ENOENT)
2577 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002578 ret = PTR_ERR(trans);
2579 trans = NULL;
2580 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002581 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002582 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002583 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002584
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002585 /* Update ctime/mtime for libblkid */
2586 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002587 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002588
Anand Jaind31c32f2017-09-28 14:51:10 +08002589error_sysfs:
2590 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002591error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002592 if (seeding_dev)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002593 sb->s_flags |= SB_RDONLY;
Anand Jain7132a262017-09-28 14:51:11 +08002594 if (trans)
2595 btrfs_end_transaction(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002596error_free_device:
David Sterbaa425f9d2018-03-20 15:47:33 +01002597 btrfs_free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002598error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002599 blkdev_put(bdev, FMODE_EXCL);
Anand Jain7132a262017-09-28 14:51:11 +08002600 if (seeding_dev && !unlocked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002601 mutex_unlock(&uuid_mutex);
2602 up_write(&sb->s_umount);
2603 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002604 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002605}
2606
Chris Masond3977122009-01-05 21:25:51 -05002607static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2608 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002609{
2610 int ret;
2611 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002612 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002613 struct btrfs_dev_item *dev_item;
2614 struct extent_buffer *leaf;
2615 struct btrfs_key key;
2616
Chris Mason0b86a832008-03-24 15:01:56 -04002617 path = btrfs_alloc_path();
2618 if (!path)
2619 return -ENOMEM;
2620
2621 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2622 key.type = BTRFS_DEV_ITEM_KEY;
2623 key.offset = device->devid;
2624
2625 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2626 if (ret < 0)
2627 goto out;
2628
2629 if (ret > 0) {
2630 ret = -ENOENT;
2631 goto out;
2632 }
2633
2634 leaf = path->nodes[0];
2635 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2636
2637 btrfs_set_device_id(leaf, dev_item, device->devid);
2638 btrfs_set_device_type(leaf, dev_item, device->type);
2639 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2640 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2641 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002642 btrfs_set_device_total_bytes(leaf, dev_item,
2643 btrfs_device_get_disk_total_bytes(device));
2644 btrfs_set_device_bytes_used(leaf, dev_item,
2645 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002646 btrfs_mark_buffer_dirty(leaf);
2647
2648out:
2649 btrfs_free_path(path);
2650 return ret;
2651}
2652
Miao Xie2196d6e2014-09-03 21:35:41 +08002653int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002654 struct btrfs_device *device, u64 new_size)
2655{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002656 struct btrfs_fs_info *fs_info = device->fs_info;
2657 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002658 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002659 u64 old_total;
2660 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002661
Anand Jainebbede42017-12-04 12:54:52 +08002662 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002663 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002664
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002665 new_size = round_down(new_size, fs_info->sectorsize);
2666
David Sterba34441362016-10-04 19:34:27 +02002667 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002668 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002669 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002670
Stefan Behrens63a212a2012-11-05 18:29:28 +01002671 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002672 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002673 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002674 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002675 }
Yan Zheng2b820322008-11-17 21:11:30 -05002676
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002677 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002678
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002679 btrfs_set_super_total_bytes(super_copy,
2680 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002681 device->fs_devices->total_rw_bytes += diff;
2682
Miao Xie7cc8e582014-09-03 21:35:38 +08002683 btrfs_device_set_total_bytes(device, new_size);
2684 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002685 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002686 if (list_empty(&device->resized_list))
2687 list_add_tail(&device->resized_list,
2688 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002689 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002690
Chris Mason8f18cf12008-04-25 16:53:30 -04002691 return btrfs_update_device(trans, device);
2692}
2693
2694static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002695 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002696{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002697 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002698 int ret;
2699 struct btrfs_path *path;
2700 struct btrfs_key key;
2701
Chris Mason8f18cf12008-04-25 16:53:30 -04002702 path = btrfs_alloc_path();
2703 if (!path)
2704 return -ENOMEM;
2705
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002706 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002707 key.offset = chunk_offset;
2708 key.type = BTRFS_CHUNK_ITEM_KEY;
2709
2710 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002711 if (ret < 0)
2712 goto out;
2713 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002714 btrfs_handle_fs_error(fs_info, -ENOENT,
2715 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002716 ret = -ENOENT;
2717 goto out;
2718 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002719
2720 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002721 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002722 btrfs_handle_fs_error(fs_info, ret,
2723 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002724out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002725 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002726 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002727}
2728
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002729static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002730{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002731 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002732 struct btrfs_disk_key *disk_key;
2733 struct btrfs_chunk *chunk;
2734 u8 *ptr;
2735 int ret = 0;
2736 u32 num_stripes;
2737 u32 array_size;
2738 u32 len = 0;
2739 u32 cur;
2740 struct btrfs_key key;
2741
David Sterba34441362016-10-04 19:34:27 +02002742 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002743 array_size = btrfs_super_sys_array_size(super_copy);
2744
2745 ptr = super_copy->sys_chunk_array;
2746 cur = 0;
2747
2748 while (cur < array_size) {
2749 disk_key = (struct btrfs_disk_key *)ptr;
2750 btrfs_disk_key_to_cpu(&key, disk_key);
2751
2752 len = sizeof(*disk_key);
2753
2754 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2755 chunk = (struct btrfs_chunk *)(ptr + len);
2756 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2757 len += btrfs_chunk_item_size(num_stripes);
2758 } else {
2759 ret = -EIO;
2760 break;
2761 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002762 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002763 key.offset == chunk_offset) {
2764 memmove(ptr, ptr + len, array_size - (cur + len));
2765 array_size -= len;
2766 btrfs_set_super_sys_array_size(super_copy, array_size);
2767 } else {
2768 ptr += len;
2769 cur += len;
2770 }
2771 }
David Sterba34441362016-10-04 19:34:27 +02002772 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002773 return ret;
2774}
2775
Liu Bo592d92e2017-03-14 13:33:55 -07002776static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2777 u64 logical, u64 length)
2778{
2779 struct extent_map_tree *em_tree;
2780 struct extent_map *em;
2781
2782 em_tree = &fs_info->mapping_tree.map_tree;
2783 read_lock(&em_tree->lock);
2784 em = lookup_extent_mapping(em_tree, logical, length);
2785 read_unlock(&em_tree->lock);
2786
2787 if (!em) {
2788 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2789 logical, length);
2790 return ERR_PTR(-EINVAL);
2791 }
2792
2793 if (em->start > logical || em->start + em->len < logical) {
2794 btrfs_crit(fs_info,
2795 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2796 logical, length, em->start, em->start + em->len);
2797 free_extent_map(em);
2798 return ERR_PTR(-EINVAL);
2799 }
2800
2801 /* callers are responsible for dropping em's ref. */
2802 return em;
2803}
2804
Josef Bacik47ab2a62014-09-18 11:20:02 -04002805int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002806 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002807{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002808 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002809 struct map_lookup *map;
2810 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002811 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002812 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002813
Liu Bo592d92e2017-03-14 13:33:55 -07002814 em = get_chunk_map(fs_info, chunk_offset, 1);
2815 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002816 /*
2817 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002818 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002819 * do anything we still error out.
2820 */
2821 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002822 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002823 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002824 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002825 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002826 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002827 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002828
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002829 /*
2830 * Take the device list mutex to prevent races with the final phase of
2831 * a device replace operation that replaces the device object associated
2832 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2833 */
2834 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002835 for (i = 0; i < map->num_stripes; i++) {
2836 struct btrfs_device *device = map->stripes[i].dev;
2837 ret = btrfs_free_dev_extent(trans, device,
2838 map->stripes[i].physical,
2839 &dev_extent_len);
2840 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002841 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002842 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002843 goto out;
2844 }
2845
2846 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002847 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002848 btrfs_device_set_bytes_used(device,
2849 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002850 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002851 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002852 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002853 }
2854
2855 if (map->stripes[i].dev) {
2856 ret = btrfs_update_device(trans, map->stripes[i].dev);
2857 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002858 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002859 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002860 goto out;
2861 }
2862 }
2863 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002864 mutex_unlock(&fs_devices->device_list_mutex);
2865
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002866 ret = btrfs_free_chunk(trans, fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002867 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002868 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002869 goto out;
2870 }
2871
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002872 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002873
2874 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002875 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002876 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002877 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002878 goto out;
2879 }
2880 }
2881
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002882 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002883 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002884 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002885 goto out;
2886 }
2887
Josef Bacik47ab2a62014-09-18 11:20:02 -04002888out:
2889 /* once for us */
2890 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002891 return ret;
2892}
2893
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002894static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002895{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002896 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002897 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002898 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002899
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002900 /*
2901 * Prevent races with automatic removal of unused block groups.
2902 * After we relocate and before we remove the chunk with offset
2903 * chunk_offset, automatic removal of the block group can kick in,
2904 * resulting in a failure when calling btrfs_remove_chunk() below.
2905 *
2906 * Make sure to acquire this mutex before doing a tree search (dev
2907 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2908 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2909 * we release the path used to search the chunk/dev tree and before
2910 * the current task acquires this mutex and calls us.
2911 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01002912 lockdep_assert_held(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002913
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002914 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002915 if (ret)
2916 return -ENOSPC;
2917
Chris Mason8f18cf12008-04-25 16:53:30 -04002918 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002919 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002920 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002921 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002922 if (ret)
2923 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002924
Jeff Mahoney75cb3792018-03-20 15:25:26 -04002925 /*
2926 * We add the kobjects here (and after forcing data chunk creation)
2927 * since relocation is the only place we'll create chunks of a new
2928 * type at runtime. The only place where we'll remove the last
2929 * chunk of a type is the call immediately below this one. Even
2930 * so, we're protected against races with the cleaner thread since
2931 * we're covered by the delete_unused_bgs_mutex.
2932 */
2933 btrfs_add_raid_kobjects(fs_info);
2934
Chris Mason19c4d2f2016-10-10 13:43:31 -07002935 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2936 chunk_offset);
2937 if (IS_ERR(trans)) {
2938 ret = PTR_ERR(trans);
2939 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2940 return ret;
2941 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002942
Chris Mason19c4d2f2016-10-10 13:43:31 -07002943 /*
2944 * step two, delete the device extents and the
2945 * chunk tree entries
2946 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002947 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002948 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002949 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002950}
2951
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002952static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002953{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002954 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002955 struct btrfs_path *path;
2956 struct extent_buffer *leaf;
2957 struct btrfs_chunk *chunk;
2958 struct btrfs_key key;
2959 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002960 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002961 bool retried = false;
2962 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002963 int ret;
2964
2965 path = btrfs_alloc_path();
2966 if (!path)
2967 return -ENOMEM;
2968
Josef Bacikba1bf482009-09-11 16:11:19 -04002969again:
Yan Zheng2b820322008-11-17 21:11:30 -05002970 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2971 key.offset = (u64)-1;
2972 key.type = BTRFS_CHUNK_ITEM_KEY;
2973
2974 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002975 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002976 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002977 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002978 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002979 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002980 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002981 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002982
2983 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2984 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002985 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002986 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002987 if (ret < 0)
2988 goto error;
2989 if (ret > 0)
2990 break;
2991
2992 leaf = path->nodes[0];
2993 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2994
2995 chunk = btrfs_item_ptr(leaf, path->slots[0],
2996 struct btrfs_chunk);
2997 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002998 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002999
3000 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003001 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003002 if (ret == -ENOSPC)
3003 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303004 else
3005 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003006 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003007 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003008
3009 if (found_key.offset == 0)
3010 break;
3011 key.offset = found_key.offset - 1;
3012 }
3013 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003014 if (failed && !retried) {
3015 failed = 0;
3016 retried = true;
3017 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303018 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003019 ret = -ENOSPC;
3020 }
Yan Zheng2b820322008-11-17 21:11:30 -05003021error:
3022 btrfs_free_path(path);
3023 return ret;
3024}
3025
Liu Boa6f93c72017-11-15 16:28:11 -07003026/*
3027 * return 1 : allocate a data chunk successfully,
3028 * return <0: errors during allocating a data chunk,
3029 * return 0 : no need to allocate a data chunk.
3030 */
3031static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
3032 u64 chunk_offset)
3033{
3034 struct btrfs_block_group_cache *cache;
3035 u64 bytes_used;
3036 u64 chunk_type;
3037
3038 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3039 ASSERT(cache);
3040 chunk_type = cache->flags;
3041 btrfs_put_block_group(cache);
3042
3043 if (chunk_type & BTRFS_BLOCK_GROUP_DATA) {
3044 spin_lock(&fs_info->data_sinfo->lock);
3045 bytes_used = fs_info->data_sinfo->bytes_used;
3046 spin_unlock(&fs_info->data_sinfo->lock);
3047
3048 if (!bytes_used) {
3049 struct btrfs_trans_handle *trans;
3050 int ret;
3051
3052 trans = btrfs_join_transaction(fs_info->tree_root);
3053 if (IS_ERR(trans))
3054 return PTR_ERR(trans);
3055
3056 ret = btrfs_force_chunk_alloc(trans, fs_info,
3057 BTRFS_BLOCK_GROUP_DATA);
3058 btrfs_end_transaction(trans);
3059 if (ret < 0)
3060 return ret;
3061
Jeff Mahoney75cb3792018-03-20 15:25:26 -04003062 btrfs_add_raid_kobjects(fs_info);
3063
Liu Boa6f93c72017-11-15 16:28:11 -07003064 return 1;
3065 }
3066 }
3067 return 0;
3068}
3069
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003070static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003071 struct btrfs_balance_control *bctl)
3072{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003073 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003074 struct btrfs_trans_handle *trans;
3075 struct btrfs_balance_item *item;
3076 struct btrfs_disk_balance_args disk_bargs;
3077 struct btrfs_path *path;
3078 struct extent_buffer *leaf;
3079 struct btrfs_key key;
3080 int ret, err;
3081
3082 path = btrfs_alloc_path();
3083 if (!path)
3084 return -ENOMEM;
3085
3086 trans = btrfs_start_transaction(root, 0);
3087 if (IS_ERR(trans)) {
3088 btrfs_free_path(path);
3089 return PTR_ERR(trans);
3090 }
3091
3092 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003093 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003094 key.offset = 0;
3095
3096 ret = btrfs_insert_empty_item(trans, root, path, &key,
3097 sizeof(*item));
3098 if (ret)
3099 goto out;
3100
3101 leaf = path->nodes[0];
3102 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3103
David Sterbab159fa22016-11-08 18:09:03 +01003104 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003105
3106 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3107 btrfs_set_balance_data(leaf, item, &disk_bargs);
3108 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3109 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3110 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3111 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3112
3113 btrfs_set_balance_flags(leaf, item, bctl->flags);
3114
3115 btrfs_mark_buffer_dirty(leaf);
3116out:
3117 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003118 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003119 if (err && !ret)
3120 ret = err;
3121 return ret;
3122}
3123
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003124static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003125{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003126 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003127 struct btrfs_trans_handle *trans;
3128 struct btrfs_path *path;
3129 struct btrfs_key key;
3130 int ret, err;
3131
3132 path = btrfs_alloc_path();
3133 if (!path)
3134 return -ENOMEM;
3135
3136 trans = btrfs_start_transaction(root, 0);
3137 if (IS_ERR(trans)) {
3138 btrfs_free_path(path);
3139 return PTR_ERR(trans);
3140 }
3141
3142 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003143 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003144 key.offset = 0;
3145
3146 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3147 if (ret < 0)
3148 goto out;
3149 if (ret > 0) {
3150 ret = -ENOENT;
3151 goto out;
3152 }
3153
3154 ret = btrfs_del_item(trans, root, path);
3155out:
3156 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003157 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003158 if (err && !ret)
3159 ret = err;
3160 return ret;
3161}
3162
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003163/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003164 * This is a heuristic used to reduce the number of chunks balanced on
3165 * resume after balance was interrupted.
3166 */
3167static void update_balance_args(struct btrfs_balance_control *bctl)
3168{
3169 /*
3170 * Turn on soft mode for chunk types that were being converted.
3171 */
3172 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3173 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3174 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3175 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3176 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3177 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3178
3179 /*
3180 * Turn on usage filter if is not already used. The idea is
3181 * that chunks that we have already balanced should be
3182 * reasonably full. Don't do it for chunks that are being
3183 * converted - that will keep us from relocating unconverted
3184 * (albeit full) chunks.
3185 */
3186 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003187 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003188 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3189 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3190 bctl->data.usage = 90;
3191 }
3192 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003193 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003194 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3195 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3196 bctl->sys.usage = 90;
3197 }
3198 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003199 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003200 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3201 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3202 bctl->meta.usage = 90;
3203 }
3204}
3205
3206/*
David Sterba149196a2018-03-20 20:23:09 +01003207 * Clear the balance status in fs_info and delete the balance item from disk.
3208 */
3209static void reset_balance_state(struct btrfs_fs_info *fs_info)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003210{
3211 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
David Sterba149196a2018-03-20 20:23:09 +01003212 int ret;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003213
3214 BUG_ON(!fs_info->balance_ctl);
3215
3216 spin_lock(&fs_info->balance_lock);
3217 fs_info->balance_ctl = NULL;
3218 spin_unlock(&fs_info->balance_lock);
3219
3220 kfree(bctl);
David Sterba149196a2018-03-20 20:23:09 +01003221 ret = del_balance_item(fs_info);
3222 if (ret)
3223 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003224}
3225
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003226/*
3227 * Balance filters. Return 1 if chunk should be filtered out
3228 * (should not be balanced).
3229 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003230static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003231 struct btrfs_balance_args *bargs)
3232{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003233 chunk_type = chunk_to_extended(chunk_type) &
3234 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003235
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003236 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003237 return 0;
3238
3239 return 1;
3240}
3241
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003242static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003243 struct btrfs_balance_args *bargs)
3244{
3245 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003246 u64 chunk_used;
3247 u64 user_thresh_min;
3248 u64 user_thresh_max;
3249 int ret = 1;
3250
3251 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3252 chunk_used = btrfs_block_group_used(&cache->item);
3253
3254 if (bargs->usage_min == 0)
3255 user_thresh_min = 0;
3256 else
3257 user_thresh_min = div_factor_fine(cache->key.offset,
3258 bargs->usage_min);
3259
3260 if (bargs->usage_max == 0)
3261 user_thresh_max = 1;
3262 else if (bargs->usage_max > 100)
3263 user_thresh_max = cache->key.offset;
3264 else
3265 user_thresh_max = div_factor_fine(cache->key.offset,
3266 bargs->usage_max);
3267
3268 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3269 ret = 0;
3270
3271 btrfs_put_block_group(cache);
3272 return ret;
3273}
3274
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003275static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003276 u64 chunk_offset, struct btrfs_balance_args *bargs)
3277{
3278 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003279 u64 chunk_used, user_thresh;
3280 int ret = 1;
3281
3282 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3283 chunk_used = btrfs_block_group_used(&cache->item);
3284
David Sterbabc309462015-10-20 18:22:13 +02003285 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003286 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003287 else if (bargs->usage > 100)
3288 user_thresh = cache->key.offset;
3289 else
3290 user_thresh = div_factor_fine(cache->key.offset,
3291 bargs->usage);
3292
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003293 if (chunk_used < user_thresh)
3294 ret = 0;
3295
3296 btrfs_put_block_group(cache);
3297 return ret;
3298}
3299
Ilya Dryomov409d4042012-01-16 22:04:47 +02003300static int chunk_devid_filter(struct extent_buffer *leaf,
3301 struct btrfs_chunk *chunk,
3302 struct btrfs_balance_args *bargs)
3303{
3304 struct btrfs_stripe *stripe;
3305 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3306 int i;
3307
3308 for (i = 0; i < num_stripes; i++) {
3309 stripe = btrfs_stripe_nr(chunk, i);
3310 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3311 return 0;
3312 }
3313
3314 return 1;
3315}
3316
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003317/* [pstart, pend) */
3318static int chunk_drange_filter(struct extent_buffer *leaf,
3319 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003320 struct btrfs_balance_args *bargs)
3321{
3322 struct btrfs_stripe *stripe;
3323 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3324 u64 stripe_offset;
3325 u64 stripe_length;
3326 int factor;
3327 int i;
3328
3329 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3330 return 0;
3331
3332 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003333 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3334 factor = num_stripes / 2;
3335 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3336 factor = num_stripes - 1;
3337 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3338 factor = num_stripes - 2;
3339 } else {
3340 factor = num_stripes;
3341 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003342
3343 for (i = 0; i < num_stripes; i++) {
3344 stripe = btrfs_stripe_nr(chunk, i);
3345 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3346 continue;
3347
3348 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3349 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003350 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003351
3352 if (stripe_offset < bargs->pend &&
3353 stripe_offset + stripe_length > bargs->pstart)
3354 return 0;
3355 }
3356
3357 return 1;
3358}
3359
Ilya Dryomovea671762012-01-16 22:04:48 +02003360/* [vstart, vend) */
3361static int chunk_vrange_filter(struct extent_buffer *leaf,
3362 struct btrfs_chunk *chunk,
3363 u64 chunk_offset,
3364 struct btrfs_balance_args *bargs)
3365{
3366 if (chunk_offset < bargs->vend &&
3367 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3368 /* at least part of the chunk is inside this vrange */
3369 return 0;
3370
3371 return 1;
3372}
3373
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003374static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3375 struct btrfs_chunk *chunk,
3376 struct btrfs_balance_args *bargs)
3377{
3378 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3379
3380 if (bargs->stripes_min <= num_stripes
3381 && num_stripes <= bargs->stripes_max)
3382 return 0;
3383
3384 return 1;
3385}
3386
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003387static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003388 struct btrfs_balance_args *bargs)
3389{
3390 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3391 return 0;
3392
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003393 chunk_type = chunk_to_extended(chunk_type) &
3394 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003395
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003396 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003397 return 1;
3398
3399 return 0;
3400}
3401
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003402static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003403 struct extent_buffer *leaf,
3404 struct btrfs_chunk *chunk, u64 chunk_offset)
3405{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003406 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003407 struct btrfs_balance_args *bargs = NULL;
3408 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3409
3410 /* type filter */
3411 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3412 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3413 return 0;
3414 }
3415
3416 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3417 bargs = &bctl->data;
3418 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3419 bargs = &bctl->sys;
3420 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3421 bargs = &bctl->meta;
3422
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003423 /* profiles filter */
3424 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3425 chunk_profiles_filter(chunk_type, bargs)) {
3426 return 0;
3427 }
3428
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003429 /* usage filter */
3430 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003431 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003432 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003433 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003434 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003435 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003436 }
3437
Ilya Dryomov409d4042012-01-16 22:04:47 +02003438 /* devid filter */
3439 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3440 chunk_devid_filter(leaf, chunk, bargs)) {
3441 return 0;
3442 }
3443
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003444 /* drange filter, makes sense only with devid filter */
3445 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003446 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003447 return 0;
3448 }
3449
Ilya Dryomovea671762012-01-16 22:04:48 +02003450 /* vrange filter */
3451 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3452 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3453 return 0;
3454 }
3455
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003456 /* stripes filter */
3457 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3458 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3459 return 0;
3460 }
3461
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003462 /* soft profile changing mode */
3463 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3464 chunk_soft_convert_filter(chunk_type, bargs)) {
3465 return 0;
3466 }
3467
David Sterba7d824b62014-05-07 17:37:51 +02003468 /*
3469 * limited by count, must be the last filter
3470 */
3471 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3472 if (bargs->limit == 0)
3473 return 0;
3474 else
3475 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003476 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3477 /*
3478 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003479 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003480 * about the count of all chunks that satisfy the filters.
3481 */
3482 if (bargs->limit_max == 0)
3483 return 0;
3484 else
3485 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003486 }
3487
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003488 return 1;
3489}
3490
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003491static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003492{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003493 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003494 struct btrfs_root *chunk_root = fs_info->chunk_root;
3495 struct btrfs_root *dev_root = fs_info->dev_root;
3496 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003497 struct btrfs_device *device;
3498 u64 old_size;
3499 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003500 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003501 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003502 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003503 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003504 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003505 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003506 struct extent_buffer *leaf;
3507 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003508 int ret;
3509 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003510 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003511 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003512 u64 limit_data = bctl->data.limit;
3513 u64 limit_meta = bctl->meta.limit;
3514 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003515 u32 count_data = 0;
3516 u32 count_meta = 0;
3517 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003518 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003519
Chris Masonec44a352008-04-28 15:29:52 -04003520 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003521 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003522 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003523 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003524 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003525 size_to_free = min_t(u64, size_to_free, SZ_1M);
Anand Jainebbede42017-12-04 12:54:52 +08003526 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003527 btrfs_device_get_total_bytes(device) -
3528 btrfs_device_get_bytes_used(device) > size_to_free ||
Anand Jain401e29c2017-12-04 12:54:55 +08003529 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Chris Masonec44a352008-04-28 15:29:52 -04003530 continue;
3531
3532 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003533 if (ret == -ENOSPC)
3534 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003535 if (ret) {
3536 /* btrfs_shrink_device never returns ret > 0 */
3537 WARN_ON(ret > 0);
3538 goto error;
3539 }
Chris Masonec44a352008-04-28 15:29:52 -04003540
Yan, Zhenga22285a2010-05-16 10:48:46 -04003541 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003542 if (IS_ERR(trans)) {
3543 ret = PTR_ERR(trans);
3544 btrfs_info_in_rcu(fs_info,
3545 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3546 rcu_str_deref(device->name), ret,
3547 old_size, old_size - size_to_free);
3548 goto error;
3549 }
Chris Masonec44a352008-04-28 15:29:52 -04003550
3551 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003552 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003553 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003554 /* btrfs_grow_device never returns ret > 0 */
3555 WARN_ON(ret > 0);
3556 btrfs_info_in_rcu(fs_info,
3557 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3558 rcu_str_deref(device->name), ret,
3559 old_size, old_size - size_to_free);
3560 goto error;
3561 }
Chris Masonec44a352008-04-28 15:29:52 -04003562
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003563 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003564 }
3565
3566 /* step two, relocate all the chunks */
3567 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003568 if (!path) {
3569 ret = -ENOMEM;
3570 goto error;
3571 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003572
3573 /* zero out stat counters */
3574 spin_lock(&fs_info->balance_lock);
3575 memset(&bctl->stat, 0, sizeof(bctl->stat));
3576 spin_unlock(&fs_info->balance_lock);
3577again:
David Sterba7d824b62014-05-07 17:37:51 +02003578 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003579 /*
3580 * The single value limit and min/max limits use the same bytes
3581 * in the
3582 */
David Sterba7d824b62014-05-07 17:37:51 +02003583 bctl->data.limit = limit_data;
3584 bctl->meta.limit = limit_meta;
3585 bctl->sys.limit = limit_sys;
3586 }
Chris Masonec44a352008-04-28 15:29:52 -04003587 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3588 key.offset = (u64)-1;
3589 key.type = BTRFS_CHUNK_ITEM_KEY;
3590
Chris Masond3977122009-01-05 21:25:51 -05003591 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003592 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003593 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003594 ret = -ECANCELED;
3595 goto error;
3596 }
3597
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003598 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003599 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003600 if (ret < 0) {
3601 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003602 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003603 }
Chris Masonec44a352008-04-28 15:29:52 -04003604
3605 /*
3606 * this shouldn't happen, it means the last relocate
3607 * failed
3608 */
3609 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003610 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003611
3612 ret = btrfs_previous_item(chunk_root, path, 0,
3613 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003614 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003615 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003616 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003617 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003618 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003619
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003620 leaf = path->nodes[0];
3621 slot = path->slots[0];
3622 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3623
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003624 if (found_key.objectid != key.objectid) {
3625 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003626 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003627 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003628
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003629 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003630 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003631
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003632 if (!counting) {
3633 spin_lock(&fs_info->balance_lock);
3634 bctl->stat.considered++;
3635 spin_unlock(&fs_info->balance_lock);
3636 }
3637
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003638 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003639 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003640
David Sterbab3b4aa72011-04-21 01:20:15 +02003641 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003642 if (!ret) {
3643 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003644 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003645 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003646
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003647 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003648 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003649 spin_lock(&fs_info->balance_lock);
3650 bctl->stat.expected++;
3651 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003652
3653 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3654 count_data++;
3655 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3656 count_sys++;
3657 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3658 count_meta++;
3659
3660 goto loop;
3661 }
3662
3663 /*
3664 * Apply limit_min filter, no need to check if the LIMITS
3665 * filter is used, limit_min is 0 by default
3666 */
3667 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3668 count_data < bctl->data.limit_min)
3669 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3670 count_meta < bctl->meta.limit_min)
3671 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3672 count_sys < bctl->sys.limit_min)) {
3673 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003674 goto loop;
3675 }
3676
Liu Boa6f93c72017-11-15 16:28:11 -07003677 if (!chunk_reserved) {
3678 /*
3679 * We may be relocating the only data chunk we have,
3680 * which could potentially end up with losing data's
3681 * raid profile, so lets allocate an empty one in
3682 * advance.
3683 */
3684 ret = btrfs_may_alloc_data_chunk(fs_info,
3685 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003686 if (ret < 0) {
3687 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3688 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003689 } else if (ret == 1) {
3690 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003691 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003692 }
3693
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003694 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003695 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003696 if (ret && ret != -ENOSPC)
3697 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003698 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003699 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003700 } else {
3701 spin_lock(&fs_info->balance_lock);
3702 bctl->stat.completed++;
3703 spin_unlock(&fs_info->balance_lock);
3704 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003705loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003706 if (found_key.offset == 0)
3707 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003708 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003709 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003710
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003711 if (counting) {
3712 btrfs_release_path(path);
3713 counting = false;
3714 goto again;
3715 }
Chris Masonec44a352008-04-28 15:29:52 -04003716error:
3717 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003718 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003719 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003720 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003721 if (!ret)
3722 ret = -ENOSPC;
3723 }
3724
Chris Masonec44a352008-04-28 15:29:52 -04003725 return ret;
3726}
3727
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003728/**
3729 * alloc_profile_is_valid - see if a given profile is valid and reduced
3730 * @flags: profile to validate
3731 * @extended: if true @flags is treated as an extended profile
3732 */
3733static int alloc_profile_is_valid(u64 flags, int extended)
3734{
3735 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3736 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3737
3738 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3739
3740 /* 1) check that all other bits are zeroed */
3741 if (flags & ~mask)
3742 return 0;
3743
3744 /* 2) see if profile is reduced */
3745 if (flags == 0)
3746 return !extended; /* "0" is valid for usual profiles */
3747
3748 /* true if exactly one bit set */
3749 return (flags & (flags - 1)) == 0;
3750}
3751
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003752static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3753{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003754 /* cancel requested || normal exit path */
3755 return atomic_read(&fs_info->balance_cancel_req) ||
3756 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3757 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003758}
3759
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003760/* Non-zero return value signifies invalidity */
3761static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3762 u64 allowed)
3763{
3764 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3765 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3766 (bctl_arg->target & ~allowed)));
3767}
3768
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003769/*
David Sterbadccdb072018-03-21 00:20:05 +01003770 * Should be called with balance mutexe held
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003771 */
3772int btrfs_balance(struct btrfs_balance_control *bctl,
3773 struct btrfs_ioctl_balance_args *bargs)
3774{
3775 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003776 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003777 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003778 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003779 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003780 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003781 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003782
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003783 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003784 atomic_read(&fs_info->balance_pause_req) ||
3785 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003786 ret = -EINVAL;
3787 goto out;
3788 }
3789
Ilya Dryomove4837f82012-03-27 17:09:17 +03003790 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3791 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3792 mixed = 1;
3793
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003794 /*
3795 * In case of mixed groups both data and meta should be picked,
3796 * and identical options should be given for both of them.
3797 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003798 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3799 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003800 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3801 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3802 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003803 btrfs_err(fs_info,
3804 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003805 ret = -EINVAL;
3806 goto out;
3807 }
3808 }
3809
Stefan Behrens8dabb742012-11-06 13:15:27 +01003810 num_devices = fs_info->fs_devices->num_devices;
David Sterba7e79cb82018-03-24 02:11:38 +01003811 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003812 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3813 BUG_ON(num_devices < 1);
3814 num_devices--;
3815 }
David Sterba7e79cb82018-03-24 02:11:38 +01003816 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003817 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3818 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003819 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003820 if (num_devices > 2)
3821 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3822 if (num_devices > 3)
3823 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3824 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003825 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003826 btrfs_err(fs_info,
3827 "unable to start balance with target data profile %llu",
3828 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003829 ret = -EINVAL;
3830 goto out;
3831 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003832 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003833 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003834 "unable to start balance with target metadata profile %llu",
3835 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003836 ret = -EINVAL;
3837 goto out;
3838 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003839 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003840 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003841 "unable to start balance with target system profile %llu",
3842 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003843 ret = -EINVAL;
3844 goto out;
3845 }
3846
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003847 /* allow to reduce meta or sys integrity only if force set */
3848 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003849 BTRFS_BLOCK_GROUP_RAID10 |
3850 BTRFS_BLOCK_GROUP_RAID5 |
3851 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003852 do {
3853 seq = read_seqbegin(&fs_info->profiles_lock);
3854
3855 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3856 (fs_info->avail_system_alloc_bits & allowed) &&
3857 !(bctl->sys.target & allowed)) ||
3858 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3859 (fs_info->avail_metadata_alloc_bits & allowed) &&
3860 !(bctl->meta.target & allowed))) {
3861 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003862 btrfs_info(fs_info,
3863 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003864 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003865 btrfs_err(fs_info,
3866 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003867 ret = -EINVAL;
3868 goto out;
3869 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003870 }
Miao Xiede98ced2013-01-29 10:13:12 +00003871 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003872
Adam Borowski14506122017-03-07 23:34:44 +01003873 /* if we're not converting, the target field is uninitialized */
3874 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3875 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3876 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3877 bctl->data.target : fs_info->avail_data_alloc_bits;
3878 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3879 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003880 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003881 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003882 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003883 }
3884
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003885 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003886 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003887 goto out;
3888
Ilya Dryomov59641012012-01-16 22:04:48 +02003889 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3890 BUG_ON(ret == -EEXIST);
David Sterba833aae12018-03-21 02:41:30 +01003891 BUG_ON(fs_info->balance_ctl);
3892 spin_lock(&fs_info->balance_lock);
3893 fs_info->balance_ctl = bctl;
3894 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov59641012012-01-16 22:04:48 +02003895 } else {
3896 BUG_ON(ret != -EEXIST);
3897 spin_lock(&fs_info->balance_lock);
3898 update_balance_args(bctl);
3899 spin_unlock(&fs_info->balance_lock);
3900 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003901
David Sterba3009a622018-03-21 01:31:04 +01003902 ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
3903 set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003904 mutex_unlock(&fs_info->balance_mutex);
3905
3906 ret = __btrfs_balance(fs_info);
3907
3908 mutex_lock(&fs_info->balance_mutex);
David Sterba3009a622018-03-21 01:31:04 +01003909 clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003910
3911 if (bargs) {
3912 memset(bargs, 0, sizeof(*bargs));
David Sterba008ef092018-03-21 02:05:27 +01003913 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003914 }
3915
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003916 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3917 balance_need_close(fs_info)) {
David Sterba149196a2018-03-20 20:23:09 +01003918 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01003919 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003920 }
3921
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003922 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003923
3924 return ret;
3925out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003926 if (bctl->flags & BTRFS_BALANCE_RESUME)
David Sterba149196a2018-03-20 20:23:09 +01003927 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01003928 else
Ilya Dryomov59641012012-01-16 22:04:48 +02003929 kfree(bctl);
David Sterbaa17c95d2018-03-20 17:28:05 +01003930 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
3931
Ilya Dryomov59641012012-01-16 22:04:48 +02003932 return ret;
3933}
3934
3935static int balance_kthread(void *data)
3936{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003937 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003938 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003939
Ilya Dryomov59641012012-01-16 22:04:48 +02003940 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003941 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003942 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003943 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003944 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003945 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003946
Ilya Dryomov59641012012-01-16 22:04:48 +02003947 return ret;
3948}
3949
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003950int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3951{
3952 struct task_struct *tsk;
3953
David Sterba1354e1a2018-03-21 02:29:13 +01003954 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003955 if (!fs_info->balance_ctl) {
David Sterba1354e1a2018-03-21 02:29:13 +01003956 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003957 return 0;
3958 }
David Sterba1354e1a2018-03-21 02:29:13 +01003959 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003960
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003961 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003962 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003963 return 0;
3964 }
3965
Anand Jain02ee6542018-05-17 15:16:51 +08003966 /*
3967 * A ro->rw remount sequence should continue with the paused balance
3968 * regardless of who pauses it, system or the user as of now, so set
3969 * the resume flag.
3970 */
3971 spin_lock(&fs_info->balance_lock);
3972 fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME;
3973 spin_unlock(&fs_info->balance_lock);
3974
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003975 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303976 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003977}
3978
Ilya Dryomov68310a52012-06-22 12:24:12 -06003979int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003980{
Ilya Dryomov59641012012-01-16 22:04:48 +02003981 struct btrfs_balance_control *bctl;
3982 struct btrfs_balance_item *item;
3983 struct btrfs_disk_balance_args disk_bargs;
3984 struct btrfs_path *path;
3985 struct extent_buffer *leaf;
3986 struct btrfs_key key;
3987 int ret;
3988
3989 path = btrfs_alloc_path();
3990 if (!path)
3991 return -ENOMEM;
3992
Ilya Dryomov68310a52012-06-22 12:24:12 -06003993 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003994 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003995 key.offset = 0;
3996
3997 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3998 if (ret < 0)
3999 goto out;
4000 if (ret > 0) { /* ret = -ENOENT; */
4001 ret = 0;
4002 goto out;
4003 }
4004
Ilya Dryomov59641012012-01-16 22:04:48 +02004005 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4006 if (!bctl) {
4007 ret = -ENOMEM;
4008 goto out;
4009 }
4010
Ilya Dryomov59641012012-01-16 22:04:48 +02004011 leaf = path->nodes[0];
4012 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4013
Ilya Dryomov68310a52012-06-22 12:24:12 -06004014 bctl->fs_info = fs_info;
4015 bctl->flags = btrfs_balance_flags(leaf, item);
4016 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004017
4018 btrfs_balance_data(leaf, item, &disk_bargs);
4019 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4020 btrfs_balance_meta(leaf, item, &disk_bargs);
4021 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4022 btrfs_balance_sys(leaf, item, &disk_bargs);
4023 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4024
David Sterbaeee95e32018-03-20 20:07:58 +01004025 /*
4026 * This should never happen, as the paused balance state is recovered
4027 * during mount without any chance of other exclusive ops to collide.
4028 *
4029 * This gives the exclusive op status to balance and keeps in paused
4030 * state until user intervention (cancel or umount). If the ownership
4031 * cannot be assigned, show a message but do not fail. The balance
4032 * is in a paused state and must have fs_info::balance_ctl properly
4033 * set up.
4034 */
4035 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
4036 btrfs_warn(fs_info,
4037 "cannot set exclusive op status to balance, resume manually");
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004038
Ilya Dryomov68310a52012-06-22 12:24:12 -06004039 mutex_lock(&fs_info->balance_mutex);
David Sterba833aae12018-03-21 02:41:30 +01004040 BUG_ON(fs_info->balance_ctl);
4041 spin_lock(&fs_info->balance_lock);
4042 fs_info->balance_ctl = bctl;
4043 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov68310a52012-06-22 12:24:12 -06004044 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004045out:
4046 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004047 return ret;
4048}
4049
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004050int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4051{
4052 int ret = 0;
4053
4054 mutex_lock(&fs_info->balance_mutex);
4055 if (!fs_info->balance_ctl) {
4056 mutex_unlock(&fs_info->balance_mutex);
4057 return -ENOTCONN;
4058 }
4059
David Sterba3009a622018-03-21 01:31:04 +01004060 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004061 atomic_inc(&fs_info->balance_pause_req);
4062 mutex_unlock(&fs_info->balance_mutex);
4063
4064 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004065 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004066
4067 mutex_lock(&fs_info->balance_mutex);
4068 /* we are good with balance_ctl ripped off from under us */
David Sterba3009a622018-03-21 01:31:04 +01004069 BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004070 atomic_dec(&fs_info->balance_pause_req);
4071 } else {
4072 ret = -ENOTCONN;
4073 }
4074
4075 mutex_unlock(&fs_info->balance_mutex);
4076 return ret;
4077}
4078
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004079int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4080{
4081 mutex_lock(&fs_info->balance_mutex);
4082 if (!fs_info->balance_ctl) {
4083 mutex_unlock(&fs_info->balance_mutex);
4084 return -ENOTCONN;
4085 }
4086
David Sterbacf7d20f2018-03-21 01:45:32 +01004087 /*
4088 * A paused balance with the item stored on disk can be resumed at
4089 * mount time if the mount is read-write. Otherwise it's still paused
4090 * and we must not allow cancelling as it deletes the item.
4091 */
4092 if (sb_rdonly(fs_info->sb)) {
4093 mutex_unlock(&fs_info->balance_mutex);
4094 return -EROFS;
4095 }
4096
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004097 atomic_inc(&fs_info->balance_cancel_req);
4098 /*
4099 * if we are running just wait and return, balance item is
4100 * deleted in btrfs_balance in this case
4101 */
David Sterba3009a622018-03-21 01:31:04 +01004102 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004103 mutex_unlock(&fs_info->balance_mutex);
4104 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004105 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004106 mutex_lock(&fs_info->balance_mutex);
4107 } else {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004108 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004109 /*
4110 * Lock released to allow other waiters to continue, we'll
4111 * reexamine the status again.
4112 */
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004113 mutex_lock(&fs_info->balance_mutex);
4114
David Sterbaa17c95d2018-03-20 17:28:05 +01004115 if (fs_info->balance_ctl) {
David Sterba149196a2018-03-20 20:23:09 +01004116 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004117 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
4118 }
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004119 }
4120
David Sterba3009a622018-03-21 01:31:04 +01004121 BUG_ON(fs_info->balance_ctl ||
4122 test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004123 atomic_dec(&fs_info->balance_cancel_req);
4124 mutex_unlock(&fs_info->balance_mutex);
4125 return 0;
4126}
4127
Stefan Behrens803b2f52013-08-15 17:11:21 +02004128static int btrfs_uuid_scan_kthread(void *data)
4129{
4130 struct btrfs_fs_info *fs_info = data;
4131 struct btrfs_root *root = fs_info->tree_root;
4132 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004133 struct btrfs_path *path = NULL;
4134 int ret = 0;
4135 struct extent_buffer *eb;
4136 int slot;
4137 struct btrfs_root_item root_item;
4138 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004139 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004140
4141 path = btrfs_alloc_path();
4142 if (!path) {
4143 ret = -ENOMEM;
4144 goto out;
4145 }
4146
4147 key.objectid = 0;
4148 key.type = BTRFS_ROOT_ITEM_KEY;
4149 key.offset = 0;
4150
Stefan Behrens803b2f52013-08-15 17:11:21 +02004151 while (1) {
Anand Jain7c829b72018-03-07 17:29:18 +08004152 ret = btrfs_search_forward(root, &key, path,
4153 BTRFS_OLDEST_GENERATION);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004154 if (ret) {
4155 if (ret > 0)
4156 ret = 0;
4157 break;
4158 }
4159
4160 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4161 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4162 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4163 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4164 goto skip;
4165
4166 eb = path->nodes[0];
4167 slot = path->slots[0];
4168 item_size = btrfs_item_size_nr(eb, slot);
4169 if (item_size < sizeof(root_item))
4170 goto skip;
4171
Stefan Behrens803b2f52013-08-15 17:11:21 +02004172 read_extent_buffer(eb, &root_item,
4173 btrfs_item_ptr_offset(eb, slot),
4174 (int)sizeof(root_item));
4175 if (btrfs_root_refs(&root_item) == 0)
4176 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004177
4178 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4179 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4180 if (trans)
4181 goto update_tree;
4182
4183 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004184 /*
4185 * 1 - subvol uuid item
4186 * 1 - received_subvol uuid item
4187 */
4188 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4189 if (IS_ERR(trans)) {
4190 ret = PTR_ERR(trans);
4191 break;
4192 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004193 continue;
4194 } else {
4195 goto skip;
4196 }
4197update_tree:
4198 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004199 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004200 root_item.uuid,
4201 BTRFS_UUID_KEY_SUBVOL,
4202 key.objectid);
4203 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004204 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004205 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004206 break;
4207 }
4208 }
4209
4210 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004211 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004212 root_item.received_uuid,
4213 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4214 key.objectid);
4215 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004216 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004217 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004218 break;
4219 }
4220 }
4221
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004222skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004223 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004224 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004225 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004226 if (ret)
4227 break;
4228 }
4229
Stefan Behrens803b2f52013-08-15 17:11:21 +02004230 btrfs_release_path(path);
4231 if (key.offset < (u64)-1) {
4232 key.offset++;
4233 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4234 key.offset = 0;
4235 key.type = BTRFS_ROOT_ITEM_KEY;
4236 } else if (key.objectid < (u64)-1) {
4237 key.offset = 0;
4238 key.type = BTRFS_ROOT_ITEM_KEY;
4239 key.objectid++;
4240 } else {
4241 break;
4242 }
4243 cond_resched();
4244 }
4245
4246out:
4247 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004248 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004249 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004250 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004251 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004252 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004253 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004254 up(&fs_info->uuid_tree_rescan_sem);
4255 return 0;
4256}
4257
Stefan Behrens70f80172013-08-15 17:11:23 +02004258/*
4259 * Callback for btrfs_uuid_tree_iterate().
4260 * returns:
4261 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004262 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004263 * > 0 if the check failed, which means the caller shall remove the entry.
4264 */
4265static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4266 u8 *uuid, u8 type, u64 subid)
4267{
4268 struct btrfs_key key;
4269 int ret = 0;
4270 struct btrfs_root *subvol_root;
4271
4272 if (type != BTRFS_UUID_KEY_SUBVOL &&
4273 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4274 goto out;
4275
4276 key.objectid = subid;
4277 key.type = BTRFS_ROOT_ITEM_KEY;
4278 key.offset = (u64)-1;
4279 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4280 if (IS_ERR(subvol_root)) {
4281 ret = PTR_ERR(subvol_root);
4282 if (ret == -ENOENT)
4283 ret = 1;
4284 goto out;
4285 }
4286
4287 switch (type) {
4288 case BTRFS_UUID_KEY_SUBVOL:
4289 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4290 ret = 1;
4291 break;
4292 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4293 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4294 BTRFS_UUID_SIZE))
4295 ret = 1;
4296 break;
4297 }
4298
4299out:
4300 return ret;
4301}
4302
4303static int btrfs_uuid_rescan_kthread(void *data)
4304{
4305 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4306 int ret;
4307
4308 /*
4309 * 1st step is to iterate through the existing UUID tree and
4310 * to delete all entries that contain outdated data.
4311 * 2nd step is to add all missing entries to the UUID tree.
4312 */
4313 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4314 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004315 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004316 up(&fs_info->uuid_tree_rescan_sem);
4317 return ret;
4318 }
4319 return btrfs_uuid_scan_kthread(data);
4320}
4321
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004322int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4323{
4324 struct btrfs_trans_handle *trans;
4325 struct btrfs_root *tree_root = fs_info->tree_root;
4326 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004327 struct task_struct *task;
4328 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004329
4330 /*
4331 * 1 - root node
4332 * 1 - root item
4333 */
4334 trans = btrfs_start_transaction(tree_root, 2);
4335 if (IS_ERR(trans))
4336 return PTR_ERR(trans);
4337
4338 uuid_root = btrfs_create_tree(trans, fs_info,
4339 BTRFS_UUID_TREE_OBJECTID);
4340 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004341 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004342 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004343 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004344 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004345 }
4346
4347 fs_info->uuid_root = uuid_root;
4348
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004349 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004350 if (ret)
4351 return ret;
4352
4353 down(&fs_info->uuid_tree_rescan_sem);
4354 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4355 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004356 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004357 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004358 up(&fs_info->uuid_tree_rescan_sem);
4359 return PTR_ERR(task);
4360 }
4361
4362 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004363}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004364
Stefan Behrens70f80172013-08-15 17:11:23 +02004365int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4366{
4367 struct task_struct *task;
4368
4369 down(&fs_info->uuid_tree_rescan_sem);
4370 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4371 if (IS_ERR(task)) {
4372 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004373 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004374 up(&fs_info->uuid_tree_rescan_sem);
4375 return PTR_ERR(task);
4376 }
4377
4378 return 0;
4379}
4380
Chris Mason8f18cf12008-04-25 16:53:30 -04004381/*
4382 * shrinking a device means finding all of the device extents past
4383 * the new size, and then following the back refs to the chunks.
4384 * The chunk relocation code actually frees the device extent
4385 */
4386int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4387{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004388 struct btrfs_fs_info *fs_info = device->fs_info;
4389 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004390 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004391 struct btrfs_dev_extent *dev_extent = NULL;
4392 struct btrfs_path *path;
4393 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004394 u64 chunk_offset;
4395 int ret;
4396 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004397 int failed = 0;
4398 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004399 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004400 struct extent_buffer *l;
4401 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004402 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004403 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004404 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004405 u64 diff;
4406
4407 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004408 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004409
Anand Jain401e29c2017-12-04 12:54:55 +08004410 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004411 return -EINVAL;
4412
Chris Mason8f18cf12008-04-25 16:53:30 -04004413 path = btrfs_alloc_path();
4414 if (!path)
4415 return -ENOMEM;
4416
Gu Jinxiang0338dff2018-04-27 16:22:07 +08004417 path->reada = READA_BACK;
Chris Mason8f18cf12008-04-25 16:53:30 -04004418
David Sterba34441362016-10-04 19:34:27 +02004419 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004420
Miao Xie7cc8e582014-09-03 21:35:38 +08004421 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004422 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004423 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004424 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004425 }
David Sterba34441362016-10-04 19:34:27 +02004426 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004427
Josef Bacikba1bf482009-09-11 16:11:19 -04004428again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004429 key.objectid = device->devid;
4430 key.offset = (u64)-1;
4431 key.type = BTRFS_DEV_EXTENT_KEY;
4432
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004433 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004434 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004435 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004436 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004437 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004438 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004439 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004440
4441 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004442 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004443 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004444 if (ret < 0)
4445 goto done;
4446 if (ret) {
4447 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004448 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004449 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004450 }
4451
4452 l = path->nodes[0];
4453 slot = path->slots[0];
4454 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4455
Josef Bacikba1bf482009-09-11 16:11:19 -04004456 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004457 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004458 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004459 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004460 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004461
4462 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4463 length = btrfs_dev_extent_length(l, dev_extent);
4464
Josef Bacikba1bf482009-09-11 16:11:19 -04004465 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004466 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004467 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004468 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004469 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004470
Chris Mason8f18cf12008-04-25 16:53:30 -04004471 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004472 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004473
Liu Boa6f93c72017-11-15 16:28:11 -07004474 /*
4475 * We may be relocating the only data chunk we have,
4476 * which could potentially end up with losing data's
4477 * raid profile, so lets allocate an empty one in
4478 * advance.
4479 */
4480 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4481 if (ret < 0) {
4482 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
4483 goto done;
4484 }
4485
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004486 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4487 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004488 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004489 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004490 if (ret == -ENOSPC)
4491 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004492 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004493
4494 if (failed && !retried) {
4495 failed = 0;
4496 retried = true;
4497 goto again;
4498 } else if (failed && retried) {
4499 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004500 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004501 }
4502
Chris Balld6397ba2009-04-27 07:29:03 -04004503 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004504 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004505 if (IS_ERR(trans)) {
4506 ret = PTR_ERR(trans);
4507 goto done;
4508 }
4509
David Sterba34441362016-10-04 19:34:27 +02004510 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004511
4512 /*
4513 * We checked in the above loop all device extents that were already in
4514 * the device tree. However before we have updated the device's
4515 * total_bytes to the new size, we might have had chunk allocations that
4516 * have not complete yet (new block groups attached to transaction
4517 * handles), and therefore their device extents were not yet in the
4518 * device tree and we missed them in the loop above. So if we have any
4519 * pending chunk using a device extent that overlaps the device range
4520 * that we can not use anymore, commit the current transaction and
4521 * repeat the search on the device tree - this way we guarantee we will
4522 * not have chunks using device extents that end beyond 'new_size'.
4523 */
4524 if (!checked_pending_chunks) {
4525 u64 start = new_size;
4526 u64 len = old_size - new_size;
4527
Jeff Mahoney499f3772015-06-15 09:41:17 -04004528 if (contains_pending_extent(trans->transaction, device,
4529 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004530 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004531 checked_pending_chunks = true;
4532 failed = 0;
4533 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004534 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004535 if (ret)
4536 goto done;
4537 goto again;
4538 }
4539 }
4540
Miao Xie7cc8e582014-09-03 21:35:38 +08004541 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004542 if (list_empty(&device->resized_list))
4543 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004544 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004545
Chris Balld6397ba2009-04-27 07:29:03 -04004546 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004547 btrfs_set_super_total_bytes(super_copy,
4548 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004549 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004550
4551 /* Now btrfs_update_device() will change the on-disk size. */
4552 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004553 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004554done:
4555 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004556 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004557 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004558 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08004559 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01004560 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004561 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004562 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004563 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004564 return ret;
4565}
4566
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004567static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004568 struct btrfs_key *key,
4569 struct btrfs_chunk *chunk, int item_size)
4570{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004571 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004572 struct btrfs_disk_key disk_key;
4573 u32 array_size;
4574 u8 *ptr;
4575
David Sterba34441362016-10-04 19:34:27 +02004576 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004577 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004578 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004579 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004580 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004581 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004582 }
Chris Mason0b86a832008-03-24 15:01:56 -04004583
4584 ptr = super_copy->sys_chunk_array + array_size;
4585 btrfs_cpu_key_to_disk(&disk_key, key);
4586 memcpy(ptr, &disk_key, sizeof(disk_key));
4587 ptr += sizeof(disk_key);
4588 memcpy(ptr, chunk, item_size);
4589 item_size += sizeof(disk_key);
4590 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004591 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004592
Chris Mason0b86a832008-03-24 15:01:56 -04004593 return 0;
4594}
4595
Miao Xieb2117a32011-01-05 10:07:28 +00004596/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004597 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004598 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004599static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004600{
Arne Jansen73c5de02011-04-12 12:07:57 +02004601 const struct btrfs_device_info *di_a = a;
4602 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004603
Arne Jansen73c5de02011-04-12 12:07:57 +02004604 if (di_a->max_avail > di_b->max_avail)
4605 return -1;
4606 if (di_a->max_avail < di_b->max_avail)
4607 return 1;
4608 if (di_a->total_avail > di_b->total_avail)
4609 return -1;
4610 if (di_a->total_avail < di_b->total_avail)
4611 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004612 return 0;
4613}
4614
David Woodhouse53b381b2013-01-29 18:40:14 -05004615static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4616{
Zhao Leiffe2d202015-01-20 15:11:44 +08004617 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004618 return;
4619
Miao Xieceda0862013-04-11 10:30:16 +00004620 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004621}
4622
Qu Wenruo062d4d12018-01-30 18:20:46 +08004623#define BTRFS_MAX_DEVS(info) ((BTRFS_MAX_ITEM_SIZE(info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004624 - sizeof(struct btrfs_chunk)) \
4625 / sizeof(struct btrfs_stripe) + 1)
4626
4627#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4628 - 2 * sizeof(struct btrfs_disk_key) \
4629 - 2 * sizeof(struct btrfs_chunk)) \
4630 / sizeof(struct btrfs_stripe) + 1)
4631
Miao Xieb2117a32011-01-05 10:07:28 +00004632static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004633 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004634{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004635 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004636 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004637 struct btrfs_device *device;
Arne Jansen73c5de02011-04-12 12:07:57 +02004638 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004639 struct extent_map_tree *em_tree;
4640 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004641 struct btrfs_device_info *devices_info = NULL;
4642 u64 total_avail;
4643 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004644 int data_stripes; /* number of stripes that count for
4645 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004646 int sub_stripes; /* sub_stripes info for map */
4647 int dev_stripes; /* stripes per dev */
4648 int devs_max; /* max devs to use */
4649 int devs_min; /* min devs needed */
4650 int devs_increment; /* ndevs has to be a multiple of this */
4651 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004652 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004653 u64 max_stripe_size;
4654 u64 max_chunk_size;
4655 u64 stripe_size;
4656 u64 num_bytes;
4657 int ndevs;
4658 int i;
4659 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004660 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004661
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004662 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004663
Qu Wenruo4117f202018-01-22 13:50:54 +08004664 if (list_empty(&fs_devices->alloc_list)) {
4665 if (btrfs_test_opt(info, ENOSPC_DEBUG))
4666 btrfs_debug(info, "%s: no writable device", __func__);
Miao Xieb2117a32011-01-05 10:07:28 +00004667 return -ENOSPC;
Qu Wenruo4117f202018-01-22 13:50:54 +08004668 }
Miao Xieb2117a32011-01-05 10:07:28 +00004669
Qu Wenruo3e72ee82018-01-30 18:20:45 +08004670 index = btrfs_bg_flags_to_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004671
Liu Bo31e50222012-11-21 14:18:10 +00004672 sub_stripes = btrfs_raid_array[index].sub_stripes;
4673 dev_stripes = btrfs_raid_array[index].dev_stripes;
4674 devs_max = btrfs_raid_array[index].devs_max;
4675 devs_min = btrfs_raid_array[index].devs_min;
4676 devs_increment = btrfs_raid_array[index].devs_increment;
4677 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004678
4679 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004680 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004681 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004682 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004683 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004684 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004685 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004686 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4687 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004688 else
Byongho Leeee221842015-12-15 01:42:10 +09004689 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004690 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004691 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004692 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004693 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004694 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004695 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004696 if (!devs_max)
4697 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004698 } else {
David Sterba351fd352014-05-15 16:48:20 +02004699 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004700 type);
4701 BUG_ON(1);
4702 }
4703
4704 /* we don't want a chunk larger than 10% of writeable space */
4705 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4706 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004707
David Sterba31e818f2015-02-20 18:00:26 +01004708 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004709 GFP_NOFS);
4710 if (!devices_info)
4711 return -ENOMEM;
4712
Arne Jansen73c5de02011-04-12 12:07:57 +02004713 /*
4714 * in the first pass through the devices list, we gather information
4715 * about the available holes on each device.
4716 */
4717 ndevs = 0;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004718 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004719 u64 max_avail;
4720 u64 dev_offset;
4721
Anand Jainebbede42017-12-04 12:54:52 +08004722 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004723 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004724 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004725 continue;
4726 }
4727
Anand Jaine12c9622017-12-04 12:54:53 +08004728 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
4729 &device->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08004730 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Arne Jansen73c5de02011-04-12 12:07:57 +02004731 continue;
4732
4733 if (device->total_bytes > device->bytes_used)
4734 total_avail = device->total_bytes - device->bytes_used;
4735 else
4736 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004737
4738 /* If there is no space on this device, skip it. */
4739 if (total_avail == 0)
4740 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004741
Josef Bacik6df9a952013-06-27 13:22:46 -04004742 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004743 max_stripe_size * dev_stripes,
4744 &dev_offset, &max_avail);
4745 if (ret && ret != -ENOSPC)
4746 goto error;
4747
4748 if (ret == 0)
4749 max_avail = max_stripe_size * dev_stripes;
4750
Qu Wenruo4117f202018-01-22 13:50:54 +08004751 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) {
4752 if (btrfs_test_opt(info, ENOSPC_DEBUG))
4753 btrfs_debug(info,
4754 "%s: devid %llu has no free space, have=%llu want=%u",
4755 __func__, device->devid, max_avail,
4756 BTRFS_STRIPE_LEN * dev_stripes);
Arne Jansen73c5de02011-04-12 12:07:57 +02004757 continue;
Qu Wenruo4117f202018-01-22 13:50:54 +08004758 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004759
Eric Sandeen063d0062013-01-31 00:55:01 +00004760 if (ndevs == fs_devices->rw_devices) {
4761 WARN(1, "%s: found more than %llu devices\n",
4762 __func__, fs_devices->rw_devices);
4763 break;
4764 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004765 devices_info[ndevs].dev_offset = dev_offset;
4766 devices_info[ndevs].max_avail = max_avail;
4767 devices_info[ndevs].total_avail = total_avail;
4768 devices_info[ndevs].dev = device;
4769 ++ndevs;
4770 }
4771
4772 /*
4773 * now sort the devices by hole size / available space
4774 */
4775 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4776 btrfs_cmp_device_info, NULL);
4777
4778 /* round down to number of usable stripes */
Nikolay Borisove5600fd2017-06-27 10:02:25 +03004779 ndevs = round_down(ndevs, devs_increment);
Arne Jansen73c5de02011-04-12 12:07:57 +02004780
Qu Wenruoba89b802018-01-31 13:56:15 +08004781 if (ndevs < devs_min) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004782 ret = -ENOSPC;
Qu Wenruo4117f202018-01-22 13:50:54 +08004783 if (btrfs_test_opt(info, ENOSPC_DEBUG)) {
4784 btrfs_debug(info,
4785 "%s: not enough devices with free space: have=%d minimum required=%d",
Qu Wenruoba89b802018-01-31 13:56:15 +08004786 __func__, ndevs, devs_min);
Qu Wenruo4117f202018-01-22 13:50:54 +08004787 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004788 goto error;
4789 }
4790
Nikolay Borisovf148ef42017-06-27 10:02:26 +03004791 ndevs = min(ndevs, devs_max);
4792
Arne Jansen73c5de02011-04-12 12:07:57 +02004793 /*
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004794 * The primary goal is to maximize the number of stripes, so use as
4795 * many devices as possible, even if the stripes are not maximum sized.
4796 *
4797 * The DUP profile stores more than one stripe per device, the
4798 * max_avail is the total size so we have to adjust.
Arne Jansen73c5de02011-04-12 12:07:57 +02004799 */
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004800 stripe_size = div_u64(devices_info[ndevs - 1].max_avail, dev_stripes);
Arne Jansen73c5de02011-04-12 12:07:57 +02004801 num_stripes = ndevs * dev_stripes;
4802
David Woodhouse53b381b2013-01-29 18:40:14 -05004803 /*
4804 * this will have to be fixed for RAID1 and RAID10 over
4805 * more drives
4806 */
4807 data_stripes = num_stripes / ncopies;
4808
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004809 if (type & BTRFS_BLOCK_GROUP_RAID5)
David Woodhouse53b381b2013-01-29 18:40:14 -05004810 data_stripes = num_stripes - 1;
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004811
4812 if (type & BTRFS_BLOCK_GROUP_RAID6)
David Woodhouse53b381b2013-01-29 18:40:14 -05004813 data_stripes = num_stripes - 2;
Chris Mason86db2572013-02-20 16:23:40 -05004814
4815 /*
4816 * Use the number of data stripes to figure out how big this chunk
4817 * is really going to be in terms of logical address space,
4818 * and compare that answer with the max chunk size
4819 */
4820 if (stripe_size * data_stripes > max_chunk_size) {
David Sterbab8b93ad2015-01-16 17:26:13 +01004821 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004822
4823 /* bump the answer up to a 16MB boundary */
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004824 stripe_size = round_up(stripe_size, SZ_16M);
Chris Mason86db2572013-02-20 16:23:40 -05004825
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004826 /*
4827 * But don't go higher than the limits we found while searching
4828 * for free extents
Chris Mason86db2572013-02-20 16:23:40 -05004829 */
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004830 stripe_size = min(devices_info[ndevs - 1].max_avail,
4831 stripe_size);
Chris Mason86db2572013-02-20 16:23:40 -05004832 }
4833
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004834 /* align to BTRFS_STRIPE_LEN */
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004835 stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN);
Arne Jansen73c5de02011-04-12 12:07:57 +02004836
Miao Xieb2117a32011-01-05 10:07:28 +00004837 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4838 if (!map) {
4839 ret = -ENOMEM;
4840 goto error;
4841 }
4842 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004843
Arne Jansen73c5de02011-04-12 12:07:57 +02004844 for (i = 0; i < ndevs; ++i) {
4845 for (j = 0; j < dev_stripes; ++j) {
4846 int s = i * dev_stripes + j;
4847 map->stripes[s].dev = devices_info[i].dev;
4848 map->stripes[s].physical = devices_info[i].dev_offset +
4849 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004850 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004851 }
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004852 map->stripe_len = BTRFS_STRIPE_LEN;
4853 map->io_align = BTRFS_STRIPE_LEN;
4854 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04004855 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004856 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004857
David Woodhouse53b381b2013-01-29 18:40:14 -05004858 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004859
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004860 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004861
David Sterba172ddd62011-04-21 00:48:27 +02004862 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004863 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004864 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004865 ret = -ENOMEM;
4866 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004867 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004868 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004869 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004870 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004871 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004872 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004873 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004874 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004875
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004876 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004877 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004878 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004879 if (ret) {
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004880 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004881 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004882 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004883 }
Yan Zheng2b820322008-11-17 21:11:30 -05004884
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004885 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4886 refcount_inc(&em->refs);
4887 write_unlock(&em_tree->lock);
4888
Nikolay Borisov01744842017-07-27 14:22:11 +03004889 ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004890 if (ret)
4891 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004892
Miao Xie7cc8e582014-09-03 21:35:38 +08004893 for (i = 0; i < map->num_stripes; i++) {
4894 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4895 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4896 }
Miao Xie43530c42014-09-03 21:35:36 +08004897
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004898 atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space);
Miao Xie1c116182014-09-03 21:35:37 +08004899
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004900 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004901 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004902
Miao Xieb2117a32011-01-05 10:07:28 +00004903 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004904 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004905
Josef Bacik6df9a952013-06-27 13:22:46 -04004906error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004907 write_lock(&em_tree->lock);
4908 remove_extent_mapping(em_tree, em);
4909 write_unlock(&em_tree->lock);
4910
4911 /* One for our allocation */
4912 free_extent_map(em);
4913 /* One for the tree reference */
4914 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004915 /* One for the pending_chunks list reference */
4916 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004917error:
Miao Xieb2117a32011-01-05 10:07:28 +00004918 kfree(devices_info);
4919 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004920}
4921
Josef Bacik6df9a952013-06-27 13:22:46 -04004922int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004923 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004924 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004925{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004926 struct btrfs_root *extent_root = fs_info->extent_root;
4927 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004928 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004929 struct btrfs_device *device;
4930 struct btrfs_chunk *chunk;
4931 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004932 struct extent_map *em;
4933 struct map_lookup *map;
4934 size_t item_size;
4935 u64 dev_offset;
4936 u64 stripe_size;
4937 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004938 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004939
Liu Bo592d92e2017-03-14 13:33:55 -07004940 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4941 if (IS_ERR(em))
4942 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004943
Jeff Mahoney95617d62015-06-03 10:55:48 -04004944 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004945 item_size = btrfs_chunk_item_size(map->num_stripes);
4946 stripe_size = em->orig_block_len;
4947
4948 chunk = kzalloc(item_size, GFP_NOFS);
4949 if (!chunk) {
4950 ret = -ENOMEM;
4951 goto out;
4952 }
4953
Filipe Manana50460e32015-11-20 10:42:47 +00004954 /*
4955 * Take the device list mutex to prevent races with the final phase of
4956 * a device replace operation that replaces the device object associated
4957 * with the map's stripes, because the device object's id can change
4958 * at any time during that final phase of the device replace operation
4959 * (dev-replace.c:btrfs_dev_replace_finishing()).
4960 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004961 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004962 for (i = 0; i < map->num_stripes; i++) {
4963 device = map->stripes[i].dev;
4964 dev_offset = map->stripes[i].physical;
4965
Yan Zheng2b820322008-11-17 21:11:30 -05004966 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004967 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004968 break;
Nikolay Borisovb5d90712017-08-18 17:58:23 +03004969 ret = btrfs_alloc_dev_extent(trans, device, chunk_offset,
4970 dev_offset, stripe_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04004971 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004972 break;
4973 }
4974 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004975 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004976 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004977 }
4978
Yan Zheng2b820322008-11-17 21:11:30 -05004979 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004980 for (i = 0; i < map->num_stripes; i++) {
4981 device = map->stripes[i].dev;
4982 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004983
4984 btrfs_set_stack_stripe_devid(stripe, device->devid);
4985 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4986 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4987 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004988 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004989 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004990
4991 btrfs_set_stack_chunk_length(chunk, chunk_size);
4992 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4993 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4994 btrfs_set_stack_chunk_type(chunk, map->type);
4995 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4996 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4997 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004998 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05004999 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
5000
5001 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
5002 key.type = BTRFS_CHUNK_ITEM_KEY;
5003 key.offset = chunk_offset;
5004
5005 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005006 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
5007 /*
5008 * TODO: Cleanup of inserted chunk root in case of
5009 * failure.
5010 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005011 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05005012 }
liubo1abe9b82011-03-24 11:18:59 +00005013
Josef Bacik6df9a952013-06-27 13:22:46 -04005014out:
Yan Zheng2b820322008-11-17 21:11:30 -05005015 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005016 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005017 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005018}
5019
5020/*
5021 * Chunk allocation falls into two parts. The first part does works
5022 * that make the new allocated chunk useable, but not do any operation
5023 * that modifies the chunk tree. The second part does the works that
5024 * require modifying the chunk tree. This division is important for the
5025 * bootstrap process of adding storage to a seed btrfs.
5026 */
5027int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005028 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005029{
5030 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005031
David Sterbaa32bf9a2018-03-16 02:21:22 +01005032 lockdep_assert_held(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005033 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005034 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005035}
5036
Chris Masond3977122009-01-05 21:25:51 -05005037static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005038 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005039{
5040 u64 chunk_offset;
5041 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005042 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005043 int ret;
5044
Josef Bacik6df9a952013-06-27 13:22:46 -04005045 chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005046 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005047 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005048 if (ret)
5049 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005050
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005051 sys_chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005052 alloc_profile = btrfs_system_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005053 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005054 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005055}
5056
Miao Xied20983b2014-07-03 18:22:13 +08005057static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5058{
5059 int max_errors;
5060
5061 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5062 BTRFS_BLOCK_GROUP_RAID10 |
5063 BTRFS_BLOCK_GROUP_RAID5 |
5064 BTRFS_BLOCK_GROUP_DUP)) {
5065 max_errors = 1;
5066 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5067 max_errors = 2;
5068 } else {
5069 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005070 }
5071
Miao Xied20983b2014-07-03 18:22:13 +08005072 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005073}
5074
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005075int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005076{
5077 struct extent_map *em;
5078 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005079 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005080 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005081 int i;
5082
Liu Bo592d92e2017-03-14 13:33:55 -07005083 em = get_chunk_map(fs_info, chunk_offset, 1);
5084 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005085 return 1;
5086
Jeff Mahoney95617d62015-06-03 10:55:48 -04005087 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005088 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005089 if (test_bit(BTRFS_DEV_STATE_MISSING,
5090 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005091 miss_ndevs++;
5092 continue;
5093 }
Anand Jainebbede42017-12-04 12:54:52 +08005094 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5095 &map->stripes[i].dev->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05005096 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005097 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005098 }
5099 }
Miao Xied20983b2014-07-03 18:22:13 +08005100
5101 /*
5102 * If the number of missing devices is larger than max errors,
5103 * we can not write the data into that chunk successfully, so
5104 * set it readonly.
5105 */
5106 if (miss_ndevs > btrfs_chunk_max_errors(map))
5107 readonly = 1;
5108end:
Yan Zheng2b820322008-11-17 21:11:30 -05005109 free_extent_map(em);
5110 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005111}
5112
5113void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5114{
David Sterbaa8067e02011-04-21 00:34:43 +02005115 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005116}
5117
5118void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5119{
5120 struct extent_map *em;
5121
Chris Masond3977122009-01-05 21:25:51 -05005122 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005123 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005124 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5125 if (em)
5126 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005127 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005128 if (!em)
5129 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005130 /* once for us */
5131 free_extent_map(em);
5132 /* once for the tree */
5133 free_extent_map(em);
5134 }
5135}
5136
Stefan Behrens5d964052012-11-05 14:59:07 +01005137int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005138{
5139 struct extent_map *em;
5140 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005141 int ret;
5142
Liu Bo592d92e2017-03-14 13:33:55 -07005143 em = get_chunk_map(fs_info, logical, len);
5144 if (IS_ERR(em))
5145 /*
5146 * We could return errors for these cases, but that could get
5147 * ugly and we'd probably do the same thing which is just not do
5148 * anything else and exit, so return 1 so the callers don't try
5149 * to use other copies.
5150 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005151 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005152
Jeff Mahoney95617d62015-06-03 10:55:48 -04005153 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005154 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5155 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005156 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5157 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005158 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5159 ret = 2;
5160 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005161 /*
5162 * There could be two corrupted data stripes, we need
5163 * to loop retry in order to rebuild the correct data.
5164 *
5165 * Fail a stripe at a time on every retry except the
5166 * stripe under reconstruction.
5167 */
5168 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005169 else
5170 ret = 1;
5171 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005172
David Sterba7e79cb82018-03-24 02:11:38 +01005173 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Liu Bo6fad8232017-03-14 13:33:59 -07005174 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5175 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005176 ret++;
David Sterba7e79cb82018-03-24 02:11:38 +01005177 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005178
Chris Masonf1885912008-04-09 16:28:12 -04005179 return ret;
5180}
5181
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005182unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005183 u64 logical)
5184{
5185 struct extent_map *em;
5186 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005187 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005188
Liu Bo592d92e2017-03-14 13:33:55 -07005189 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005190
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005191 if (!WARN_ON(IS_ERR(em))) {
5192 map = em->map_lookup;
5193 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5194 len = map->stripe_len * nr_data_stripes(map);
5195 free_extent_map(em);
5196 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005197 return len;
5198}
5199
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005200int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005201{
5202 struct extent_map *em;
5203 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005204 int ret = 0;
5205
Liu Bo592d92e2017-03-14 13:33:55 -07005206 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005207
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005208 if(!WARN_ON(IS_ERR(em))) {
5209 map = em->map_lookup;
5210 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5211 ret = 1;
5212 free_extent_map(em);
5213 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005214 return ret;
5215}
5216
Stefan Behrens30d98612012-11-06 14:52:18 +01005217static int find_live_mirror(struct btrfs_fs_info *fs_info,
Anand Jain99f92a72018-03-14 16:29:12 +08005218 struct map_lookup *map, int first,
Anand Jain8ba0ae72018-03-14 16:29:13 +08005219 int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005220{
5221 int i;
Anand Jain99f92a72018-03-14 16:29:12 +08005222 int num_stripes;
Anand Jain8ba0ae72018-03-14 16:29:13 +08005223 int preferred_mirror;
Stefan Behrens30d98612012-11-06 14:52:18 +01005224 int tolerance;
5225 struct btrfs_device *srcdev;
5226
Anand Jain99f92a72018-03-14 16:29:12 +08005227 ASSERT((map->type &
5228 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)));
5229
5230 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5231 num_stripes = map->sub_stripes;
5232 else
5233 num_stripes = map->num_stripes;
5234
Anand Jain8ba0ae72018-03-14 16:29:13 +08005235 preferred_mirror = first + current->pid % num_stripes;
5236
Stefan Behrens30d98612012-11-06 14:52:18 +01005237 if (dev_replace_is_ongoing &&
5238 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5239 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5240 srcdev = fs_info->dev_replace.srcdev;
5241 else
5242 srcdev = NULL;
5243
5244 /*
5245 * try to avoid the drive that is the source drive for a
5246 * dev-replace procedure, only choose it if no other non-missing
5247 * mirror is available
5248 */
5249 for (tolerance = 0; tolerance < 2; tolerance++) {
Anand Jain8ba0ae72018-03-14 16:29:13 +08005250 if (map->stripes[preferred_mirror].dev->bdev &&
5251 (tolerance || map->stripes[preferred_mirror].dev != srcdev))
5252 return preferred_mirror;
Anand Jain99f92a72018-03-14 16:29:12 +08005253 for (i = first; i < first + num_stripes; i++) {
Stefan Behrens30d98612012-11-06 14:52:18 +01005254 if (map->stripes[i].dev->bdev &&
5255 (tolerance || map->stripes[i].dev != srcdev))
5256 return i;
5257 }
Chris Masondfe25022008-05-13 13:46:40 -04005258 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005259
Chris Masondfe25022008-05-13 13:46:40 -04005260 /* we couldn't find one that doesn't fail. Just return something
5261 * and the io error handling code will clean up eventually
5262 */
Anand Jain8ba0ae72018-03-14 16:29:13 +08005263 return preferred_mirror;
Chris Masondfe25022008-05-13 13:46:40 -04005264}
5265
David Woodhouse53b381b2013-01-29 18:40:14 -05005266static inline int parity_smaller(u64 a, u64 b)
5267{
5268 return a > b;
5269}
5270
5271/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005272static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005273{
5274 struct btrfs_bio_stripe s;
5275 int i;
5276 u64 l;
5277 int again = 1;
5278
5279 while (again) {
5280 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005281 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005282 if (parity_smaller(bbio->raid_map[i],
5283 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005284 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005285 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005286 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005287 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005288 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005289 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005290
David Woodhouse53b381b2013-01-29 18:40:14 -05005291 again = 1;
5292 }
5293 }
5294 }
5295}
5296
Zhao Lei6e9606d2015-01-20 15:11:34 +08005297static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5298{
5299 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005300 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005301 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005302 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005303 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005304 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005305 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005306 /*
5307 * plus the raid_map, which includes both the tgt dev
5308 * and the stripes
5309 */
5310 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005311 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005312
5313 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005314 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005315
5316 return bbio;
5317}
5318
5319void btrfs_get_bbio(struct btrfs_bio *bbio)
5320{
Elena Reshetova140475a2017-03-03 10:55:10 +02005321 WARN_ON(!refcount_read(&bbio->refs));
5322 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005323}
5324
5325void btrfs_put_bbio(struct btrfs_bio *bbio)
5326{
5327 if (!bbio)
5328 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005329 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005330 kfree(bbio);
5331}
5332
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005333/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5334/*
5335 * Please note that, discard won't be sent to target device of device
5336 * replace.
5337 */
5338static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5339 u64 logical, u64 length,
5340 struct btrfs_bio **bbio_ret)
5341{
5342 struct extent_map *em;
5343 struct map_lookup *map;
5344 struct btrfs_bio *bbio;
5345 u64 offset;
5346 u64 stripe_nr;
5347 u64 stripe_nr_end;
5348 u64 stripe_end_offset;
5349 u64 stripe_cnt;
5350 u64 stripe_len;
5351 u64 stripe_offset;
5352 u64 num_stripes;
5353 u32 stripe_index;
5354 u32 factor = 0;
5355 u32 sub_stripes = 0;
5356 u64 stripes_per_dev = 0;
5357 u32 remaining_stripes = 0;
5358 u32 last_stripe = 0;
5359 int ret = 0;
5360 int i;
5361
5362 /* discard always return a bbio */
5363 ASSERT(bbio_ret);
5364
5365 em = get_chunk_map(fs_info, logical, length);
5366 if (IS_ERR(em))
5367 return PTR_ERR(em);
5368
5369 map = em->map_lookup;
5370 /* we don't discard raid56 yet */
5371 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5372 ret = -EOPNOTSUPP;
5373 goto out;
5374 }
5375
5376 offset = logical - em->start;
5377 length = min_t(u64, em->len - offset, length);
5378
5379 stripe_len = map->stripe_len;
5380 /*
5381 * stripe_nr counts the total number of stripes we have to stride
5382 * to get to this block
5383 */
5384 stripe_nr = div64_u64(offset, stripe_len);
5385
5386 /* stripe_offset is the offset of this block in its stripe */
5387 stripe_offset = offset - stripe_nr * stripe_len;
5388
5389 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005390 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005391 stripe_cnt = stripe_nr_end - stripe_nr;
5392 stripe_end_offset = stripe_nr_end * map->stripe_len -
5393 (offset + length);
5394 /*
5395 * after this, stripe_nr is the number of stripes on this
5396 * device we have to walk to find the data, and stripe_index is
5397 * the number of our device in the stripe array
5398 */
5399 num_stripes = 1;
5400 stripe_index = 0;
5401 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5402 BTRFS_BLOCK_GROUP_RAID10)) {
5403 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5404 sub_stripes = 1;
5405 else
5406 sub_stripes = map->sub_stripes;
5407
5408 factor = map->num_stripes / sub_stripes;
5409 num_stripes = min_t(u64, map->num_stripes,
5410 sub_stripes * stripe_cnt);
5411 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5412 stripe_index *= sub_stripes;
5413 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5414 &remaining_stripes);
5415 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5416 last_stripe *= sub_stripes;
5417 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5418 BTRFS_BLOCK_GROUP_DUP)) {
5419 num_stripes = map->num_stripes;
5420 } else {
5421 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5422 &stripe_index);
5423 }
5424
5425 bbio = alloc_btrfs_bio(num_stripes, 0);
5426 if (!bbio) {
5427 ret = -ENOMEM;
5428 goto out;
5429 }
5430
5431 for (i = 0; i < num_stripes; i++) {
5432 bbio->stripes[i].physical =
5433 map->stripes[stripe_index].physical +
5434 stripe_offset + stripe_nr * map->stripe_len;
5435 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5436
5437 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5438 BTRFS_BLOCK_GROUP_RAID10)) {
5439 bbio->stripes[i].length = stripes_per_dev *
5440 map->stripe_len;
5441
5442 if (i / sub_stripes < remaining_stripes)
5443 bbio->stripes[i].length +=
5444 map->stripe_len;
5445
5446 /*
5447 * Special for the first stripe and
5448 * the last stripe:
5449 *
5450 * |-------|...|-------|
5451 * |----------|
5452 * off end_off
5453 */
5454 if (i < sub_stripes)
5455 bbio->stripes[i].length -=
5456 stripe_offset;
5457
5458 if (stripe_index >= last_stripe &&
5459 stripe_index <= (last_stripe +
5460 sub_stripes - 1))
5461 bbio->stripes[i].length -=
5462 stripe_end_offset;
5463
5464 if (i == sub_stripes - 1)
5465 stripe_offset = 0;
5466 } else {
5467 bbio->stripes[i].length = length;
5468 }
5469
5470 stripe_index++;
5471 if (stripe_index == map->num_stripes) {
5472 stripe_index = 0;
5473 stripe_nr++;
5474 }
5475 }
5476
5477 *bbio_ret = bbio;
5478 bbio->map_type = map->type;
5479 bbio->num_stripes = num_stripes;
5480out:
5481 free_extent_map(em);
5482 return ret;
5483}
5484
Liu Bo5ab56092017-03-14 13:33:57 -07005485/*
5486 * In dev-replace case, for repair case (that's the only case where the mirror
5487 * is selected explicitly when calling btrfs_map_block), blocks left of the
5488 * left cursor can also be read from the target drive.
5489 *
5490 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5491 * array of stripes.
5492 * For READ, it also needs to be supported using the same mirror number.
5493 *
5494 * If the requested block is not left of the left cursor, EIO is returned. This
5495 * can happen because btrfs_num_copies() returns one more in the dev-replace
5496 * case.
5497 */
5498static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5499 u64 logical, u64 length,
5500 u64 srcdev_devid, int *mirror_num,
5501 u64 *physical)
5502{
5503 struct btrfs_bio *bbio = NULL;
5504 int num_stripes;
5505 int index_srcdev = 0;
5506 int found = 0;
5507 u64 physical_of_found = 0;
5508 int i;
5509 int ret = 0;
5510
5511 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5512 logical, &length, &bbio, 0, 0);
5513 if (ret) {
5514 ASSERT(bbio == NULL);
5515 return ret;
5516 }
5517
5518 num_stripes = bbio->num_stripes;
5519 if (*mirror_num > num_stripes) {
5520 /*
5521 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5522 * that means that the requested area is not left of the left
5523 * cursor
5524 */
5525 btrfs_put_bbio(bbio);
5526 return -EIO;
5527 }
5528
5529 /*
5530 * process the rest of the function using the mirror_num of the source
5531 * drive. Therefore look it up first. At the end, patch the device
5532 * pointer to the one of the target drive.
5533 */
5534 for (i = 0; i < num_stripes; i++) {
5535 if (bbio->stripes[i].dev->devid != srcdev_devid)
5536 continue;
5537
5538 /*
5539 * In case of DUP, in order to keep it simple, only add the
5540 * mirror with the lowest physical address
5541 */
5542 if (found &&
5543 physical_of_found <= bbio->stripes[i].physical)
5544 continue;
5545
5546 index_srcdev = i;
5547 found = 1;
5548 physical_of_found = bbio->stripes[i].physical;
5549 }
5550
5551 btrfs_put_bbio(bbio);
5552
5553 ASSERT(found);
5554 if (!found)
5555 return -EIO;
5556
5557 *mirror_num = index_srcdev + 1;
5558 *physical = physical_of_found;
5559 return ret;
5560}
5561
Liu Bo73c0f222017-03-14 13:33:58 -07005562static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5563 struct btrfs_bio **bbio_ret,
5564 struct btrfs_dev_replace *dev_replace,
5565 int *num_stripes_ret, int *max_errors_ret)
5566{
5567 struct btrfs_bio *bbio = *bbio_ret;
5568 u64 srcdev_devid = dev_replace->srcdev->devid;
5569 int tgtdev_indexes = 0;
5570 int num_stripes = *num_stripes_ret;
5571 int max_errors = *max_errors_ret;
5572 int i;
5573
5574 if (op == BTRFS_MAP_WRITE) {
5575 int index_where_to_add;
5576
5577 /*
5578 * duplicate the write operations while the dev replace
5579 * procedure is running. Since the copying of the old disk to
5580 * the new disk takes place at run time while the filesystem is
5581 * mounted writable, the regular write operations to the old
5582 * disk have to be duplicated to go to the new disk as well.
5583 *
5584 * Note that device->missing is handled by the caller, and that
5585 * the write to the old disk is already set up in the stripes
5586 * array.
5587 */
5588 index_where_to_add = num_stripes;
5589 for (i = 0; i < num_stripes; i++) {
5590 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5591 /* write to new disk, too */
5592 struct btrfs_bio_stripe *new =
5593 bbio->stripes + index_where_to_add;
5594 struct btrfs_bio_stripe *old =
5595 bbio->stripes + i;
5596
5597 new->physical = old->physical;
5598 new->length = old->length;
5599 new->dev = dev_replace->tgtdev;
5600 bbio->tgtdev_map[i] = index_where_to_add;
5601 index_where_to_add++;
5602 max_errors++;
5603 tgtdev_indexes++;
5604 }
5605 }
5606 num_stripes = index_where_to_add;
5607 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5608 int index_srcdev = 0;
5609 int found = 0;
5610 u64 physical_of_found = 0;
5611
5612 /*
5613 * During the dev-replace procedure, the target drive can also
5614 * be used to read data in case it is needed to repair a corrupt
5615 * block elsewhere. This is possible if the requested area is
5616 * left of the left cursor. In this area, the target drive is a
5617 * full copy of the source drive.
5618 */
5619 for (i = 0; i < num_stripes; i++) {
5620 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5621 /*
5622 * In case of DUP, in order to keep it simple,
5623 * only add the mirror with the lowest physical
5624 * address
5625 */
5626 if (found &&
5627 physical_of_found <=
5628 bbio->stripes[i].physical)
5629 continue;
5630 index_srcdev = i;
5631 found = 1;
5632 physical_of_found = bbio->stripes[i].physical;
5633 }
5634 }
5635 if (found) {
5636 struct btrfs_bio_stripe *tgtdev_stripe =
5637 bbio->stripes + num_stripes;
5638
5639 tgtdev_stripe->physical = physical_of_found;
5640 tgtdev_stripe->length =
5641 bbio->stripes[index_srcdev].length;
5642 tgtdev_stripe->dev = dev_replace->tgtdev;
5643 bbio->tgtdev_map[index_srcdev] = num_stripes;
5644
5645 tgtdev_indexes++;
5646 num_stripes++;
5647 }
5648 }
5649
5650 *num_stripes_ret = num_stripes;
5651 *max_errors_ret = max_errors;
5652 bbio->num_tgtdevs = tgtdev_indexes;
5653 *bbio_ret = bbio;
5654}
5655
Liu Bo2b19a1f2017-03-14 13:34:00 -07005656static bool need_full_stripe(enum btrfs_map_op op)
5657{
5658 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5659}
5660
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005661static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5662 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005663 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005664 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005665 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005666{
5667 struct extent_map *em;
5668 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005669 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005670 u64 stripe_offset;
5671 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005672 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005673 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005674 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005675 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005676 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005677 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005678 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005679 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005680 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5681 int dev_replace_is_ongoing = 0;
5682 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005683 int patch_the_first_stripe_for_dev_replace = 0;
5684 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005685 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005686
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005687 if (op == BTRFS_MAP_DISCARD)
5688 return __btrfs_map_block_for_discard(fs_info, logical,
5689 *length, bbio_ret);
5690
Liu Bo592d92e2017-03-14 13:33:55 -07005691 em = get_chunk_map(fs_info, logical, *length);
5692 if (IS_ERR(em))
5693 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005694
Jeff Mahoney95617d62015-06-03 10:55:48 -04005695 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005696 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005697
David Woodhouse53b381b2013-01-29 18:40:14 -05005698 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005699 stripe_nr = offset;
5700 /*
5701 * stripe_nr counts the total number of stripes we have to stride
5702 * to get to this block
5703 */
David Sterba47c57132015-02-20 18:43:47 +01005704 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005705
David Woodhouse53b381b2013-01-29 18:40:14 -05005706 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005707 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005708 btrfs_crit(fs_info,
5709 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005710 stripe_offset, offset, em->start, logical,
5711 stripe_len);
5712 free_extent_map(em);
5713 return -EINVAL;
5714 }
Chris Mason593060d2008-03-25 16:50:33 -04005715
5716 /* stripe_offset is the offset of this block in its stripe*/
5717 stripe_offset = offset - stripe_offset;
5718
David Woodhouse53b381b2013-01-29 18:40:14 -05005719 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005720 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005721 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5722 raid56_full_stripe_start = offset;
5723
5724 /* allow a write of a full stripe, but make sure we don't
5725 * allow straddling of stripes
5726 */
David Sterba47c57132015-02-20 18:43:47 +01005727 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5728 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005729 raid56_full_stripe_start *= full_stripe_len;
5730 }
5731
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005732 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005733 u64 max_len;
5734 /* For writes to RAID[56], allow a full stripeset across all disks.
5735 For other RAID types and for RAID[56] reads, just allow a single
5736 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005737 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005738 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005739 max_len = stripe_len * nr_data_stripes(map) -
5740 (offset - raid56_full_stripe_start);
5741 } else {
5742 /* we limit the length of each bio to what fits in a stripe */
5743 max_len = stripe_len - stripe_offset;
5744 }
5745 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005746 } else {
5747 *length = em->len - offset;
5748 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005749
David Woodhouse53b381b2013-01-29 18:40:14 -05005750 /* This is for when we're called from btrfs_merge_bio_hook() and all
5751 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005752 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005753 goto out;
5754
David Sterba7e79cb82018-03-24 02:11:38 +01005755 btrfs_dev_replace_read_lock(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005756 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5757 if (!dev_replace_is_ongoing)
David Sterba7e79cb82018-03-24 02:11:38 +01005758 btrfs_dev_replace_read_unlock(dev_replace);
Liu Bo73beece2015-07-17 16:49:19 +08005759 else
5760 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005761
Stefan Behrensad6d6202012-11-06 15:06:47 +01005762 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005763 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005764 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5765 dev_replace->srcdev->devid,
5766 &mirror_num,
5767 &physical_to_patch_in_first_stripe);
5768 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005769 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005770 else
5771 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005772 } else if (mirror_num > map->num_stripes) {
5773 mirror_num = 0;
5774 }
5775
Chris Masonf2d8d742008-04-21 10:03:05 -04005776 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005777 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005778 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005779 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5780 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005781 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08005782 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005783 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Anand Jainde483732017-10-12 16:43:00 +08005784 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005785 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005786 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005787 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005788 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005789 stripe_index = find_live_mirror(fs_info, map, 0,
Stefan Behrens30d98612012-11-06 14:52:18 +01005790 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005791 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005792 }
Chris Mason2fff7342008-04-29 14:12:09 -04005793
Chris Mason611f0e02008-04-03 16:29:03 -04005794 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08005795 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005796 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005797 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005798 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005799 } else {
5800 mirror_num = 1;
5801 }
Chris Mason2fff7342008-04-29 14:12:09 -04005802
Chris Mason321aecc2008-04-16 10:49:51 -04005803 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005804 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005805
David Sterba47c57132015-02-20 18:43:47 +01005806 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005807 stripe_index *= map->sub_stripes;
5808
Anand Jainde483732017-10-12 16:43:00 +08005809 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005810 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005811 else if (mirror_num)
5812 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005813 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005814 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005815 stripe_index = find_live_mirror(fs_info, map,
5816 stripe_index,
Stefan Behrens30d98612012-11-06 14:52:18 +01005817 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005818 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005819 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005820
Zhao Leiffe2d202015-01-20 15:11:44 +08005821 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08005822 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005823 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005824 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005825 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005826
5827 /* RAID[56] write or recovery. Return all stripes */
5828 num_stripes = map->num_stripes;
5829 max_errors = nr_parity_stripes(map);
5830
David Woodhouse53b381b2013-01-29 18:40:14 -05005831 *length = map->stripe_len;
5832 stripe_index = 0;
5833 stripe_offset = 0;
5834 } else {
5835 /*
5836 * Mirror #0 or #1 means the original data block.
5837 * Mirror #2 is RAID5 parity block.
5838 * Mirror #3 is RAID6 Q block.
5839 */
David Sterba47c57132015-02-20 18:43:47 +01005840 stripe_nr = div_u64_rem(stripe_nr,
5841 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005842 if (mirror_num > 1)
5843 stripe_index = nr_data_stripes(map) +
5844 mirror_num - 2;
5845
5846 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005847 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5848 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005849 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005850 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005851 }
Chris Mason8790d502008-04-03 16:29:03 -04005852 } else {
5853 /*
David Sterba47c57132015-02-20 18:43:47 +01005854 * after this, stripe_nr is the number of stripes on this
5855 * device we have to walk to find the data, and stripe_index is
5856 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005857 */
David Sterba47c57132015-02-20 18:43:47 +01005858 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5859 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005860 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005861 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005862 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005863 btrfs_crit(fs_info,
5864 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005865 stripe_index, map->num_stripes);
5866 ret = -EINVAL;
5867 goto out;
5868 }
Chris Mason593060d2008-03-25 16:50:33 -04005869
Stefan Behrens472262f2012-11-06 14:43:46 +01005870 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005871 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005872 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005873 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005874 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005875 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005876 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005877 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005878
Zhao Lei6e9606d2015-01-20 15:11:34 +08005879 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005880 if (!bbio) {
5881 ret = -ENOMEM;
5882 goto out;
5883 }
Liu Bo6fad8232017-03-14 13:33:59 -07005884 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005885 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005886
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005887 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005888 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5889 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005890 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005891 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005892
5893 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5894 sizeof(struct btrfs_bio_stripe) *
5895 num_alloc_stripes +
5896 sizeof(int) * tgtdev_indexes);
5897
5898 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005899 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005900
5901 /* Fill in the logical address of each stripe */
5902 tmp = stripe_nr * nr_data_stripes(map);
5903 for (i = 0; i < nr_data_stripes(map); i++)
5904 bbio->raid_map[(i+rot) % num_stripes] =
5905 em->start + (tmp + i) * map->stripe_len;
5906
5907 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5908 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5909 bbio->raid_map[(i+rot+1) % num_stripes] =
5910 RAID6_Q_STRIPE;
5911 }
5912
Li Zefanec9ef7a2011-12-01 14:06:42 +08005913
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005914 for (i = 0; i < num_stripes; i++) {
5915 bbio->stripes[i].physical =
5916 map->stripes[stripe_index].physical +
5917 stripe_offset +
5918 stripe_nr * map->stripe_len;
5919 bbio->stripes[i].dev =
5920 map->stripes[stripe_index].dev;
5921 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005922 }
Li Zefande11cc12011-12-01 12:55:47 +08005923
Liu Bo2b19a1f2017-03-14 13:34:00 -07005924 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005925 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005926
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005927 if (bbio->raid_map)
5928 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005929
Liu Bo73c0f222017-03-14 13:33:58 -07005930 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005931 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005932 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5933 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005934 }
5935
Li Zefande11cc12011-12-01 12:55:47 +08005936 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005937 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005938 bbio->num_stripes = num_stripes;
5939 bbio->max_errors = max_errors;
5940 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005941
5942 /*
5943 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5944 * mirror_num == num_stripes + 1 && dev_replace target drive is
5945 * available as a mirror
5946 */
5947 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5948 WARN_ON(num_stripes > 1);
5949 bbio->stripes[0].dev = dev_replace->tgtdev;
5950 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5951 bbio->mirror_num = map->num_stripes + 1;
5952 }
Chris Masoncea9e442008-04-09 16:28:12 -04005953out:
Liu Bo73beece2015-07-17 16:49:19 +08005954 if (dev_replace_is_ongoing) {
5955 btrfs_dev_replace_clear_lock_blocking(dev_replace);
David Sterba7e79cb82018-03-24 02:11:38 +01005956 btrfs_dev_replace_read_unlock(dev_replace);
Liu Bo73beece2015-07-17 16:49:19 +08005957 }
Chris Mason0b86a832008-03-24 15:01:56 -04005958 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005959 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005960}
5961
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005962int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005963 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005964 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005965{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005966 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005967 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005968}
5969
Miao Xieaf8e2d12014-10-23 14:42:50 +08005970/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005971int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005972 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02005973 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005974{
David Sterba825ad4c2017-03-28 14:45:22 +02005975 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005976}
5977
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005978int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005979 u64 chunk_start, u64 physical, u64 devid,
5980 u64 **logical, int *naddrs, int *stripe_len)
5981{
Yan Zhenga512bbf2008-12-08 16:46:26 -05005982 struct extent_map *em;
5983 struct map_lookup *map;
5984 u64 *buf;
5985 u64 bytenr;
5986 u64 length;
5987 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005988 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005989 int i, j, nr = 0;
5990
Liu Bo592d92e2017-03-14 13:33:55 -07005991 em = get_chunk_map(fs_info, chunk_start, 1);
5992 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04005993 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04005994
Jeff Mahoney95617d62015-06-03 10:55:48 -04005995 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005996 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005997 rmap_len = map->stripe_len;
5998
Yan Zhenga512bbf2008-12-08 16:46:26 -05005999 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01006000 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006001 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01006002 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08006003 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01006004 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05006005 rmap_len = map->stripe_len * nr_data_stripes(map);
6006 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006007
David Sterba31e818f2015-02-20 18:00:26 +01006008 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006009 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05006010
6011 for (i = 0; i < map->num_stripes; i++) {
6012 if (devid && map->stripes[i].dev->devid != devid)
6013 continue;
6014 if (map->stripes[i].physical > physical ||
6015 map->stripes[i].physical + length <= physical)
6016 continue;
6017
6018 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07006019 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006020
6021 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
6022 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01006023 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006024 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
6025 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05006026 } /* else if RAID[56], multiply by nr_data_stripes().
6027 * Alternatively, just use rmap_len below instead of
6028 * map->stripe_len */
6029
6030 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05006031 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006032 for (j = 0; j < nr; j++) {
6033 if (buf[j] == bytenr)
6034 break;
6035 }
Chris Mason934d3752008-12-08 16:43:10 -05006036 if (j == nr) {
6037 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006038 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05006039 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006040 }
6041
Yan Zhenga512bbf2008-12-08 16:46:26 -05006042 *logical = buf;
6043 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006044 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006045
6046 free_extent_map(em);
6047 return 0;
6048}
6049
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006050static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006051{
Mike Snitzer326e1db2015-05-22 09:14:03 -04006052 bio->bi_private = bbio->private;
6053 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006054 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006055
Zhao Lei6e9606d2015-01-20 15:11:34 +08006056 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08006057}
6058
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006059static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006060{
Chris Mason9be33952013-05-17 18:30:14 -04006061 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006062 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006063
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006064 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006065 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006066 if (bio->bi_status == BLK_STS_IOERR ||
6067 bio->bi_status == BLK_STS_TARGET) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02006068 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006069 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006070 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006071
6072 BUG_ON(stripe_index >= bbio->num_stripes);
6073 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006074 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006075 if (bio_op(bio) == REQ_OP_WRITE)
Anand Jain1cb34c82017-10-21 01:45:33 +08006076 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006077 BTRFS_DEV_STAT_WRITE_ERRS);
6078 else
Anand Jain1cb34c82017-10-21 01:45:33 +08006079 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006080 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006081 if (bio->bi_opf & REQ_PREFLUSH)
Anand Jain1cb34c82017-10-21 01:45:33 +08006082 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006083 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens597a60f2012-06-14 16:42:31 +02006084 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006085 }
6086 }
Chris Mason8790d502008-04-03 16:29:03 -04006087
Jan Schmidta1d3c472011-08-04 17:15:33 +02006088 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006089 is_orig_bio = 1;
6090
Miao Xiec404e0d2014-01-30 16:46:55 +08006091 btrfs_bio_counter_dec(bbio->fs_info);
6092
Jan Schmidta1d3c472011-08-04 17:15:33 +02006093 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006094 if (!is_orig_bio) {
6095 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006096 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006097 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006098
Chris Mason9be33952013-05-17 18:30:14 -04006099 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006100 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006101 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006102 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006103 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006104 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006105 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006106 /*
6107 * this bio is actually up to date, we didn't
6108 * go over the max number of errors
6109 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006110 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006111 }
Miao Xiec55f1392014-06-19 10:42:54 +08006112
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006113 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006114 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006115 bio_put(bio);
6116 }
Chris Mason8790d502008-04-03 16:29:03 -04006117}
6118
Chris Mason8b712842008-06-11 16:50:36 -04006119/*
6120 * see run_scheduled_bios for a description of why bios are collected for
6121 * async submit.
6122 *
6123 * This will add one bio to the pending list for a device and make sure
6124 * the work struct is scheduled.
6125 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006126static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006127 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006128{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006129 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006130 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006131 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006132
Anand Jaine6e674b2017-12-04 12:54:54 +08006133 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) ||
6134 !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006135 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006136 return;
6137 }
6138
Chris Mason8b712842008-06-11 16:50:36 -04006139 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006140 if (bio_op(bio) == REQ_OP_READ) {
Mike Christie4e49ea42016-06-05 14:31:41 -05006141 btrfsic_submit_bio(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006142 return;
Chris Mason8b712842008-06-11 16:50:36 -04006143 }
6144
Chris Mason492bb6de2008-07-31 16:29:02 -04006145 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006146 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006147
6148 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006149 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006150 pending_bios = &device->pending_sync_bios;
6151 else
6152 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006153
Chris Masonffbd5172009-04-20 15:50:09 -04006154 if (pending_bios->tail)
6155 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006156
Chris Masonffbd5172009-04-20 15:50:09 -04006157 pending_bios->tail = bio;
6158 if (!pending_bios->head)
6159 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006160 if (device->running_pending)
6161 should_queue = 0;
6162
6163 spin_unlock(&device->io_lock);
6164
6165 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006166 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006167}
6168
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006169static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6170 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006171{
6172 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006173 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006174
6175 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006176 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006177 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006178 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006179#ifdef DEBUG
6180 {
6181 struct rcu_string *name;
6182
6183 rcu_read_lock();
6184 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006185 btrfs_debug(fs_info,
6186 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6187 bio_op(bio), bio->bi_opf,
6188 (u64)bio->bi_iter.bi_sector,
6189 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6190 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006191 rcu_read_unlock();
6192 }
6193#endif
Christoph Hellwig74d46992017-08-23 19:10:32 +02006194 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006195
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006196 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006197
Josef Bacikde1ee922012-10-19 16:50:56 -04006198 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006199 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006200 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006201 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006202}
6203
Josef Bacikde1ee922012-10-19 16:50:56 -04006204static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6205{
6206 atomic_inc(&bbio->error);
6207 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006208 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006209 WARN_ON(bio != bbio->orig_bio);
6210
Chris Mason9be33952013-05-17 18:30:14 -04006211 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006212 bio->bi_iter.bi_sector = logical >> 9;
Anand Jain102ed2c2017-10-14 08:34:02 +08006213 if (atomic_read(&bbio->error) > bbio->max_errors)
6214 bio->bi_status = BLK_STS_IOERR;
6215 else
6216 bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006217 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006218 }
6219}
6220
Omar Sandoval58efbc92017-08-22 23:45:59 -07006221blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
6222 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006223{
Chris Mason0b86a832008-03-24 15:01:56 -04006224 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006225 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006226 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006227 u64 length = 0;
6228 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006229 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006230 int dev_nr;
6231 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006232 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006233
Kent Overstreet4f024f32013-10-11 15:44:27 -07006234 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006235 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006236
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006237 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006238 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006239 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006240 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006241 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006242 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006243 }
Chris Masoncea9e442008-04-09 16:28:12 -04006244
Jan Schmidta1d3c472011-08-04 17:15:33 +02006245 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006246 bbio->orig_bio = first_bio;
6247 bbio->private = first_bio->bi_private;
6248 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006249 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006250 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6251
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006252 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006253 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006254 /* In this case, map_length has been set to the length of
6255 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006256 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006257 ret = raid56_parity_write(fs_info, bio, bbio,
6258 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006259 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006260 ret = raid56_parity_recover(fs_info, bio, bbio,
6261 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006262 }
Miao Xie42452152014-11-25 16:39:28 +08006263
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006264 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006265 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006266 }
6267
Chris Masoncea9e442008-04-09 16:28:12 -04006268 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006269 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006270 "mapping failed logical %llu bio len %llu len %llu",
6271 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006272 BUG();
6273 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006274
Zhao Lei08da7572015-02-12 15:42:16 +08006275 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006276 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006277 if (!dev || !dev->bdev ||
Anand Jainebbede42017-12-04 12:54:52 +08006278 (bio_op(first_bio) == REQ_OP_WRITE &&
6279 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006280 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006281 continue;
6282 }
6283
David Sterba3aa8e072017-06-02 17:38:30 +02006284 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006285 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006286 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006287 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006288
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006289 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6290 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006291 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006292 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006293 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006294}
6295
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006296struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006297 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006298{
Yan Zheng2b820322008-11-17 21:11:30 -05006299 struct btrfs_device *device;
6300 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006301
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006302 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006303 while (cur_devices) {
6304 if (!fsid ||
Anand Jain44880fd2017-07-29 17:50:09 +08006305 !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) {
David Sterba35c70102017-06-15 19:51:51 +02006306 device = find_device(cur_devices, devid, uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006307 if (device)
6308 return device;
6309 }
6310 cur_devices = cur_devices->seed;
6311 }
6312 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006313}
6314
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006315static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006316 u64 devid, u8 *dev_uuid)
6317{
6318 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006319
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006320 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6321 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006322 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006323
6324 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006325 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006326 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006327
Anand Jaine6e674b2017-12-04 12:54:54 +08006328 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006329 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006330
Chris Masondfe25022008-05-13 13:46:40 -04006331 return device;
6332}
6333
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006334/**
6335 * btrfs_alloc_device - allocate struct btrfs_device
6336 * @fs_info: used only for generating a new devid, can be NULL if
6337 * devid is provided (i.e. @devid != NULL).
6338 * @devid: a pointer to devid for this device. If NULL a new devid
6339 * is generated.
6340 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6341 * is generated.
6342 *
6343 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006344 * on error. Returned struct is not linked onto any lists and must be
David Sterbaa425f9d2018-03-20 15:47:33 +01006345 * destroyed with btrfs_free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006346 */
6347struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6348 const u64 *devid,
6349 const u8 *uuid)
6350{
6351 struct btrfs_device *dev;
6352 u64 tmp;
6353
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306354 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006355 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006356
6357 dev = __alloc_device();
6358 if (IS_ERR(dev))
6359 return dev;
6360
6361 if (devid)
6362 tmp = *devid;
6363 else {
6364 int ret;
6365
6366 ret = find_next_devid(fs_info, &tmp);
6367 if (ret) {
David Sterbaa425f9d2018-03-20 15:47:33 +01006368 btrfs_free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006369 return ERR_PTR(ret);
6370 }
6371 }
6372 dev->devid = tmp;
6373
6374 if (uuid)
6375 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6376 else
6377 generate_random_uuid(dev->uuid);
6378
Liu Bo9e0af232014-08-15 23:36:53 +08006379 btrfs_init_work(&dev->work, btrfs_submit_helper,
6380 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006381
6382 return dev;
6383}
6384
Liu Boe06cd3d2016-06-03 12:05:15 -07006385/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006386static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006387 struct extent_buffer *leaf,
6388 struct btrfs_chunk *chunk, u64 logical)
6389{
6390 u64 length;
6391 u64 stripe_len;
6392 u16 num_stripes;
6393 u16 sub_stripes;
6394 u64 type;
6395
6396 length = btrfs_chunk_length(leaf, chunk);
6397 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6398 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6399 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6400 type = btrfs_chunk_type(leaf, chunk);
6401
6402 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006403 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006404 num_stripes);
6405 return -EIO;
6406 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006407 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6408 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006409 return -EIO;
6410 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006411 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6412 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006413 btrfs_chunk_sector_size(leaf, chunk));
6414 return -EIO;
6415 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006416 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6417 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006418 return -EIO;
6419 }
6420 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006421 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006422 stripe_len);
6423 return -EIO;
6424 }
6425 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6426 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006427 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006428 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6429 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6430 btrfs_chunk_type(leaf, chunk));
6431 return -EIO;
6432 }
6433 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6434 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6435 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6436 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6437 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6438 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6439 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006440 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006441 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6442 num_stripes, sub_stripes,
6443 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6444 return -EIO;
6445 }
6446
6447 return 0;
6448}
6449
Anand Jain5a2b8e62017-10-09 11:07:45 +08006450static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08006451 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08006452{
Anand Jain2b902df2017-10-09 11:07:46 +08006453 if (error)
6454 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
6455 devid, uuid);
6456 else
6457 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
6458 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08006459}
6460
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006461static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006462 struct extent_buffer *leaf,
6463 struct btrfs_chunk *chunk)
6464{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006465 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006466 struct map_lookup *map;
6467 struct extent_map *em;
6468 u64 logical;
6469 u64 length;
6470 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006471 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006472 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006473 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006474 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006475
Chris Masone17cade2008-04-15 15:41:47 -04006476 logical = key->offset;
6477 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006478 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006479
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006480 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006481 if (ret)
6482 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006483
Chris Mason890871b2009-09-02 16:24:52 -04006484 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006485 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006486 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006487
6488 /* already mapped? */
6489 if (em && em->start <= logical && em->start + em->len > logical) {
6490 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006491 return 0;
6492 } else if (em) {
6493 free_extent_map(em);
6494 }
Chris Mason0b86a832008-03-24 15:01:56 -04006495
David Sterba172ddd62011-04-21 00:48:27 +02006496 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006497 if (!em)
6498 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006499 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006500 if (!map) {
6501 free_extent_map(em);
6502 return -ENOMEM;
6503 }
6504
Wang Shilong298a8f92014-06-19 10:42:52 +08006505 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006506 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006507 em->start = logical;
6508 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006509 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006510 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006511 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006512
Chris Mason593060d2008-03-25 16:50:33 -04006513 map->num_stripes = num_stripes;
6514 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6515 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006516 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6517 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006518 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006519 for (i = 0; i < num_stripes; i++) {
6520 map->stripes[i].physical =
6521 btrfs_stripe_offset_nr(leaf, chunk, i);
6522 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006523 read_extent_buffer(leaf, uuid, (unsigned long)
6524 btrfs_stripe_dev_uuid_nr(chunk, i),
6525 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006526 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006527 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006528 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006529 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006530 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08006531 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006532 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04006533 }
Chris Masondfe25022008-05-13 13:46:40 -04006534 if (!map->stripes[i].dev) {
6535 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006536 add_missing_dev(fs_info->fs_devices, devid,
6537 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006538 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04006539 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08006540 btrfs_err(fs_info,
6541 "failed to init missing dev %llu: %ld",
6542 devid, PTR_ERR(map->stripes[i].dev));
6543 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04006544 }
Anand Jain2b902df2017-10-09 11:07:46 +08006545 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04006546 }
Anand Jaine12c9622017-12-04 12:54:53 +08006547 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
6548 &(map->stripes[i].dev->dev_state));
6549
Chris Mason0b86a832008-03-24 15:01:56 -04006550 }
6551
Chris Mason890871b2009-09-02 16:24:52 -04006552 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006553 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006554 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006555 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006556 free_extent_map(em);
6557
6558 return 0;
6559}
6560
Jeff Mahoney143bede2012-03-01 14:56:26 +01006561static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006562 struct btrfs_dev_item *dev_item,
6563 struct btrfs_device *device)
6564{
6565 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006566
6567 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006568 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6569 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006570 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006571 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006572 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006573 device->type = btrfs_device_type(leaf, dev_item);
6574 device->io_align = btrfs_device_io_align(leaf, dev_item);
6575 device->io_width = btrfs_device_io_width(leaf, dev_item);
6576 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006577 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08006578 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04006579
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006580 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006581 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006582}
6583
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006584static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006585 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006586{
6587 struct btrfs_fs_devices *fs_devices;
6588 int ret;
6589
David Sterbaa32bf9a2018-03-16 02:21:22 +01006590 lockdep_assert_held(&uuid_mutex);
David Sterba2dfeca92017-06-14 02:48:07 +02006591 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05006592
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006593 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006594 while (fs_devices) {
Anand Jain44880fd2017-07-29 17:50:09 +08006595 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08006596 return fs_devices;
6597
Yan Zheng2b820322008-11-17 21:11:30 -05006598 fs_devices = fs_devices->seed;
6599 }
6600
6601 fs_devices = find_fsid(fsid);
6602 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006603 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006604 return ERR_PTR(-ENOENT);
6605
6606 fs_devices = alloc_fs_devices(fsid);
6607 if (IS_ERR(fs_devices))
6608 return fs_devices;
6609
6610 fs_devices->seeding = 1;
6611 fs_devices->opened = 1;
6612 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006613 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006614
6615 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006616 if (IS_ERR(fs_devices))
6617 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006618
Anand Jain897fb572018-04-12 10:29:28 +08006619 ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006620 if (ret) {
6621 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006622 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006623 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006624 }
Yan Zheng2b820322008-11-17 21:11:30 -05006625
6626 if (!fs_devices->seeding) {
Anand Jain0226e0e2018-04-12 10:29:27 +08006627 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006628 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006629 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006630 goto out;
6631 }
6632
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006633 fs_devices->seed = fs_info->fs_devices->seed;
6634 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006635out:
Miao Xie5f375832014-09-03 21:35:46 +08006636 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006637}
6638
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006639static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006640 struct extent_buffer *leaf,
6641 struct btrfs_dev_item *dev_item)
6642{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006643 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006644 struct btrfs_device *device;
6645 u64 devid;
6646 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08006647 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006648 u8 dev_uuid[BTRFS_UUID_SIZE];
6649
Chris Mason0b86a832008-03-24 15:01:56 -04006650 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006651 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006652 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006653 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08006654 BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05006655
Anand Jain44880fd2017-07-29 17:50:09 +08006656 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006657 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006658 if (IS_ERR(fs_devices))
6659 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006660 }
6661
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006662 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006663 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08006664 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08006665 btrfs_report_missing_device(fs_info, devid,
6666 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006667 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08006668 }
Yan Zheng2b820322008-11-17 21:11:30 -05006669
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006670 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006671 if (IS_ERR(device)) {
6672 btrfs_err(fs_info,
6673 "failed to add missing dev %llu: %ld",
6674 devid, PTR_ERR(device));
6675 return PTR_ERR(device);
6676 }
Anand Jain2b902df2017-10-09 11:07:46 +08006677 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08006678 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08006679 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08006680 if (!btrfs_test_opt(fs_info, DEGRADED)) {
6681 btrfs_report_missing_device(fs_info,
6682 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006683 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08006684 }
6685 btrfs_report_missing_device(fs_info, devid,
6686 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08006687 }
Miao Xie5f375832014-09-03 21:35:46 +08006688
Anand Jaine6e674b2017-12-04 12:54:54 +08006689 if (!device->bdev &&
6690 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006691 /*
6692 * this happens when a device that was properly setup
6693 * in the device info lists suddenly goes bad.
6694 * device->bdev is NULL, and so we have to set
6695 * device->missing to one here
6696 */
Miao Xie5f375832014-09-03 21:35:46 +08006697 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08006698 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05006699 }
Miao Xie5f375832014-09-03 21:35:46 +08006700
6701 /* Move the device to its own fs_devices */
6702 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08006703 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
6704 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08006705
6706 list_move(&device->dev_list, &fs_devices->devices);
6707 device->fs_devices->num_devices--;
6708 fs_devices->num_devices++;
6709
6710 device->fs_devices->missing_devices--;
6711 fs_devices->missing_devices++;
6712
6713 device->fs_devices = fs_devices;
6714 }
Yan Zheng2b820322008-11-17 21:11:30 -05006715 }
6716
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006717 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08006718 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05006719 if (device->generation !=
6720 btrfs_device_generation(leaf, dev_item))
6721 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006722 }
Chris Mason0b86a832008-03-24 15:01:56 -04006723
6724 fill_device_from_item(leaf, dev_item, device);
Anand Jaine12c9622017-12-04 12:54:53 +08006725 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08006726 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08006727 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05006728 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03006729 atomic64_add(device->total_bytes - device->bytes_used,
6730 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04006731 }
Chris Mason0b86a832008-03-24 15:01:56 -04006732 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006733 return ret;
6734}
6735
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006736int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006737{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006738 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006739 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006740 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006741 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006742 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006743 u8 *array_ptr;
6744 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006745 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006746 u32 num_stripes;
6747 u32 array_size;
6748 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006749 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006750 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006751 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006752
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006753 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006754 /*
6755 * This will create extent buffer of nodesize, superblock size is
6756 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6757 * overallocate but we can keep it as-is, only the first page is used.
6758 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006759 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006760 if (IS_ERR(sb))
6761 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006762 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006763 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006764 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006765 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006766 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006767 * pages up-to-date when the page is larger: extent does not cover the
6768 * whole page and consequently check_page_uptodate does not find all
6769 * the page's extents up-to-date (the hole beyond sb),
6770 * write_extent_buffer then triggers a WARN_ON.
6771 *
6772 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6773 * but sb spans only this function. Add an explicit SetPageUptodate call
6774 * to silence the warning eg. on PowerPC 64.
6775 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006776 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006777 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006778
Chris Masona061fc82008-05-07 11:43:44 -04006779 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006780 array_size = btrfs_super_sys_array_size(super_copy);
6781
David Sterba1ffb22c2014-10-31 19:02:42 +01006782 array_ptr = super_copy->sys_chunk_array;
6783 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6784 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006785
David Sterba1ffb22c2014-10-31 19:02:42 +01006786 while (cur_offset < array_size) {
6787 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006788 len = sizeof(*disk_key);
6789 if (cur_offset + len > array_size)
6790 goto out_short_read;
6791
Chris Mason0b86a832008-03-24 15:01:56 -04006792 btrfs_disk_key_to_cpu(&key, disk_key);
6793
David Sterba1ffb22c2014-10-31 19:02:42 +01006794 array_ptr += len;
6795 sb_array_offset += len;
6796 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006797
Chris Mason0d81ba52008-03-24 15:02:07 -04006798 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006799 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006800 /*
6801 * At least one btrfs_chunk with one stripe must be
6802 * present, exact stripe count check comes afterwards
6803 */
6804 len = btrfs_chunk_item_size(1);
6805 if (cur_offset + len > array_size)
6806 goto out_short_read;
6807
6808 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006809 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006810 btrfs_err(fs_info,
6811 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006812 num_stripes, cur_offset);
6813 ret = -EIO;
6814 break;
6815 }
6816
Liu Boe06cd3d2016-06-03 12:05:15 -07006817 type = btrfs_chunk_type(sb, chunk);
6818 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006819 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006820 "invalid chunk type %llu in sys_array at offset %u",
6821 type, cur_offset);
6822 ret = -EIO;
6823 break;
6824 }
6825
David Sterbae3540ea2014-11-05 15:24:51 +01006826 len = btrfs_chunk_item_size(num_stripes);
6827 if (cur_offset + len > array_size)
6828 goto out_short_read;
6829
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006830 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006831 if (ret)
6832 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006833 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006834 btrfs_err(fs_info,
6835 "unexpected item type %u in sys_array at offset %u",
6836 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006837 ret = -EIO;
6838 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006839 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006840 array_ptr += len;
6841 sb_array_offset += len;
6842 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006843 }
Liu Bod8651772016-06-03 17:41:42 -07006844 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006845 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006846 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006847
6848out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006849 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006850 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006851 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006852 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006853 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006854}
6855
Qu Wenruo21634a12017-03-09 09:34:36 +08006856/*
6857 * Check if all chunks in the fs are OK for read-write degraded mount
6858 *
Anand Jain6528b992017-12-18 17:08:59 +08006859 * If the @failing_dev is specified, it's accounted as missing.
6860 *
Qu Wenruo21634a12017-03-09 09:34:36 +08006861 * Return true if all chunks meet the minimal RW mount requirements.
6862 * Return false if any chunk doesn't meet the minimal RW mount requirements.
6863 */
Anand Jain6528b992017-12-18 17:08:59 +08006864bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
6865 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08006866{
6867 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
6868 struct extent_map *em;
6869 u64 next_start = 0;
6870 bool ret = true;
6871
6872 read_lock(&map_tree->map_tree.lock);
6873 em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1);
6874 read_unlock(&map_tree->map_tree.lock);
6875 /* No chunk at all? Return false anyway */
6876 if (!em) {
6877 ret = false;
6878 goto out;
6879 }
6880 while (em) {
6881 struct map_lookup *map;
6882 int missing = 0;
6883 int max_tolerated;
6884 int i;
6885
6886 map = em->map_lookup;
6887 max_tolerated =
6888 btrfs_get_num_tolerated_disk_barrier_failures(
6889 map->type);
6890 for (i = 0; i < map->num_stripes; i++) {
6891 struct btrfs_device *dev = map->stripes[i].dev;
6892
Anand Jaine6e674b2017-12-04 12:54:54 +08006893 if (!dev || !dev->bdev ||
6894 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08006895 dev->last_flush_error)
6896 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08006897 else if (failing_dev && failing_dev == dev)
6898 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08006899 }
6900 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08006901 if (!failing_dev)
6902 btrfs_warn(fs_info,
Qu Wenruo21634a12017-03-09 09:34:36 +08006903 "chunk %llu missing %d devices, max tolerance is %d for writeable mount",
6904 em->start, missing, max_tolerated);
6905 free_extent_map(em);
6906 ret = false;
6907 goto out;
6908 }
6909 next_start = extent_map_end(em);
6910 free_extent_map(em);
6911
6912 read_lock(&map_tree->map_tree.lock);
6913 em = lookup_extent_mapping(&map_tree->map_tree, next_start,
6914 (u64)(-1) - next_start);
6915 read_unlock(&map_tree->map_tree.lock);
6916 }
6917out:
6918 return ret;
6919}
6920
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006921int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006922{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006923 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006924 struct btrfs_path *path;
6925 struct extent_buffer *leaf;
6926 struct btrfs_key key;
6927 struct btrfs_key found_key;
6928 int ret;
6929 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006930 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006931
Chris Mason0b86a832008-03-24 15:01:56 -04006932 path = btrfs_alloc_path();
6933 if (!path)
6934 return -ENOMEM;
6935
Li Zefanb367e472011-12-07 11:38:24 +08006936 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006937 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006938
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006939 /*
6940 * Read all device items, and then all the chunk items. All
6941 * device items are found before any chunk item (their object id
6942 * is smaller than the lowest possible object id for a chunk
6943 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006944 */
6945 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6946 key.offset = 0;
6947 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006948 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006949 if (ret < 0)
6950 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006951 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006952 leaf = path->nodes[0];
6953 slot = path->slots[0];
6954 if (slot >= btrfs_header_nritems(leaf)) {
6955 ret = btrfs_next_leaf(root, path);
6956 if (ret == 0)
6957 continue;
6958 if (ret < 0)
6959 goto error;
6960 break;
6961 }
6962 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006963 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6964 struct btrfs_dev_item *dev_item;
6965 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006966 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006967 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006968 if (ret)
6969 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006970 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006971 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6972 struct btrfs_chunk *chunk;
6973 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006974 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006975 if (ret)
6976 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006977 }
6978 path->slots[0]++;
6979 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006980
6981 /*
6982 * After loading chunk tree, we've got all device information,
6983 * do another round of validation checks.
6984 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006985 if (total_dev != fs_info->fs_devices->total_devices) {
6986 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006987 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006988 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07006989 total_dev);
6990 ret = -EINVAL;
6991 goto error;
6992 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006993 if (btrfs_super_total_bytes(fs_info->super_copy) <
6994 fs_info->fs_devices->total_rw_bytes) {
6995 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006996 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006997 btrfs_super_total_bytes(fs_info->super_copy),
6998 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07006999 ret = -EINVAL;
7000 goto error;
7001 }
Chris Mason0b86a832008-03-24 15:01:56 -04007002 ret = 0;
7003error:
David Sterba34441362016-10-04 19:34:27 +02007004 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08007005 mutex_unlock(&uuid_mutex);
7006
Yan Zheng2b820322008-11-17 21:11:30 -05007007 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007008 return ret;
7009}
Stefan Behrens442a4f62012-05-25 16:06:08 +02007010
Miao Xiecb517ea2013-05-15 07:48:19 +00007011void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
7012{
7013 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7014 struct btrfs_device *device;
7015
Liu Bo29cc83f2014-05-11 23:14:59 +08007016 while (fs_devices) {
7017 mutex_lock(&fs_devices->device_list_mutex);
7018 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007019 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007020 mutex_unlock(&fs_devices->device_list_mutex);
7021
7022 fs_devices = fs_devices->seed;
7023 }
Miao Xiecb517ea2013-05-15 07:48:19 +00007024}
7025
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007026static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
7027{
7028 int i;
7029
7030 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7031 btrfs_dev_stat_reset(dev, i);
7032}
7033
7034int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
7035{
7036 struct btrfs_key key;
7037 struct btrfs_key found_key;
7038 struct btrfs_root *dev_root = fs_info->dev_root;
7039 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7040 struct extent_buffer *eb;
7041 int slot;
7042 int ret = 0;
7043 struct btrfs_device *device;
7044 struct btrfs_path *path = NULL;
7045 int i;
7046
7047 path = btrfs_alloc_path();
7048 if (!path) {
7049 ret = -ENOMEM;
7050 goto out;
7051 }
7052
7053 mutex_lock(&fs_devices->device_list_mutex);
7054 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7055 int item_size;
7056 struct btrfs_dev_stats_item *ptr;
7057
David Sterba242e2952016-01-25 17:51:31 +01007058 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7059 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007060 key.offset = device->devid;
7061 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
7062 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007063 __btrfs_reset_dev_stats(device);
7064 device->dev_stats_valid = 1;
7065 btrfs_release_path(path);
7066 continue;
7067 }
7068 slot = path->slots[0];
7069 eb = path->nodes[0];
7070 btrfs_item_key_to_cpu(eb, &found_key, slot);
7071 item_size = btrfs_item_size_nr(eb, slot);
7072
7073 ptr = btrfs_item_ptr(eb, slot,
7074 struct btrfs_dev_stats_item);
7075
7076 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7077 if (item_size >= (1 + i) * sizeof(__le64))
7078 btrfs_dev_stat_set(device, i,
7079 btrfs_dev_stats_value(eb, ptr, i));
7080 else
7081 btrfs_dev_stat_reset(device, i);
7082 }
7083
7084 device->dev_stats_valid = 1;
7085 btrfs_dev_stat_print_on_load(device);
7086 btrfs_release_path(path);
7087 }
7088 mutex_unlock(&fs_devices->device_list_mutex);
7089
7090out:
7091 btrfs_free_path(path);
7092 return ret < 0 ? ret : 0;
7093}
7094
7095static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007096 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007097 struct btrfs_device *device)
7098{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007099 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007100 struct btrfs_path *path;
7101 struct btrfs_key key;
7102 struct extent_buffer *eb;
7103 struct btrfs_dev_stats_item *ptr;
7104 int ret;
7105 int i;
7106
David Sterba242e2952016-01-25 17:51:31 +01007107 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7108 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007109 key.offset = device->devid;
7110
7111 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007112 if (!path)
7113 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007114 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7115 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007116 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007117 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007118 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007119 goto out;
7120 }
7121
7122 if (ret == 0 &&
7123 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7124 /* need to delete old one and insert a new one */
7125 ret = btrfs_del_item(trans, dev_root, path);
7126 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007127 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007128 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007129 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007130 goto out;
7131 }
7132 ret = 1;
7133 }
7134
7135 if (ret == 1) {
7136 /* need to insert a new item */
7137 btrfs_release_path(path);
7138 ret = btrfs_insert_empty_item(trans, dev_root, path,
7139 &key, sizeof(*ptr));
7140 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007141 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007142 "insert dev_stats item for device %s failed %d",
7143 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007144 goto out;
7145 }
7146 }
7147
7148 eb = path->nodes[0];
7149 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7150 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7151 btrfs_set_dev_stats_value(eb, ptr, i,
7152 btrfs_dev_stat_read(device, i));
7153 btrfs_mark_buffer_dirty(eb);
7154
7155out:
7156 btrfs_free_path(path);
7157 return ret;
7158}
7159
7160/*
7161 * called from commit_transaction. Writes all changed device stats to disk.
7162 */
7163int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7164 struct btrfs_fs_info *fs_info)
7165{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007166 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7167 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007168 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007169 int ret = 0;
7170
7171 mutex_lock(&fs_devices->device_list_mutex);
7172 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007173 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7174 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007175 continue;
7176
Nikolay Borisov9deae962017-10-24 13:47:37 +03007177
7178 /*
7179 * There is a LOAD-LOAD control dependency between the value of
7180 * dev_stats_ccnt and updating the on-disk values which requires
7181 * reading the in-memory counters. Such control dependencies
7182 * require explicit read memory barriers.
7183 *
7184 * This memory barriers pairs with smp_mb__before_atomic in
7185 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7186 * barrier implied by atomic_xchg in
7187 * btrfs_dev_stats_read_and_reset
7188 */
7189 smp_rmb();
7190
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007191 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007192 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007193 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007194 }
7195 mutex_unlock(&fs_devices->device_list_mutex);
7196
7197 return ret;
7198}
7199
Stefan Behrens442a4f62012-05-25 16:06:08 +02007200void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7201{
7202 btrfs_dev_stat_inc(dev, index);
7203 btrfs_dev_stat_print_on_error(dev);
7204}
7205
Eric Sandeen48a3b632013-04-25 20:41:01 +00007206static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007207{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007208 if (!dev->dev_stats_valid)
7209 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007210 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007211 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007212 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007213 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7214 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7215 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007216 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7217 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007218}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007219
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007220static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7221{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007222 int i;
7223
7224 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7225 if (btrfs_dev_stat_read(dev, i) != 0)
7226 break;
7227 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7228 return; /* all values == 0, suppress message */
7229
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007230 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007231 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007232 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007233 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7234 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7235 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7236 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7237 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7238}
7239
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007240int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007241 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007242{
7243 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007244 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007245 int i;
7246
7247 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007248 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007249 mutex_unlock(&fs_devices->device_list_mutex);
7250
7251 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007252 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007253 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007254 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007255 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007256 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007257 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007258 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7259 if (stats->nr_items > i)
7260 stats->values[i] =
7261 btrfs_dev_stat_read_and_reset(dev, i);
7262 else
7263 btrfs_dev_stat_reset(dev, i);
7264 }
7265 } else {
7266 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7267 if (stats->nr_items > i)
7268 stats->values[i] = btrfs_dev_stat_read(dev, i);
7269 }
7270 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7271 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7272 return 0;
7273}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007274
David Sterbada353f62017-02-14 17:55:53 +01007275void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007276{
7277 struct buffer_head *bh;
7278 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007279 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007280
Anand Jain12b1c262015-08-14 18:32:59 +08007281 if (!bdev)
7282 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007283
Anand Jain12b1c262015-08-14 18:32:59 +08007284 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7285 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007286
Anand Jain12b1c262015-08-14 18:32:59 +08007287 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7288 continue;
7289
7290 disk_super = (struct btrfs_super_block *)bh->b_data;
7291
7292 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7293 set_buffer_dirty(bh);
7294 sync_dirty_buffer(bh);
7295 brelse(bh);
7296 }
7297
7298 /* Notify udev that device has changed */
7299 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7300
7301 /* Update ctime/mtime for device path for libblkid */
7302 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007303}
Miao Xie935e5cc2014-09-03 21:35:33 +08007304
7305/*
7306 * Update the size of all devices, which is used for writing out the
7307 * super blocks.
7308 */
7309void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7310{
7311 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7312 struct btrfs_device *curr, *next;
7313
7314 if (list_empty(&fs_devices->resized_devices))
7315 return;
7316
7317 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007318 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007319 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7320 resized_list) {
7321 list_del_init(&curr->resized_list);
7322 curr->commit_total_bytes = curr->disk_total_bytes;
7323 }
David Sterba34441362016-10-04 19:34:27 +02007324 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007325 mutex_unlock(&fs_devices->device_list_mutex);
7326}
Miao Xiece7213c2014-09-03 21:35:34 +08007327
7328/* Must be invoked during the transaction commit */
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007329void btrfs_update_commit_device_bytes_used(struct btrfs_transaction *trans)
Miao Xiece7213c2014-09-03 21:35:34 +08007330{
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007331 struct btrfs_fs_info *fs_info = trans->fs_info;
Miao Xiece7213c2014-09-03 21:35:34 +08007332 struct extent_map *em;
7333 struct map_lookup *map;
7334 struct btrfs_device *dev;
7335 int i;
7336
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007337 if (list_empty(&trans->pending_chunks))
Miao Xiece7213c2014-09-03 21:35:34 +08007338 return;
7339
7340 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007341 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007342 list_for_each_entry(em, &trans->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007343 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007344
7345 for (i = 0; i < map->num_stripes; i++) {
7346 dev = map->stripes[i].dev;
7347 dev->commit_bytes_used = dev->bytes_used;
7348 }
7349 }
David Sterba34441362016-10-04 19:34:27 +02007350 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007351}
Anand Jain5a13f432015-03-10 06:38:31 +08007352
7353void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7354{
7355 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7356 while (fs_devices) {
7357 fs_devices->fs_info = fs_info;
7358 fs_devices = fs_devices->seed;
7359 }
7360}
7361
7362void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7363{
7364 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7365 while (fs_devices) {
7366 fs_devices->fs_info = NULL;
7367 fs_devices = fs_devices->seed;
7368 }
7369}